Skip to content

Commit 7577db9

Browse files
feat(contactcenteraiplatform): update the API
#### contactcenteraiplatform:v1alpha1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type - schemas.ContactCenter.properties.advancedReportingEnabled.description - schemas.ContactCenter.properties.advancedReportingEnabled.type
1 parent 0fdf1a8 commit 7577db9

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

‎discovery/contactcenteraiplatform-v1alpha1.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -512,7 +518,7 @@
512518
}
513519
}
514520
},
515-
"revision": "20250205",
521+
"revision": "20250414",
516522
"rootUrl": "https://contactcenteraiplatform.googleapis.com/",
517523
"schemas": {
518524
"AdminUser": {
@@ -562,6 +568,10 @@
562568
"$ref": "AdminUser",
563569
"description": "Optional. Info about the first admin user, such as given name and family name."
564570
},
571+
"advancedReportingEnabled": {
572+
"description": "Optional. Whether the advanced reporting feature is enabled.",
573+
"type": "boolean"
574+
},
565575
"ccaipManagedUsers": {
566576
"description": "Optional. Whether to enable users to be created in the CCAIP-instance concurrently to having users in Cloud identity",
567577
"type": "boolean"

‎src/apis/contactcenteraiplatform/v1alpha1.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ export namespace contactcenteraiplatform_v1alpha1 {
162162
* Optional. Info about the first admin user, such as given name and family name.
163163
*/
164164
adminUser?: Schema$AdminUser;
165+
/**
166+
* Optional. Whether the advanced reporting feature is enabled.
167+
*/
168+
advancedReportingEnabled?: boolean | null;
165169
/**
166170
* Optional. Whether to enable users to be created in the CCAIP-instance concurrently to having users in Cloud identity
167171
*/
@@ -909,6 +913,10 @@ export namespace contactcenteraiplatform_v1alpha1 {
909913
}
910914
export interface Params$Resource$Projects$Locations$List
911915
extends StandardParameters {
916+
/**
917+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
918+
*/
919+
extraLocationTypes?: string[];
912920
/**
913921
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
914922
*/

0 commit comments

Comments
 (0)