#[non_exhaustive]pub struct CreateTransferConfigRequest {
pub parent: String,
pub transfer_config: Option<TransferConfig>,
pub authorization_code: String,
pub version_info: String,
pub service_account_name: String,
/* private fields */
}Expand description
A request to create a data transfer configuration. If new credentials are needed for this transfer configuration, authorization info must be provided. If authorization info is provided, the transfer configuration will be associated with the user id corresponding to the authorization info. Otherwise, the transfer configuration will be associated with the calling user.
When using a cross project service account for creating a transfer config, you must enable cross project service account usage. For more information, see Disable attachment of service accounts to resources in other projects.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The BigQuery project id where the transfer configuration should be created. Must be in the format projects/{project_id}/locations/{location_id} or projects/{project_id}. If specified location and location of the destination bigquery dataset do not match - the request will fail.
transfer_config: Option<TransferConfig>Required. Data transfer configuration to create.
Deprecated: Authorization code was required when
transferConfig.dataSourceId is ‘youtube_channel’ but it is no longer used
in any data sources. Use version_info instead.
Optional OAuth2 authorization code to use with this transfer configuration.
This is required only if transferConfig.dataSourceId is ‘youtube_channel’
and new credentials are needed, as indicated by CheckValidCreds. In order
to obtain authorization_code, make a request to the following URL:
- The <var>client_id</var> is the OAuth client_id of the data source as returned by ListDataSources method.
- <var>data_source_scopes</var> are the scopes returned by ListDataSources method.
Note that this should not be set when service_account_name is used to
create the transfer config.
version_info: StringOptional version info. This parameter replaces authorization_code which
is no longer used in any data sources. This is required only if
transferConfig.dataSourceId is ‘youtube_channel’ or new credentials
are needed, as indicated by CheckValidCreds. In order to obtain version
info, make a request to the following URL:
- The <var>client_id</var> is the OAuth client_id of the data source as returned by ListDataSources method.
- <var>data_source_scopes</var> are the scopes returned by ListDataSources method.
Note that this should not be set when service_account_name is used to
create the transfer config.
service_account_name: StringOptional service account email. If this field is set, the transfer config will be created with this service account’s credentials. It requires that the requesting user calling this API has permissions to act as this service account.
Note that not all data sources support service account credentials when creating a transfer config. For the latest list of data sources, read about using service accounts.
Implementations§
Source§impl CreateTransferConfigRequest
impl CreateTransferConfigRequest
pub fn new() -> Self
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sets the value of parent.
Sourcepub fn set_transfer_config<T>(self, v: T) -> Selfwhere
T: Into<TransferConfig>,
pub fn set_transfer_config<T>(self, v: T) -> Selfwhere
T: Into<TransferConfig>,
Sets the value of transfer_config.
Sourcepub fn set_or_clear_transfer_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<TransferConfig>,
pub fn set_or_clear_transfer_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<TransferConfig>,
Sets or clears the value of transfer_config.
👎Deprecated
Sets the value of authorization_code.
Sourcepub fn set_version_info<T: Into<String>>(self, v: T) -> Self
pub fn set_version_info<T: Into<String>>(self, v: T) -> Self
Sets the value of version_info.
Sourcepub fn set_service_account_name<T: Into<String>>(self, v: T) -> Self
pub fn set_service_account_name<T: Into<String>>(self, v: T) -> Self
Sets the value of service_account_name.
Trait Implementations§
Source§impl Clone for CreateTransferConfigRequest
impl Clone for CreateTransferConfigRequest
Source§fn clone(&self) -> CreateTransferConfigRequest
fn clone(&self) -> CreateTransferConfigRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more