Skip to content

Commit

Permalink
fix(cloudidentity): update the API
Browse files Browse the repository at this point in the history
#### cloudidentity:v1beta1
The following keys were changed:
- resources.devices.resources.deviceUsers.resources.clientStates.methods.get.parameters.name.description

#### cloudidentity:v1
The following keys were changed:
- resources.devices.resources.deviceUsers.resources.clientStates.methods.get.parameters.name.description
  • Loading branch information
yoshi-automation authored and sofisl committed Nov 11, 2020
1 parent 34ee744 commit 6130577
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions discovery/cloudidentity-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@
"type": "string"
},
"name": {
"description": "Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id}/deviceUsers/{device_user_id}/clientStates/{partner_id}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.",
"description": "Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id}/deviceUsers/{device_user_id}/clientStates/{partner_id}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.",
"location": "path",
"pattern": "^devices/[^/]+/deviceUsers/[^/]+/clientStates/[^/]+$",
"required": true,
Expand Down Expand Up @@ -1128,7 +1128,7 @@
}
}
},
"revision": "20201013",
"revision": "20201107",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"EntityKey": {
Expand Down
4 changes: 2 additions & 2 deletions discovery/cloudidentity-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@
"type": "string"
},
"name": {
"description": "Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id}/deviceUsers/{device_user_id}/clientStates/{partner_id}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.",
"description": "Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id}/deviceUsers/{device_user_id}/clientStates/{partner_id}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.",
"location": "path",
"pattern": "^devices/[^/]+/deviceUsers/[^/]+/clientStates/[^/]+$",
"required": true,
Expand Down Expand Up @@ -1221,7 +1221,7 @@
}
}
},
"revision": "20201103",
"revision": "20201107",
"rootUrl": "https://cloudidentity.googleapis.com/",
"schemas": {
"AndroidAttributes": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/cloudidentity/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3118,7 +3118,7 @@ export namespace cloudidentity_v1 {
* const res = await cloudidentity.devices.deviceUsers.clientStates.get({
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the customer. If you're using this API for your own organization, use `customers/my_customer` If you're using this API to manage another organization, use `customers/{customer_id\}`, where customer_id is the customer to whom the device belongs.
* customer: 'placeholder-value',
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.
* name:
* 'devices/my-device/deviceUsers/my-deviceUser/clientStates/my-clientState',
* });
Expand Down Expand Up @@ -3581,7 +3581,7 @@ export namespace cloudidentity_v1 {
*/
customer?: string;
/**
* Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.
* Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.
*/
name?: string;
}
Expand Down
4 changes: 2 additions & 2 deletions src/apis/cloudidentity/v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,7 @@ export namespace cloudidentity_v1beta1 {
* const res = await cloudidentity.devices.deviceUsers.clientStates.get({
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the customer. If you're using this API for your own organization, use `customers/my_customer` If you're using this API to manage another organization, use `customers/{customer_id\}`, where customer_id is the customer to whom the device belongs.
* customer: 'placeholder-value',
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.
* // Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.
* name:
* 'devices/my-device/deviceUsers/my-deviceUser/clientStates/my-clientState',
* });
Expand Down Expand Up @@ -3787,7 +3787,7 @@ export namespace cloudidentity_v1beta1 {
*/
customer?: string;
/**
* Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data.
* Required. [Resource name](https://cloud.google.com/apis/design/resource_names) of the ClientState in format: `devices/{device_id\}/deviceUsers/{device_user_id\}/clientStates/{partner_id\}`, where device_id is the unique ID assigned to the Device, device_user_id is the unique ID assigned to the User and partner_id identifies the partner storing the data. To get the client state for devices belonging to your own organization, the `partnerId` is in the format: `customerId-*anystring*`. Where the `customerId` is your organization's customer ID and `anystring` is any suffix. This suffix is used in setting up Custom Access Levels in Context-Aware Access. You may use `my_customer` instead of the customer ID for devices managed by your own organization.
*/
name?: string;
}
Expand Down

0 comments on commit 6130577

Please sign in to comment.