google-apis-contactcenteraiplatform_v1alpha1 0.20.0 → 0.21.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d7ad2c6d79aa8b551695d32b802dbe8ad5634d3a816f2f99d658751745a3f4e
|
4
|
+
data.tar.gz: e80e39a15e59bd4cf0edd8459e64489ddb9ed8198b13279e4d468f0fecad4784
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca7cfac6a100b6e44fc44fb35fba1ae09e4ebaac5a9cdce5c53cd87c9da3659afc5021e0b61f381aebb502bb3a96462652d32766859ecbec067801aa19a6332e
|
7
|
+
data.tar.gz: 3cbfeaa8bde0277e03db4db205bf49f62b55c4c45cefa691098b101d0cc52a5369a4de70d9568336be03ada4725dbd3a4002d7ca765f1a69c11646ada62a9998
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
@@ -679,6 +675,11 @@ module Google
|
|
679
675
|
# @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>]
|
680
676
|
attr_accessor :ingress_settings
|
681
677
|
|
678
|
+
# Private service connect settings.
|
679
|
+
# Corresponds to the JSON property `pscSetting`
|
680
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting]
|
681
|
+
attr_accessor :psc_setting
|
682
|
+
|
682
683
|
def initialize(**args)
|
683
684
|
update!(**args)
|
684
685
|
end
|
@@ -687,6 +688,27 @@ module Google
|
|
687
688
|
def update!(**args)
|
688
689
|
@egress_settings = args[:egress_settings] if args.key?(:egress_settings)
|
689
690
|
@ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
|
691
|
+
@psc_setting = args[:psc_setting] if args.key?(:psc_setting)
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
695
|
+
# Private service connect settings.
|
696
|
+
class PscSetting
|
697
|
+
include Google::Apis::Core::Hashable
|
698
|
+
|
699
|
+
# The list of project ids that are allowed to send traffic to the service
|
700
|
+
# attachment. This field should be filled only for the ingress components.
|
701
|
+
# Corresponds to the JSON property `allowedConsumerProjectIds`
|
702
|
+
# @return [Array<String>]
|
703
|
+
attr_accessor :allowed_consumer_project_ids
|
704
|
+
|
705
|
+
def initialize(**args)
|
706
|
+
update!(**args)
|
707
|
+
end
|
708
|
+
|
709
|
+
# Update properties of this object
|
710
|
+
def update!(**args)
|
711
|
+
@allowed_consumer_project_ids = args[:allowed_consumer_project_ids] if args.key?(:allowed_consumer_project_ids)
|
690
712
|
end
|
691
713
|
end
|
692
714
|
|
@@ -770,27 +792,6 @@ module Google
|
|
770
792
|
end
|
771
793
|
end
|
772
794
|
|
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
795
|
# The `Status` type defines a logical error model that is suitable for different
|
795
796
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
796
797
|
# 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.21.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 = "20240607"
|
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.21.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-16 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.21.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: []
|