@@ -570,6 +570,8 @@ def get_project_location_connection_entity_type_entity(name, fields: nil, quota_
570
570
# Page token value if available from a previous request.
571
571
# @param [Array<String>, String] sort_by
572
572
# List of 'sort_by' columns to use when returning the results.
573
+ # @param [Array<String>, String] sort_order
574
+ # List of 'sort_order' columns to use when returning the results.
573
575
# @param [String] fields
574
576
# Selector specifying which fields to include in a partial response.
575
577
# @param [String] quota_user
@@ -587,7 +589,7 @@ def get_project_location_connection_entity_type_entity(name, fields: nil, quota_
587
589
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
588
590
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
589
591
# @raise [Google::Apis::AuthorizationError] Authorization is required
590
- def list_project_location_connection_entity_type_entities ( parent , conditions : nil , page_size : nil , page_token : nil , sort_by : nil , fields : nil , quota_user : nil , options : nil , &block )
592
+ def list_project_location_connection_entity_type_entities ( parent , conditions : nil , page_size : nil , page_token : nil , sort_by : nil , sort_order : nil , fields : nil , quota_user : nil , options : nil , &block )
591
593
command = make_simple_command ( :get , 'v2/{+parent}/entities' , options )
592
594
command . response_representation = Google ::Apis ::ConnectorsV2 ::ListEntitiesResponse ::Representation
593
595
command . response_class = Google ::Apis ::ConnectorsV2 ::ListEntitiesResponse
@@ -596,6 +598,7 @@ def list_project_location_connection_entity_type_entities(parent, conditions: ni
596
598
command . query [ 'pageSize' ] = page_size unless page_size . nil?
597
599
command . query [ 'pageToken' ] = page_token unless page_token . nil?
598
600
command . query [ 'sortBy' ] = sort_by unless sort_by . nil?
601
+ command . query [ 'sortOrder' ] = sort_order unless sort_order . nil?
599
602
command . query [ 'fields' ] = fields unless fields . nil?
600
603
command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
601
604
execute_or_queue_command ( command , &block )
0 commit comments