Skip to content

Commit e017cca

Browse files
authored
Merge pull request #2128 from oracle/release_gh
Releasing version 5.44.0
2 parents 527a1f8 + c59b6cd commit e017cca

File tree

2,003 files changed

+94467
-340304
lines changed

Some content is hidden

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

2,003 files changed

+94467
-340304
lines changed

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.20.7
1+
1.21.8

CHANGELOG.md

Lines changed: 34 additions & 1 deletion

README.md

Lines changed: 1 addition & 1 deletion

examples/databasemanagement/nc/main.tf

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,21 @@ data "oci_database_management_named_credentials" "oracle_named_credentials" {
105105
#Required
106106
compartment_id = oci_database_management_named_credential.oracle_named_credential.compartment_id
107107
}
108+
109+
110+
# Create named credential with SYSDG role
111+
resource "oci_database_management_named_credential" "oracle_named_credential_with_sysdg" {
112+
#Required
113+
compartment_id = var.compartment_id
114+
name = "named_credential_with_sysdg"
115+
type = "ORACLE_DB"
116+
scope = "GLOBAL"
117+
content {
118+
user_name = var.nc_user
119+
credential_type = "BASIC"
120+
password_secret_id = var.key_id
121+
role = "SYSDG"
122+
password_secret_access_mode = "USER_PRINCIPAL"
123+
}
124+
freeform_tags = var.nc_freeform_tags
125+
}

examples/jms_java_downloads/java_download_reports/java_download_report.tf

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ variable "java_download_report_time_start" {
2828
default = "2023-08-01T03:07:27Z"
2929
}
3030

31+
variable "java_download_report_freeform_tags" {
32+
default = { "bar-key" = "value" }
33+
}
34+
35+
variable "java_download_report_defined_tags" {
36+
default = { "example-tag-namespace-all.example-tag" = "value" }
37+
}
38+
3139
provider "oci" {
3240
tenancy_ocid = var.tenancy_ocid
3341
user_ocid = var.user_ocid
@@ -42,8 +50,13 @@ resource "oci_jms_java_downloads_java_download_report" "test_java_download_repor
4250
format = var.java_download_report_format
4351

4452
#Optional
45-
time_end = var.java_download_report_time_end
46-
time_start = var.java_download_report_time_start
53+
time_end = var.java_download_report_time_end
54+
time_start = var.java_download_report_time_start
55+
freeform_tags = var.java_download_report_freeform_tags
56+
57+
# Create the Tag namespace in OCI before enabling
58+
# See user guide: https://docs.oracle.com/en-us/iaas/Content/Tagging/Tasks/managingtagsandtagnamespaces.htm
59+
# defined_tags = var.java_download_report_defined_tags
4760
}
4861

4962
data "oci_jms_java_downloads_java_download_reports" "test_java_download_reports" {

examples/jms_java_downloads/java_license_acceptance_records/java_license_acceptance_record.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ resource "oci_jms_java_downloads_java_license_acceptance_record" "test_java_lice
3333
compartment_id = var.tenancy_ocid
3434
license_acceptance_status = var.java_license_acceptance_record_status
3535
license_type = var.java_license_acceptance_record_license_type
36+
lifecycle {
37+
ignore_changes = [defined_tags, system_tags]
38+
}
3639
}
3740

3841
data "oci_jms_java_downloads_java_license_acceptance_records" "test_java_license_acceptance_records" {

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.

0 commit comments

Comments
 (0)