get method
Returns the specified target VPN gateway. Gets a list of available target VPN gateways by making a list() request.
Request parameters:
project
- Project ID for this request.
Value must have pattern
"(?:(?:-a-z0-9
{1,63}.)*(?:a-z?):)?(?:0-9
{1,19}|(?:a-z0-9?))".
region
- Name of the region for this request.
Value must have pattern "a-z?".
targetVpnGateway
- Name of the target VPN gateway to return.
Value must have pattern
"a-z?|0-9
{0,19}".
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a TargetVpnGateway.
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<TargetVpnGateway> get(
core.String project, core.String region, core.String targetVpnGateway,
{core.String $fields}) {
var _url;
var _queryParams = new core.Map<core.String, core.List<core.String>>();
var _uploadMedia;
var _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
var _body;
if (project == null) {
throw new core.ArgumentError("Parameter project is required.");
}
if (region == null) {
throw new core.ArgumentError("Parameter region is required.");
}
if (targetVpnGateway == null) {
throw new core.ArgumentError("Parameter targetVpnGateway is required.");
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = commons.Escaper.ecapeVariable('$project') +
'/regions/' +
commons.Escaper.ecapeVariable('$region') +
'/targetVpnGateways/' +
commons.Escaper.ecapeVariable('$targetVpnGateway');
var _response = _requester.request(_url, "GET",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response.then((data) => new TargetVpnGateway.fromJson(data));
}