@@ -72,6 +72,8 @@ def initialize
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.
75
77
# @param [String] query
76
78
# An expression used to filter case classifications. If it's an empty string,
77
79
# then no filtering happens. Otherwise, case classifications will be returned
@@ -93,12 +95,13 @@ def initialize
93
95
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
94
96
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
95
97
# @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 )
97
99
command = make_simple_command ( :get , 'v2beta/caseClassifications:search' , options )
98
100
command . response_representation = Google ::Apis ::CloudsupportV2beta ::SearchCaseClassificationsResponse ::Representation
99
101
command . response_class = Google ::Apis ::CloudsupportV2beta ::SearchCaseClassificationsResponse
100
102
command . query [ 'pageSize' ] = page_size unless page_size . nil?
101
103
command . query [ 'pageToken' ] = page_token unless page_token . nil?
104
+ command . query [ 'product.productLine' ] = product_product_line unless product_product_line . nil?
102
105
command . query [ 'query' ] = query unless query . nil?
103
106
command . query [ 'fields' ] = fields unless fields . nil?
104
107
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)
313
316
# @param [String] page_token
314
317
# A token identifying the page of results to return. If unspecified, the first
315
318
# 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.
316
322
# @param [String] fields
317
323
# Selector specifying which fields to include in a partial response.
318
324
# @param [String] quota_user
@@ -330,14 +336,15 @@ def get_case(name, fields: nil, quota_user: nil, options: nil, &block)
330
336
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
331
337
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
332
338
# @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 )
334
340
command = make_simple_command ( :get , 'v2beta/{+parent}/cases' , options )
335
341
command . response_representation = Google ::Apis ::CloudsupportV2beta ::ListCasesResponse ::Representation
336
342
command . response_class = Google ::Apis ::CloudsupportV2beta ::ListCasesResponse
337
343
command . params [ 'parent' ] = parent unless parent . nil?
338
344
command . query [ 'filter' ] = filter unless filter . nil?
339
345
command . query [ 'pageSize' ] = page_size unless page_size . nil?
340
346
command . query [ 'pageToken' ] = page_token unless page_token . nil?
347
+ command . query [ 'productLine' ] = product_line unless product_line . nil?
341
348
command . query [ 'fields' ] = fields unless fields . nil?
342
349
command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
343
350
execute_or_queue_command ( command , &block )
0 commit comments