@@ -516,8 +516,8 @@ def get_app_location(apps_id, locations_id, fields: nil, quota_user: nil, option
516516 # @param [String] apps_id
517517 # Part of `name`. The resource that owns the locations collection, if applicable.
518518 # @param [Array<String>, String] extra_location_types
519- # Optional. Unless explicitly documented otherwise, don't use this unsupported
520- # field which is primarily intended for internal usage.
519+ # Optional. Do not use this field. It is unsupported and is ignored unless
520+ # explicitly documented otherwise. This is primarily for internal usage.
521521 # @param [String] filter
522522 # A filter to narrow down results to a preferred subset. The filtering language
523523 # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -678,8 +678,8 @@ def get_project_location(projects_id, locations_id, fields: nil, quota_user: nil
678678 # @param [String] projects_id
679679 # Part of `name`. The resource that owns the locations collection, if applicable.
680680 # @param [Array<String>, String] extra_location_types
681- # Optional. Unless explicitly documented otherwise, don't use this unsupported
682- # field which is primarily intended for internal usage.
681+ # Optional. Do not use this field. It is unsupported and is ignored unless
682+ # explicitly documented otherwise. This is primarily for internal usage.
683683 # @param [String] filter
684684 # A filter to narrow down results to a preferred subset. The filtering language
685685 # accepts strings like "displayName=tokyo", and is documented in more detail in
@@ -1116,6 +1116,49 @@ def get_project_location_application_domain_mapping(projects_id, locations_id, a
11161116 execute_or_queue_command ( command , &block )
11171117 end
11181118
1119+ # Lists the domain mappings on an application.
1120+ # @param [String] projects_id
1121+ # Part of `parent`. Required. Name of the parent Application resource. Example:
1122+ # apps/myapp.
1123+ # @param [String] locations_id
1124+ # Part of `parent`. See documentation of `projectsId`.
1125+ # @param [String] applications_id
1126+ # Part of `parent`. See documentation of `projectsId`.
1127+ # @param [Fixnum] page_size
1128+ # Maximum results to return per page.
1129+ # @param [String] page_token
1130+ # Continuation token for fetching the next page of results.
1131+ # @param [String] fields
1132+ # Selector specifying which fields to include in a partial response.
1133+ # @param [String] quota_user
1134+ # Available to use for quota purposes for server-side applications. Can be any
1135+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1136+ # @param [Google::Apis::RequestOptions] options
1137+ # Request-specific options
1138+ #
1139+ # @yield [result, err] Result & error if block supplied
1140+ # @yieldparam result [Google::Apis::AppengineV1alpha::ListDomainMappingsResponse] parsed result object
1141+ # @yieldparam err [StandardError] error object if request failed
1142+ #
1143+ # @return [Google::Apis::AppengineV1alpha::ListDomainMappingsResponse]
1144+ #
1145+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1146+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1147+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1148+ 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 )
1149+ command = make_simple_command ( :get , 'v1alpha/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/domainMappings' , options )
1150+ command . response_representation = Google ::Apis ::AppengineV1alpha ::ListDomainMappingsResponse ::Representation
1151+ command . response_class = Google ::Apis ::AppengineV1alpha ::ListDomainMappingsResponse
1152+ command . params [ 'projectsId' ] = projects_id unless projects_id . nil?
1153+ command . params [ 'locationsId' ] = locations_id unless locations_id . nil?
1154+ command . params [ 'applicationsId' ] = applications_id unless applications_id . nil?
1155+ command . query [ 'pageSize' ] = page_size unless page_size . nil?
1156+ command . query [ 'pageToken' ] = page_token unless page_token . nil?
1157+ command . query [ 'fields' ] = fields unless fields . nil?
1158+ command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
1159+ execute_or_queue_command ( command , &block )
1160+ end
1161+
11191162 # Updates the specified domain mapping. To map an SSL certificate to a domain
11201163 # mapping, update certificate_id to point to an AuthorizedCertificate resource.
11211164 # A user must be authorized to administer the associated domain in order to
0 commit comments