static_ips
Creates, updates, deletes, gets or lists a static_ips
resource.
Overview
Name | static_ips |
Type | Resource |
Id | google.datastream.static_ips |
Fields
The following fields are returned by SELECT
queries:
- fetch_static_ips
Successful response
Name | Datatype | Description |
---|---|---|
nextPageToken | string | A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. |
staticIps | array | list of static ips by account |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
fetch_static_ips | select | projectsId , locationsId | pageSize , pageToken | The 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.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- fetch_static_ips
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 }}';