Skip to content

Commit 682fce6

Browse files
yoshi-automationmiguelvelezsa
authored andcommitted
feat(cloudidentity): update the API
#### cloudidentity:v1beta1 The following keys were added: - resources.policies.methods.create.description - resources.policies.methods.create.flatPath - resources.policies.methods.create.httpMethod - resources.policies.methods.create.id - resources.policies.methods.create.parameterOrder - resources.policies.methods.create.path - resources.policies.methods.create.request.$ref - resources.policies.methods.create.response.$ref - resources.policies.methods.create.scopes - resources.policies.methods.delete.description - resources.policies.methods.delete.flatPath - resources.policies.methods.delete.httpMethod - resources.policies.methods.delete.id - resources.policies.methods.delete.parameterOrder - resources.policies.methods.delete.parameters.name.description - resources.policies.methods.delete.parameters.name.location - resources.policies.methods.delete.parameters.name.pattern - resources.policies.methods.delete.parameters.name.required - resources.policies.methods.delete.parameters.name.type - resources.policies.methods.delete.path - resources.policies.methods.delete.response.$ref - resources.policies.methods.delete.scopes - resources.policies.methods.patch.description - resources.policies.methods.patch.flatPath - resources.policies.methods.patch.httpMethod - resources.policies.methods.patch.id - resources.policies.methods.patch.parameterOrder - resources.policies.methods.patch.parameters.name.description - resources.policies.methods.patch.parameters.name.location - resources.policies.methods.patch.parameters.name.pattern - resources.policies.methods.patch.parameters.name.required - resources.policies.methods.patch.parameters.name.type - resources.policies.methods.patch.path - resources.policies.methods.patch.request.$ref - resources.policies.methods.patch.response.$ref - resources.policies.methods.patch.scopes The following keys were changed: - resources.policies.methods.get.description - resources.policies.methods.list.description #### cloudidentity:v1 The following keys were changed: - resources.policies.methods.get.description - resources.policies.methods.list.description
1 parent aadb45b commit 682fce6

File tree

4 files changed

+539
-10
lines changed

4 files changed

+539
-10
lines changed

discovery/cloudidentity-v1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2179,7 +2179,7 @@
21792179
"policies": {
21802180
"methods": {
21812181
"get": {
2182-
"description": "Get a Policy",
2182+
"description": "Get a policy.",
21832183
"flatPath": "v1/policies/{policiesId}",
21842184
"httpMethod": "GET",
21852185
"id": "cloudidentity.policies.get",
@@ -2205,7 +2205,7 @@
22052205
]
22062206
},
22072207
"list": {
2208-
"description": "List Policies",
2208+
"description": "List policies.",
22092209
"flatPath": "v1/policies",
22102210
"httpMethod": "GET",
22112211
"id": "cloudidentity.policies.list",
@@ -2240,7 +2240,7 @@
22402240
}
22412241
}
22422242
},
2243-
"revision": "20250923",
2243+
"revision": "20251021",
22442244
"rootUrl": "https://cloudidentity.googleapis.com/",
22452245
"schemas": {
22462246
"AddIdpCredentialOperationMetadata": {

discovery/cloudidentity-v1beta1.json

Lines changed: 74 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,8 +2216,51 @@
22162216
},
22172217
"policies": {
22182218
"methods": {
2219+
"create": {
2220+
"description": "Create a policy.",
2221+
"flatPath": "v1beta1/policies",
2222+
"httpMethod": "POST",
2223+
"id": "cloudidentity.policies.create",
2224+
"parameterOrder": [],
2225+
"parameters": {},
2226+
"path": "v1beta1/policies",
2227+
"request": {
2228+
"$ref": "Policy"
2229+
},
2230+
"response": {
2231+
"$ref": "Operation"
2232+
},
2233+
"scopes": [
2234+
"https://www.googleapis.com/auth/cloud-identity.policies"
2235+
]
2236+
},
2237+
"delete": {
2238+
"description": "Delete a policy.",
2239+
"flatPath": "v1beta1/policies/{policiesId}",
2240+
"httpMethod": "DELETE",
2241+
"id": "cloudidentity.policies.delete",
2242+
"parameterOrder": [
2243+
"name"
2244+
],
2245+
"parameters": {
2246+
"name": {
2247+
"description": "Required. The name of the policy to retrieve. Format: \"policies/{policy}\".",
2248+
"location": "path",
2249+
"pattern": "^policies/[^/]+$",
2250+
"required": true,
2251+
"type": "string"
2252+
}
2253+
},
2254+
"path": "v1beta1/{+name}",
2255+
"response": {
2256+
"$ref": "Operation"
2257+
},
2258+
"scopes": [
2259+
"https://www.googleapis.com/auth/cloud-identity.policies"
2260+
]
2261+
},
22192262
"get": {
2220-
"description": "Get a Policy",
2263+
"description": "Get a policy.",
22212264
"flatPath": "v1beta1/policies/{policiesId}",
22222265
"httpMethod": "GET",
22232266
"id": "cloudidentity.policies.get",
@@ -2243,7 +2286,7 @@
22432286
]
22442287
},
22452288
"list": {
2246-
"description": "List Policies",
2289+
"description": "List policies.",
22472290
"flatPath": "v1beta1/policies",
22482291
"httpMethod": "GET",
22492292
"id": "cloudidentity.policies.list",
@@ -2274,11 +2317,39 @@
22742317
"https://www.googleapis.com/auth/cloud-identity.policies",
22752318
"https://www.googleapis.com/auth/cloud-identity.policies.readonly"
22762319
]
2320+
},
2321+
"patch": {
2322+
"description": "Update a policy.",
2323+
"flatPath": "v1beta1/policies/{policiesId}",
2324+
"httpMethod": "PATCH",
2325+
"id": "cloudidentity.policies.patch",
2326+
"parameterOrder": [
2327+
"name"
2328+
],
2329+
"parameters": {
2330+
"name": {
2331+
"description": "Output only. Identifier. The [resource name](https://cloud.google.com/apis/design/resource_names) of the Policy. Format: policies/{policy}.",
2332+
"location": "path",
2333+
"pattern": "^policies/[^/]+$",
2334+
"required": true,
2335+
"type": "string"
2336+
}
2337+
},
2338+
"path": "v1beta1/{+name}",
2339+
"request": {
2340+
"$ref": "Policy"
2341+
},
2342+
"response": {
2343+
"$ref": "Operation"
2344+
},
2345+
"scopes": [
2346+
"https://www.googleapis.com/auth/cloud-identity.policies"
2347+
]
22772348
}
22782349
}
22792350
}
22802351
},
2281-
"revision": "20250916",
2352+
"revision": "20251027",
22822353
"rootUrl": "https://cloudidentity.googleapis.com/",
22832354
"schemas": {
22842355
"AddIdpCredentialOperationMetadata": {

src/apis/cloudidentity/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11974,7 +11974,7 @@ export namespace cloudidentity_v1 {
1197411974
}
1197511975

1197611976
/**
11977-
* Get a Policy
11977+
* Get a policy.
1197811978
* @example
1197911979
* ```js
1198011980
* // Before running the sample:
@@ -12115,7 +12115,7 @@ export namespace cloudidentity_v1 {
1211512115
}
1211612116

1211712117
/**
12118-
* List Policies
12118+
* List policies.
1211912119
* @example
1212012120
* ```js
1212112121
* // Before running the sample:

0 commit comments

Comments
 (0)