Skip to content

Commit b827e6f

Browse files
feat: Automated regeneration of cloudsupport v2beta client (#18846)
Auto-created at 2024-04-28 09:19:27 +0000 using the toys pull request generator.
1 parent de09001 commit b827e6f

File tree

5 files changed

+55
-4
lines changed

5 files changed

+55
-4
lines changed

generated/google-apis-cloudsupport_v2beta/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-cloudsupport_v2beta
22

3+
### v0.38.0 (2024-04-28)
4+
5+
* Regenerated from discovery document revision 20240424
6+
37
### v0.37.0 (2024-04-07)
48

59
* Regenerated from discovery document revision 20240403

generated/google-apis-cloudsupport_v2beta/lib/google/apis/cloudsupport_v2beta/classes.rb

+25
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,11 @@ class CaseClassification
331331
# @return [String]
332332
attr_accessor :id
333333

334+
# The product a case may be associated with.
335+
# Corresponds to the JSON property `product`
336+
# @return [Google::Apis::CloudsupportV2beta::Product]
337+
attr_accessor :product
338+
334339
def initialize(**args)
335340
update!(**args)
336341
end
@@ -339,6 +344,7 @@ def initialize(**args)
339344
def update!(**args)
340345
@display_name = args[:display_name] if args.key?(:display_name)
341346
@id = args[:id] if args.key?(:id)
347+
@product = args[:product] if args.key?(:product)
342348
end
343349
end
344350

@@ -1084,6 +1090,25 @@ def update!(**args)
10841090
end
10851091
end
10861092

1093+
# The product a case may be associated with.
1094+
class Product
1095+
include Google::Apis::Core::Hashable
1096+
1097+
# The product line of the Product.
1098+
# Corresponds to the JSON property `productLine`
1099+
# @return [String]
1100+
attr_accessor :product_line
1101+
1102+
def initialize(**args)
1103+
update!(**args)
1104+
end
1105+
1106+
# Update properties of this object
1107+
def update!(**args)
1108+
@product_line = args[:product_line] if args.key?(:product_line)
1109+
end
1110+
end
1111+
10871112
# The response message for SearchCaseClassifications endpoint.
10881113
class SearchCaseClassificationsResponse
10891114
include Google::Apis::Core::Hashable

generated/google-apis-cloudsupport_v2beta/lib/google/apis/cloudsupport_v2beta/gem_version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module CloudsupportV2beta
1818
# Version of the google-apis-cloudsupport_v2beta gem
19-
GEM_VERSION = "0.37.0"
19+
GEM_VERSION = "0.38.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.14.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240403"
25+
REVISION = "20240424"
2626
end
2727
end
2828
end

generated/google-apis-cloudsupport_v2beta/lib/google/apis/cloudsupport_v2beta/representations.rb

+15
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
160160
include Google::Apis::Core::JsonObjectSupport
161161
end
162162

163+
class Product
164+
class Representation < Google::Apis::Core::JsonRepresentation; end
165+
166+
include Google::Apis::Core::JsonObjectSupport
167+
end
168+
163169
class SearchCaseClassificationsResponse
164170
class Representation < Google::Apis::Core::JsonRepresentation; end
165171

@@ -241,6 +247,8 @@ class CaseClassification
241247
class Representation < Google::Apis::Core::JsonRepresentation
242248
property :display_name, as: 'displayName'
243249
property :id, as: 'id'
250+
property :product, as: 'product', class: Google::Apis::CloudsupportV2beta::Product, decorator: Google::Apis::CloudsupportV2beta::Product::Representation
251+
244252
end
245253
end
246254

@@ -455,6 +463,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
455463
end
456464
end
457465

466+
class Product
467+
# @private
468+
class Representation < Google::Apis::Core::JsonRepresentation
469+
property :product_line, as: 'productLine'
470+
end
471+
end
472+
458473
class SearchCaseClassificationsResponse
459474
# @private
460475
class Representation < Google::Apis::Core::JsonRepresentation

generated/google-apis-cloudsupport_v2beta/lib/google/apis/cloudsupport_v2beta/service.rb

+9-2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ def initialize
7272
# @param [String] page_token
7373
# A token identifying the page of results to return. If unspecified, the first
7474
# page is retrieved.
75+
# @param [String] product_product_line
76+
# The product line of the Product.
7577
# @param [String] query
7678
# An expression used to filter case classifications. If it's an empty string,
7779
# then no filtering happens. Otherwise, case classifications will be returned
@@ -93,12 +95,13 @@ def initialize
9395
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
9496
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
9597
# @raise [Google::Apis::AuthorizationError] Authorization is required
96-
def search_case_classifications(page_size: nil, page_token: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
98+
def search_case_classifications(page_size: nil, page_token: nil, product_product_line: nil, query: nil, fields: nil, quota_user: nil, options: nil, &block)
9799
command = make_simple_command(:get, 'v2beta/caseClassifications:search', options)
98100
command.response_representation = Google::Apis::CloudsupportV2beta::SearchCaseClassificationsResponse::Representation
99101
command.response_class = Google::Apis::CloudsupportV2beta::SearchCaseClassificationsResponse
100102
command.query['pageSize'] = page_size unless page_size.nil?
101103
command.query['pageToken'] = page_token unless page_token.nil?
104+
command.query['product.productLine'] = product_product_line unless product_product_line.nil?
102105
command.query['query'] = query unless query.nil?
103106
command.query['fields'] = fields unless fields.nil?
104107
command.query['quotaUser'] = quota_user unless quota_user.nil?
@@ -313,6 +316,9 @@ def get_case(name, fields: nil, quota_user: nil, options: nil, &block)
313316
# @param [String] page_token
314317
# A token identifying the page of results to return. If unspecified, the first
315318
# page is retrieved.
319+
# @param [String] product_line
320+
# The product line to request cases for. If unspecified, only Google Cloud cases
321+
# will be returned.
316322
# @param [String] fields
317323
# Selector specifying which fields to include in a partial response.
318324
# @param [String] quota_user
@@ -330,14 +336,15 @@ def get_case(name, fields: nil, quota_user: nil, options: nil, &block)
330336
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
331337
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
332338
# @raise [Google::Apis::AuthorizationError] Authorization is required
333-
def list_cases(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
339+
def list_cases(parent, filter: nil, page_size: nil, page_token: nil, product_line: nil, fields: nil, quota_user: nil, options: nil, &block)
334340
command = make_simple_command(:get, 'v2beta/{+parent}/cases', options)
335341
command.response_representation = Google::Apis::CloudsupportV2beta::ListCasesResponse::Representation
336342
command.response_class = Google::Apis::CloudsupportV2beta::ListCasesResponse
337343
command.params['parent'] = parent unless parent.nil?
338344
command.query['filter'] = filter unless filter.nil?
339345
command.query['pageSize'] = page_size unless page_size.nil?
340346
command.query['pageToken'] = page_token unless page_token.nil?
347+
command.query['productLine'] = product_line unless product_line.nil?
341348
command.query['fields'] = fields unless fields.nil?
342349
command.query['quotaUser'] = quota_user unless quota_user.nil?
343350
execute_or_queue_command(command, &block)

0 commit comments

Comments
 (0)