google-apis-contactcenteraiplatform_v1alpha1 0.20.0 → 0.22.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: 3c95741f8f3943a1bbb48b80bfe41dead837fc03158fb86d1fb01074c79da670
|
4
|
+
data.tar.gz: f6541288395dfb2107e19dc5dec45a174afe11043dc02e8c2321b47e837ee18d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8b62133874f0c36a94fde721237e588e53c8926c08caeaf41801ac866ad3b9e7d3bc9f990231ad6ab9d264f140baf6981c6512046bf48462bf285c72d2f137a
|
7
|
+
data.tar.gz: 9316c71459a01085ccb591706e738cf35552aefede1273eb6813f42ebc94aa8d2af440698f1027af6ba2d8e528a19286118231842db6dbe6a8136a38cb811ef2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenteraiplatform_v1alpha1
|
2
2
|
|
3
|
+
### v0.22.0 (2024-06-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240621
|
6
|
+
|
7
|
+
### v0.21.0 (2024-06-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240607
|
10
|
+
|
3
11
|
### v0.20.0 (2024-06-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240603
|
@@ -66,21 +66,18 @@ module Google
|
|
66
66
|
class Component
|
67
67
|
include Google::Apis::Core::Hashable
|
68
68
|
|
69
|
-
# The list of project ids that are allowed to send traffic to the service
|
70
|
-
# attachment. This field should be filled only for the ingress components.
|
71
|
-
# Corresponds to the JSON property `allowedProjectIds`
|
72
|
-
# @return [Array<String>]
|
73
|
-
attr_accessor :allowed_project_ids
|
74
|
-
|
75
69
|
# Name of the component.
|
76
70
|
# Corresponds to the JSON property `name`
|
77
71
|
# @return [String]
|
78
72
|
attr_accessor :name
|
79
73
|
|
80
|
-
# Associated service attachments.
|
81
|
-
#
|
82
|
-
#
|
83
|
-
|
74
|
+
# Associated service attachments. The service attachment names that will be used
|
75
|
+
# for sending private traffic to the CCAIP tenant project. Example service
|
76
|
+
# attachment name: "projects/$`TENANT_PROJECT_ID`/regions/$`REGION`/
|
77
|
+
# serviceAttachments/ingress-default".
|
78
|
+
# Corresponds to the JSON property `serviceAttachmentNames`
|
79
|
+
# @return [Array<String>]
|
80
|
+
attr_accessor :service_attachment_names
|
84
81
|
|
85
82
|
def initialize(**args)
|
86
83
|
update!(**args)
|
@@ -88,9 +85,8 @@ module Google
|
|
88
85
|
|
89
86
|
# Update properties of this object
|
90
87
|
def update!(**args)
|
91
|
-
@allowed_project_ids = args[:allowed_project_ids] if args.key?(:allowed_project_ids)
|
92
88
|
@name = args[:name] if args.key?(:name)
|
93
|
-
@
|
89
|
+
@service_attachment_names = args[:service_attachment_names] if args.key?(:service_attachment_names)
|
94
90
|
end
|
95
91
|
end
|
96
92
|
|
@@ -170,11 +166,7 @@ module Google
|
|
170
166
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess]
|
171
167
|
attr_accessor :private_access
|
172
168
|
|
173
|
-
# Output only.
|
174
|
-
# field is set by reading settings from the data plane. For more information
|
175
|
-
# about the format of the component please refer to go/ccaip-vpc-sc-org-policy.
|
176
|
-
# This field is must be fully populated only for Create/Update resource
|
177
|
-
# operations. The main use case for this field is OrgPolicy checks via CPE.
|
169
|
+
# Output only. TODO(b/283407860) Deprecate this field.
|
178
170
|
# Corresponds to the JSON property `privateComponents`
|
179
171
|
# @return [Array<String>]
|
180
172
|
attr_accessor :private_components
|
@@ -679,6 +671,11 @@ module Google
|
|
679
671
|
# @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>]
|
680
672
|
attr_accessor :ingress_settings
|
681
673
|
|
674
|
+
# Private service connect settings.
|
675
|
+
# Corresponds to the JSON property `pscSetting`
|
676
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting]
|
677
|
+
attr_accessor :psc_setting
|
678
|
+
|
682
679
|
def initialize(**args)
|
683
680
|
update!(**args)
|
684
681
|
end
|
@@ -687,6 +684,27 @@ module Google
|
|
687
684
|
def update!(**args)
|
688
685
|
@egress_settings = args[:egress_settings] if args.key?(:egress_settings)
|
689
686
|
@ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
|
687
|
+
@psc_setting = args[:psc_setting] if args.key?(:psc_setting)
|
688
|
+
end
|
689
|
+
end
|
690
|
+
|
691
|
+
# Private service connect settings.
|
692
|
+
class PscSetting
|
693
|
+
include Google::Apis::Core::Hashable
|
694
|
+
|
695
|
+
# The list of project ids that are allowed to send traffic to the service
|
696
|
+
# attachment. This field should be filled only for the ingress components.
|
697
|
+
# Corresponds to the JSON property `allowedConsumerProjectIds`
|
698
|
+
# @return [Array<String>]
|
699
|
+
attr_accessor :allowed_consumer_project_ids
|
700
|
+
|
701
|
+
def initialize(**args)
|
702
|
+
update!(**args)
|
703
|
+
end
|
704
|
+
|
705
|
+
# Update properties of this object
|
706
|
+
def update!(**args)
|
707
|
+
@allowed_consumer_project_ids = args[:allowed_consumer_project_ids] if args.key?(:allowed_consumer_project_ids)
|
690
708
|
end
|
691
709
|
end
|
692
710
|
|
@@ -770,27 +788,6 @@ module Google
|
|
770
788
|
end
|
771
789
|
end
|
772
790
|
|
773
|
-
# Container for the VPC-SC networking configurations.
|
774
|
-
class ServiceAttachment
|
775
|
-
include Google::Apis::Core::Hashable
|
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
|
-
@name = args[:name] if args.key?(:name)
|
791
|
-
end
|
792
|
-
end
|
793
|
-
|
794
791
|
# The `Status` type defines a logical error model that is suitable for different
|
795
792
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
796
793
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -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.22.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 = "20240621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,19 +130,19 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
-
class
|
133
|
+
class PscSetting
|
134
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
135
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
-
class
|
139
|
+
class Quota
|
140
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
141
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
-
class
|
145
|
+
class SamlParams
|
146
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
147
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -189,10 +189,8 @@ module Google
|
|
189
189
|
class Component
|
190
190
|
# @private
|
191
191
|
class Representation < Google::Apis::Core::JsonRepresentation
|
192
|
-
collection :allowed_project_ids, as: 'allowedProjectIds'
|
193
192
|
property :name, as: 'name'
|
194
|
-
collection :
|
195
|
-
|
193
|
+
collection :service_attachment_names, as: 'serviceAttachmentNames'
|
196
194
|
end
|
197
195
|
end
|
198
196
|
|
@@ -358,6 +356,15 @@ module Google
|
|
358
356
|
|
359
357
|
collection :ingress_settings, as: 'ingressSettings', class: Google::Apis::ContactcenteraiplatformV1alpha1::Component, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Component::Representation
|
360
358
|
|
359
|
+
property :psc_setting, as: 'pscSetting', class: Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting::Representation
|
360
|
+
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
364
|
+
class PscSetting
|
365
|
+
# @private
|
366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
367
|
+
collection :allowed_consumer_project_ids, as: 'allowedConsumerProjectIds'
|
361
368
|
end
|
362
369
|
end
|
363
370
|
|
@@ -382,13 +389,6 @@ module Google
|
|
382
389
|
end
|
383
390
|
end
|
384
391
|
|
385
|
-
class ServiceAttachment
|
386
|
-
# @private
|
387
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
388
|
-
property :name, as: 'name'
|
389
|
-
end
|
390
|
-
end
|
391
|
-
|
392
392
|
class Status
|
393
393
|
# @private
|
394
394
|
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.22.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-06-
|
11
|
+
date: 2024-06-23 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.22.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: []
|