google-apis-contactcenteraiplatform_v1alpha1 0.19.0 → 0.21.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: 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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenteraiplatform_v1alpha1
|
2
2
|
|
3
|
+
### v0.21.0 (2024-06-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240607
|
6
|
+
|
7
|
+
### v0.20.0 (2024-06-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240603
|
10
|
+
|
3
11
|
### v0.19.0 (2024-06-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240528
|
@@ -71,10 +71,13 @@ module Google
|
|
71
71
|
# @return [String]
|
72
72
|
attr_accessor :name
|
73
73
|
|
74
|
-
# Associated service attachments.
|
75
|
-
#
|
76
|
-
#
|
77
|
-
|
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
|
78
81
|
|
79
82
|
def initialize(**args)
|
80
83
|
update!(**args)
|
@@ -83,7 +86,7 @@ module Google
|
|
83
86
|
# Update properties of this object
|
84
87
|
def update!(**args)
|
85
88
|
@name = args[:name] if args.key?(:name)
|
86
|
-
@
|
89
|
+
@service_attachment_names = args[:service_attachment_names] if args.key?(:service_attachment_names)
|
87
90
|
end
|
88
91
|
end
|
89
92
|
|
@@ -672,6 +675,11 @@ module Google
|
|
672
675
|
# @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>]
|
673
676
|
attr_accessor :ingress_settings
|
674
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
|
+
|
675
683
|
def initialize(**args)
|
676
684
|
update!(**args)
|
677
685
|
end
|
@@ -680,6 +688,27 @@ module Google
|
|
680
688
|
def update!(**args)
|
681
689
|
@egress_settings = args[:egress_settings] if args.key?(:egress_settings)
|
682
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)
|
683
712
|
end
|
684
713
|
end
|
685
714
|
|
@@ -763,35 +792,6 @@ module Google
|
|
763
792
|
end
|
764
793
|
end
|
765
794
|
|
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
|
-
|
795
795
|
# The `Status` type defines a logical error model that is suitable for different
|
796
796
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
797
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
|
@@ -190,8 +190,7 @@ module Google
|
|
190
190
|
# @private
|
191
191
|
class Representation < Google::Apis::Core::JsonRepresentation
|
192
192
|
property :name, as: 'name'
|
193
|
-
collection :
|
194
|
-
|
193
|
+
collection :service_attachment_names, as: 'serviceAttachmentNames'
|
195
194
|
end
|
196
195
|
end
|
197
196
|
|
@@ -357,6 +356,15 @@ module Google
|
|
357
356
|
|
358
357
|
collection :ingress_settings, as: 'ingressSettings', class: Google::Apis::ContactcenteraiplatformV1alpha1::Component, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Component::Representation
|
359
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'
|
360
368
|
end
|
361
369
|
end
|
362
370
|
|
@@ -381,14 +389,6 @@ module Google
|
|
381
389
|
end
|
382
390
|
end
|
383
391
|
|
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
|
-
|
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: []
|