Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2663

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.