Skip to main content

multicloud_data_transfer_supported_services

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

Overview

Namemulticloud_data_transfer_supported_services
TypeResource
Idgoogle.networkconnectivity.multicloud_data_transfer_supported_services

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. The name of the service.
serviceConfigsarrayOutput only. The network service tiers supported for the service.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, multicloudDataTransferSupportedServicesIdGets details of a single MulticloudDataTransferSupportedServices.
listselectprojectsId, locationsIdpageSize, pageTokenLists 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.

NameDatatypeDescription
locationsIdstring
multicloudDataTransferSupportedServicesIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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;