Skip to content

Commit c05f614

Browse files
Merge pull request #2049 from oracle/release_gh
Releasing version 5.30.0
2 parents 8cd2a17 + c473f79 commit c05f614

File tree

1,684 files changed

+209256
-76515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,684 files changed

+209256
-76515
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "region" {
5+
}
6+
7+
variable "tenancy_ocid" {
8+
}
9+
10+
variable "user_ocid" {
11+
}
12+
13+
variable "fingerprint" {
14+
}
15+
16+
variable "private_key_path" {
17+
}
18+
19+
provider "oci" {
20+
region = var.region
21+
tenancy_ocid = var.tenancy_ocid
22+
user_ocid = var.user_ocid
23+
fingerprint = var.fingerprint
24+
private_key_path = var.private_key_path
25+
}
Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
5+
6+
variable "workspace_application_schedule_application_key" {
7+
default = ""
8+
}
9+
10+
variable "workspace_application_schedule_description" {
11+
default = "description"
12+
}
13+
14+
variable "workspace_application_schedule_frequency_details_custom_expression" {
15+
default = "customExpression"
16+
}
17+
18+
variable "workspace_application_schedule_frequency_details_day_of_week" {
19+
default = "SUNDAY"
20+
}
21+
22+
variable "workspace_application_schedule_frequency_details_days" {
23+
default = []
24+
}
25+
26+
variable "workspace_application_schedule_frequency_details_frequency" {
27+
default = "HOURLY"
28+
}
29+
30+
variable "workspace_application_schedule_frequency_details_interval" {
31+
default = 1
32+
}
33+
34+
variable "workspace_application_schedule_frequency_details_model_type" {
35+
default = "HOURLY"
36+
}
37+
38+
variable "workspace_application_schedule_frequency_details_time_hour" {
39+
default = 0
40+
}
41+
42+
variable "workspace_application_schedule_frequency_details_time_minute" {
43+
default = 10
44+
}
45+
46+
variable "workspace_application_schedule_frequency_details_time_second" {
47+
default = 10
48+
}
49+
50+
variable "workspace_application_schedule_frequency_details_week_of_month" {
51+
default = "FIRST"
52+
}
53+
54+
variable "workspace_application_identifier" {
55+
default = "APPLICATION_TF_TEST_1"
56+
}
57+
58+
variable "workspace_application_schedule_identifier" {
59+
default = ["TERSI_TEST_SCHEDULE001"]
60+
}
61+
62+
variable "workspace_application_schedule_is_daylight_adjustment_enabled" {
63+
default = false
64+
}
65+
66+
variable "workspace_application_schedule_key" {
67+
default = "key"
68+
}
69+
70+
variable "workspace_application_schedule_model_version" {
71+
default = "20210409"
72+
}
73+
74+
variable "workspace_application_schedule_name" {
75+
default = "TERSI_TEST_SCHEDULE007"
76+
}
77+
78+
variable "workspace_application_schedule_object_status" {
79+
default = 0
80+
}
81+
82+
variable "workspace_application_schedule_object_version" {
83+
default = 0
84+
}
85+
86+
variable "workspace_application_schedule_registry_metadata_aggregator_key" {
87+
default = "aggregatorKey"
88+
}
89+
90+
variable "workspace_application_schedule_registry_metadata_is_favorite" {
91+
default = false
92+
}
93+
94+
variable "workspace_application_schedule_registry_metadata_key" {
95+
default = "key"
96+
}
97+
98+
variable "workspace_application_schedule_registry_metadata_labels" {
99+
default = ["temp_LABEL"]
100+
}
101+
102+
variable "workspace_application_schedule_registry_metadata_registry_version" {
103+
default = 10
104+
}
105+
106+
variable "workspace_application_schedule_timezone" {
107+
default = "UTC"
108+
}
109+
110+
variable "workspace_application_schedule_type" {
111+
default = ["SCHEDULE"]
112+
}
113+
variable "workspace_application_workspace_id"{
114+
default = ""
115+
}
116+
117+
resource "oci_dataintegration_workspace_application_schedule" "test_workspace_application_schedule" {
118+
#Required
119+
application_key = var.workspace_application_schedule_application_key
120+
identifier = var.workspace_application_identifier
121+
name = var.workspace_application_schedule_name
122+
workspace_id = var.workspace_application_workspace_id
123+
124+
#Optional
125+
description = var.workspace_application_schedule_description
126+
frequency_details {
127+
#Required
128+
model_type = var.workspace_application_schedule_frequency_details_model_type
129+
130+
#Optional
131+
#custom_expression = var.workspace_application_schedule_frequency_details_custom_expression
132+
day_of_week = var.workspace_application_schedule_frequency_details_day_of_week
133+
days = var.workspace_application_schedule_frequency_details_days
134+
frequency = var.workspace_application_schedule_frequency_details_frequency
135+
interval = var.workspace_application_schedule_frequency_details_interval
136+
time {
137+
138+
#Optional
139+
hour = var.workspace_application_schedule_frequency_details_time_hour
140+
minute = var.workspace_application_schedule_frequency_details_time_minute
141+
second = var.workspace_application_schedule_frequency_details_time_second
142+
}
143+
#week_of_month = var.workspace_application_schedule_frequency_details_week_of_month
144+
}
145+
is_daylight_adjustment_enabled = var.workspace_application_schedule_is_daylight_adjustment_enabled
146+
#key = var.workspace_application_schedule_key
147+
model_version = var.workspace_application_schedule_model_version
148+
object_status = var.workspace_application_schedule_object_status
149+
object_version = var.workspace_application_schedule_object_version
150+
151+
timezone = var.workspace_application_schedule_timezone
152+
}
153+
154+
data "oci_dataintegration_workspace_application_schedules" "test_workspace_application_schedules" {
155+
#Required
156+
application_key = var.workspace_application_schedule_application_key
157+
workspace_id = var.workspace_application_workspace_id
158+
159+
#Optional
160+
identifier = var.workspace_application_schedule_identifier
161+
#key = var.workspace_application_schedule_key
162+
name = var.workspace_application_schedule_name
163+
type = var.workspace_application_schedule_type
164+
}

