google-apis-contactcenteraiplatform_v1alpha1 0.17.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 97c3286c0a70a2279271b683e0b1255719881dfaad8b3441d4bf2429eeb4bf99
4
- data.tar.gz: bd3988a430e0cdb3091752d7c7bab120d9d9ba42e5573836d2639d9e16b88443
3
+ metadata.gz: d0a074019fb33c1f84aab15f9db895d887ddd82ac842b8ab94453603e3720887
4
+ data.tar.gz: 02f54c732ff0622093730dd5105b57ac82cad445d94a46e39280c9333b492a36
5
5
  SHA512:
6
- metadata.gz: 349c2af4d68d43218f29d4a7a4380d98892b0a51bb769d4b64a177c618d2efe7cde75106de6477ff63fa1a1b2bd9f095bf6ff9c35db1f96435e45f790dc3054f
7
- data.tar.gz: 02bb0b27c2ea41a920d8b9886abc19a6b9ea52e1f69afe648466686fb5aca87329350c6f9ce06a137529f7b696582c4969c500fc6c5c7facce5a3a47b422d26a
6
+ metadata.gz: 5c36baa7deea7f4f3380d97c56a8a5f2c34d7d2d6c0f4e7c06fb8f95472c87a10af5e20dd6b46744ec8e9a9ee3243ec023fe99f70df1cfc7ed8234a1bec89d35
7
+ data.tar.gz: 3cd88b3ce7f24878278f0426f68c394e3e49f531d5fbcb6608e67da548d87b3d3b0a288832db81596d82a5f71487c86e5e4b71838b1dad6c05783c43a086d511
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-contactcenteraiplatform_v1alpha1
2
2
 
3
+ ### v0.19.0 (2024-06-02)
4
+
5
+ * Regenerated from discovery document revision 20240528
6
+
7
+ ### v0.18.0 (2024-05-26)
8
+
9
+ * Regenerated from discovery document revision 20240524
10
+
3
11
  ### v0.17.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240506
@@ -60,7 +60,34 @@ module Google
60
60
  end
61
61
  end
62
62
 
63
- # Message describing ContactCenter object Next ID: 22
63
+ # Defines a logical CCAIP component that e.g. “EMAIL”, "CRM". For more
64
+ # information see go/ccaip-private-path-v2. Each logical component is associated
65
+ # with a list of service attachments.
66
+ class Component
67
+ include Google::Apis::Core::Hashable
68
+
69
+ # Name of the component.
70
+ # Corresponds to the JSON property `name`
71
+ # @return [String]
72
+ attr_accessor :name
73
+
74
+ # Associated service attachments.
75
+ # Corresponds to the JSON property `serviceAttachments`
76
+ # @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::ServiceAttachment>]
77
+ attr_accessor :service_attachments
78
+
79
+ def initialize(**args)
80
+ update!(**args)
81
+ end
82
+
83
+ # Update properties of this object
84
+ def update!(**args)
85
+ @name = args[:name] if args.key?(:name)
86
+ @service_attachments = args[:service_attachments] if args.key?(:service_attachments)
87
+ end
88
+ end
89
+
90
+ # Message describing ContactCenter object Next ID: 23
64
91
  class ContactCenter
65
92
  include Google::Apis::Core::Hashable
66
93
 
@@ -81,6 +108,13 @@ module Google
81
108
  # @return [String]
82
109
  attr_accessor :create_time
83
110
 
111
+ # Instances in this Channel will receive updates after all instances in `
112
+ # Critical` were updated + 2 days. They also will only be updated outside of
113
+ # their peak hours.
114
+ # Corresponds to the JSON property `critical`
115
+ # @return [Google::Apis::ContactcenteraiplatformV1alpha1::Critical]
116
+ attr_accessor :critical
117
+
84
118
  # Required. Immutable. At least 2 and max 16 char long, must conform to [RFC
85
119
  # 1035](https://www.ietf.org/rfc/rfc1035.txt).
86
120
  # Corresponds to the JSON property `customerDomainPrefix`
@@ -92,7 +126,8 @@ module Google
92
126
  # @return [String]
93
127
  attr_accessor :display_name
94
128
 
