@@ -1635,6 +1635,49 @@ def list_project_location_application_authorized_domains(projects_id, locations_
16351635 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
16361636 execute_or_queue_command ( command , &block )
16371637 end
1638+
1639+ # Deletes an existing Version resource.
1640+ # @param [String] projects_id
1641+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1642+ # default/versions/v1.
1643+ # @param [String] locations_id
1644+ # Part of `name`. See documentation of `projectsId`.
1645+ # @param [String] applications_id
1646+ # Part of `name`. See documentation of `projectsId`.
1647+ # @param [String] services_id
1648+ # Part of `name`. See documentation of `projectsId`.
1649+ # @param [String] versions_id
1650+ # Part of `name`. See documentation of `projectsId`.
1651+ # @param [String] fields
1652+ # Selector specifying which fields to include in a partial response.
1653+ # @param [String] quota_user
1654+ # Available to use for quota purposes for server-side applications. Can be any
1655+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1656+ # @param [Google::Apis::RequestOptions] options
1657+ # Request-specific options
1658+ #
1659+ # @yield [result, err] Result & error if block supplied
1660+ # @yieldparam result [Google::Apis::AppengineV1::Operation] parsed result object
1661+ # @yieldparam err [StandardError] error object if request failed
1662+ #
1663+ # @return [Google::Apis::AppengineV1::Operation]
1664+ #
1665+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1666+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1667+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1668+ def delete_project_location_application_service_version ( projects_id , locations_id , applications_id , services_id , versions_id , fields : nil , quota_user : nil , options : nil , &block )
1669+ command = make_simple_command ( :delete , 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}' , options )
1670+ command . response_representation = Google ::Apis ::AppengineV1 ::Operation ::Representation
1671+ command . response_class = Google ::Apis ::AppengineV1 ::Operation
1672+ command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
1673+ command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
1674+ command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
1675+ command . params [ 'servicesId' ] = services_id unless services_id . nil?
1676+ command . params [ 'versionsId' ] = versions_id unless versions_id . nil?
1677+ command . query [ 'fields' ] = fields unless fields . nil?
1678+ command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
1679+ execute_or_queue_command ( command , &block )
1680+ end
16381681
16391682 protected
16401683
0 commit comments