Skip to content

Commit 985a0b9

Browse files
Google APIscopybara-github
authored andcommitted
docs: the network and cidr fields of AutonomousDatabase are now marked optional
PiperOrigin-RevId: 738616518
1 parent 1bd3840 commit 985a0b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

google/cloud/oracledatabase/v1/autonomous_database.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,15 +195,15 @@ message AutonomousDatabase {
195195
// Optional. The labels or tags associated with the Autonomous Database.
196196
map<string, string> labels = 8 [(google.api.field_behavior) = OPTIONAL];
197197

198-
// Required. The name of the VPC network used by the Autonomous Database in
198+
// Optional. The name of the VPC network used by the Autonomous Database in
199199
// the following format: projects/{project}/global/networks/{network}
200200
string network = 9 [
201-
(google.api.field_behavior) = REQUIRED,
201+
(google.api.field_behavior) = OPTIONAL,
202202
(google.api.resource_reference) = { type: "compute.googleapis.com/Network" }
203203
];
204204

205-
// Required. The subnet CIDR range for the Autonmous Database.
206-
string cidr = 10 [(google.api.field_behavior) = REQUIRED];
205+
// Optional. The subnet CIDR range for the Autonmous Database.
206+
string cidr = 10 [(google.api.field_behavior) = OPTIONAL];
207207

208208
// Output only. The date and time that the Autonomous Database was created.
209209
google.protobuf.Timestamp create_time = 13

0 commit comments

Comments
 (0)