Skip to content

Commit

Permalink
feat(contactcenteraiplatform): update the API
Browse files Browse the repository at this point in the history
#### contactcenteraiplatform:v1alpha1

The following keys were added:
- schemas.ContactCenter.properties.privateComponents.description
- schemas.ContactCenter.properties.privateComponents.items.type
- schemas.ContactCenter.properties.privateComponents.readOnly
- schemas.ContactCenter.properties.privateComponents.type

The following keys were changed:
- schemas.ContactCenter.description
  • Loading branch information
yoshi-automation authored and bcoe committed Feb 2, 2024
1 parent 102625b commit 076984f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 10 additions & 2 deletions discovery/contactcenteraiplatform-v1alpha1.json
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
}
}
},
"revision": "20230913",
"revision": "20240124",
"rootUrl": "https://contactcenteraiplatform.googleapis.com/",
"schemas": {
"AdminUser": {
Expand All @@ -537,7 +537,7 @@
"type": "object"
},
"ContactCenter": {
"description": "Message describing ContactCenter object Next ID: 16",
"description": "Message describing ContactCenter object Next ID: 18",
"id": "ContactCenter",
"properties": {
"adminUser": {
Expand Down Expand Up @@ -581,6 +581,14 @@
"description": "name of resource",
"type": "string"
},
"privateComponents": {
"description": "Output only. A list of UJET components that should be privately accessed. This field is set by reading settings from the data plane. For more information about the format of the component please refer to go/ccaip-vpc-sc-org-policy. This field is must be fully populated only for Create/Update resource operations. The main use case for this field is OrgPolicy checks via CPE.",
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"samlParams": {
"$ref": "SAMLParams",
"description": "Optional. Params that sets up Google as IdP."
Expand Down
6 changes: 5 additions & 1 deletion src/apis/contactcenteraiplatform/v1alpha1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export namespace contactcenteraiplatform_v1alpha1 {
*/
export interface Schema$CancelOperationRequest {}
/**
* Message describing ContactCenter object Next ID: 16
* Message describing ContactCenter object Next ID: 18
*/
export interface Schema$ContactCenter {
/**
Expand Down Expand Up @@ -181,6 +181,10 @@ export namespace contactcenteraiplatform_v1alpha1 {
* name of resource
*/
name?: string | null;
/**
* Output only. A list of UJET components that should be privately accessed. This field is set by reading settings from the data plane. For more information about the format of the component please refer to go/ccaip-vpc-sc-org-policy. This field is must be fully populated only for Create/Update resource operations. The main use case for this field is OrgPolicy checks via CPE.
*/
privateComponents?: string[] | null;
/**
* Optional. Params that sets up Google as IdP.
*/
Expand Down

0 comments on commit 076984f

Please sign in to comment.