google-apis-contactcenteraiplatform_v1alpha1 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e49e88ef0bc9ab1b69a4964f05ea578fac483e104485ed52e18b7c04d344dd2
|
4
|
+
data.tar.gz: c64ddd2b6d0157ad5788e93d000775c24d8cb595ba207a37ab5c13a86f9d28d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8a27610822a3e43c360948e033d6fa6f1483ae7381d56b42d37dbd4b6adb83e811521b15fb46fd8725a988c1529228f1d03b20b4e540c76ee6429e9c86abc54
|
7
|
+
data.tar.gz: a399f4ee9671b3e98fbed9ac6e9ecc26b2d1ba7b8e94ee34ba28136eab92564e6ffdfbd55ceee659be0bfefcfa0ecd2048ea3f2caa112a1c7844f997aaae7709
|
data/CHANGELOG.md
CHANGED
@@ -158,16 +158,23 @@ module Google
|
|
158
158
|
class ContactCenterQuota
|
159
159
|
include Google::Apis::Core::Hashable
|
160
160
|
|
161
|
-
# Reflects the count limit of contact
|
161
|
+
# Deprecated: Use the Quota fields instead. Reflects the count limit of contact
|
162
|
+
# centers on a billing account.
|
162
163
|
# Corresponds to the JSON property `contactCenterCountLimit`
|
163
164
|
# @return [Fixnum]
|
164
165
|
attr_accessor :contact_center_count_limit
|
165
166
|
|
166
|
-
# Reflects the count sum of contact
|
167
|
+
# Deprecated: Use the Quota fields instead. Reflects the count sum of contact
|
168
|
+
# centers on a billing account.
|
167
169
|
# Corresponds to the JSON property `contactCenterCountSum`
|
168
170
|
# @return [Fixnum]
|
169
171
|
attr_accessor :contact_center_count_sum
|
170
172
|
|
173
|
+
# Quota details per contact center instance type.
|
174
|
+
# Corresponds to the JSON property `quotas`
|
175
|
+
# @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Quota>]
|
176
|
+
attr_accessor :quotas
|
177
|
+
|
171
178
|
def initialize(**args)
|
172
179
|
update!(**args)
|
173
180
|
end
|
@@ -176,6 +183,7 @@ module Google
|
|
176
183
|
def update!(**args)
|
177
184
|
@contact_center_count_limit = args[:contact_center_count_limit] if args.key?(:contact_center_count_limit)
|
178
185
|
@contact_center_count_sum = args[:contact_center_count_sum] if args.key?(:contact_center_count_sum)
|
186
|
+
@quotas = args[:quotas] if args.key?(:quotas)
|
179
187
|
end
|
180
188
|
end
|
181
189
|
|
@@ -295,7 +303,7 @@ module Google
|
|
295
303
|
end
|
296
304
|
end
|
297
305
|
|
298
|
-
# A resource that represents Google Cloud location.
|
306
|
+
# A resource that represents a Google Cloud location.
|
299
307
|
class Location
|
300
308
|
include Google::Apis::Core::Hashable
|
301
309
|
|
@@ -469,6 +477,37 @@ module Google
|
|
469
477
|
end
|
470
478
|
end
|
471
479
|
|
480
|
+
# Quota details.
|
481
|
+
class Quota
|
482
|
+
include Google::Apis::Core::Hashable
|
483
|
+
|
484
|
+
# Reflects the count limit of contact centers on a billing account.
|
485
|
+
# Corresponds to the JSON property `contactCenterCountLimit`
|
486
|
+
# @return [Fixnum]
|
487
|
+
attr_accessor :contact_center_count_limit
|
488
|
+
|
489
|
+
# Reflects the count sum of contact centers on a billing account.
|
490
|
+
# Corresponds to the JSON property `contactCenterCountSum`
|
491
|
+
# @return [Fixnum]
|
492
|
+
attr_accessor :contact_center_count_sum
|
493
|
+
|
494
|
+
# Contact center instance type.
|
495
|
+
# Corresponds to the JSON property `contactCenterInstanceSize`
|
496
|
+
# @return [String]
|
497
|
+
attr_accessor :contact_center_instance_size
|
498
|
+
|
499
|
+
def initialize(**args)
|
500
|
+
update!(**args)
|
501
|
+
end
|
502
|
+
|
503
|
+
# Update properties of this object
|
504
|
+
def update!(**args)
|
505
|
+
@contact_center_count_limit = args[:contact_center_count_limit] if args.key?(:contact_center_count_limit)
|
506
|
+
@contact_center_count_sum = args[:contact_center_count_sum] if args.key?(:contact_center_count_sum)
|
507
|
+
@contact_center_instance_size = args[:contact_center_instance_size] if args.key?(:contact_center_instance_size)
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
472
511
|
# Message storing SAML params to enable Google as IDP.
|
473
512
|
class SamlParams
|
474
513
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenteraiplatformV1alpha1
|
18
18
|
# Version of the google-apis-contactcenteraiplatform_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230424"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class Quota
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class SamlParams
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -154,6 +160,8 @@ module Google
|
|
154
160
|
class Representation < Google::Apis::Core::JsonRepresentation
|
155
161
|
property :contact_center_count_limit, as: 'contactCenterCountLimit'
|
156
162
|
property :contact_center_count_sum, as: 'contactCenterCountSum'
|
163
|
+
collection :quotas, as: 'quotas', class: Google::Apis::ContactcenteraiplatformV1alpha1::Quota, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Quota::Representation
|
164
|
+
|
157
165
|
end
|
158
166
|
end
|
159
167
|
|
@@ -236,6 +244,15 @@ module Google
|
|
236
244
|
end
|
237
245
|
end
|
238
246
|
|
247
|
+
class Quota
|
248
|
+
# @private
|
249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
250
|
+
property :contact_center_count_limit, as: 'contactCenterCountLimit'
|
251
|
+
property :contact_center_count_sum, as: 'contactCenterCountSum'
|
252
|
+
property :contact_center_instance_size, as: 'contactCenterInstanceSize'
|
253
|
+
end
|
254
|
+
end
|
255
|
+
|
239
256
|
class SamlParams
|
240
257
|
# @private
|
241
258
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenteraiplatform_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenteraiplatform_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.6.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenteraiplatform_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|