Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2756)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Aug 27, 2024
1 parent 47629a1 commit e907e01
Show file tree
Hide file tree
Showing 9 changed files with 924 additions and 30 deletions.
36 changes: 34 additions & 2 deletions cloudkms/v1/cloudkms-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,17 @@
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Optional. Optional limit on the number of KeyHandles to include in the response. The service may return fewer than this value. Further KeyHandles can subsequently be obtained by including the ListKeyHandlesResponse.next_page_token in a subsequent request. If unspecified, at most KeyHandles 100 will be returned.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. Optional pagination token, returned earlier via ListKeyHandlesResponse.next_page_token.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Name of the resource project and location from which to list KeyHandles, e.g. `projects/{PROJECT_ID}/locations/{LOCATION}`.",
"location": "path",
Expand Down Expand Up @@ -2101,7 +2112,7 @@
}
}
},
"revision": "20240801",
"revision": "20240808",
"rootUrl": "https://cloudkms.googleapis.com/",
"schemas": {
"AsymmetricDecryptRequest": {
Expand Down Expand Up @@ -2292,6 +2303,23 @@
"name": {
"description": "Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`.",
"type": "string"
},
"state": {
"description": "Output only. The state for the AutokeyConfig.",
"enum": [
"STATE_UNSPECIFIED",
"ACTIVE",
"KEY_PROJECT_DELETED",
"UNINITIALIZED"
],
"enumDescriptions": [
"The state of the AutokeyConfig is unspecified.",
"The AutokeyConfig is currently active.",
"A previously configured key project has been deleted and the current AutokeyConfig is unusable.",
"The AutokeyConfig is not yet initialized or has been reset to its default uninitialized state."
],
"readOnly": true,
"type": "string"
}
},
"type": "object"
Expand Down Expand Up @@ -2943,7 +2971,7 @@
"type": "string"
},
"serviceResolvers": {
"description": "A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.",
"description": "Optional. A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.",
"items": {
"$ref": "ServiceResolver"
},
Expand Down Expand Up @@ -3534,6 +3562,10 @@
"$ref": "KeyHandle"
},
"type": "array"
},
"nextPageToken": {
"description": "A token to retrieve next page of results. Pass this value in ListKeyHandlesRequest.page_token to retrieve the next page of results.",
"type": "string"
}
},
"type": "object"
Expand Down
57 changes: 54 additions & 3 deletions cloudkms/v1/cloudkms-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions go.work.sum
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ cloud.google.com/go/compute v1.27.1 h1:0WbBLIPNANheCRZ4h8QhgzjN53KMutbiVBOLtPiVz
cloud.google.com/go/compute v1.27.2 h1:5cE5hdrwJV/92ravlwIFRGnyH9CpLGhh4N0ZDVTU+BA=
cloud.google.com/go/compute v1.27.4 h1:XM8ulx6crjdl09XBfji7viFgZOEQuIxBwKmjRH9Rtmc=
cloud.google.com/go/compute v1.27.4/go.mod h1:7JZS+h21ERAGHOy5qb7+EPyXlQwzshzrx1x6L9JhTqU=
cloud.google.com/go/compute v1.27.5 h1:iii9Z+FhEeZ5cUkGOEqU+GM7MJSyxMgbE7H7j+JndYY=
cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA=
cloud.google.com/go/contactcenterinsights v1.13.0/go.mod h1:ieq5d5EtHsu8vhe2y3amtZ+BE+AQwX5qAy7cpo0POsI=
cloud.google.com/go/contactcenterinsights v1.13.6/go.mod h1:mL+DbN3pMQGaAbDC4wZhryLciwSwHf5Tfk4Itr72Zyk=
Expand Down
10 changes: 7 additions & 3 deletions pollen/v1/pollen-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
}
}
},
"revision": "20240720",
"revision": "20240825",
"rootUrl": "https://pollen.googleapis.com/",
"schemas": {
"Color": {
Expand Down Expand Up @@ -471,7 +471,9 @@
"HAZEL",
"GRAMINALES",
"RAGWEED",
"MUGWORT"
"MUGWORT",
"JAPANESE_CEDAR",
"JAPANESE_CYPRESS"
],
"enumDescriptions": [
"Unspecified plant code.",
Expand All @@ -489,7 +491,9 @@
"Hazel is classified as a tree pollen type.",
"Graminales is classified as a grass pollen type.",
"Ragweed is classified as a weed pollen type.",
"Mugwort is classified as a weed pollen type."
"Mugwort is classified as a weed pollen type.",
"Japanese cedar is classified as a tree pollen type.",
"Japanese cypress is classified as a tree pollen type."
],
"type": "string"
},
Expand Down
2 changes: 2 additions & 0 deletions pollen/v1/pollen-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e907e01

Please sign in to comment.