Skip to content

Commit 8207223

Browse files
yoshi-automationsofisl
authored andcommitted
feat(memcache): update the API
#### memcache:v1beta2 The following keys were added: - schemas.Instance.properties.satisfiesPzi.description - schemas.Instance.properties.satisfiesPzi.readOnly - schemas.Instance.properties.satisfiesPzi.type - schemas.Instance.properties.satisfiesPzs.description - schemas.Instance.properties.satisfiesPzs.readOnly - schemas.Instance.properties.satisfiesPzs.type #### memcache:v1 The following keys were added: - schemas.Instance.properties.satisfiesPzi.description - schemas.Instance.properties.satisfiesPzi.readOnly - schemas.Instance.properties.satisfiesPzi.type - schemas.Instance.properties.satisfiesPzs.description - schemas.Instance.properties.satisfiesPzs.readOnly - schemas.Instance.properties.satisfiesPzs.type
1 parent 19d2205 commit 8207223

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

discovery/memcache-v1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@
584584
}
585585
}
586586
},
587-
"revision": "20240307",
587+
"revision": "20240614",
588588
"rootUrl": "https://memcache.googleapis.com/",
589589
"schemas": {
590590
"ApplyParametersRequest": {
@@ -1161,6 +1161,16 @@
11611161
},
11621162
"type": "array"
11631163
},
1164+
"satisfiesPzi": {
1165+
"description": "Optional. Output only. Reserved for future use.",
1166+
"readOnly": true,
1167+
"type": "boolean"
1168+
},
1169+
"satisfiesPzs": {
1170+
"description": "Optional. Output only. Reserved for future use.",
1171+
"readOnly": true,
1172+
"type": "boolean"
1173+
},
11641174
"state": {
11651175
"description": "Output only. The state of this Memcached instance.",
11661176
"enum": [

discovery/memcache-v1beta2.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
}
613613
}
614614
},
615-
"revision": "20240307",
615+
"revision": "20240614",
616616
"rootUrl": "https://memcache.googleapis.com/",
617617
"schemas": {
618618
"ApplyParametersRequest": {
@@ -1207,6 +1207,16 @@
12071207
},
12081208
"type": "array"
12091209
},
1210+
"satisfiesPzi": {
1211+
"description": "Optional. Output only. Reserved for future use.",
1212+
"readOnly": true,
1213+
"type": "boolean"
1214+
},
1215+
"satisfiesPzs": {
1216+
"description": "Optional. Output only. Reserved for future use.",
1217+
"readOnly": true,
1218+
"type": "boolean"
1219+
},
12101220
"state": {
12111221
"description": "Output only. The state of this Memcached instance.",
12121222
"enum": [

src/apis/memcache/v1.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,14 @@ export namespace memcache_v1 {
540540
* Optional. Contains the id of allocated IP address ranges associated with the private service access connection for example, "test-default" associated with IP range 10.0.0.0/29.
541541
*/
542542
reservedIpRangeId?: string[] | null;
543+
/**
544+
* Optional. Output only. Reserved for future use.
545+
*/
546+
satisfiesPzi?: boolean | null;
547+
/**
548+
* Optional. Output only. Reserved for future use.
549+
*/
550+
satisfiesPzs?: boolean | null;
543551
/**
544552
* Output only. The state of this Memcached instance.
545553
*/

src/apis/memcache/v1beta2.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,14 @@ export namespace memcache_v1beta2 {
553553
* Optional. Contains the id of allocated IP address ranges associated with the private service access connection for example, "test-default" associated with IP range 10.0.0.0/29.
554554
*/
555555
reservedIpRangeId?: string[] | null;
556+
/**
557+
* Optional. Output only. Reserved for future use.
558+
*/
559+
satisfiesPzi?: boolean | null;
560+
/**
561+
* Optional. Output only. Reserved for future use.
562+
*/
563+
satisfiesPzs?: boolean | null;
556564
/**
557565
* Output only. The state of this Memcached instance.
558566
*/

0 commit comments

Comments
 (0)