google-apis-contactcenteraiplatform_v1alpha1 0.31.0 → 0.32.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: 6c2378c750b08878b6586acbb325a1c1b6aee643b8a20e211d0e25551248d491
4
- data.tar.gz: ad1979af2ad1083a7943cf87af08ab26ed9e0a2b6992c7b6313a3caeec53ca53
3
+ metadata.gz: 78b42860a10b9f3533546b39e027007b6d487112a9a56b4a79e9553dff86b163
4
+ data.tar.gz: 28dfdc721f6ff2faf4b50fe3ca111fc73bc512235f1989f8df00c2ad12bf71d6
5
5
  SHA512:
6
- metadata.gz: a495bbfeaf4f89ef0092ad0d9aa56937c58871feb3de0c891f5e80a45a4051e7aaa41cb1ab0038dc65866bf4088d66ad60f710f3a7eb364ec9f91d4ae1622070
7
- data.tar.gz: b7b7868931589446980d519192c5b0b08c83fe9b9e508eabf47cd0457081be13203afffa864029da1b018fe21938462105ec658cf051a1732fb9f5bf9600214c
6
+ metadata.gz: 79556f1735dd5b2f0f1ae9c3cc7e0661cbe21b31f0c087984bde608d6fcde897be7ff719761d91f7894f04e11e39780ff65feb2545dd3621ad0913a0a4fe7999
7
+ data.tar.gz: 786248b4da4b6e49cf894ee79e03bad00ff2de035cac2e8a8c2a76eec70b2c864bc5d841a3c37928b2bbdfeb54081b9af38c0d1c8a72d4c90e68afd083739323
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-contactcenteraiplatform_v1alpha1
2
2
 
3
+ ### v0.32.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250821
6
+
3
7
  ### v0.31.0 (2025-07-13)
4
8
 
5
9
  * 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
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.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 = "20250703"
25
+ REVISION = "20250821"
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
@@ -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. A list of extra location types that should be used as conditions for
89
- # controlling the visibility of the locations.
88
+ # Optional. Do not use this field. It is unsupported and is ignored unless
89
+ # explicitly documented otherwise. This is primarily 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
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.31.0
4
+ version: 0.32.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.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenteraiplatform_v1alpha1/v0.32.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: