Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2663)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 1, 2024
1 parent 0a238f5 commit 6e061ce
Show file tree
Hide file tree
Showing 3 changed files with 271 additions and 1 deletion.
15 changes: 15 additions & 0 deletions api-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -3291,6 +3291,21 @@
"documentationLink": "https://cloud.google.com/firestore",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "fitness:v1",
"name": "fitness",
"version": "v1",
"title": "Fitness API",
"description": "The Fitness API for managing users' fitness tracking data.",
"discoveryRestUrl": "https://fitness.googleapis.com/$discovery/rest?version=v1",
"icons": {
"x16": "https://www.gstatic.com/images/branding/product/1x/googleg_16dp.png",
"x32": "https://www.gstatic.com/images/branding/product/1x/googleg_32dp.png"
},
"documentationLink": "https://developers.google.com/fit/rest/v1/get-started",
"preferred": true
},
{
"kind": "discovery#directoryItem",
"id": "forms:v1",
Expand Down
67 changes: 66 additions & 1 deletion gkehub/v1/gkehub-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1143,6 +1143,46 @@
]
}
}
},
"rbacrolebindings": {
"methods": {
"list": {
"description": "Lists all Membership RBACRoleBindings.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/memberships/{membershipsId}/rbacrolebindings",
"httpMethod": "GET",
"id": "gkehub.projects.locations.memberships.rbacrolebindings.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "Optional. When requesting a 'page' of resources, `page_size` specifies number of resources to return. If unspecified or set to 0, all resources will be returned.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. Token returned by previous call to `ListMembershipRBACRoleBindings` which specifies the position in the list from where to continue listing the resources.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The parent (project and location) where the Features will be listed. Specified in the format `projects/*/locations/*/memberships/*`.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/memberships/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/rbacrolebindings",
"response": {
"$ref": "ListMembershipRBACRoleBindingsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
}
},
Expand Down Expand Up @@ -1911,7 +1951,7 @@
}
}
},
"revision": "20240511",
"revision": "20240623",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"AppDevExperienceFeatureSpec": {
Expand Down Expand Up @@ -4336,6 +4376,31 @@
},
"type": "object"
},
"ListMembershipRBACRoleBindingsResponse": {
"description": "List of Membership RBACRoleBindings.",
"id": "ListMembershipRBACRoleBindingsResponse",
"properties": {
"nextPageToken": {
"description": "A token to request the next page of resources from the `ListMembershipRBACRoleBindings` method. The value of an empty string means that there are no more resources to return.",
"type": "string"
},
"rbacrolebindings": {
"description": "The list of Membership RBACRoleBindings.",
"items": {
"$ref": "RBACRoleBinding"
},
"type": "array"
},
"unreachable": {
"description": "List of locations that could not be reached while fetching this list.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ListMembershipsResponse": {
"description": "Response message for the `GkeHub.ListMemberships` method.",
"id": "ListMembershipsResponse",
Expand Down
190 changes: 190 additions & 0 deletions gkehub/v1/gkehub-gen.go

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

0 comments on commit 6e061ce

Please sign in to comment.