fetchStaticIps method

Future<FetchStaticIpsResponse> fetchStaticIps(
  1. String name, {
  2. int? pageSize,
  3. String? pageToken,
  4. String? $fields,
})

The FetchStaticIps API call exposes the static ips used by Datastream.

Typically, a request returns children data objects under a parent data object that's optionally supplied in the request.

Request parameters:

name - Required. The name resource of the Response type. Must be in the format projects / * /locations / * . Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

pageSize - Maximum number of Ips to return, will likely not be specified.

pageToken - A page token, received from a previous ListStaticIps call. will likely not be specified.

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

Completes with a FetchStaticIpsResponse.

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<FetchStaticIpsResponse> fetchStaticIps(
  core.String name, {
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha1/' + core.Uri.encodeFull('$name') + ':fetchStaticIps';

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return FetchStaticIpsResponse.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}