multicloud_data_transfer_supported_services
Creates, updates, deletes, gets or lists a multicloud_data_transfer_supported_services
resource.
Overview
Name | multicloud_data_transfer_supported_services |
Type | Resource |
Id | google.networkconnectivity.multicloud_data_transfer_supported_services |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the service. |
serviceConfigs | array | Output only. The network service tiers supported for the service. |
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. The name of the service. |
serviceConfigs | array | Output only. The network service tiers supported for the service. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , multicloudDataTransferSupportedServicesId | Gets details of a single MulticloudDataTransferSupportedServices. | |
list | select | projectsId , locationsId | pageSize , pageToken | Lists the supported services for Multicloud Data Transfer. This is a passthrough method. |
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 | |
multicloudDataTransferSupportedServicesId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Gets details of a single MulticloudDataTransferSupportedServices.
SELECT
name,
serviceConfigs
FROM google.networkconnectivity.multicloud_data_transfer_supported_services
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND multicloudDataTransferSupportedServicesId = '{{ multicloudDataTransferSupportedServicesId }}' -- required;
Lists the supported services for Multicloud Data Transfer. This is a passthrough method.
SELECT
name,
serviceConfigs
FROM google.networkconnectivity.multicloud_data_transfer_supported_services
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';