@@ -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. Unless explicitly documented otherwise, don't use this unsupported
913- # field which is primarily intended for internal usage.
912+ # Optional. Do not use this field. It is unsupported and is ignored unless
913+ # explicitly documented otherwise. This is primarily 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
@@ -1657,8 +1657,8 @@ def get_project_location(projects_id, locations_id, fields: nil, quota_user: nil
16571657 # @param [String] projects_id
16581658 # Part of `name`. The resource that owns the locations collection, if applicable.
16591659 # @param [Array<String>, String] extra_location_types
1660- # Optional. Unless explicitly documented otherwise, don't use this unsupported
1661- # field which is primarily intended for internal usage.
1660+ # Optional. Do not use this field. It is unsupported and is ignored unless
1661+ # explicitly documented otherwise. This is primarily for internal usage.
16621662 # @param [String] filter
16631663 # A filter to narrow down results to a preferred subset. The filtering language
16641664 # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -2135,6 +2135,49 @@ def get_project_location_application_domain_mapping(projects_id, locations_id, a
21352135 execute_or_queue_command ( command , &block )
21362136 end
21372137
2138+ # Lists the domain mappings on an application.
2139+ # @param [String] projects_id
2140+ # Part of `parent`. Required. Name of the parent Application resource. Example:
2141+ # apps/myapp.
2142+ # @param [String] locations_id
2143+ # Part of `parent`. See documentation of `projectsId`.
2144+ # @param [String] applications_id
2145+ # Part of `parent`. See documentation of `projectsId`.
2146+ # @param [Fixnum] page_size
2147+ # Maximum results to return per page.
2148+ # @param [String] page_token
2149+ # Continuation token for fetching the next page of results.
2150+ # @param [String] fields
2151+ # Selector specifying which fields to include in a partial response.
2152+ # @param [String] quota_user
2153+ # Available to use for quota purposes for server-side applications. Can be any
2154+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2155+ # @param [Google::Apis::RequestOptions] options
2156+ # Request-specific options
2157+ #
2158+ # @yield [result, err] Result & error if block supplied
2159+ # @yieldparam result [Google::Apis::AppengineV1beta::ListDomainMappingsResponse] parsed result object
2160+ # @yieldparam err [StandardError] error object if request failed
2161+ #
2162+ # @return [Google::Apis::AppengineV1beta::ListDomainMappingsResponse]
2163+ #
2164+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2165+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2166+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2167+ def list_project_location_application_domain_mappings ( projects_id , locations_id , applications_id , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
2168+ command = make_simple_command ( :get , 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings' , options )
2169+ command . response_representation = Google ::Apis ::AppengineV1beta ::ListDomainMappingsResponse ::Representation
2170+ command . response_class = Google ::Apis ::AppengineV1beta ::ListDomainMappingsResponse
2171+ command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
2172+ command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
2173+ command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
2174+ command . query [ 'pageSize' ] = page_size unless page_size . nil?
2175+ command . query [ 'pageToken' ] = page_token unless page_token . nil?
2176+ command . query [ 'fields' ] = fields unless fields . nil?
2177+ command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
2178+ execute_or_queue_command ( command , &block )
2179+ end
2180+
21382181 # Updates the specified domain mapping. To map an SSL certificate to a domain
21392182 # mapping, update certificate_id to point to an AuthorizedCertificate resource.
21402183 # A user must be authorized to administer the associated domain in order to
0 commit comments