google-apis-cloudsupport_v2beta 0.14.0 → 0.16.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: 841b3a3baee21ab951697b25d5221d0b683521cbb994a1cf4cb92878c8997c15
4
- data.tar.gz: 55fea749b01ec51765dadbf22914303d11401afc390ad0520caaec97b3be002e
3
+ metadata.gz: 3ba401298a86ac62fc39e0262e138364ea4bb2513ad95a053e6f72ce9cecf0a5
4
+ data.tar.gz: 8e4c27ad4b9bd1fc0f47dbf0c5b9d97315af291a25ca6a02760666dcd9d94f2f
5
5
  SHA512:
6
- metadata.gz: 4de0969b24e40b03f12b8bb9e5fe45fbba262508561abd238769a45c99fa7935542f9dadc3fc7c88e93d07ccb4c059a197b79641570602b2948d1c68c4a4bd81
7
- data.tar.gz: 7a7d9e2be4237c4d67b9778b05ec8f757c6e294d8b786dd4bbb92ff3e0fe1bf3d96f083b167e35aeecb625ce7d9a1c1227ee48a1527673dcd9f71159db23020d
6
+ metadata.gz: c5e9f6608d8c30cdbd1ecabed296a98df40187fcfbb50c5839d1cb828903657d69290c2d685edcd79f2dc2ae808b72fa49b519df8a8d661721caa29f5a3d6df4
7
+ data.tar.gz: 253ca4135369597e3a0076faceded9eab205750b7d2b9bf93ffe4e009e02ae2b74c688182e530509cb8f298804a44b26246c551439a74aefbd76166518b69a14
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.16.0 (2022-12-28)
4
+
5
+ * Regenerated from discovery document revision 20221213
6
+
7
+ ### v0.15.0 (2022-12-02)
8
+
9
+ * Regenerated from discovery document revision 20221129
10
+
3
11
  ### v0.14.0 (2022-10-27)
4
12
 
5
13
  * Regenerated using generator version 0.11.0
@@ -193,6 +193,17 @@ module Google
193
193
  attr_accessor :escalated
194
194
  alias_method :escalated?, :escalated
195
195
 
196
+ # The language the user has requested to receive support in. This should be a
197
+ # BCP 47 language code (e.g., `"en"`, `"zh-CN"`, `"zh-TW"`, `"ja"`, `"ko"`). If
198
+ # no language or an unsupported language is specified, this field defaults to
199
+ # English (en). Language selection during case creation may affect your
200
+ # available support options. For a list of supported languages and their support
201
+ # working hours, see: https://cloud.google.com/support/docs/language-working-
202
+ # hours
203
+ # Corresponds to the JSON property `languageCode`
204
+ # @return [String]
205
+ attr_accessor :language_code
206
+
196
207
  # The resource name for the case.
197
208
  # Corresponds to the JSON property `name`
198
209
  # @return [String]
@@ -249,6 +260,7 @@ module Google
249
260
  @description = args[:description] if args.key?(:description)
250
261
  @display_name = args[:display_name] if args.key?(:display_name)
251
262
  @escalated = args[:escalated] if args.key?(:escalated)
263
+ @language_code = args[:language_code] if args.key?(:language_code)
252
264
  @name = args[:name] if args.key?(:name)
253
265
  @priority = args[:priority] if args.key?(:priority)
254
266
  @severity = args[:severity] if args.key?(:severity)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudsupportV2beta
18
18
  # Version of the google-apis-cloudsupport_v2beta gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220916"
25
+ REVISION = "20221213"
26
26
  end
27
27
  end
28
28
  end
@@ -222,6 +222,7 @@ module Google
222
222
  property :description, as: 'description'
223
223
  property :display_name, as: 'displayName'
224
224
  property :escalated, as: 'escalated'
225
+ property :language_code, as: 'languageCode'
225
226
  property :name, as: 'name'
226
227
  property :priority, as: 'priority'
227
228
  property :severity, as: 'severity'
@@ -50,9 +50,11 @@ module Google
50
50
  @batch_path = 'batch'
51
51
  end
52
52
 
53
- # Create a file attachment on a case or Cloud resource.
53
+ # Create a file attachment on a case or Cloud resource. The attachment object
54
+ # must have the following fields set: filename.
54
55
  # @param [String] parent
55
- # Required. The resource name of the case to which attachment should be attached.
56
+ # Required. The resource name of the case (or case parent) to which the
57
+ # attachment should be attached.
56
58
  # @param [Google::Apis::CloudsupportV2beta::CreateAttachmentRequest] create_attachment_request_object
57
59
  # @param [String] fields
58
60
  # Selector specifying which fields to include in a partial response.
@@ -158,7 +160,9 @@ module Google
158
160
  execute_or_queue_command(command, &block)
159
161
  end
160
162
 
161
- # Create a new case and associate it with the given Cloud resource.
163
+ # Create a new case and associate it with the given Cloud resource. The case
164
+ # object must have the following fields set: display_name, description,
165
+ # classification, and severity.
162
166
  # @param [String] parent
163
167
  # Required. The name of the Cloud resource under which the case should be
164
168
  # created.
@@ -311,9 +315,7 @@ module Google
311
315
  execute_or_queue_command(command, &block)
312
316
  end
313
317
 
314
- # Update the specified case. Only a subset of fields (display_name, description,
315
- # time_zone, subscriber_email_addresses, related_resources, severity, priority,
316
- # primary_contact, and labels) can be updated.
318
+ # Update the specified case. Only a subset of fields can be updated.
317
319
  # @param [String] name
318
320
  # The resource name for the case.
319
321
  # @param [Google::Apis::CloudsupportV2beta::Case] case_object
@@ -452,7 +454,8 @@ module Google
452
454
  execute_or_queue_command(command, &block)
453
455
  end
454
456
 
455
- # Add a new comment to the specified Case.
457
+ # Add a new comment to the specified Case. The comment object must have the
458
+ # following fields set: body.
456
459
  # @param [String] parent
457
460
  # Required. The resource name of Case to which this comment should be added.
458
461
  # @param [Google::Apis::CloudsupportV2beta::Comment] comment_object
@@ -560,9 +563,11 @@ module Google
560
563
  execute_or_queue_command(command, &block)
561
564
  end
562
565
 
563
- # Create a file attachment on a case or Cloud resource.
566
+ # Create a file attachment on a case or Cloud resource. The attachment object
567
+ # must have the following fields set: filename.
564
568
  # @param [String] parent
565
- # Required. The resource name of the case to which attachment should be attached.
569
+ # Required. The resource name of the case (or case parent) to which the
570
+ # attachment should be attached.
566
571
  # @param [Google::Apis::CloudsupportV2beta::CreateAttachmentRequest] create_attachment_request_object
567
572
  # @param [String] fields
568
573
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudsupport_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.16.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: 2022-10-31 00:00:00.000000000 Z
11
+ date: 2023-01-04 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-cloudsupport_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []