@@ -228,6 +228,9 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
228228 # Lists information about the supported locations for this service.
229229 # @param [String] name
230230 # The resource that owns the locations collection, if applicable.
231+ # @param [Array<String>, String] extra_location_types
232+ # Optional. A list of extra location types that should be used as conditions for
233+ # controlling the visibility of the locations.
231234 # @param [String] filter
232235 # A filter to narrow down results to a preferred subset. The filtering language
233236 # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -255,11 +258,12 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
255258 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
256259 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
257260 # @raise [Google::Apis::AuthorizationError] Authorization is required
258- def list_project_locations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
261+ def list_project_locations ( name , extra_location_types : nil , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
259262 command = make_simple_command ( :get , 'v1/{+name}/locations' , options )
260263 command . response_representation = Google ::Apis ::CloudschedulerV1 ::ListLocationsResponse ::Representation
261264 command . response_class = Google ::Apis ::CloudschedulerV1 ::ListLocationsResponse
262265 command . params [ 'name' ] = name unless name . nil?
266+ command . query [ 'extraLocationTypes' ] = extra_location_types unless extra_location_types . nil?
263267 command . query [ 'filter' ] = filter unless filter . nil?
264268 command . query [ 'pageSize' ] = page_size unless page_size . nil?
265269 command . query [ 'pageToken' ] = page_token unless page_token . nil?
0 commit comments