Skip to content

Commit cd205d9

Browse files
fix(oracledatabase): update the API
#### oracledatabase:v1 The following keys were changed: - schemas.AutonomousDatabase.properties.cidr.description - schemas.AutonomousDatabase.properties.network.description - schemas.Entitlement.properties.state.enum - schemas.Entitlement.properties.state.enumDescriptions
1 parent b797305 commit cd205d9

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

discovery/oracledatabase-v1.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@
11191119
}
11201120
}
11211121
},
1122-
"revision": "20241210",
1122+
"revision": "20250223",
11231123
"rootUrl": "https://oracledatabase.googleapis.com/",
11241124
"schemas": {
11251125
"AllConnectionStrings": {
@@ -1153,7 +1153,7 @@
11531153
"type": "string"
11541154
},
11551155
"cidr": {
1156-
"description": "Required. The subnet CIDR range for the Autonmous Database.",
1156+
"description": "Optional. The subnet CIDR range for the Autonmous Database.",
11571157
"type": "string"
11581158
},
11591159
"createTime": {
@@ -1187,7 +1187,7 @@
11871187
"type": "string"
11881188
},
11891189
"network": {
1190-
"description": "Required. The name of the VPC network used by the Autonomous Database in the following format: projects/{project}/global/networks/{network}",
1190+
"description": "Optional. The name of the VPC network used by the Autonomous Database in the following format: projects/{project}/global/networks/{network}",
11911191
"type": "string"
11921192
},
11931193
"properties": {
@@ -3068,14 +3068,16 @@
30683068
"ACCOUNT_NOT_LINKED",
30693069
"ACCOUNT_NOT_ACTIVE",
30703070
"ACTIVE",
3071-
"ACCOUNT_SUSPENDED"
3071+
"ACCOUNT_SUSPENDED",
3072+
"NOT_APPROVED_IN_PRIVATE_MARKETPLACE"
30723073
],
30733074
"enumDescriptions": [
30743075
"Default unspecified value.",
30753076
"Account not linked.",
30763077
"Account is linked but not active.",
30773078
"Entitlement and Account are active.",
3078-
"Account is suspended."
3079+
"Account is suspended.",
3080+
"Entitlement is not approved in private marketplace."
30793081
],
30803082
"readOnly": true,
30813083
"type": "string"

src/apis/oracledatabase/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export namespace oracledatabase_v1 {
150150
*/
151151
adminPassword?: string | null;
152152
/**
153-
* Required. The subnet CIDR range for the Autonmous Database.
153+
* Optional. The subnet CIDR range for the Autonmous Database.
154154
*/
155155
cidr?: string | null;
156156
/**
@@ -178,7 +178,7 @@ export namespace oracledatabase_v1 {
178178
*/
179179
name?: string | null;
180180
/**
181-
* Required. The name of the VPC network used by the Autonomous Database in the following format: projects/{project\}/global/networks/{network\}
181+
* Optional. The name of the VPC network used by the Autonomous Database in the following format: projects/{project\}/global/networks/{network\}
182182
*/
183183
network?: string | null;
184184
/**

0 commit comments

Comments
 (0)