google-apis-contactcenteraiplatform_v1alpha1 0.11.0 → 0.13.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: 75bc214c558625ef19035fed995a3b1222ae342c60c549b7e3a633d5a79a16e8
4
- data.tar.gz: 6e311801099fa03d54bafda13448bc7687554f3380d7f4d33232c273ddbd8b84
3
+ metadata.gz: 4fc68e3be34af2519785701d099b779d582e7eab4b59ac76e74f40a39a249b49
4
+ data.tar.gz: 232cee62e84ac3199f0324bf6c061d2be26a6c23029832bdd77b71b4155d57b9
5
5
  SHA512:
6
- metadata.gz: e1516399933a557f203cc068710e7f479988b68baa21b24eca221f9a32ac955b7273d91d796f1c5daa40a5a84fac9093cb1f1d63007f9952d751c7e71f6c71c0
7
- data.tar.gz: 9d24580617f94b3ca172788ebb470a4af1bd7d4d066c88c191d1121654eba10d5a57b396e08092a5e0467dd17114df1ec7fa5510604a1e742c8b37c9c8066977
6
+ metadata.gz: 98162e8852ba5677115e5105d60ac6581f2202ca2d81c6c7ab79ce5f70aafb52b8e524dd68bffdaeb09d17316dd76e104930a7896b0cb431245803feee4b2884
7
+ data.tar.gz: 21c43685c9d1f55746b210cd837ffb970408f33b312f2fde21529657835a7dcf0861f733e601c93cd9a3eac9ddb6b78629ead4ca1bb765caa69b17931a712b00
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-contactcenteraiplatform_v1alpha1
2
2
 
3
+ ### v0.13.0 (2024-01-22)
4
+
5
+ * Regenerated from discovery document revision 20240103
6
+ * Regenerated using generator version 0.13.0
7
+
8
+ ### v0.12.0 (2023-09-17)
9
+
10
+ * Regenerated from discovery document revision 20230907
11
+
3
12
  ### v0.11.0 (2023-09-10)
4
13
 
5
14
  * Regenerated from discovery document revision 20230823
@@ -60,7 +60,7 @@ module Google
60
60
  end
61
61
  end
62
62
 
63
- # Message describing ContactCenter object Next ID: 16
63
+ # Message describing ContactCenter object Next ID: 18
64
64
  class ContactCenter
65
65
  include Google::Apis::Core::Hashable
66
66
 
@@ -112,6 +112,15 @@ module Google
112
112
  # @return [String]
113
113
  attr_accessor :name
114
114
 
115
+ # Output only. A list of UJET components that should be privately accessed. This
116
+ # field is set by reading settings from the data plane. For more information
117
+ # about the format of the component please refer to go/ccaip-vpc-sc-org-policy.
118
+ # This field is must be fully populated only for Create/Update resource
119
+ # operations. The main use case for this field is OrgPolicy checks via CPE.
120
+ # Corresponds to the JSON property `privateComponents`
121
+ # @return [Array<String>]
122
+ attr_accessor :private_components
123
+
115
124
  # Message storing SAML params to enable Google as IDP.
116
125
  # Corresponds to the JSON property `samlParams`
117
126
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams]
@@ -152,6 +161,7 @@ module Google
152
161
  @kms_key = args[:kms_key] if args.key?(:kms_key)
153
162
  @labels = args[:labels] if args.key?(:labels)
154
163
  @name = args[:name] if args.key?(:name)
164
+ @private_components = args[:private_components] if args.key?(:private_components)
155
165
  @saml_params = args[:saml_params] if args.key?(:saml_params)
156
166
  @state = args[:state] if args.key?(:state)
157
167
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -486,7 +496,7 @@ module Google
486
496
  # @return [String]
487
497
  attr_accessor :api_version
488
498
 
489
- # Message describing ContactCenter object Next ID: 16
499
+ # Message describing ContactCenter object Next ID: 18
490
500
  # Corresponds to the JSON property `contactCenter`
491
501
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter]
492
502
  attr_accessor :contact_center
@@ -582,6 +592,11 @@ module Google
582
592
  # @return [String]
583
593
  attr_accessor :certificate
584
594
 
595
+ # IdP field that maps to the user’s email address
596
+ # Corresponds to the JSON property `emailMapping`
597
+ # @return [String]
598
+ attr_accessor :email_mapping
599
+
585
600
  # Entity id URL
586
601
  # Corresponds to the JSON property `entityId`
587
602
  # @return [String]
@@ -604,6 +619,7 @@ module Google
604
619
  # Update properties of this object
605
620
  def update!(**args)
606
621
  @certificate = args[:certificate] if args.key?(:certificate)
622
+ @email_mapping = args[:email_mapping] if args.key?(:email_mapping)
607
623
  @entity_id = args[:entity_id] if args.key?(:entity_id)
608
624
  @sso_uri = args[:sso_uri] if args.key?(:sso_uri)
609
625
  @user_email = args[:user_email] if args.key?(:user_email)
@@ -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.11.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.12.0"
22
+ GENERATOR_VERSION = "0.13.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230823"
25
+ REVISION = "20240103"
26
26
  end
27
27
  end
28
28
  end
@@ -152,6 +152,7 @@ module Google
152
152
  property :kms_key, as: 'kmsKey'
153
153
  hash :labels, as: 'labels'
154
154
  property :name, as: 'name'
155
+ collection :private_components, as: 'privateComponents'
155
156
  property :saml_params, as: 'samlParams', class: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::SamlParams::Representation
156
157
 
157
158
  property :state, as: 'state'
@@ -277,6 +278,7 @@ module Google
277
278
  # @private
278
279
  class Representation < Google::Apis::Core::JsonRepresentation
279
280
  property :certificate, as: 'certificate'
281
+ property :email_mapping, as: 'emailMapping'
280
282
  property :entity_id, as: 'entityId'
281
283
  property :sso_uri, as: 'ssoUri'
282
284
  property :user_email, as: 'userEmail'
@@ -32,6 +32,8 @@ module Google
32
32
  #
33
33
  # @see https://cloud.google.com/solutions/contact-center-ai-platform
34
34
  class CCAIPlatformService < Google::Apis::Core::BaseService
35
+ DEFAULT_ENDPOINT_TEMPLATE = "https://contactcenteraiplatform.$UNIVERSE_DOMAIN$/"
36
+
35
37
  # @return [String]
36
38
  # API key. Your API key identifies your project and provides you with API access,
37
39
  # quota, and reports. Required unless you provide an OAuth 2.0 token.
@@ -43,7 +45,7 @@ module Google
43
45
  attr_accessor :quota_user
44
46
 
45
47
  def initialize
46
- super('https://contactcenteraiplatform.googleapis.com/', '',
48
+ super(DEFAULT_ENDPOINT_TEMPLATE, '',
47
49
  client_name: 'google-apis-contactcenteraiplatform_v1alpha1',
48
50
  client_version: Google::Apis::ContactcenteraiplatformV1alpha1::GEM_VERSION)
49
51
  @batch_path = 'batch'
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.11.0
4
+ version: 0.13.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: 2023-09-10 00:00:00.000000000 Z
11
+ date: 2024-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.11.0
19
+ version: 0.12.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.11.0
29
+ version: 0.12.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.13.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Contact Center AI Platform API V1alpha1