google-apis-cloudsupport_v2beta 0.35.0 → 0.37.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: a7b9ae719b8994e708095beb48a4ae54f3b0d5f4e8d4593011de8819e408c149
4
- data.tar.gz: 2d9af8ebd999b05dff06b27513f51899f067e0c2e557d89143b9e9319861b65c
3
+ metadata.gz: d6fe212355ff7a420b674a380e93a93c4c03e874cfec174328313015f0a0cc82
4
+ data.tar.gz: dd71f412d0fe14a0f6869b3fb90f158ec14ab88d00ef474aae6ba68a67152cbd
5
5
  SHA512:
6
- metadata.gz: db4061f03dbfc0bc3d208316677c1a6fcb09a5d9df9baa749ef6e62e596609f5f63335bf0bd331464d2654351c9ac2fd617ae4a374b6dd2961f55959de9516c0
7
- data.tar.gz: 3c2db55ce18332bee6fe7ec0b58de6eb53ff6b4e6dd4f49e65e01644fc7921b8a54dc8efad03c38e14d621d6521ac3acf353e89c1d816b6a82ddf1f2b4ed92bd
6
+ metadata.gz: 1d29a74451625d1960a3a50ad1a006ceb7963d0bdf248ac1989edb2a5c46a095aeca896b151b5a2b509e7e21a54b18a24ecb4cc7835c9fbe96ffc99c39285b64
7
+ data.tar.gz: a02dab0d55289fe875de67d7afd7af2ad9817a9a2acbcacac38d1962a51fc44cbbeaf79a67ba55fa4200a7fb8ffb16a83322200e4ac403fe1041f4dbd078bda1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.37.0 (2024-04-07)
4
+
5
+ * Regenerated from discovery document revision 20240403
6
+
7
+ ### v0.36.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240320
10
+
3
11
  ### v0.35.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240303
@@ -331,12 +331,6 @@ module Google
331
331
  # @return [String]
332
332
  attr_accessor :id
333
333
 
334
- # The full product a case may be associated with, including Product Line and
335
- # Product Subline.
336
- # Corresponds to the JSON property `product`
337
- # @return [Google::Apis::CloudsupportV2beta::Product]
338
- attr_accessor :product
339
-
340
334
  def initialize(**args)
341
335
  update!(**args)
342
336
  end
@@ -345,7 +339,6 @@ module Google
345
339
  def update!(**args)
346
340
  @display_name = args[:display_name] if args.key?(:display_name)
347
341
  @id = args[:id] if args.key?(:id)
348
- @product = args[:product] if args.key?(:product)
349
342
  end
350
343
  end
351
344
 
@@ -362,19 +355,18 @@ module Google
362
355
  end
363
356
  end
364
357
 
365
- # Case comments are the main way Google Support communicates with a user who has
366
- # opened a case. When a user responds to Google Support, the user's responses
367
- # also appear as comments.
358
+ # A comment associated with a support case. Case comments are the primary way
359
+ # for Google Support to communicate with a user who has opened a case. When a
360
+ # user responds to Google Support, the user's responses also appear as comments.
368
361
  class Comment
369
362
  include Google::Apis::Core::Hashable
370
363
 
371
- # The full comment body. Maximum of 12800 characters. This can contain rich text
372
- # syntax.
364
+ # The full comment body. Maximum of 12800 characters.
373
365
  # Corresponds to the JSON property `body`
374
366
  # @return [String]
375
367
  attr_accessor :body
376
368
 
377
- # Output only. The time when this comment was created.
369
+ # Output only. The time when the comment was created.
378
370
  # Corresponds to the JSON property `createTime`
379
371
  # @return [String]
380
372
  attr_accessor :create_time
@@ -386,13 +378,13 @@ module Google
386
378
  # @return [Google::Apis::CloudsupportV2beta::Actor]
387
379
  attr_accessor :creator
388
380
 
389
- # Output only. The resource name for the comment.
381
+ # Output only. Identifier. The resource name of the comment.
390
382
  # Corresponds to the JSON property `name`
391
383
  # @return [String]
392
384
  attr_accessor :name
393
385
 
394
- # Output only. DEPRECATED. An automatically generated plain text version of body
395
- # with all rich text syntax stripped.
386
+ # Output only. DEPRECATED. DO NOT USE. A duplicate of the `body` field. This
387
+ # field is only present for legacy reasons.
396
388
  # Corresponds to the JSON property `plainTextBody`
397
389
  # @return [String]
398
390
  attr_accessor :plain_text_body
@@ -1092,32 +1084,6 @@ module Google
1092
1084
  end
1093
1085
  end
1094
1086
 
