Skip to content

Commit b2bb626

Browse files
yoshi-automationsofisl
authored andcommitted
fix(artifactregistry): update the API
#### artifactregistry:v1beta1 The following keys were changed: - schemas.Repository.properties.satisfiesPzi.description - schemas.Repository.properties.satisfiesPzs.description #### artifactregistry:v1beta2 The following keys were changed: - schemas.Repository.properties.satisfiesPzi.description - schemas.Repository.properties.satisfiesPzs.description #### artifactregistry:v1 The following keys were changed: - schemas.Repository.properties.satisfiesPzi.description - schemas.Repository.properties.satisfiesPzs.description - schemas.UploadGenericArtifactRequest.properties.versionId.description
1 parent e6ea50e commit b2bb626

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

‎discovery/artifactregistry-v1.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2455,7 +2455,7 @@
24552455
}
24562456
}
24572457
},
2458-
"revision": "20250423",
2458+
"revision": "20250425",
24592459
"rootUrl": "https://artifactregistry.googleapis.com/",
24602460
"schemas": {
24612461
"AptArtifact": {
@@ -4171,12 +4171,12 @@
41714171
"description": "Configuration specific for a Remote Repository."
41724172
},
41734173
"satisfiesPzi": {
4174-
"description": "Output only. If set, the repository satisfies physical zone isolation.",
4174+
"description": "Output only. Whether or not this repository satisfies PZI.",
41754175
"readOnly": true,
41764176
"type": "boolean"
41774177
},
41784178
"satisfiesPzs": {
4179-
"description": "Output only. If set, the repository satisfies physical zone separation.",
4179+
"description": "Output only. Whether or not this repository satisfies PZS.",
41804180
"readOnly": true,
41814181
"type": "boolean"
41824182
},
@@ -4373,7 +4373,7 @@
43734373
"type": "string"
43744374
},
43754375
"versionId": {
4376-
"description": "The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.",
4376+
"description": "The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.",
43774377
"type": "string"
43784378
}
43794379
},

‎discovery/artifactregistry-v1beta1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@
11721172
}
11731173
}
11741174
},
1175-
"revision": "20250423",
1175+
"revision": "20250425",
11761176
"rootUrl": "https://artifactregistry.googleapis.com/",
11771177
"schemas": {
11781178
"Binding": {
@@ -1571,12 +1571,12 @@
15711571
"type": "string"
15721572
},
15731573
"satisfiesPzi": {
1574-
"description": "Output only. If set, the repository satisfies physical zone isolation.",
1574+
"description": "Output only. Whether or not this repository satisfies PZI.",
15751575
"readOnly": true,
15761576
"type": "boolean"
15771577
},
15781578
"satisfiesPzs": {
1579-
"description": "Output only. If set, the repository satisfies physical zone separation.",
1579+
"description": "Output only. Whether or not this repository satisfies PZS.",
15801580
"readOnly": true,
15811581
"type": "boolean"
15821582
},

‎discovery/artifactregistry-v1beta2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,7 +1440,7 @@
14401440
}
14411441
}
14421442
},
1443-
"revision": "20250415",
1443+
"revision": "20250425",
14441444
"rootUrl": "https://artifactregistry.googleapis.com/",
14451445
"schemas": {
14461446
"AptArtifact": {
@@ -2121,12 +2121,12 @@
21212121
"type": "string"
21222122
},
21232123
"satisfiesPzi": {
2124-
"description": "Output only. If set, the repository satisfies physical zone isolation.",
2124+
"description": "Output only. Whether or not this repository satisfies PZI.",
21252125
"readOnly": true,
21262126
"type": "boolean"
21272127
},
21282128
"satisfiesPzs": {
2129-
"description": "Output only. If set, the repository satisfies physical zone separation.",
2129+
"description": "Output only. Whether or not this repository satisfies PZS.",
21302130
"readOnly": true,
21312131
"type": "boolean"
21322132
},

‎src/apis/artifactregistry/v1.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1304,11 +1304,11 @@ export namespace artifactregistry_v1 {
13041304
*/
13051305
remoteRepositoryConfig?: Schema$RemoteRepositoryConfig;
13061306
/**
1307-
* Output only. If set, the repository satisfies physical zone isolation.
1307+
* Output only. Whether or not this repository satisfies PZI.
13081308
*/
13091309
satisfiesPzi?: boolean | null;
13101310
/**
1311-
* Output only. If set, the repository satisfies physical zone separation.
1311+
* Output only. Whether or not this repository satisfies PZS.
13121312
*/
13131313
satisfiesPzs?: boolean | null;
13141314
/**
@@ -1455,7 +1455,7 @@ export namespace artifactregistry_v1 {
14551455
*/
14561456
packageId?: string | null;
14571457
/**
1458-
* The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, hyphens and periods, i.e. [a-z0-9-.] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.
1458+
* The ID of the version of the generic artifact. If the version does not exist, a new version will be created. The version_id must start and end with a letter or number, can only contain lowercase letters, numbers, the following characters [-.+~:], i.e.[a-z0-9-.+~:] and cannot exceed a total of 128 characters. Creating a version called `latest` is not allowed.
14591459
*/
14601460
versionId?: string | null;
14611461
}

‎src/apis/artifactregistry/v1beta1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,11 +403,11 @@ export namespace artifactregistry_v1beta1 {
403403
*/
404404
name?: string | null;
405405
/**
406-
* Output only. If set, the repository satisfies physical zone isolation.
406+
* Output only. Whether or not this repository satisfies PZI.
407407
*/
408408
satisfiesPzi?: boolean | null;
409409
/**
410-
* Output only. If set, the repository satisfies physical zone separation.
410+
* Output only. Whether or not this repository satisfies PZS.
411411
*/
412412
satisfiesPzs?: boolean | null;
413413
/**

0 commit comments

Comments
 (0)