list method

Future<ResponsePolicyRulesListResponse> list(
  1. String project,
  2. String responsePolicy, {
  3. int? maxResults,
  4. String? pageToken,
  5. String? $fields,
})

Enumerates all Response Policy Rules associated with a project.

Request parameters:

project - Identifies the project addressed by this request.

responsePolicy - User assigned name of the Response Policy to list.

maxResults - Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return.

pageToken - Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request.

$fields - Selector specifying which fields to include in a partial response.

Completes with a ResponsePolicyRulesListResponse.

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<ResponsePolicyRulesListResponse> list(
  core.String project,
  core.String responsePolicy, {
  core.int? maxResults,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (maxResults != null) 'maxResults': ['${maxResults}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'dns/v1/projects/' +
      commons.escapeVariable('$project') +
      '/responsePolicies/' +
      commons.escapeVariable('$responsePolicy') +
      '/rules';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return ResponsePolicyRulesListResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}