1095
- # The full product a case may be associated with, including Product Line and
1096
- # Product Subline.
1097
- class Product
1098
- include Google::Apis::Core::Hashable
1099
-
1100
- # The Product Line of the Product.
1101
- # Corresponds to the JSON property `productLine`
1102
- # @return [String]
1103
- attr_accessor :product_line
1104
-
1105
- # The Product Subline of the Product, such as "Maps Billing".
1106
- # Corresponds to the JSON property `productSubline`
1107
- # @return [String]
1108
- attr_accessor :product_subline
1109
-
1110
- def initialize(**args)
1111
- update!(**args)
1112
- end
1113
-
1114
- # Update properties of this object
1115
- def update!(**args)
1116
- @product_line = args[:product_line] if args.key?(:product_line)
1117
- @product_subline = args[:product_subline] if args.key?(:product_subline)
1118
- end
1119
- end
1120
-
1121
1087
  # The response message for SearchCaseClassifications endpoint.
1122
1088
  class SearchCaseClassificationsResponse
1123
1089
  include Google::Apis::Core::Hashable
@@ -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.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240303"
25
+ REVISION = "20240403"
26
26
  end
27
27
  end
28
28
  end
@@ -160,12 +160,6 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
- class Product
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
163
  class SearchCaseClassificationsResponse
170
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
165
 
@@ -247,8 +241,6 @@ module Google
247
241
  class Representation < Google::Apis::Core::JsonRepresentation
248
242
  property :display_name, as: 'displayName'
249
243
  property :id, as: 'id'
250
- property :product, as: 'product', class: Google::Apis::CloudsupportV2beta::Product, decorator: Google::Apis::CloudsupportV2beta::Product::Representation
251
-
252
244
  end
253
245
  end
254
246
 
@@ -463,14 +455,6 @@ module Google
463
455
  end
464
456
  end
465
457
 
466
- class Product
467
- # @private
468
- class Representation < Google::Apis::Core::JsonRepresentation
469
- property :product_line, as: 'productLine'
470
- property :product_subline, as: 'productSubline'
471
- end
472
- end
473
-
474
458
  class SearchCaseClassificationsResponse
475
459
  # @private
476
460
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -72,10 +72,6 @@ module Google
72
72
  # @param [String] page_token
73
73
  # A token identifying the page of results to return. If unspecified, the first
74
74
  # page is retrieved.
75
- # @param [String] product_product_line
76
- # The Product Line of the Product.
77
- # @param [String] product_product_subline
78
- # The Product Subline of the Product, such as "Maps Billing".
79
75
  # @param [String] query
80
76
  # An expression used to filter case classifications. If it's an empty string,
81
77
  # then no filtering happens. Otherwise, case classifications will be returned
@@ -97,14 +93,12 @@ module Google
97
93
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
98
94
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
99
95
  # @raise [Google::Apis::AuthorizationError] Authorization is required
100
- def search_case_classifications(page_size: nil, page_token: nil, product_product_line: nil, product_product_subline: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
96
+ def search_case_classifications(page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
101
97
  command = make_simple_command(:get, 'v2beta/caseClassifications:search', options)
102
98
  command.response_representation = Google::Apis::CloudsupportV2beta::SearchCaseClassificationsResponse::Representation
103
99
  command.response_class = Google::Apis::CloudsupportV2beta::SearchCaseClassificationsResponse
104
100
  command.query['pageSize'] = page_size unless page_size.nil?
105
101
  command.query['pageToken'] = page_token unless page_token.nil?
106
- command.query['product.productLine'] = product_product_line unless product_product_line.nil?
107
- command.query['product.productSubline'] = product_product_subline unless product_product_subline.nil?
108
102
  command.query['query'] = query unless query.nil?
109
103
  command.query['fields'] = fields unless fields.nil?
110
104
  command.query['quotaUser'] = quota_user unless quota_user.nil?
@@ -319,9 +313,6 @@ module Google
319
313
  # @param [String] page_token
320
314
  # A token identifying the page of results to return. If unspecified, the first
321
315
  # page is retrieved.
322
- # @param [String] product_line
323
- # The product line for which to request cases for. If unspecified, only Google
324
- # Cloud cases will be returned.
325
316
  # @param [String] fields
326
317
  # Selector specifying which fields to include in a partial response.
327
318
  # @param [String] quota_user
@@ -339,7 +330,7 @@ module Google
339
330
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
340
331
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
341
332
  # @raise [Google::Apis::AuthorizationError] Authorization is required
342
- def list_cases(parent, filter: nil, page_size: nil, page_token: nil, product_line: nil, fields: nil, quota_user: nil, options: nil, &block)
333
+ def list_cases(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
343
334
  command = make_simple_command(:get, 'v2beta/{+parent}/cases', options)
344
335
  command.response_representation = Google::Apis::CloudsupportV2beta::ListCasesResponse::Representation
345
336
  command.response_class = Google::Apis::CloudsupportV2beta::ListCasesResponse
@@ -347,7 +338,6 @@ module Google
347
338
  command.query['filter'] = filter unless filter.nil?
348
339
  command.query['pageSize'] = page_size unless page_size.nil?
349
340
  command.query['pageToken'] = page_token unless page_token.nil?
350
- command.query['productLine'] = product_line unless product_line.nil?
351
341
  command.query['fields'] = fields unless fields.nil?
352
342
  command.query['quotaUser'] = quota_user unless quota_user.nil?
353
343
  execute_or_queue_command(command, &block)
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.35.0
4
+ version: 0.37.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: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-04-07 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.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.37.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: []