Skip to content

Commit

Permalink
fix(accesscontextmanager): update the API
Browse files Browse the repository at this point in the history
#### accesscontextmanager:v1

The following keys were changed:
- schemas.MethodSelector.properties.method.description
- schemas.MethodSelector.properties.permission.description
- schemas.SupportedService.description
- schemas.SupportedService.properties.knownLimitations.description
- schemas.SupportedService.properties.supportedMethods.description
- schemas.SupportedService.properties.title.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jan 5, 2024
1 parent 65da0ec commit 845c716
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions discovery/accesscontextmanager-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@
}
}
},
"revision": "20231218",
"revision": "20240102",
"rootUrl": "https://accesscontextmanager.googleapis.com/",
"schemas": {
"AccessContextManagerOperationMetadata": {
Expand Down Expand Up @@ -2095,11 +2095,11 @@
"id": "MethodSelector",
"properties": {
"method": {
"description": "Value for `method` should be a valid method name for the corresponding `service_name` in ApiOperation. If `*` used as value for `method`, then ALL methods and permissions are allowed.",
"description": "A valid method name for the corresponding `service_name` in ApiOperation. If `*` is used as the value for the `method`, then ALL methods and permissions are allowed.",
"type": "string"
},
"permission": {
"description": "Value for `permission` should be a valid Cloud IAM permission for the corresponding `service_name` in ApiOperation.",
"description": "A valid Cloud IAM permission for the corresponding `service_name` in ApiOperation.",
"type": "string"
}
},
Expand Down Expand Up @@ -2405,15 +2405,15 @@
"type": "object"
},
"SupportedService": {
"description": "`SupportedService` specifies VPC-SC supported service and its properties.",
"description": "`SupportedService` specifies the VPC Service Controls and its properties.",
"id": "SupportedService",
"properties": {
"availableOnRestrictedVip": {
"description": "True if the service is available on the restricted VIP. Services on the restricted VIP typically either support VPC Service Controls or are core infrastructure services required for the functioning of Google Cloud.",
"type": "boolean"
},
"knownLimitations": {
"description": "True if the service is supported with some limitations. Check documentation for details.",
"description": "True if the service is supported with some limitations. Check [documentation](https://cloud.google.com/vpc-service-controls/docs/supported-products) for details.",
"type": "boolean"
},
"name": {
Expand Down Expand Up @@ -2445,14 +2445,14 @@
"type": "string"
},
"supportedMethods": {
"description": "The list of the supported methods. Field exist only in response on [GetSupportedService]",
"description": "The list of the supported methods. This field exists only in response to GetSupportedService",
"items": {
"$ref": "MethodSelector"
},
"type": "array"
},
"title": {
"description": "The name of the supported product, such as 'Cloud Product API'",
"description": "The name of the supported product, such as 'Cloud Product API'.",
"type": "string"
}
},
Expand Down
12 changes: 6 additions & 6 deletions src/apis/accesscontextmanager/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -651,11 +651,11 @@ export namespace accesscontextmanager_v1 {
*/
export interface Schema$MethodSelector {
/**
* Value for `method` should be a valid method name for the corresponding `service_name` in ApiOperation. If `*` used as value for `method`, then ALL methods and permissions are allowed.
* A valid method name for the corresponding `service_name` in ApiOperation. If `*` is used as the value for the `method`, then ALL methods and permissions are allowed.
*/
method?: string | null;
/**
* Value for `permission` should be a valid Cloud IAM permission for the corresponding `service_name` in ApiOperation.
* A valid Cloud IAM permission for the corresponding `service_name` in ApiOperation.
*/
permission?: string | null;
}
Expand Down Expand Up @@ -859,31 +859,31 @@ export namespace accesscontextmanager_v1 {
message?: string | null;
}
/**
* `SupportedService` specifies VPC-SC supported service and its properties.
* `SupportedService` specifies the VPC Service Controls and its properties.
*/
export interface Schema$SupportedService {
/**
* True if the service is available on the restricted VIP. Services on the restricted VIP typically either support VPC Service Controls or are core infrastructure services required for the functioning of Google Cloud.
*/
availableOnRestrictedVip?: boolean | null;
/**
* True if the service is supported with some limitations. Check documentation for details.
* True if the service is supported with some limitations. Check [documentation](https://cloud.google.com/vpc-service-controls/docs/supported-products) for details.
*/
knownLimitations?: boolean | null;
/**
* The service name or address of the supported service, such as `service.googleapis.com`.
*/
name?: string | null;
/**
* The list of the supported methods. Field exist only in response on [GetSupportedService]
* The list of the supported methods. This field exists only in response to GetSupportedService
*/
supportedMethods?: Schema$MethodSelector[];
/**
* The support stage of the service.
*/
supportStage?: string | null;
/**
* The name of the supported product, such as 'Cloud Product API'
* The name of the supported product, such as 'Cloud Product API'.
*/
title?: string | null;
}
Expand Down

0 comments on commit 845c716

Please sign in to comment.