google-apis-contactcenteraiplatform_v1alpha1 0.17.0 → 0.18.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: 2e359209179af9ccad4e0fb67ca7131da5b85cb930ada74d4b0914b0421a41e5
|
4
|
+
data.tar.gz: e62eea23654a4f07c0910326d41edf2f44b4f656f443b1984186b1fd4f9de186
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b9ee71d866f3567c5fc0bec2988e9974bf697f7bc0ac1cbe0e920957da047fd14de2fb2cebcd819160b223faa1035b6e59b039b43f84f1d3e85a3b42b52755a
|
7
|
+
data.tar.gz: 1e4cad3556ffc381a25e49f00bf13c49845b4616061d1e7aabcdcf317f1a2bc669f7cbd8bfce589dea6d29f2effeac721b4b1339f0aef0764c4bda538c592cc5
|
data/CHANGELOG.md
CHANGED
@@ -60,7 +60,34 @@ module Google
|
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
63
|
-
#
|
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
|
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
|
-
#
|
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:
|
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,27 @@ 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 service attachment name that will be used for sending private traffic to
|
771
|
+
# the CCAIP tenant project. Example: "projects/$`TENANT_PROJECT_ID`/regions/$`
|
772
|
+
# REGION`/serviceAttachments/ingress-default".
|
773
|
+
# Corresponds to the JSON property `name`
|
774
|
+
# @return [String]
|
775
|
+
attr_accessor :name
|
776
|
+
|
777
|
+
def initialize(**args)
|
778
|
+
update!(**args)
|
779
|
+
end
|
780
|
+
|
781
|
+
# Update properties of this object
|
782
|
+
def update!(**args)
|
783
|
+
@name = args[:name] if args.key?(:name)
|
784
|
+
end
|
785
|
+
end
|
786
|
+
|
669
787
|
# The `Status` type defines a logical error model that is suitable for different
|
670
788
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
671
789
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -705,6 +823,47 @@ module Google
|
|
705
823
|
end
|
706
824
|
end
|
707
825
|
|
826
|
+
# Represents a time of day. The date and time zone are either not significant or
|
827
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
828
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
829
|
+
class TimeOfDay
|
830
|
+
include Google::Apis::Core::Hashable
|
831
|
+
|
832
|
+
# Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
|
833
|
+
# allow the value "24:00:00" for scenarios like business closing time.
|
834
|
+
# Corresponds to the JSON property `hours`
|
835
|
+
# @return [Fixnum]
|
836
|
+
attr_accessor :hours
|
837
|
+
|
838
|
+
# Minutes of hour of day. Must be from 0 to 59.
|
839
|
+
# Corresponds to the JSON property `minutes`
|
840
|
+
# @return [Fixnum]
|
841
|
+
attr_accessor :minutes
|
842
|
+
|
843
|
+
# Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
844
|
+
# Corresponds to the JSON property `nanos`
|
845
|
+
# @return [Fixnum]
|
846
|
+
attr_accessor :nanos
|
847
|
+
|
848
|
+
# Seconds of minutes of the time. Must normally be from 0 to 59. An API may
|
849
|
+
# allow the value 60 if it allows leap-seconds.
|
850
|
+
# Corresponds to the JSON property `seconds`
|
851
|
+
# @return [Fixnum]
|
852
|
+
attr_accessor :seconds
|
853
|
+
|
854
|
+
def initialize(**args)
|
855
|
+
update!(**args)
|
856
|
+
end
|
857
|
+
|
858
|
+
# Update properties of this object
|
859
|
+
def update!(**args)
|
860
|
+
@hours = args[:hours] if args.key?(:hours)
|
861
|
+
@minutes = args[:minutes] if args.key?(:minutes)
|
862
|
+
@nanos = args[:nanos] if args.key?(:nanos)
|
863
|
+
@seconds = args[:seconds] if args.key?(:seconds)
|
864
|
+
end
|
865
|
+
end
|
866
|
+
|
708
867
|
# Message storing the URIs of the ContactCenter.
|
709
868
|
class UrIs
|
710
869
|
include Google::Apis::Core::Hashable
|
@@ -741,6 +900,47 @@ module Google
|
|
741
900
|
@virtual_agent_streaming_service_uri = args[:virtual_agent_streaming_service_uri] if args.key?(:virtual_agent_streaming_service_uri)
|
742
901
|
end
|
743
902
|
end
|
903
|
+
|
904
|
+
# Message representing a weekly schedule.
|
905
|
+
class WeeklySchedule
|
906
|
+
include Google::Apis::Core::Hashable
|
907
|
+
|
908
|
+
# Required. Days of the week this schedule applies to.
|
909
|
+
# Corresponds to the JSON property `days`
|
910
|
+
# @return [Array<String>]
|
911
|
+
attr_accessor :days
|
912
|
+
|
913
|
+
# Optional. Duration of the schedule.
|
914
|
+
# Corresponds to the JSON property `duration`
|
915
|
+
# @return [String]
|
916
|
+
attr_accessor :duration
|
917
|
+
|
918
|
+
# Represents a time of day. The date and time zone are either not significant or
|
919
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
920
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
921
|
+
# Corresponds to the JSON property `endTime`
|
922
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay]
|
923
|
+
attr_accessor :end_time
|
924
|
+
|
925
|
+
# Represents a time of day. The date and time zone are either not significant or
|
926
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
927
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
928
|
+
# Corresponds to the JSON property `startTime`
|
929
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay]
|
930
|
+
attr_accessor :start_time
|
931
|
+
|
932
|
+
def initialize(**args)
|
933
|
+
update!(**args)
|
934
|
+
end
|
935
|
+
|
936
|
+
# Update properties of this object
|
937
|
+
def update!(**args)
|
938
|
+
@days = args[:days] if args.key?(:days)
|
939
|
+
@duration = args[:duration] if args.key?(:duration)
|
940
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
941
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
942
|
+
end
|
943
|
+
end
|
744
944
|
end
|
745
945
|
end
|
746
946
|
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.
|
19
|
+
GEM_VERSION = "0.18.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 = "
|
25
|
+
REVISION = "20240524"
|
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,13 @@ module Google
|
|
313
381
|
end
|
314
382
|
end
|
315
383
|
|
384
|
+
class ServiceAttachment
|
385
|
+
# @private
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
387
|
+
property :name, as: 'name'
|
388
|
+
end
|
389
|
+
end
|
390
|
+
|
316
391
|
class Status
|
317
392
|
# @private
|
318
393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -322,6 +397,16 @@ module Google
|
|
322
397
|
end
|
323
398
|
end
|
324
399
|
|
400
|
+
class TimeOfDay
|
401
|
+
# @private
|
402
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
403
|
+
property :hours, as: 'hours'
|
404
|
+
property :minutes, as: 'minutes'
|
405
|
+
property :nanos, as: 'nanos'
|
406
|
+
property :seconds, as: 'seconds'
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
325
410
|
class UrIs
|
326
411
|
# @private
|
327
412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -331,6 +416,18 @@ module Google
|
|
331
416
|
property :virtual_agent_streaming_service_uri, as: 'virtualAgentStreamingServiceUri'
|
332
417
|
end
|
333
418
|
end
|
419
|
+
|
420
|
+
class WeeklySchedule
|
421
|
+
# @private
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
423
|
+
collection :days, as: 'days'
|
424
|
+
property :duration, as: 'duration'
|
425
|
+
property :end_time, as: 'endTime', class: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay::Representation
|
426
|
+
|
427
|
+
property :start_time, as: 'startTime', class: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::TimeOfDay::Representation
|
428
|
+
|
429
|
+
end
|
430
|
+
end
|
334
431
|
end
|
335
432
|
end
|
336
433
|
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.
|
4
|
+
version: 0.18.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-
|
11
|
+
date: 2024-05-26 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.18.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: []
|