95
- # First Channel to receive the updates. Meant to dev/test instances
129
+ # LINT.IfChange First Channel to receive the updates. Meant to dev/test
130
+ # instances
96
131
  # Corresponds to the JSON property `early`
97
132
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::Early]
98
133
  attr_accessor :early
@@ -123,6 +158,11 @@ module Google
123
158
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::Normal]
124
159
  attr_accessor :normal
125
160
 
161
+ # Defines ingress and egress private traffic settings for CCAIP instances.
162
+ # Corresponds to the JSON property `privateAccess`
163
+ # @return [Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess]
164
+ attr_accessor :private_access
165
+
126
166
  # Output only. A list of UJET components that should be privately accessed. This
127
167
  # field is set by reading settings from the data plane. For more information
128
168
  # about the format of the component please refer to go/ccaip-vpc-sc-org-policy.
@@ -166,6 +206,7 @@ module Google
166
206
  @admin_user = args[:admin_user] if args.key?(:admin_user)
167
207
  @ccaip_managed_users = args[:ccaip_managed_users] if args.key?(:ccaip_managed_users)
168
208
  @create_time = args[:create_time] if args.key?(:create_time)
209
+ @critical = args[:critical] if args.key?(:critical)
169
210
  @customer_domain_prefix = args[:customer_domain_prefix] if args.key?(:customer_domain_prefix)
170
211
  @display_name = args[:display_name] if args.key?(:display_name)
171
212
  @early = args[:early] if args.key?(:early)
@@ -174,6 +215,7 @@ module Google
174
215
  @labels = args[:labels] if args.key?(:labels)
175
216
  @name = args[:name] if args.key?(:name)
176
217
  @normal = args[:normal] if args.key?(:normal)
218
+ @private_access = args[:private_access] if args.key?(:private_access)
177
219
  @private_components = args[:private_components] if args.key?(:private_components)
178
220
  @saml_params = args[:saml_params] if args.key?(:saml_params)
179
221
  @state = args[:state] if args.key?(:state)
@@ -216,7 +258,29 @@ module Google
216
258
  end
217
259
  end
218
260
 
219
- # First Channel to receive the updates. Meant to dev/test instances
261
+ # Instances in this Channel will receive updates after all instances in `
262
+ # Critical` were updated + 2 days. They also will only be updated outside of
263
+ # their peak hours.
264
+ class Critical
265
+ include Google::Apis::Core::Hashable
266
+
267
+ # Required. Hours during which the instance should not be updated.
268
+ # Corresponds to the JSON property `peakHours`
269
+ # @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::WeeklySchedule>]
270
+ attr_accessor :peak_hours
271
+
272
+ def initialize(**args)
273
+ update!(**args)
274
+ end
275
+
276
+ # Update properties of this object
277
+ def update!(**args)
278
+ @peak_hours = args[:peak_hours] if args.key?(:peak_hours)
279
+ end
280
+ end
281
+
282
+ # LINT.IfChange First Channel to receive the updates. Meant to dev/test
283
+ # instances
220
284
  class Early
221
285
  include Google::Apis::Core::Hashable
222
286
 
@@ -536,7 +600,7 @@ module Google
536
600
  # @return [String]
537
601
  attr_accessor :api_version
538
602
 
539
- # Message describing ContactCenter object Next ID: 22
603
+ # Message describing ContactCenter object Next ID: 23
540
604
  # Corresponds to the JSON property `contactCenter`
541
605
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter]
542
606
  attr_accessor :contact_center
@@ -592,6 +656,33 @@ module Google
592
656
  end
593
657
  end
594
658
 
659
+ # Defines ingress and egress private traffic settings for CCAIP instances.
660
+ class PrivateAccess
661
+ include Google::Apis::Core::Hashable
662
+
663
+ # List of egress components that should not be accessed via the Internet. For
664
+ # more information see go/ccaip-private-path-v2.
665
+ # Corresponds to the JSON property `egressSettings`
666
+ # @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>]
667
+ attr_accessor :egress_settings
668
+
669
+ # List of ingress components that should not be accessed via the Internet. For
670
+ # more information see go/ccaip-private-path-v2.
671
+ # Corresponds to the JSON property `ingressSettings`
672
+ # @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>]
673
+ attr_accessor :ingress_settings
674
+
675
+ def initialize(**args)
676
+ update!(**args)
677
+ end
678
+
679
+ # Update properties of this object
680
+ def update!(**args)
681
+ @egress_settings = args[:egress_settings] if args.key?(:egress_settings)
682
+ @ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
683
+ end
684
+ end
685
+
595
686
  # Quota details.
