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.ContactCenterQuota.properties.quotas (Total Keys: 2)
- schemas.Quota (Total Keys: 7)
  • Loading branch information
yoshi-automation committed May 24, 2023
1 parent f37431c commit ad1dc97
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 8 deletions.
15 changes: 11 additions & 4 deletions docs/dyn/contactcenteraiplatform_v1alpha1.projects.locations.html
Expand Up @@ -119,7 +119,7 @@ <h3>Method Details</h3>
Returns:
An object of the form:

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

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

{ # Represents a quota for contact centers.
&quot;contactCenterCountLimit&quot;: 42, # Reflects the count limit of contact centers on a billing account.
&quot;contactCenterCountSum&quot;: 42, # Reflects the count sum of contact centers on a billing account.
&quot;contactCenterCountLimit&quot;: 42, # Deprecated: Use the Quota fields instead. Reflects the count limit of contact centers on a billing account.
&quot;contactCenterCountSum&quot;: 42, # Deprecated: Use the Quota fields instead. Reflects the count sum of contact centers on a billing account.
&quot;quotas&quot;: [ # Quota details per contact center instance type.
{ # Quota details.
&quot;contactCenterCountLimit&quot;: 42, # Reflects the count limit of contact centers on a billing account.
&quot;contactCenterCountSum&quot;: 42, # Reflects the count sum of contact centers on a billing account.
&quot;contactCenterInstanceSize&quot;: &quot;A String&quot;, # Contact center instance type.
},
],
}</pre>
</div>

Expand Down
Expand Up @@ -512,7 +512,7 @@
}
}
},
"revision": "20230329",
"revision": "20230503",
"rootUrl": "https://contactcenteraiplatform.googleapis.com/",
"schemas": {
"AdminUser": {
Expand Down Expand Up @@ -627,14 +627,21 @@
"id": "ContactCenterQuota",
"properties": {
"contactCenterCountLimit": {
"description": "Reflects the count limit of contact centers on a billing account.",
"description": "Deprecated: Use the Quota fields instead. Reflects the count limit of contact centers on a billing account.",
"format": "int32",
"type": "integer"
},
"contactCenterCountSum": {
"description": "Reflects the count sum of contact centers on a billing account.",
"description": "Deprecated: Use the Quota fields instead. Reflects the count sum of contact centers on a billing account.",
"format": "int32",
"type": "integer"
},
"quotas": {
"description": "Quota details per contact center instance type.",
"items": {
"$ref": "Quota"
},
"type": "array"
}
},
"type": "object"
Expand Down Expand Up @@ -736,7 +743,7 @@
"type": "object"
},
"Location": {
"description": "A resource that represents Google Cloud Platform location.",
"description": "A resource that represents a Google Cloud location.",
"id": "Location",
"properties": {
"displayName": {
Expand Down Expand Up @@ -852,6 +859,45 @@
},
"type": "object"
},
"Quota": {
"description": "Quota details.",
"id": "Quota",
"properties": {
"contactCenterCountLimit": {
"description": "Reflects the count limit of contact centers on a billing account.",
"format": "int32",
"type": "integer"
},
"contactCenterCountSum": {
"description": "Reflects the count sum of contact centers on a billing account.",
"format": "int32",
"type": "integer"
},
"contactCenterInstanceSize": {
"description": "Contact center instance type.",
"enum": [
"INSTANCE_SIZE_UNSPECIFIED",
"STANDARD_SMALL",
"STANDARD_MEDIUM",
"STANDARD_LARGE",
"STANDARD_XLARGE",
"STANDARD_2XLARGE",
"STANDARD_3XLARGE"
],
"enumDescriptions": [
"The default value. This value is used if the state is omitted.",
"Instance Size STANDARD_SMALL.",
"Instance Size STANDARD_MEDIUM.",
"Instance Size STANDARD_LARGE.",
"Instance Size STANDARD_XLARGE.",
"Instance Size STANDARD_2XLARGE.",
"Instance Size STANDARD_3XLARGE."
],
"type": "string"
}
},
"type": "object"
},
"SAMLParams": {
"description": "Message storing SAML params to enable Google as IDP.",
"id": "SAMLParams",
Expand Down

0 comments on commit ad1dc97

Please sign in to comment.