google-apis-contactcenteraiplatform_v1alpha1 0.1.0 → 0.3.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: 2ee84c815ae7c616b4135b356539d5f978d3be028ae7e9add00c4349c5d620eb
4
- data.tar.gz: 0a8430d0c42cbed418c36c898e6f6c876616b6cd9b67f2e36d730578fa5612f7
3
+ metadata.gz: f0a3feefa11ce2395a953141dc20d39f35a799f731443f4463ac5ad0b5a9b7cd
4
+ data.tar.gz: 0bb57b2e7229696e1f9a74cad334843bd8efe25ddff4a617cfe134fff1c63a8f
5
5
  SHA512:
6
- metadata.gz: 6181058b4188a8625d2b64f2f4faf4779de81643545978d96c0961a0fbb184087a91e4fbeacbcd3048c21a3707c5330d6b5bda89f54779f112304ffc87f0dcc5
7
- data.tar.gz: 027d18c471f5266de41d4e06318f9fae94387d8eb2cfa56fa904a9bdd3d3f8ea5efeef6743a11776e113fe5b56d2f5fa05bfc52b094899e3d9bd28fb9744c565
6
+ metadata.gz: feac36b4490a09ffeb1fac3c4e9615a3efa6e67d4c4e5d5b9c4eff27ca37eee5d3ad62c6212a0232444b6c2aa50199c46d9ac90c13451d61ea074f2aa79021bc
7
+ data.tar.gz: 397c732a1b030de83d04517873ab0857b0195fb21018a17b7f69f83227821715c1f8966a53d1070fe9d33b31adb5d85eff28052ffcbffb569f20b5ab67598503
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-contactcenteraiplatform_v1alpha1
2
2
 
3
+ ### v0.3.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230222
6
+
7
+ ### v0.2.0 (2023-02-15)
8
+
9
+ * Regenerated from discovery document revision 20230202
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.1.0 (2023-01-08)
4
13
 
5
14
  * Regenerated from discovery document revision 20230105
@@ -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.1.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230105"
25
+ REVISION = "20230222"
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
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.1.0
4
+ version: 0.3.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-01-08 00:00:00.000000000 Z
11
+ date: 2023-03-05 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.9.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.3.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: []