google-apis-cloudsupport_v2beta 0.13.0 → 0.15.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: 7393f0c44e22ee143f505f3b74355d754b93f96071eedcb7fb51eb2c6616609f
4
- data.tar.gz: 11cb37ba2a274e026d953cb692f43f7e123b37a1b07f7329c03de010fa02054e
3
+ metadata.gz: e736df087569fb443e6b080a107850bf9e453fbd5e82dbc77b5d6375866397fc
4
+ data.tar.gz: 8450df28e6249eeccf77d18a6fb2790d5471368103e5f51ae373a4eefe6e617f
5
5
  SHA512:
6
- metadata.gz: a86fe0343a9fae293b4b748bf76b245703a71d627b872c86da4a18755c739bc3c4134946b75b9888a7375b15fc9a6a82bc8d1351954f2a3643af9fc49fb302d1
7
- data.tar.gz: e761b0213aabc9afa7b2b7bdaaedb55b527d27523ea4cc9061ecc934ea793ae76b76d6b016496009da210ccc77e0a2f4fe03eab7eb827cb422bf897e223ceafc
6
+ metadata.gz: aca12ded19d18ce789b363d78d030eace56e63442c74f52e1862dd86c8ed0f960522a1f4b73f0df3c72c6bd4863d2cd227e091ea2dff50500be68cd3e21becb8
7
+ data.tar.gz: 6fde2bdb7d38ab2dd966a2483d04442949025e5c2303330f5f2d21d89b54709f43c701c370a53c40806a4aef0fc6b4aec1c5082e9baa62a7e5b5a258783c837f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.15.0 (2022-12-02)
4
+
5
+ * Regenerated from discovery document revision 20221129
6
+
7
+ ### v0.14.0 (2022-10-27)
8
+
9
+ * Regenerated using generator version 0.11.0
10
+
3
11
  ### v0.13.0 (2022-09-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20220916
@@ -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.13.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
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 = "20221129"
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.
@@ -452,7 +456,8 @@ module Google
452
456
  execute_or_queue_command(command, &block)
453
457
  end
454
458
 
455
- # Add a new comment to the specified Case.
459
+ # Add a new comment to the specified Case. The comment object must have the
460
+ # following fields set: body.
456
461
  # @param [String] parent
457
462
  # Required. The resource name of Case to which this comment should be added.
458
463
  # @param [Google::Apis::CloudsupportV2beta::Comment] comment_object
@@ -560,9 +565,11 @@ module Google
560
565
  execute_or_queue_command(command, &block)
561
566
  end
562
567
 
563
- # Create a file attachment on a case or Cloud resource.
568
+ # Create a file attachment on a case or Cloud resource. The attachment object
569
+ # must have the following fields set: filename.
564
570
  # @param [String] parent
565
- # Required. The resource name of the case to which attachment should be attached.
571
+ # Required. The resource name of the case (or case parent) to which the
572
+ # attachment should be attached.
566
573
  # @param [Google::Apis::CloudsupportV2beta::CreateAttachmentRequest] create_attachment_request_object
567
574
  # @param [String] fields
568
575
  # 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.13.0
4
+ version: 0.15.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.0
19
+ version: 0.9.1
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.0
29
+ version: 0.9.1
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-cloudsupport_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.15.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: []