google-apis-contactcenteraiplatform_v1alpha1 0.2.0 → 0.4.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: f222b3e9da871ea38b375e5423185942ede0c98333b7ede3da8a6d4877399918
4
- data.tar.gz: 7bcedd47270831f92752d299bce23692c3ce41d8169993b65e5a98280e81168a
3
+ metadata.gz: 588dc8e21c34dffe8204c63fc8123fc1a20347162afcbff7229e6eb8cc8c340c
4
+ data.tar.gz: c803e01e660491a371e0eadeb520af6d71f3e44f97d29d127c4e0f9244ecf4a5
5
5
  SHA512:
6
- metadata.gz: d234a10e17a5d3f8637c28342751d964cbf93996a91658604fd9afa604783dffff085c01d5663a7bb16791fd60d648524ee96fa61abb3819a4d875396997ec69
7
- data.tar.gz: 41151f5bf0d7e9349ea52329b1ce605388b309bd0105c1a1203f4d41e06b2dc4da253bedc481efab071114fae910347a89f081f3934148f7918b26cbcc8d34ab
6
+ metadata.gz: 840dee0b5728ce617e668ababf219c2eca804272fcbe888e520cdd7164ffebc026f97dfc05e10bcdf5a601380c431c2c4bb5506fad8c758806213e423f3adc05
7
+ data.tar.gz: 961710520491dc0ce3b065d857adb38ab8d7909834c67b93da6c12550f57207218edf336d88af5fd96eab9b5ffc1f9e86cfb86877f4dd8a3a5da05931dc79153
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-contactcenteraiplatform_v1alpha1
2
2
 
3
+ ### v0.4.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230309
6
+
7
+ ### v0.3.0 (2023-03-05)
8
+
9
+ * Regenerated from discovery document revision 20230222
10
+
3
11
  ### v0.2.0 (2023-02-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20230202
@@ -22,6 +22,31 @@ module Google
22
22
  module Apis
23
23
  module ContactcenteraiplatformV1alpha1
24
24
 
25
+ # Message storing info about the first admin user. Next ID: 3
26
+ class AdminUser
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Optional. Last/family name of the first admin user.
30
+ # Corresponds to the JSON property `familyName`
31
+ # @return [String]
32
+ attr_accessor :family_name
33
+
34
+ # Optional. First/given name of the first admin user.
35
+ # Corresponds to the JSON property `givenName`
36
+ # @return [String]
37
+ attr_accessor :given_name
38
+
39
+ def initialize(**args)
40
+ update!(**args)
41
+ end
42
+
43
+ # Update properties of this object
44
+ def update!(**args)
45
+ @family_name = args[:family_name] if args.key?(:family_name)
46
+ @given_name = args[:given_name] if args.key?(:given_name)
47
+ end
48
+ end
49
+
25
50
  # The request message for Operations.CancelOperation.
26
51
  class CancelOperationRequest
27
52
  include Google::Apis::Core::Hashable
@@ -35,10 +60,15 @@ module Google
35
60
  end
36
61
  end
37
62
 
38
- # Message describing ContactCenter object
63
+ # Message describing ContactCenter object Next ID: 14
39
64
  class ContactCenter
40
65
  include Google::Apis::Core::Hashable
41
66
 
67
+ # Message storing info about the first admin user. Next ID: 3
68
+ # Corresponds to the JSON property `adminUser`
69
+ # @return [Google::Apis::ContactcenteraiplatformV1alpha1::AdminUser]
70
+ attr_accessor :admin_user
71
+
42
72
  # Optional. Whether to enable users to be created in the CCAIP-instance
43
73
  # concurrently to having users in Cloud identity
44
74
  # Corresponds to the JSON property `ccaipManagedUsers`
@@ -97,7 +127,7 @@ module Google
97
127
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::UrIs]
98
128
  attr_accessor :uris
99
129
 
100
- # Optional. Email address of the first admin users.
130
+ # Optional. Email address of the first admin user.
101
131
  # Corresponds to the JSON property `userEmail`
102
132
  # @return [String]
103
133
  attr_accessor :user_email
@@ -108,6 +138,7 @@ module Google
108
138
 
109
139
  # Update properties of this object
110
140
  def update!(**args)