596
687
  class Quota
597
688
  include Google::Apis::Core::Hashable
@@ -627,6 +718,11 @@ module Google
627
718
  class SamlParams
628
719
  include Google::Apis::Core::Hashable
629
720
 
721
+ # Additional contexts used for authentication.
722
+ # Corresponds to the JSON property `authenticationContexts`
723
+ # @return [Array<String>]
724
+ attr_accessor :authentication_contexts
725
+
630
726
  # SAML certificate
631
727
  # Corresponds to the JSON property `certificate`
632
728
  # @return [String]
@@ -658,6 +754,7 @@ module Google
658
754
 
659
755
  # Update properties of this object
660
756
  def update!(**args)
757
+ @authentication_contexts = args[:authentication_contexts] if args.key?(:authentication_contexts)
661
758
  @certificate = args[:certificate] if args.key?(:certificate)
662
759
  @email_mapping = args[:email_mapping] if args.key?(:email_mapping)
663
760
  @entity_id = args[:entity_id] if args.key?(:entity_id)
@@ -666,6 +763,35 @@ module Google
666
763
  end
667
764
  end
668
765
 
766
+ # Container for the VPC-SC networking configurations.
767
+ class ServiceAttachment
768
+ include Google::Apis::Core::Hashable
769
+
770
+ # The list of project ids that are allowed to send traffic to the service
771
+ # attachment. This field should be filled only for the ingress service
772
+ # attachments.
773
+ # Corresponds to the JSON property `allowedProjectIds`
774
+ # @return [Array<String>]
775
+ attr_accessor :allowed_project_ids
776
+
777
+ # The service attachment name that will be used for sending private traffic to
778
+ # the CCAIP tenant project. Example: "projects/$`TENANT_PROJECT_ID`/regions/$`
779
+ # REGION`/serviceAttachments/ingress-default".
780
+ # Corresponds to the JSON property `name`
781
+ # @return [String]
782
+ attr_accessor :name
783
+
784
+ def initialize(**args)
785
+ update!(**args)
786
+ end
787
+
788
+ # Update properties of this object
789
+ def update!(**args)
790
+ @allowed_project_ids = args[:allowed_project_ids] if args.key?(:allowed_project_ids)
791
+ @name = args[:name] if args.key?(:name)
792
+ end
793
+ end
794
+
669
795
  # The `Status` type defines a logical error model that is suitable for different
670
796
  # programming environments, including REST APIs and RPC APIs. It is used by [
671
797
  # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
@@ -705,6 +831,47 @@ module Google
705
831
  end
706
832
  end
707
833
 
834
+ # Represents a time of day. The date and time zone are either not significant or
835
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
836
+ # types are google.type.Date and `google.protobuf.Timestamp`.
837
+ class TimeOfDay
838
+ include Google::Apis::Core::Hashable
839
+
840
+ # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
841
+ # allow the value "24:00:00" for scenarios like business closing time.
842
+ # Corresponds to the JSON property `hours`
843
+ # @return [Fixnum]
844
+ attr_accessor :hours
845
+
846
+ # Minutes of hour of day. Must be from 0 to 59.
847
+ # Corresponds to the JSON property `minutes`
848
+ # @return [Fixnum]
849
+ attr_accessor :minutes
850
+
851
+ # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
852
+ # Corresponds to the JSON property `nanos`
853
+ # @return [Fixnum]
854
+ attr_accessor :nanos
855
+
856
+ # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
857
+ # allow the value 60 if it allows leap-seconds.
858
+ # Corresponds to the JSON property `seconds`
859
+ # @return [Fixnum]
860
+ attr_accessor :seconds
861
+
862
+ def initialize(**args)
863
+ update!(**args)
864
+ end
865
+
866
+ # Update properties of this object
867
+ def update!(**args)
868
+ @hours = args[:hours] if args.key?(:hours)
869
+ @minutes = args[:minutes] if args.key?(:minutes)
870
+ @nanos = args[:nanos] if args.key?(:nanos)
871
+ @seconds = args[:seconds] if args.key?(:seconds)
872
+ end
873
+ end
874
+
708
875
  # Message storing the URIs of the ContactCenter.
