snowflake.ExternalVolume
Explore with Pulumi AI
Resource used to manage external volume objects. For more information, check external volume documentation.
Create ExternalVolume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalVolume(name: string, args: ExternalVolumeArgs, opts?: CustomResourceOptions);
@overload
def ExternalVolume(resource_name: str,
args: ExternalVolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ExternalVolume(resource_name: str,
opts: Optional[ResourceOptions] = None,
storage_locations: Optional[Sequence[ExternalVolumeStorageLocationArgs]] = None,
allow_writes: Optional[str] = None,
comment: Optional[str] = None,
name: Optional[str] = None)
func NewExternalVolume(ctx *Context, name string, args ExternalVolumeArgs, opts ...ResourceOption) (*ExternalVolume, error)
public ExternalVolume(string name, ExternalVolumeArgs args, CustomResourceOptions? opts = null)
public ExternalVolume(String name, ExternalVolumeArgs args)
public ExternalVolume(String name, ExternalVolumeArgs args, CustomResourceOptions options)
type: snowflake:ExternalVolume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ExternalVolumeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalVolumeResource = new Snowflake.ExternalVolume("externalVolumeResource", new()
{
StorageLocations = new[]
{
new Snowflake.Inputs.ExternalVolumeStorageLocationArgs
{
StorageBaseUrl = "string",
StorageLocationName = "string",
StorageProvider = "string",
AzureTenantId = "string",
EncryptionKmsKeyId = "string",
EncryptionType = "string",
StorageAwsExternalId = "string",
StorageAwsRoleArn = "string",
},
},
AllowWrites = "string",
Comment = "string",
Name = "string",
});
example, err := snowflake.NewExternalVolume(ctx, "externalVolumeResource", &snowflake.ExternalVolumeArgs{
StorageLocations: snowflake.ExternalVolumeStorageLocationArray{
&snowflake.ExternalVolumeStorageLocationArgs{
StorageBaseUrl: pulumi.String("string"),
StorageLocationName: pulumi.String("string"),
StorageProvider: pulumi.String("string"),
AzureTenantId: pulumi.String("string"),
EncryptionKmsKeyId: pulumi.String("string"),
EncryptionType: pulumi.String("string"),
StorageAwsExternalId: pulumi.String("string"),
StorageAwsRoleArn: pulumi.String("string"),
},
},
AllowWrites: pulumi.String("string"),
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
})
var externalVolumeResource = new ExternalVolume("externalVolumeResource", ExternalVolumeArgs.builder()
.storageLocations(ExternalVolumeStorageLocationArgs.builder()
.storageBaseUrl("string")
.storageLocationName("string")
.storageProvider("string")
.azureTenantId("string")
.encryptionKmsKeyId("string")
.encryptionType("string")
.storageAwsExternalId("string")
.storageAwsRoleArn("string")
.build())
.allowWrites("string")
.comment("string")
.name("string")
.build());
external_volume_resource = snowflake.ExternalVolume("externalVolumeResource",
storage_locations=[{
"storage_base_url": "string",
"storage_location_name": "string",
"storage_provider": "string",
"azure_tenant_id": "string",
"encryption_kms_key_id": "string",
"encryption_type": "string",
"storage_aws_external_id": "string",
"storage_aws_role_arn": "string",
}],
allow_writes="string",
comment="string",
name="string")
const externalVolumeResource = new snowflake.ExternalVolume("externalVolumeResource", {
storageLocations: [{
storageBaseUrl: "string",
storageLocationName: "string",
storageProvider: "string",
azureTenantId: "string",
encryptionKmsKeyId: "string",
encryptionType: "string",
storageAwsExternalId: "string",
storageAwsRoleArn: "string",
}],
allowWrites: "string",
comment: "string",
name: "string",
});
type: snowflake:ExternalVolume
properties:
allowWrites: string
comment: string
name: string
storageLocations:
- azureTenantId: string
encryptionKmsKeyId: string
encryptionType: string
storageAwsExternalId: string
storageAwsRoleArn: string
storageBaseUrl: string
storageLocationName: string
storageProvider: string
ExternalVolume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ExternalVolume resource accepts the following input properties:
- Storage
Locations List<ExternalVolume Storage Location> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- Allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Comment string
- Specifies a comment for the external volume.
- Name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- Storage
Locations []ExternalVolume Storage Location Args - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- Allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Comment string
- Specifies a comment for the external volume.
- Name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- storage
Locations List<ExternalVolume Storage Location> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes String - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment String
- Specifies a comment for the external volume.
- name String
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- storage
Locations ExternalVolume Storage Location[] - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment string
- Specifies a comment for the external volume.
- name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- storage_
locations Sequence[ExternalVolume Storage Location Args] - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow_
writes str - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment str
- Specifies a comment for the external volume.
- name str
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- storage
Locations List<Property Map> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes String - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment String
- Specifies a comment for the external volume.
- name String
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
Outputs
All input properties are implicitly available as output properties. Additionally, the ExternalVolume resource produces the following output properties:
- Describe
Outputs List<ExternalVolume Describe Output> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs List<ExternalVolume Show Output> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
- Describe
Outputs []ExternalVolume Describe Output - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs []ExternalVolume Show Output - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
- describe
Outputs List<ExternalVolume Describe Output> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<ExternalVolume Show Output> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
- describe
Outputs ExternalVolume Describe Output[] - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- show
Outputs ExternalVolume Show Output[] - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
- describe_
outputs Sequence[ExternalVolume Describe Output] - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- show_
outputs Sequence[ExternalVolume Show Output] - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<Property Map> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume.
Look up Existing ExternalVolume Resource
Get an existing ExternalVolume resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ExternalVolumeState, opts?: CustomResourceOptions): ExternalVolume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_writes: Optional[str] = None,
comment: Optional[str] = None,
describe_outputs: Optional[Sequence[ExternalVolumeDescribeOutputArgs]] = None,
fully_qualified_name: Optional[str] = None,
name: Optional[str] = None,
show_outputs: Optional[Sequence[ExternalVolumeShowOutputArgs]] = None,
storage_locations: Optional[Sequence[ExternalVolumeStorageLocationArgs]] = None) -> ExternalVolume
func GetExternalVolume(ctx *Context, name string, id IDInput, state *ExternalVolumeState, opts ...ResourceOption) (*ExternalVolume, error)
public static ExternalVolume Get(string name, Input<string> id, ExternalVolumeState? state, CustomResourceOptions? opts = null)
public static ExternalVolume get(String name, Output<String> id, ExternalVolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Comment string
- Specifies a comment for the external volume.
- Describe
Outputs List<ExternalVolume Describe Output> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- Show
Outputs List<ExternalVolume Show Output> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - Storage
Locations List<ExternalVolume Storage Location> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- Allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- Comment string
- Specifies a comment for the external volume.
- Describe
Outputs []ExternalVolume Describe Output Args - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- Show
Outputs []ExternalVolume Show Output Args - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - Storage
Locations []ExternalVolume Storage Location Args - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes String - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment String
- Specifies a comment for the external volume.
- describe
Outputs List<ExternalVolume Describe Output> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- show
Outputs List<ExternalVolume Show Output> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - storage
Locations List<ExternalVolume Storage Location> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes string - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment string
- Specifies a comment for the external volume.
- describe
Outputs ExternalVolume Describe Output[] - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- name string
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- show
Outputs ExternalVolume Show Output[] - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - storage
Locations ExternalVolume Storage Location[] - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow_
writes str - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment str
- Specifies a comment for the external volume.
- describe_
outputs Sequence[ExternalVolume Describe Output Args] - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- name str
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- show_
outputs Sequence[ExternalVolume Show Output Args] - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - storage_
locations Sequence[ExternalVolume Storage Location Args] - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
- allow
Writes String - Specifies whether write operations are allowed for the external volume; must be set to TRUE for Iceberg tables that use Snowflake as the catalog. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
- comment String
- Specifies a comment for the external volume.
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE EXTERNAL VOLUME
for the given external volume. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- name String
- Identifier for the external volume; must be unique for your account. Due to technical limitations (read more here), avoid using the following characters:
|
,.
,(
,)
,"
- show
Outputs List<Property Map> - Outputs the result of
SHOW EXTERNAL VOLUMES
for the given external volume. - storage
Locations List<Property Map> - List of named cloud storage locations in different regions and, optionally, cloud platforms. Minimum 1 required. The order of the list is important as it impacts the active storage location, and updates will be triggered if it changes. Note that not all parameter combinations are valid as they depend on the given storage*provider. Consult the docs for more details on this.
Supporting Types
ExternalVolumeDescribeOutput, ExternalVolumeDescribeOutputArgs
ExternalVolumeShowOutput, ExternalVolumeShowOutputArgs
- Allow
Writes bool - Comment string
- Name string
- Allow
Writes bool - Comment string
- Name string
- allow
Writes Boolean - comment String
- name String
- allow
Writes boolean - comment string
- name string
- allow_
writes bool - comment str
- name str
- allow
Writes Boolean - comment String
- name String
ExternalVolumeStorageLocation, ExternalVolumeStorageLocationArgs
- Storage
Base stringUrl - Specifies the base URL for your cloud storage location.
- Storage
Location stringName - Storage
Provider string - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Encryption
Kms stringKey Id - Specifies the ID for the KMS-managed key used to encrypt files.
- Encryption
Type string - Specifies the encryption type used.
- Storage
Aws stringExternal Id - External ID that Snowflake uses to establish a trust relationship with AWS.
- Storage
Aws stringRole Arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
- Storage
Base stringUrl - Specifies the base URL for your cloud storage location.
- Storage
Location stringName - Storage
Provider string - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - Azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- Encryption
Kms stringKey Id - Specifies the ID for the KMS-managed key used to encrypt files.
- Encryption
Type string - Specifies the encryption type used.
- Storage
Aws stringExternal Id - External ID that Snowflake uses to establish a trust relationship with AWS.
- Storage
Aws stringRole Arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
- storage
Base StringUrl - Specifies the base URL for your cloud storage location.
- storage
Location StringName - storage
Provider String - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- encryption
Kms StringKey Id - Specifies the ID for the KMS-managed key used to encrypt files.
- encryption
Type String - Specifies the encryption type used.
- storage
Aws StringExternal Id - External ID that Snowflake uses to establish a trust relationship with AWS.
- storage
Aws StringRole Arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
- storage
Base stringUrl - Specifies the base URL for your cloud storage location.
- storage
Location stringName - storage
Provider string - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - azure
Tenant stringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- encryption
Kms stringKey Id - Specifies the ID for the KMS-managed key used to encrypt files.
- encryption
Type string - Specifies the encryption type used.
- storage
Aws stringExternal Id - External ID that Snowflake uses to establish a trust relationship with AWS.
- storage
Aws stringRole Arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
- storage_
base_ strurl - Specifies the base URL for your cloud storage location.
- storage_
location_ strname - storage_
provider str - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - azure_
tenant_ strid - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- encryption_
kms_ strkey_ id - Specifies the ID for the KMS-managed key used to encrypt files.
- encryption_
type str - Specifies the encryption type used.
- storage_
aws_ strexternal_ id - External ID that Snowflake uses to establish a trust relationship with AWS.
- storage_
aws_ strrole_ arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
- storage
Base StringUrl - Specifies the base URL for your cloud storage location.
- storage
Location StringName - storage
Provider String - Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive):
GCS
|AZURE
|S3
|S3GOV
. - azure
Tenant StringId - Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
- encryption
Kms StringKey Id - Specifies the ID for the KMS-managed key used to encrypt files.
- encryption
Type String - Specifies the encryption type used.
- storage
Aws StringExternal Id - External ID that Snowflake uses to establish a trust relationship with AWS.
- storage
Aws StringRole Arn - Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.