@@ -1021,6 +1021,9 @@ def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, f
10211021 # default.
10221022 # @param [String] services_id
10231023 # Part of `name`. See documentation of `appsId`.
1024+ # @param [Boolean] force
1025+ # Optional. If set to true, any versions of this service will also be deleted. (
1026+ # Otherwise, the request will only succeed if the service has no versions.)
10241027 # @param [String] fields
10251028 # Selector specifying which fields to include in a partial response.
10261029 # @param [String] quota_user
@@ -1038,12 +1041,13 @@ def list_app_operations(apps_id, filter: nil, page_size: nil, page_token: nil, f
10381041 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10391042 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10401043 # @raise [Google::Apis::AuthorizationError] Authorization is required
1041- def delete_app_service ( apps_id , services_id , fields : nil , quota_user : nil , options : nil , &block )
1044+ def delete_app_service ( apps_id , services_id , force : nil , fields : nil , quota_user : nil , options : nil , &block )
10421045 command = make_simple_command ( :delete , 'v1/apps/{appsId}/services/{servicesId}' , options )
10431046 command . response_representation = Google ::Apis ::AppengineV1 ::Operation ::Representation
10441047 command . response_class = Google ::Apis ::AppengineV1 ::Operation
10451048 command . params [ 'appsId' ] = apps_id unless apps_id . nil?
10461049 command . params [ 'servicesId' ] = services_id unless services_id . nil?
1050+ command . query [ 'force' ] = force unless force . nil?
10471051 command . query [ 'fields' ] = fields unless fields . nil?
10481052 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
10491053 execute_or_queue_command ( command , &block )
@@ -1646,6 +1650,9 @@ def list_project_location_application_authorized_domains(projects_id, locations_
16461650 # Part of `name`. See documentation of `projectsId`.
16471651 # @param [String] services_id
16481652 # Part of `name`. See documentation of `projectsId`.
1653+ # @param [Boolean] force
1654+ # Optional. If set to true, any versions of this service will also be deleted. (
1655+ # Otherwise, the request will only succeed if the service has no versions.)
16491656 # @param [String] fields
16501657 # Selector specifying which fields to include in a partial response.
16511658 # @param [String] quota_user
@@ -1663,14 +1670,15 @@ def list_project_location_application_authorized_domains(projects_id, locations_
16631670 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
16641671 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
16651672 # @raise [Google::Apis::AuthorizationError] Authorization is required
1666- def delete_project_location_application_service ( projects_id , locations_id , applications_id , services_id , fields : nil , quota_user : nil , options : nil , &block )
1673+ def delete_project_location_application_service ( projects_id , locations_id , applications_id , services_id , force : nil , fields : nil , quota_user : nil , options : nil , &block )
16671674 command = make_simple_command ( :delete , 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}' , options )
16681675 command . response_representation = Google ::Apis ::AppengineV1 ::Operation ::Representation
16691676 command . response_class = Google ::Apis ::AppengineV1 ::Operation
16701677 command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
16711678 command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
16721679 command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
16731680 command . params [ 'servicesId' ] = services_id unless services_id . nil?
1681+ command . query [ 'force' ] = force unless force . nil?
16741682 command . query [ 'fields' ] = fields unless fields . nil?
16751683 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
16761684 execute_or_queue_command ( command , &block )
0 commit comments