709
876
  class UrIs
710
877
  include Google::Apis::Core::Hashable
@@ -741,6 +908,47 @@ module Google
741
908
  @virtual_agent_streaming_service_uri = args[:virtual_agent_streaming_service_uri] if args.key?(:virtual_agent_streaming_service_uri)
742
909
  end
743
910
  end
911
+
912
+ # Message representing a weekly schedule.
913
+ class WeeklySchedule
914
+ include Google::Apis::Core::Hashable
915
+
916
+ # Required. Days of the week this schedule applies to.
917
+ # Corresponds to the JSON property `days`
918
+ # @return [Array<String>]
919
+ attr_accessor :days
920
+
921
+ # Optional. Duration of the schedule.
922
+ # Corresponds to the JSON property `duration`
923
+ # @return [String]
924
+ attr_accessor :duration
925
+
926
+ # Represents a time of day. The date and time zone are either not significant or
927
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
928
+ # types are google.type.Date and `google.protobuf.Timestamp`.
929
+ # Corresponds to the JSON property `endTime`
930
+ # @return [Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay]
931
+ attr_accessor :end_time
932
+
933
+ # Represents a time of day. The date and time zone are either not significant or
934
+ # are specified elsewhere. An API may choose to allow leap seconds. Related
935
+ # types are google.type.Date and `google.protobuf.Timestamp`.
936
+ # Corresponds to the JSON property `startTime`
937
+ # @return [Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay]
938
+ attr_accessor :start_time
939
+
940
+ def initialize(**args)
941
+ update!(**args)
942
+ end
943
+
944
+ # Update properties of this object
945
+ def update!(**args)
946
+ @days = args[:days] if args.key?(:days)
947
+ @duration = args[:duration] if args.key?(:duration)
948
+ @end_time = args[:end_time] if args.key?(:end_time)
949
+ @start_time = args[:start_time] if args.key?(:start_time)
950
+ end
951
+ end
744
952
  end
745
953
  end
746
954
  end
@@ -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.17.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240506"
25
+ REVISION = "20240528"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class Component
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class ContactCenter
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -46,6 +52,12 @@ module Google
46
52
  include Google::Apis::Core::JsonObjectSupport
47
53
  end
48
54
 
55
+ class Critical
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
49
61
  class Early
50
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
63
 
@@ -112,6 +124,12 @@ module Google
112
124
  include Google::Apis::Core::JsonObjectSupport
113
125
  end
114
126
 
127
+ class PrivateAccess
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
115
133
  class Quota
116
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
135
 
@@ -124,18 +142,36 @@ module Google
124
142
  include Google::Apis::Core::JsonObjectSupport
125
143
  end
126
144
 
145
+ class ServiceAttachment
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
127
151
  class Status
128
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
153
 
130
154
  include Google::Apis::Core::JsonObjectSupport
131
155
  end
132
156
 
157
+ class TimeOfDay
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
133
163
  class UrIs
134
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
165
 
136
166
  include Google::Apis::Core::JsonObjectSupport
137
167
  end
138
168
 
169
+ class WeeklySchedule
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
139
175
  class AdminUser
140
176
  # @private
141
177
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -150,6 +186,15 @@ module Google
150
186
  end
151
187
  end
152
188
 
189
+ class Component
190
+ # @private
191
+ class Representation < Google::Apis::Core::JsonRepresentation
192
+ property :name, as: 'name'
193
+ collection :service_attachments, as: 'serviceAttachments', class: Google::Apis::ContactcenteraiplatformV1alpha1::ServiceAttachment, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::ServiceAttachment::Representation
194
+
195
+ end
196
+ end
197
+
153
198
  class ContactCenter
154
199
  # @private
155
200
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -157,6 +202,8 @@ module Google
157
202
 
158
203
  property :ccaip_managed_users, as: 'ccaipManagedUsers'