141
+ @admin_user = args[:admin_user] if args.key?(:admin_user)
111
142
  @ccaip_managed_users = args[:ccaip_managed_users] if args.key?(:ccaip_managed_users)
112
143
  @create_time = args[:create_time] if args.key?(:create_time)
113
144
  @customer_domain_prefix = args[:customer_domain_prefix] if args.key?(:customer_domain_prefix)
@@ -382,7 +413,7 @@ module Google
382
413
  # @return [String]
383
414
  attr_accessor :api_version
384
415
 
385
- # Message describing ContactCenter object
416
+ # Message describing ContactCenter object Next ID: 14
386
417
  # Corresponds to the JSON property `contactCenter`
387
418
  # @return [Google::Apis::ContactcenteraiplatformV1alpha1::ContactCenter]
388
419
  attr_accessor :contact_center
@@ -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.2.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230202"
25
+ REVISION = "20230309"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module ContactcenteraiplatformV1alpha1
24
24
 
25
+ class AdminUser
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class CancelOperationRequest
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -106,6 +112,14 @@ module Google
106
112
  include Google::Apis::Core::JsonObjectSupport
107
113
  end
108
114
 
115
+ class AdminUser
116
+ # @private
117
+ class Representation < Google::Apis::Core::JsonRepresentation
118
+ property :family_name, as: 'familyName'
119
+ property :given_name, as: 'givenName'
120
+ end
121
+ end
122
+
109
123
  class CancelOperationRequest
110
124
  # @private
111
125
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -115,6 +129,8 @@ module Google
115
129
  class ContactCenter
116
130
  # @private
117
131
  class Representation < Google::Apis::Core::JsonRepresentation
132
+ property :admin_user, as: 'adminUser', class: Google::Apis::ContactcenteraiplatformV1alpha1::AdminUser, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::AdminUser::Representation
133
+
118
134
  property :ccaip_managed_users, as: 'ccaipManagedUsers'
119
135
  property :create_time, as: 'createTime'
120
136
  property :customer_domain_prefix, as: 'customerDomainPrefix'
@@ -166,7 +166,7 @@ module Google
166
166
  # request ID so that if you must retry your request, the server will know to
167
167
  # ignore the request if it has already been completed. The server will guarantee
168
168
  # that for at least 60 minutes since the first request. For example, consider a
169
- # situation where you make an initial request and t he request times out. If you
169
+ # situation where you make an initial request and the request times out. If you
170
170
  # make the request again with the same request ID, the server can check if
171
171
  # original operation with the same request ID was received, and if so, will
172
172
  # ignore the second request. This prevents clients from accidentally creating
@@ -211,7 +211,7 @@ module Google
211
211
  # request ID so that if you must retry your request, the server will know to
212
212
  # ignore the request if it has already been completed. The server will guarantee
213
213
  # that for at least 60 minutes after the first request. For example, consider a
214
- # situation where you make an initial request and t he request times out. If you
214
+ # situation where you make an initial request and the request times out. If you
215
215
  # make the request again with the same request ID, the server can check if
216
216
  # original operation with the same request ID was received, and if so, will
217
217
  # ignore the second request. This prevents clients from accidentally creating
@@ -327,7 +327,7 @@ module Google
327
327
  # request ID so that if you must retry your request, the server will know to
328
328
  # ignore the request if it has already been completed. The server will guarantee
329
329
  # that for at least 60 minutes since the first request. For example, consider a
330
- # situation where you make an initial request and t he request times out. If you
330
+ # situation where you make an initial request and the request times out. If you
331
331
  # make the request again with the same request ID, the server can check if
332
332
  # original operation with the same request ID was received, and if so, will
333
333
  # ignore the second request. This prevents clients from accidentally creating
@@ -475,13 +475,7 @@ module Google
475
475
  end
476
476
 
477
477
  # Lists operations that match the specified filter in the request. If the server
478
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
479
- # binding allows API services to override the binding to use different resource
480
- # name schemes, such as `users/*/operations`. To override the binding, API
481
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
482
- # service configuration. For backwards compatibility, the default name includes
483
- # the operations collection id, however overriding users must ensure the name
484
- # binding is the parent resource, without the operations collection id.
478
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
485
479
  # @param [String] name
486
480
  # The name of the operation's parent resource.
487
481
  # @param [String] filter
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.2.0
4
+ version: 0.4.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-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-19 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.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.4.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: []