examples/datascience/job/job.tf

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ variable "private_key_path" {}
1010
variable "compartment_ocid" {}
1111
variable "region" {}
1212

13+
variable "job_environment_configuration_details_job_environment_type" {
14+
default = "OCIR_CONTAINER"
15+
}
16+
17+
variable "job_environment_configuration_details_cmd" {
18+
}
19+
20+
variable "job_environment_configuration_details_entrypoint" {
21+
}
22+
23+
variable "job_environment_configuration_details_image" {
24+
}
25+
26+
variable "job_environment_configuration_details_image_digest" {
27+
}
28+
29+
variable "job_environment_configuration_details_image_signature_id" {
30+
}
31+
1332
provider "oci" {
1433
region = var.region
1534
tenancy_ocid = var.tenancy_ocid
@@ -64,6 +83,15 @@ resource "oci_datascience_job" "job" {
6483
}
6584
}
6685

86+
job_environment_configuration_details {
87+
cmd = var.job_environment_configuration_details_cmd
88+
entrypoint = var.job_environment_configuration_details_entrypoint
89+
image = var.job_environment_configuration_details_image
90+
image_digest = var.job_environment_configuration_details_image_digest
91+
image_signature_id = var.job_environment_configuration_details_image_signature_id
92+
job_environment_type = var.job_environment_configuration_details_job_environment_type
93+
}
94+
6795
job_log_configuration_details {
6896
enable_logging = true
6997
enable_auto_log_creation = true

examples/zips/adm.zip

0 Bytes
Binary file not shown.

examples/zips/aiAnomalyDetection.zip

0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)