google-apis-contactcenteraiplatform_v1alpha1 0.15.0 → 0.16.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: fd7d3af5f2bdec4d234d14504748f725880a13fbaadd120d45cbb204055a887e
|
4
|
+
data.tar.gz: 5d9ec420e4c8dc2785128435014abc76fc0ddef9166a09af8f8c68bdd5463a9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dee2785178547956135389747848e780172fb8ca0bc930651d6ca644f7706f3575a5b9b3f5a674992b82fa89c0955be82bee88ac36e06c153d2c929fc3824aa
|
7
|
+
data.tar.gz: 4ccbc70f1212a0d27844a5d221447682782e5bcff09adbf96523478d9a6a32a0b06866d9fa244a5c26cc2699c6a96505d5e8b475ab8817111968388d4a6d30ef
|
data/CHANGELOG.md
CHANGED
@@ -60,7 +60,7 @@ module Google
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
-
# Message describing ContactCenter object Next ID:
|
63
|
+
# Message describing ContactCenter object Next ID: 22
|
64
64
|
class ContactCenter
|
65
65
|
include Google::Apis::Core::Hashable
|
66
66
|
|
@@ -92,6 +92,11 @@ module Google
|
|
92
92
|
# @return [String]
|
93
93
|
attr_accessor :display_name
|
94
94
|
|
95
|
+
# First Channel to receive the updates. Meant to dev/test instances
|
96
|
+
# Corresponds to the JSON property `early`
|
97
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::Early]
|
98
|
+
attr_accessor :early
|
99
|
+
|
95
100
|
# Message storing the instance configuration.
|
96
101
|
# Corresponds to the JSON property `instanceConfig`
|
97
102
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig]
|
@@ -112,6 +117,12 @@ module Google
|
|
112
117
|
# @return [String]
|
113
118
|
attr_accessor :name
|
114
119
|
|
120
|
+
# Instances in this Channel will receive updates after all instances in `Early`
|
121
|
+
# were updated + 2 days.
|
122
|
+
# Corresponds to the JSON property `normal`
|
123
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::Normal]
|
124
|
+
attr_accessor :normal
|
125
|
+
|
115
126
|
# Output only. A list of UJET components that should be privately accessed. This
|
116
127
|
# field is set by reading settings from the data plane. For more information
|
117
128
|
# about the format of the component please refer to go/ccaip-vpc-sc-org-policy.
|
@@ -157,10 +168,12 @@ module Google
|
|
157
168
|
@create_time = args[:create_time] if args.key?(:create_time)
|
158
169
|
@customer_domain_prefix = args[:customer_domain_prefix] if args.key?(:customer_domain_prefix)
|
159
170
|
@display_name = args[:display_name] if args.key?(:display_name)
|
171
|
+
@early = args[:early] if args.key?(:early)
|
160
172
|
@instance_config = args[:instance_config] if args.key?(:instance_config)
|
161
173
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
162
174
|
@labels = args[:labels] if args.key?(:labels)
|
163
175
|
@name = args[:name] if args.key?(:name)
|
176
|
+
@normal = args[:normal] if args.key?(:normal)
|
164
177
|
@private_components = args[:private_components] if args.key?(:private_components)
|
165
178
|
@saml_params = args[:saml_params] if args.key?(:saml_params)
|
166
179
|
@state = args[:state] if args.key?(:state)
|
@@ -203,6 +216,19 @@ module Google
|
|
203
216
|
end
|
204
217
|
end
|
205
218
|
|
219
|
+
# First Channel to receive the updates. Meant to dev/test instances
|
220
|
+
class Early
|
221
|
+
include Google::Apis::Core::Hashable
|
222
|
+
|
223
|
+
def initialize(**args)
|
224
|
+
update!(**args)
|
225
|
+
end
|
226
|
+
|
227
|
+
# Update properties of this object
|
228
|
+
def update!(**args)
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
206
232
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
207
233
|
# messages in your APIs. A typical example is to use it as the request or the
|
208
234
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -425,6 +451,20 @@ module Google
|
|
425
451
|
end
|
426
452
|
end
|
427
453
|
|
454
|
+
# Instances in this Channel will receive updates after all instances in `Early`
|
455
|
+
# were updated + 2 days.
|
456
|
+
class Normal
|
457
|
+
include Google::Apis::Core::Hashable
|
458
|
+
|
459
|
+
def initialize(**args)
|
460
|
+
update!(**args)
|
461
|
+
end
|
462
|
+
|
463
|
+
# Update properties of this object
|
464
|
+
def update!(**args)
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
428
468
|
# This resource represents a long-running operation that is the result of a
|
429
469
|
# network API call.
|
430
470
|
class Operation
|
@@ -496,7 +536,7 @@ module Google
|
|
496
536
|
# @return [String]
|
497
537
|
attr_accessor :api_version
|
498
538
|
|
499
|
-
# Message describing ContactCenter object Next ID:
|
539
|
+
# Message describing ContactCenter object Next ID: 22
|
500
540
|
# Corresponds to the JSON property `contactCenter`
|
501
541
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter]
|
502
542
|
attr_accessor :contact_center
|
@@ -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.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240419"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class Early
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class Empty
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -88,6 +94,12 @@ module Google
|
|
88
94
|
include Google::Apis::Core::JsonObjectSupport
|
89
95
|
end
|
90
96
|
|
97
|
+
class Normal
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
91
103
|
class Operation
|
92
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
105
|
|
@@ -147,11 +159,15 @@ module Google
|
|
147
159
|
property :create_time, as: 'createTime'
|
148
160
|
property :customer_domain_prefix, as: 'customerDomainPrefix'
|
149
161
|
property :display_name, as: 'displayName'
|
162
|
+
property :early, as: 'early', class: Google::Apis::ContactcenteraiplatformV1alpha1::Early, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Early::Representation
|
163
|
+
|
150
164
|
property :instance_config, as: 'instanceConfig', class: Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig::Representation
|
151
165
|
|
152
166
|
property :kms_key, as: 'kmsKey'
|
153
167
|
hash :labels, as: 'labels'
|
154
168
|
property :name, as: 'name'
|
169
|
+
property :normal, as: 'normal', class: Google::Apis::ContactcenteraiplatformV1alpha1::Normal, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Normal::Representation
|
170
|
+
|
155
171
|
collection :private_components, as: 'privateComponents'
|
156
172
|
property :saml_params, as: 'samlParams', class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams::Representation
|
157
173
|
|
@@ -173,6 +189,12 @@ module Google
|
|
173
189
|
end
|
174
190
|
end
|
175
191
|
|
192
|
+
class Early
|
193
|
+
# @private
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
176
198
|
class Empty
|
177
199
|
# @private
|
178
200
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -238,6 +260,12 @@ module Google
|
|
238
260
|
end
|
239
261
|
end
|
240
262
|
|
263
|
+
class Normal
|
264
|
+
# @private
|
265
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
241
269
|
class Operation
|
242
270
|
# @private
|
243
271
|
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.16.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: 2024-
|
11
|
+
date: 2024-04-21 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.16.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: []
|