Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad1dc97

Browse files
committedMay 24, 2023
feat(contactcenteraiplatform): update the api
#### contactcenteraiplatform:v1alpha1 The following keys were added: - schemas.ContactCenterQuota.properties.quotas (Total Keys: 2) - schemas.Quota (Total Keys: 7)
1 parent f37431c commit ad1dc97

File tree

2 files changed

+61
-8
lines changed

2 files changed

+61
-8
lines changed
 

‎docs/dyn/contactcenteraiplatform_v1alpha1.projects.locations.html

+11-4
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ <h3>Method Details</h3>
119119
Returns:
120120
An object of the form:
121121

122-
{ # A resource that represents Google Cloud Platform location.
122+
{ # A resource that represents a Google Cloud location.
123123
&quot;displayName&quot;: &quot;A String&quot;, # The friendly name for this location, typically a nearby city name. For example, &quot;Tokyo&quot;.
124124
&quot;labels&quot;: { # Cross-service attributes for the location. For example {&quot;cloud.googleapis.com/region&quot;: &quot;us-east1&quot;}
125125
&quot;a_key&quot;: &quot;A String&quot;,
@@ -151,7 +151,7 @@ <h3>Method Details</h3>
151151

152152
{ # The response message for Locations.ListLocations.
153153
&quot;locations&quot;: [ # A list of locations that matches the specified filter in the request.
154-
{ # A resource that represents Google Cloud Platform location.
154+
{ # A resource that represents a Google Cloud location.
155155
&quot;displayName&quot;: &quot;A String&quot;, # The friendly name for this location, typically a nearby city name. For example, &quot;Tokyo&quot;.
156156
&quot;labels&quot;: { # Cross-service attributes for the location. For example {&quot;cloud.googleapis.com/region&quot;: &quot;us-east1&quot;}
157157
&quot;a_key&quot;: &quot;A String&quot;,
@@ -196,8 +196,15 @@ <h3>Method Details</h3>
196196
An object of the form:
197197

198198
{ # Represents a quota for contact centers.
199-
&quot;contactCenterCountLimit&quot;: 42, # Reflects the count limit of contact centers on a billing account.
200-
&quot;contactCenterCountSum&quot;: 42, # Reflects the count sum of contact centers on a billing account.
199+
&quot;contactCenterCountLimit&quot;: 42, # Deprecated: Use the Quota fields instead. Reflects the count limit of contact centers on a billing account.
200+
&quot;contactCenterCountSum&quot;: 42, # Deprecated: Use the Quota fields instead. Reflects the count sum of contact centers on a billing account.
201+
&quot;quotas&quot;: [ # Quota details per contact center instance type.
202+
{ # Quota details.
203+
&quot;contactCenterCountLimit&quot;: 42, # Reflects the count limit of contact centers on a billing account.
204+
&quot;contactCenterCountSum&quot;: 42, # Reflects the count sum of contact centers on a billing account.
205+
&quot;contactCenterInstanceSize&quot;: &quot;A String&quot;, # Contact center instance type.
206+
},
207+
],
201208
}</pre>
202209
</div>
203210

‎googleapiclient/discovery_cache/documents/contactcenteraiplatform.v1alpha1.json

+50-4
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@
512512
}
513513
}
514514
},
515-
"revision": "20230329",
515+
"revision": "20230503",
516516
"rootUrl": "https://contactcenteraiplatform.googleapis.com/",
517517
"schemas": {
518518
"AdminUser": {
@@ -627,14 +627,21 @@
627627
"id": "ContactCenterQuota",
628628
"properties": {
629629
"contactCenterCountLimit": {
630-
"description": "Reflects the count limit of contact centers on a billing account.",
630+
"description": "Deprecated: Use the Quota fields instead. Reflects the count limit of contact centers on a billing account.",
631631
"format": "int32",
632632
"type": "integer"
633633
},
634634
"contactCenterCountSum": {
635-
"description": "Reflects the count sum of contact centers on a billing account.",
635+
"description": "Deprecated: Use the Quota fields instead. Reflects the count sum of contact centers on a billing account.",
636636
"format": "int32",
637637
"type": "integer"
638+
},
639+
"quotas": {
640+
"description": "Quota details per contact center instance type.",
641+
"items": {
642+
"$ref": "Quota"
643+
},
644+
"type": "array"
638645
}
639646
},
640647
"type": "object"
@@ -736,7 +743,7 @@
736743
"type": "object"
737744
},
738745
"Location": {
739-
"description": "A resource that represents Google Cloud Platform location.",
746+
"description": "A resource that represents a Google Cloud location.",
740747
"id": "Location",
741748
"properties": {
742749
"displayName": {
@@ -852,6 +859,45 @@
852859
},
853860
"type": "object"
854861
},
862+
"Quota": {
863+
"description": "Quota details.",
864+
"id": "Quota",
865+
"properties": {
866+
"contactCenterCountLimit": {
867+
"description": "Reflects the count limit of contact centers on a billing account.",
868+
"format": "int32",
869+
"type": "integer"
870+
},
871+
"contactCenterCountSum": {
872+
"description": "Reflects the count sum of contact centers on a billing account.",
873+
"format": "int32",
874+
"type": "integer"
875+
},
876+
"contactCenterInstanceSize": {
877+
"description": "Contact center instance type.",
878+
"enum": [
879+
"INSTANCE_SIZE_UNSPECIFIED",
880+
"STANDARD_SMALL",
881+
"STANDARD_MEDIUM",
882+
"STANDARD_LARGE",
883+
"STANDARD_XLARGE",
884+
"STANDARD_2XLARGE",
885+
"STANDARD_3XLARGE"
886+
],
887+
"enumDescriptions": [
888+
"The default value. This value is used if the state is omitted.",
889+
"Instance Size STANDARD_SMALL.",
890+
"Instance Size STANDARD_MEDIUM.",
891+
"Instance Size STANDARD_LARGE.",
892+
"Instance Size STANDARD_XLARGE.",
893+
"Instance Size STANDARD_2XLARGE.",
894+
"Instance Size STANDARD_3XLARGE."
895+
],
896+
"type": "string"
897+
}
898+
},
899+
"type": "object"
900+
},
855901
"SAMLParams": {
856902
"description": "Message storing SAML params to enable Google as IDP.",
857903
"id": "SAMLParams",

0 commit comments

Comments
 (0)
Please sign in to comment.