Skip to content

Commit b0ade52

Browse files
author
Monica Joshi
authored
Merge pull request #2075 from oracle/release_gh
Releasing version 5.35.0
2 parents e95fac9 + a78a6dd commit b0ade52

File tree

317 files changed

+27001
-1629
lines changed

Some content is hidden

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

317 files changed

+27001
-1629
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 5.35.0 (March 27, 2024)
2+
3+
### Added
4+
- Support for ADB-S: Refreshable Clones (Phase 2 with Automatic Refresh)
5+
- Support for Devops Deploy Helm Uninstall/Open Cli
6+
- Support for Database Management MySQL Heatwave
7+
- Support for UMA metrics, filter plugin and read_logs_from_head enablement
8+
- Support for NLB Transparent Mode(Non-SNAT Use Case)
9+
- Support for Alarms enhancements
10+
- Support for create_task API for Rest task
11+
112
## 5.34.0 (March 19, 2024)
213

314
### Added
Lines changed: 52 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
11
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
22
// Licensed under the Mozilla Public License v2.0
33

4-
variable "tenancy_ocid" {
5-
}
6-
7-
variable "user_ocid" {
8-
}
9-
10-
variable "fingerprint" {
11-
}
12-
13-
variable "private_key_path" {
14-
}
15-
16-
variable "region" {
17-
}
18-
19-
variable "compartment_id" {
20-
}
21-
224
provider "oci" {
235
region = var.region
246
tenancy_ocid = var.tenancy_ocid
@@ -27,30 +9,17 @@ provider "oci" {
279
private_key_path = var.private_key_path
2810
}
2911

30-
variable "defined_tag_namespace_name" {
31-
default = ""
32-
}
33-
34-
resource "oci_identity_tag_namespace" "tag-namespace1" {
35-
#Required
36-
compartment_id = var.tenancy_ocid
37-
description = "example tag namespace"
38-
name = var.defined_tag_namespace_name != "" ? var.defined_tag_namespace_name : "example-tag-namespace-all"
39-
40-
is_retired = false
41-
}
42-
43-
resource "oci_identity_tag" "tag1" {
12+
data "oci_database_autonomous_db_versions" "test_autonomous_db_versions" {
4413
#Required
45-
description = "example tag"
46-
name = "example-tag"
47-
tag_namespace_id = oci_identity_tag_namespace.tag-namespace1.id
14+
compartment_id = var.compartment_id
4815

49-
is_retired = false
50-
}
16+
#Optional
17+
db_workload = var.autonomous_database_db_workload
5118

52-
data "oci_database_autonomous_db_versions" "test_autonomous_db_versions" {
53-
compartment_id = var.compartment_id
19+
filter {
20+
name = "version"
21+
values = ["19c"]
22+
}
5423
}
5524

5625
data "oci_database_autonomous_db_versions" "test_autonomous_dw_versions" {
@@ -66,66 +35,70 @@ resource "oci_database_autonomous_database" "test_autonomous_database_source" {
6635
db_name = "rcB8w9HgKux1t1"
6736
db_version = "19c"
6837
db_workload = "OLTP"
69-
defined_tags = {
70-
"${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = "value"
71-
}
72-
display_name = "regular_source"
73-
74-
freeform_tags = {
75-
"Department" = "Finance"
76-
}
77-
78-
is_auto_scaling_enabled = "false"
79-
is_dedicated = "false"
80-
is_preview_version_with_service_terms_accepted = "false"
81-
license_model = "LICENSE_INCLUDED"
82-
83-
whitelisted_ips = ["1.1.1.1/28"]
38+
display_name = "regular_source"
39+
is_dedicated = "false"
40+
license_model = "LICENSE_INCLUDED"
8441
}
8542

86-
resource "oci_database_autonomous_database" "test_autonomous_database_refreshable_clone" {
87-
admin_password = ""
43+
resource "oci_database_autonomous_database" "test_autonomous_database_refreshable_clone_manual" {
8844
compartment_id = var.compartment_id
45+
db_name = "bjfjkXw4ZutTt2"
8946
cpu_core_count = "1"
9047
data_storage_size_in_tbs = "1"
91-
db_name = "bjfjkXw4ZutTt2"
92-
db_version = "19c"
93-
db_workload = "OLTP"
94-
defined_tags = {
95-
"${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = "value"
96-
}
97-
display_name = "refreshable_clone"
98-
99-
freeform_tags = {
100-
"Department" = "Finance"
101-
}
102-
103-
is_auto_scaling_enabled = "false"
48+
is_dedicated = "false"
49+
is_refreshable_clone = "true"
50+
license_model = "LICENSE_INCLUDED"
51+
refreshable_mode = "MANUAL"
52+
source = "CLONE_TO_REFRESHABLE"
53+
source_id = oci_database_autonomous_database.test_autonomous_database_source.id
54+
}
55+
56+
resource "oci_database_autonomous_database" "test_autonomous_database_refreshable_clone_automatic" {
57+
compartment_id = var.compartment_id
58+
db_name = "bjfjkXw4ZutTt3"
59+
cpu_core_count = "1"
60+
data_storage_size_in_tbs = "1"
10461
is_dedicated = "false"
105-
is_preview_version_with_service_terms_accepted = "false"
10662
is_refreshable_clone = "true"
10763
license_model = "LICENSE_INCLUDED"
108-
refreshable_mode = "MANUAL"
64+
refreshable_mode = "AUTOMATIC"
65+
auto_refresh_point_lag_in_seconds = "5000"
66+
auto_refresh_frequency_in_seconds = "6000"
67+
time_of_auto_refresh_start = formatdate("YYYY-MM-DD'T'hh:mm:ss'.000'Z", timeadd(timestamp(), "24h"))
10968
source = "CLONE_TO_REFRESHABLE"
11069
source_id = oci_database_autonomous_database.test_autonomous_database_source.id
111-
112-
whitelisted_ips = ["1.1.1.1/28"]
11370
}
11471

115-
data "oci_database_autonomous_database" "oci_database_autonomous_database" {
116-
autonomous_database_id = oci_database_autonomous_database.test_autonomous_database_refreshable_clone.id
72+
data "oci_database_autonomous_database" "oci_database_autonomous_database_manual" {
73+
autonomous_database_id = oci_database_autonomous_database.test_autonomous_database_refreshable_clone_manual.id
11774
}
11875

119-
data "oci_database_autonomous_databases" "oci_database_autonomous_databases" {
76+
data "oci_database_autonomous_databases" "oci_database_autonomous_databases_manual" {
12077
compartment_id = var.compartment_id
12178

12279
filter {
12380
name = "id"
124-
values = [oci_database_autonomous_database.test_autonomous_database_refreshable_clone.id]
81+
values = [oci_database_autonomous_database.test_autonomous_database_refreshable_clone_manual.id]
12582
}
12683
}
12784

128-
output "autonomous_database_refreshable_clone" {
129-
value = data.oci_database_autonomous_databases.oci_database_autonomous_databases.autonomous_databases
85+
output "autonomous_database_refreshable_clone_manual" {
86+
value = data.oci_database_autonomous_databases.oci_database_autonomous_databases_manual.autonomous_databases
87+
}
88+
89+
data "oci_database_autonomous_database" "oci_database_autonomous_database_automatic" {
90+
autonomous_database_id = oci_database_autonomous_database.test_autonomous_database_refreshable_clone_automatic.id
91+
}
92+
93+
data "oci_database_autonomous_databases" "oci_database_autonomous_databases_automatic" {
94+
compartment_id = var.compartment_id
95+
96+
filter {
97+
name = "id"
98+
values = [oci_database_autonomous_database.test_autonomous_database_refreshable_clone_automatic.id]
99+
}
130100
}
131101

102+
output "autonomous_database_refreshable_clone_automatic" {
103+
value = data.oci_database_autonomous_databases.oci_database_autonomous_databases_automatic.autonomous_databases
104+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {
5+
}
6+
7+
variable "user_ocid" {
8+
}
9+
10+
variable "fingerprint" {
11+
}
12+
13+
variable "private_key_path" {
14+
}
15+
16+
variable "region" {
17+
}
18+
19+
variable "compartment_id" {
20+
default = "ocid1.tenancy.oc1..aaaaaaaazxdmffivtoe32kvio5e2dcgz24re5rqbkis3452yi2e7tc3x2erq"
21+
}
22+
23+
variable "autonomous_database_backup_display_name" {
24+
default = "Monthly Backup"
25+
}
26+
27+
variable "autonomous_database_db_workload" {
28+
default = "OLTP"
29+
}
30+
31+
variable "autonomous_data_warehouse_db_workload" {
32+
default = "DW"
33+
}
34+
35+
variable "autonomous_database_defined_tags_value" {
36+
default = "value"
37+
}
38+
39+
variable "autonomous_database_freeform_tags" {
40+
default = {
41+
"Department" = "Finance"
42+
}
43+
}
44+
45+
variable "autonomous_database_license_model" {
46+
default = "LICENSE_INCLUDED"
47+
}
48+
49+
variable "autonomous_database_is_dedicated" {
50+
default = false
51+
}
52+
53+
variable "autonomous_database_autonomous_maintenance_schedule_type" {
54+
default = "EARLY"
55+
}
56+
57+
variable "autonomous_database_character_set" {
58+
default = "AL32UTF8"
59+
}
60+
61+
variable "autonomous_database_ncharacter_set" {
62+
default = "AL16UTF16"
63+
}
64+
65+
variable "autonomous_database_character_set_character_set_type" {
66+
default = "DATABASE"
67+
}
68+
69+
variable "autonomous_database_character_set_is_shared" {
70+
default = true
71+
72+
}
73+
74+
variable "autonomous_database_character_set_is_dedicated" {
75+
default = false
76+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
default = "us-ashburn-1"
6+
}
7+
8+
variable "tenancy_ocid" {
9+
default = ""
10+
}
11+
12+
variable "user_ocid" {
13+
default = ""
14+
}
15+
16+
variable "fingerprint" {
17+
default = ""
18+
}
19+
20+
variable "private_key_path" {
21+
default = ""
22+
}
23+
24+
25+
26+
provider "oci" {
27+
region = var.region
28+
tenancy_ocid = var.tenancy_ocid
29+
user_ocid = var.user_ocid
30+
fingerprint = var.fingerprint
31+
private_key_path = var.private_key_path
32+
}

0 commit comments

Comments
 (0)