google-apis-contactcenteraiplatform_v1alpha1 0.31.0 → 0.33.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb +34 -0
- data/lib/google/apis/contactcenteraiplatform_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb +16 -0
- data/lib/google/apis/contactcenteraiplatform_v1alpha1/service.rb +11 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8494ffd75406a5e0ecfd24ada494549967dfce7d74410fbb33389b48b2ad0e8
|
4
|
+
data.tar.gz: f141c8594988c03ae94605b9bb85ca4327d3099d01b5f86864d00fcd06f81d23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2dbb92bf22ef680eda35313935ca954a4464f96f45e83033c5f2624548d572027b9ecaf373587797c17fd2713cfb4008f58c1a84ff4b26f8e49aa6cd415f481
|
7
|
+
data.tar.gz: 728bf6a440bba42bcdfca08926c3e41d2e4422af9d37dd44c8111f6fd7536d1ed12368f0d5577636d4f62d3773dab35ce109aa0b62d8f79cc566ae753876484b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenteraiplatform_v1alpha1
|
2
2
|
|
3
|
+
### v0.33.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250925
|
6
|
+
|
7
|
+
### v0.32.0 (2025-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250821
|
10
|
+
|
3
11
|
### v0.31.0 (2025-07-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250703
|
@@ -140,6 +140,11 @@ module Google
|
|
140
140
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::Early]
|
141
141
|
attr_accessor :early
|
142
142
|
|
143
|
+
# Optional. Feature configuration to populate the feature flags.
|
144
|
+
# Corresponds to the JSON property `featureConfig`
|
145
|
+
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::FeatureConfig]
|
146
|
+
attr_accessor :feature_config
|
147
|
+
|
143
148
|
# Message storing the instance configuration.
|
144
149
|
# Corresponds to the JSON property `instanceConfig`
|
145
150
|
# @return [Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig]
|
@@ -220,6 +225,7 @@ module Google
|
|
220
225
|
@customer_domain_prefix = args[:customer_domain_prefix] if args.key?(:customer_domain_prefix)
|
221
226
|
@display_name = args[:display_name] if args.key?(:display_name)
|
222
227
|
@early = args[:early] if args.key?(:early)
|
228
|
+
@feature_config = args[:feature_config] if args.key?(:feature_config)
|
223
229
|
@instance_config = args[:instance_config] if args.key?(:instance_config)
|
224
230
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
225
231
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -319,6 +325,26 @@ module Google
|
|
319
325
|
end
|
320
326
|
end
|
321
327
|
|
328
|
+
#
|
329
|
+
class FeatureConfig
|
330
|
+
include Google::Apis::Core::Hashable
|
331
|
+
|
332
|
+
# Optional. If true - enables the agent desktop feature. Default is false.
|
333
|
+
# Corresponds to the JSON property `agentDesktopEnabled`
|
334
|
+
# @return [Boolean]
|
335
|
+
attr_accessor :agent_desktop_enabled
|
336
|
+
alias_method :agent_desktop_enabled?, :agent_desktop_enabled
|
337
|
+
|
338
|
+
def initialize(**args)
|
339
|
+
update!(**args)
|
340
|
+
end
|
341
|
+
|
342
|
+
# Update properties of this object
|
343
|
+
def update!(**args)
|
344
|
+
@agent_desktop_enabled = args[:agent_desktop_enabled] if args.key?(:agent_desktop_enabled)
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
322
348
|
# Represents the metadata of the long-running operation.
|
323
349
|
class GoogleCloudCommonOperationMetadata
|
324
350
|
include Google::Apis::Core::Hashable
|
@@ -467,6 +493,13 @@ module Google
|
|
467
493
|
# @return [Array<Google::Apis::ContactcenteraiplatformV1alpha1::Operation>]
|
468
494
|
attr_accessor :operations
|
469
495
|
|
496
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
497
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
498
|
+
# when attempting to list all resources across all supported locations.
|
499
|
+
# Corresponds to the JSON property `unreachable`
|
500
|
+
# @return [Array<String>]
|
501
|
+
attr_accessor :unreachable
|
502
|
+
|
470
503
|
def initialize(**args)
|
471
504
|
update!(**args)
|
472
505
|
end
|
@@ -475,6 +508,7 @@ module Google
|
|
475
508
|
def update!(**args)
|
476
509
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
477
510
|
@operations = args[:operations] if args.key?(:operations)
|
511
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
478
512
|
end
|
479
513
|
end
|
480
514
|
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250925"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class FeatureConfig
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class GoogleCloudCommonOperationMetadata
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -208,6 +214,8 @@ module Google
|
|
208
214
|
property :display_name, as: 'displayName'
|
209
215
|
property :early, as: 'early', class: Google::Apis::ContactcenteraiplatformV1alpha1::Early, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Early::Representation
|
210
216
|
|
217
|
+
property :feature_config, as: 'featureConfig', class: Google::Apis::ContactcenteraiplatformV1alpha1::FeatureConfig, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::FeatureConfig::Representation
|
218
|
+
|
211
219
|
property :instance_config, as: 'instanceConfig', class: Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::InstanceConfig::Representation
|
212
220
|
|
213
221
|
property :kms_key, as: 'kmsKey'
|
@@ -259,6 +267,13 @@ module Google
|
|
259
267
|
end
|
260
268
|
end
|
261
269
|
|
270
|
+
class FeatureConfig
|
271
|
+
# @private
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
273
|
+
property :agent_desktop_enabled, as: 'agentDesktopEnabled'
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
262
277
|
class GoogleCloudCommonOperationMetadata
|
263
278
|
# @private
|
264
279
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -304,6 +319,7 @@ module Google
|
|
304
319
|
property :next_page_token, as: 'nextPageToken'
|
305
320
|
collection :operations, as: 'operations', class: Google::Apis::ContactcenteraiplatformV1alpha1::Operation, decorator: Google::Apis::ContactcenteraiplatformV1alpha1::Operation::Representation
|
306
321
|
|
322
|
+
collection :unreachable, as: 'unreachable'
|
307
323
|
end
|
308
324
|
end
|
309
325
|
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
89
|
+
# field which is primarily intended for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -490,6 +490,13 @@ module Google
|
|
490
490
|
# The standard list page size.
|
491
491
|
# @param [String] page_token
|
492
492
|
# The standard list page token.
|
493
|
+
# @param [Boolean] return_partial_success
|
494
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
495
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
496
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
497
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
498
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
499
|
+
# explicitly documented otherwise in service or product specific documentation.
|
493
500
|
# @param [String] fields
|
494
501
|
# Selector specifying which fields to include in a partial response.
|
495
502
|
# @param [String] quota_user
|
@@ -507,7 +514,7 @@ module Google
|
|
507
514
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
508
515
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
509
516
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
510
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
517
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
511
518
|
command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
|
512
519
|
command.response_representation = Google::Apis::ContactcenteraiplatformV1alpha1::ListOperationsResponse::Representation
|
513
520
|
command.response_class = Google::Apis::ContactcenteraiplatformV1alpha1::ListOperationsResponse
|
@@ -515,6 +522,7 @@ module Google
|
|
515
522
|
command.query['filter'] = filter unless filter.nil?
|
516
523
|
command.query['pageSize'] = page_size unless page_size.nil?
|
517
524
|
command.query['pageToken'] = page_token unless page_token.nil?
|
525
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
518
526
|
command.query['fields'] = fields unless fields.nil?
|
519
527
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
520
528
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenteraiplatform_v1alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.33.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenteraiplatform_v1alpha1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|