@@ -909,8 +909,8 @@ def get_app_location(apps_id, locations_id, fields: nil, quota_user: nil, option
909909 # @param [String] apps_id
910910 # Part of `name`. The resource that owns the locations collection, if applicable.
911911 # @param [Array<String>, String] extra_location_types
912- # Optional. Do not use this field. It is unsupported and is ignored unless
913- # explicitly documented otherwise. This is primarily for internal usage.
912+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
913+ # field which is primarily intended for internal usage.
914914 # @param [String] filter
915915 # A filter to narrow down results to a preferred subset. The filtering language
916916 # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -996,6 +996,13 @@ def get_app_operation(apps_id, operations_id, fields: nil, quota_user: nil, opti
996996 # The standard list page size.
997997 # @param [String] page_token
998998 # The standard list page token.
999+ # @param [Boolean] return_partial_success
1000+ # When set to true, operations that are reachable are returned as normal, and
1001+ # those that are unreachable are returned in the ListOperationsResponse.
1002+ # unreachable field.This can only be true when reading across collections e.g.
1003+ # when parent is set to "projects/example/locations/-".This field is not by
1004+ # default supported and will result in an UNIMPLEMENTED error if set unless
1005+ # explicitly documented otherwise in service or product specific documentation.
9991006 # @param [String] fields
10001007 # Selector specifying which fields to include in a partial response.
10011008 # @param [String] quota_user
@@ -1013,14 +1020,15 @@ def get_app_operation(apps_id, operations_id, fields: nil, quota_user: nil, opti
10131020 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10141021 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10151022 # @raise [Google::Apis::AuthorizationError] Authorization is required
1016- def list_app_operations ( apps_id , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
1023+ def list_app_operations ( apps_id , filter : nil , page_size : nil , page_token : nil , return_partial_success : nil , fields : nil , quota_user : nil , options : nil , &block )
10171024 command = make_simple_command ( :get , 'v1beta/apps/{appsId}/operations' , options )
10181025 command . response_representation = Google ::Apis ::AppengineV1beta ::ListOperationsResponse ::Representation
10191026 command . response_class = Google ::Apis ::AppengineV1beta ::ListOperationsResponse
10201027 command . params [ 'appsId' ] = apps_id unless apps_id . nil?
10211028 command . query [ 'filter' ] = filter unless filter . nil?
10221029 command . query [ 'pageSize' ] = page_size unless page_size . nil?
10231030 command . query [ 'pageToken' ] = page_token unless page_token . nil?
1031+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
10241032 command . query [ 'fields' ] = fields unless fields . nil?
10251033 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
10261034 execute_or_queue_command ( command , &block )
@@ -1649,8 +1657,8 @@ def get_project_location(projects_id, locations_id, fields: nil, quota_user: nil
16491657 # @param [String] projects_id
16501658 # Part of `name`. The resource that owns the locations collection, if applicable.
16511659 # @param [Array<String>, String] extra_location_types
1652- # Optional. Do not use this field. It is unsupported and is ignored unless
1653- # explicitly documented otherwise. This is primarily for internal usage.
1660+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
1661+ # field which is primarily intended for internal usage.
16541662 # @param [String] filter
16551663 # A filter to narrow down results to a preferred subset. The filtering language
16561664 # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -2046,6 +2054,47 @@ def create_project_location_application_domain_mapping(projects_id, locations_id
20462054 execute_or_queue_command ( command , &block )
20472055 end
20482056
2057+ # Deletes the specified domain mapping. A user must be authorized to administer
2058+ # the associated domain in order to delete a DomainMapping resource.
2059+ # @param [String] projects_id
2060+ # Part of `name`. Required. Name of the resource to delete. Example: apps/myapp/
2061+ # domainMappings/example.com.
2062+ # @param [String] locations_id
2063+ # Part of `name`. See documentation of `projectsId`.
2064+ # @param [String] applications_id
2065+ # Part of `name`. See documentation of `projectsId`.
2066+ # @param [String] domain_mappings_id
2067+ # Part of `name`. See documentation of `projectsId`.
2068+ # @param [String] fields
2069+ # Selector specifying which fields to include in a partial response.
2070+ # @param [String] quota_user
2071+ # Available to use for quota purposes for server-side applications. Can be any
2072+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2073+ # @param [Google::Apis::RequestOptions] options
2074+ # Request-specific options
2075+ #
2076+ # @yield [result, err] Result & error if block supplied
2077+ # @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
2078+ # @yieldparam err [StandardError] error object if request failed
2079+ #
2080+ # @return [Google::Apis::AppengineV1beta::Operation]
2081+ #
2082+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2083+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2084+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2085+ def delete_project_location_application_domain_mapping ( projects_id , locations_id , applications_id , domain_mappings_id , fields : nil , quota_user : nil , options : nil , &block )
2086+ command = make_simple_command ( :delete , 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}' , options )
2087+ command . response_representation = Google ::Apis ::AppengineV1beta ::Operation ::Representation
2088+ command . response_class = Google ::Apis ::AppengineV1beta ::Operation
2089+ command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
2090+ command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
2091+ command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
2092+ command . params [ 'domainMappingsId' ] = domain_mappings_id unless domain_mappings_id . nil?
2093+ command . query [ 'fields' ] = fields unless fields . nil?
2094+ command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
2095+ execute_or_queue_command ( command , &block )
2096+ end
2097+
20492098 # Gets the specified domain mapping.
20502099 # @param [String] projects_id
20512100 # Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
@@ -2086,6 +2135,55 @@ def get_project_location_application_domain_mapping(projects_id, locations_id, a
20862135 execute_or_queue_command ( command , &block )
20872136 end
20882137
2138+ # Updates the specified domain mapping. To map an SSL certificate to a domain
2139+ # mapping, update certificate_id to point to an AuthorizedCertificate resource.
2140+ # A user must be authorized to administer the associated domain in order to
2141+ # update a DomainMapping resource.
2142+ # @param [String] projects_id
2143+ # Part of `name`. Required. Name of the resource to update. Example: apps/myapp/
2144+ # domainMappings/example.com.
2145+ # @param [String] locations_id
2146+ # Part of `name`. See documentation of `projectsId`.
2147+ # @param [String] applications_id
2148+ # Part of `name`. See documentation of `projectsId`.
2149+ # @param [String] domain_mappings_id
2150+ # Part of `name`. See documentation of `projectsId`.
2151+ # @param [Google::Apis::AppengineV1beta::DomainMapping] domain_mapping_object
2152+ # @param [String] update_mask
2153+ # Required. Standard field mask for the set of fields to be updated.
2154+ # @param [String] fields
2155+ # Selector specifying which fields to include in a partial response.
2156+ # @param [String] quota_user
2157+ # Available to use for quota purposes for server-side applications. Can be any
2158+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2159+ # @param [Google::Apis::RequestOptions] options
2160+ # Request-specific options
2161+ #
2162+ # @yield [result, err] Result & error if block supplied
2163+ # @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
2164+ # @yieldparam err [StandardError] error object if request failed
2165+ #
2166+ # @return [Google::Apis::AppengineV1beta::Operation]
2167+ #
2168+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2169+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2170+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2171+ def patch_project_location_application_domain_mapping ( projects_id , locations_id , applications_id , domain_mappings_id , domain_mapping_object = nil , update_mask : nil , fields : nil , quota_user : nil , options : nil , &block )
2172+ command = make_simple_command ( :patch , 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings/{domainMappingsId}' , options )
2173+ command . request_representation = Google ::Apis ::AppengineV1beta ::DomainMapping ::Representation
2174+ command . request_object = domain_mapping_object
2175+ command . response_representation = Google ::Apis ::AppengineV1beta ::Operation ::Representation
2176+ command . response_class = Google ::Apis ::AppengineV1beta ::Operation
2177+ command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
2178+ command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
2179+ command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
2180+ command . params [ 'domainMappingsId' ] = domain_mappings_id unless domain_mappings_id . nil?
2181+ command . query [ 'updateMask' ] = update_mask unless update_mask . nil?
2182+ command . query [ 'fields' ] = fields unless fields . nil?
2183+ command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
2184+ execute_or_queue_command ( command , &block )
2185+ end
2186+
20892187 # Deletes the specified service and all enclosed versions.
20902188 # @param [String] projects_id
20912189 # Part of `name`. Required. Name of the resource requested. Example: apps/myapp/
@@ -2365,6 +2463,13 @@ def get_project_location_operation(projects_id, locations_id, operations_id, fie
23652463 # The standard list page size.
23662464 # @param [String] page_token
23672465 # The standard list page token.
2466+ # @param [Boolean] return_partial_success
2467+ # When set to true, operations that are reachable are returned as normal, and
2468+ # those that are unreachable are returned in the ListOperationsResponse.
2469+ # unreachable field.This can only be true when reading across collections e.g.
2470+ # when parent is set to "projects/example/locations/-".This field is not by
2471+ # default supported and will result in an UNIMPLEMENTED error if set unless
2472+ # explicitly documented otherwise in service or product specific documentation.
23682473 # @param [String] fields
23692474 # Selector specifying which fields to include in a partial response.
23702475 # @param [String] quota_user
@@ -2382,7 +2487,7 @@ def get_project_location_operation(projects_id, locations_id, operations_id, fie
23822487 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
23832488 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
23842489 # @raise [Google::Apis::AuthorizationError] Authorization is required
2385- def list_project_location_operations ( projects_id , locations_id , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
2490+ def list_project_location_operations ( projects_id , locations_id , filter : nil , page_size : nil , page_token : nil , return_partial_success : nil , fields : nil , quota_user : nil , options : nil , &block )
23862491 command = make_simple_command ( :get , 'v1beta/projects/{projectsId}/locations/{locationsId}/operations' , options )
23872492 command . response_representation = Google ::Apis ::AppengineV1beta ::ListOperationsResponse ::Representation
23882493 command . response_class = Google ::Apis ::AppengineV1beta ::ListOperationsResponse
@@ -2391,6 +2496,7 @@ def list_project_location_operations(projects_id, locations_id, filter: nil, pag
23912496 command . query [ 'filter' ] = filter unless filter . nil?
23922497 command . query [ 'pageSize' ] = page_size unless page_size . nil?
23932498 command . query [ 'pageToken' ] = page_token unless page_token . nil?
2499+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
23942500 command . query [ 'fields' ] = fields unless fields . nil?
23952501 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
23962502 execute_or_queue_command ( command , &block )
0 commit comments