159
204
  property :create_time, as: 'createTime'
205
+ property :critical, as: 'critical', class: Google::Apis::ContactcenteraiplatformV1alpha1::Critical, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Critical::Representation
206
+
160
207
  property :customer_domain_prefix, as: 'customerDomainPrefix'
161
208
  property :display_name, as: 'displayName'
162
209
  property :early, as: 'early', class: Google::Apis::ContactcenteraiplatformV1alpha1::Early, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Early::Representation
@@ -168,6 +215,8 @@ module Google
168
215
  property :name, as: 'name'
169
216
  property :normal, as: 'normal', class: Google::Apis::ContactcenteraiplatformV1alpha1::Normal, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Normal::Representation
170
217
 
218
+ property :private_access, as: 'privateAccess', class: Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess::Representation
219
+
171
220
  collection :private_components, as: 'privateComponents'
172
221
  property :saml_params, as: 'samlParams', class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams::Representation
173
222
 
@@ -189,6 +238,14 @@ module Google
189
238
  end
190
239
  end
191
240
 
241
+ class Critical
242
+ # @private
243
+ class Representation < Google::Apis::Core::JsonRepresentation
244
+ collection :peak_hours, as: 'peakHours', class: Google::Apis::ContactcenteraiplatformV1alpha1::WeeklySchedule, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::WeeklySchedule::Representation
245
+
246
+ end
247
+ end
248
+
192
249
  class Early
193
250
  # @private
194
251
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -293,6 +350,16 @@ module Google
293
350
  end
294
351
  end
295
352
 
353
+ class PrivateAccess
354
+ # @private
355
+ class Representation < Google::Apis::Core::JsonRepresentation
356
+ collection :egress_settings, as: 'egressSettings', class: Google::Apis::ContactcenteraiplatformV1alpha1::Component, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Component::Representation
357
+
358
+ collection :ingress_settings, as: 'ingressSettings', class: Google::Apis::ContactcenteraiplatformV1alpha1::Component, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Component::Representation
359
+
360
+ end
361
+ end
362
+
296
363
  class Quota
297
364
  # @private
298
365
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -305,6 +372,7 @@ module Google
305
372
  class SamlParams
306
373
  # @private
307
374
  class Representation < Google::Apis::Core::JsonRepresentation
375
+ collection :authentication_contexts, as: 'authenticationContexts'
308
376
  property :certificate, as: 'certificate'
309
377
  property :email_mapping, as: 'emailMapping'
310
378
  property :entity_id, as: 'entityId'
@@ -313,6 +381,14 @@ module Google
313
381
  end
314
382
  end
315
383
 
384
+ class ServiceAttachment
385
+ # @private
386
+ class Representation < Google::Apis::Core::JsonRepresentation
387
+ collection :allowed_project_ids, as: 'allowedProjectIds'
388
+ property :name, as: 'name'
389
+ end
390
+ end
391
+
316
392
  class Status
317
393
  # @private
318
394
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -322,6 +398,16 @@ module Google
322
398
  end
323
399
  end
324
400
 
401
+ class TimeOfDay
402
+ # @private
403
+ class Representation < Google::Apis::Core::JsonRepresentation
404
+ property :hours, as: 'hours'
405
+ property :minutes, as: 'minutes'
406
+ property :nanos, as: 'nanos'
407
+ property :seconds, as: 'seconds'
408
+ end
409
+ end
410
+
325
411
  class UrIs
326
412
  # @private
327
413
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -331,6 +417,18 @@ module Google
331
417
  property :virtual_agent_streaming_service_uri, as: 'virtualAgentStreamingServiceUri'
332
418
  end
333
419
  end
420
+
421
+ class WeeklySchedule
422
+ # @private
423
+ class Representation < Google::Apis::Core::JsonRepresentation
424
+ collection :days, as: 'days'
425
+ property :duration, as: 'duration'
426
+ property :end_time, as: 'endTime', class: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay::Representation
427
+
428
+ property :start_time, as: 'startTime', class: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay::Representation
429
+
430
+ end
431
+ end
334
432
  end
335
433
  end
336
434
  end
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.17.0
4
+ version: 0.19.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-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-02 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.19.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: []