list method
List all domain mappings.
Request parameters:
parent - Required. The namespace from which the domain mappings should
be listed. For Cloud Run (fully managed), replace {namespace} with the
project ID or number. It takes the form namespaces/{namespace}. For
example: namespaces/PROJECT_ID
Value must have pattern ^namespaces/\[^/\]+$.
continue_ - Optional. Encoded string to continue paging.
fieldSelector - Allows to filter resources based on a specific value for
a field name. Send this in a query string format. i.e.
'metadata.name%3Dlorem'. Not currently used by Cloud Run.
includeUninitialized - Not currently used by Cloud Run.
labelSelector - Allows to filter resources based on a label. Supported
operations are =, !=, exists, in, and notIn.
limit - Optional. The maximum number of records that should be returned.
resourceVersion - The baseline resource version from which the list or
watch operation should start. Not currently used by Cloud Run.
watch - Flag that indicates that the client expects to watch this
resource as well. Not currently used by Cloud Run.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a ListDomainMappingsResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<ListDomainMappingsResponse> list(
core.String parent, {
core.String? continue_,
core.String? fieldSelector,
core.bool? includeUninitialized,
core.String? labelSelector,
core.int? limit,
core.String? resourceVersion,
core.bool? watch,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'continue': ?continue_ == null ? null : [continue_],
'fieldSelector': ?fieldSelector == null ? null : [fieldSelector],
'includeUninitialized': ?includeUninitialized == null
? null
: ['${includeUninitialized}'],
'labelSelector': ?labelSelector == null ? null : [labelSelector],
'limit': ?limit == null ? null : ['${limit}'],
'resourceVersion': ?resourceVersion == null ? null : [resourceVersion],
'watch': ?watch == null ? null : ['${watch}'],
'fields': ?$fields == null ? null : [$fields],
};
final url_ =
'apis/domains.cloudrun.com/v1/' +
core.Uri.encodeFull('$parent') +
'/domainmappings';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ListDomainMappingsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}