Skip to main content

static_ips

Creates, updates, deletes, gets or lists a static_ips resource.

Overview

Namestatic_ips
TypeResource
Idgoogle.datastream.static_ips

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
nextPageTokenstringA token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.
staticIpsarraylist of static ips by account

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
fetch_static_ipsselectprojectsId, locationsIdpageSize, pageTokenThe FetchStaticIps API call exposes the static IP addresses used by Datastream.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

The FetchStaticIps API call exposes the static IP addresses used by Datastream.

SELECT
nextPageToken,
staticIps
FROM google.datastream.static_ips
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';