Skip to content

Commit

Permalink
feat(gkehub): update the api
Browse files Browse the repository at this point in the history
#### gkehub:v1alpha

The following keys were added:
- resources.projects.resources.locations.resources.scopes.methods.listMemberships (Total Keys: 18)
- schemas.ListBoundMembershipsResponse (Total Keys: 7)
  • Loading branch information
yoshi-automation committed Mar 5, 2024
1 parent 43b4c8c commit cc201c1
Show file tree
Hide file tree
Showing 7 changed files with 199 additions and 6 deletions.
127 changes: 127 additions & 0 deletions docs/dyn/gkehub_v1alpha.projects.locations.scopes.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion googleapiclient/discovery_cache/documents/gkehub.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"AppDevExperienceFeatureSpec": {
Expand Down
68 changes: 67 additions & 1 deletion googleapiclient/discovery_cache/documents/gkehub.v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -1685,6 +1685,47 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"listMemberships": {
"description": "Lists Memberships bound to a Scope. The response includes relevant Memberships from all regions.",
"flatPath": "v1alpha/projects/{projectsId}/locations/{locationsId}/scopes/{scopesId}:listMemberships",
"httpMethod": "GET",
"id": "gkehub.projects.locations.scopes.listMemberships",
"parameterOrder": [
"scopeName"
],
"parameters": {
"filter": {
"description": "Optional. Lists Memberships that match the filter expression, following the syntax outlined in https://google.aip.dev/160. Currently, filtering can be done only based on Memberships's `name`, `labels`, `create_time`, `update_time`, and `unique_id`.",
"location": "query",
"type": "string"
},
"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. Pagination is currently not supported; therefore, setting this field does not have any impact for now.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. Token returned by previous call to `ListBoundMemberships` which specifies the position in the list from where to continue listing the resources.",
"location": "query",
"type": "string"
},
"scopeName": {
"description": "Required. Name of the Scope, in the format `projects/*/locations/global/scopes/*`, to which the Memberships are bound.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/scopes/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+scopeName}:listMemberships",
"response": {
"$ref": "ListBoundMembershipsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"listPermitted": {
"description": "Lists permitted Scopes.",
"flatPath": "v1alpha/projects/{projectsId}/locations/{locationsId}/scopes:listPermitted",
Expand Down Expand Up @@ -2134,7 +2175,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"AnthosObservabilityFeatureSpec": {
Expand Down Expand Up @@ -4536,6 +4577,31 @@
},
"type": "object"
},
"ListBoundMembershipsResponse": {
"description": "List of Memberships bound to a Scope.",
"id": "ListBoundMembershipsResponse",
"properties": {
"memberships": {
"description": "The list of Memberships bound to the given Scope.",
"items": {
"$ref": "Membership"
},
"type": "array"
},
"nextPageToken": {
"description": "A token to request the next page of resources from the `ListBoundMemberships` method. The value of an empty string means that there are no more resources to return.",
"type": "string"
},
"unreachable": {
"description": "List of locations that could not be reached while fetching this list.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"ListFeaturesResponse": {
"description": "Response message for the `GkeHub.ListFeatures` method.",
"id": "ListFeaturesResponse",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"ApplianceCluster": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2024,7 +2024,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"AnthosObservabilityFeatureSpec": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"ApplianceCluster": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@
}
}
},
"revision": "20240216",
"revision": "20240225",
"rootUrl": "https://gkehub.googleapis.com/",
"schemas": {
"CancelOperationRequest": {
Expand Down

0 comments on commit cc201c1

Please sign in to comment.