snowflake.FileFormatGrant
Explore with Pulumi AI
Import
format is database_name|schema_name|file_format_name|privilege|with_grant_option|on_future|roles
$ pulumi import snowflake:index/fileFormatGrant:FileFormatGrant example "MY_DATABASE|MY_SCHEMA|MY_FILE_FORMAT|USAGE|false|false|role1,role2'
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
var grant = new Snowflake.FileFormatGrant("grant", new()
{
DatabaseName = "database",
FileFormatName = "file_format",
OnFuture = false,
Privilege = "SELECT",
Roles = new[]
{
"role1",
"role2",
},
SchemaName = "schema",
WithGrantOption = false,
});
});
package main
import (
"github.com/pulumi/pulumi-snowflake/sdk/go/snowflake"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := snowflake.NewFileFormatGrant(ctx, "grant", &snowflake.FileFormatGrantArgs{
DatabaseName: pulumi.String("database"),
FileFormatName: pulumi.String("file_format"),
OnFuture: pulumi.Bool(false),
Privilege: pulumi.String("SELECT"),
Roles: pulumi.StringArray{
pulumi.String("role1"),
pulumi.String("role2"),
},
SchemaName: pulumi.String("schema"),
WithGrantOption: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.FileFormatGrant;
import com.pulumi.snowflake.FileFormatGrantArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var grant = new FileFormatGrant("grant", FileFormatGrantArgs.builder()
.databaseName("database")
.fileFormatName("file_format")
.onFuture(false)
.privilege("SELECT")
.roles(
"role1",
"role2")
.schemaName("schema")
.withGrantOption(false)
.build());
}
}
import pulumi
import pulumi_snowflake as snowflake
grant = snowflake.FileFormatGrant("grant",
database_name="database",
file_format_name="file_format",
on_future=False,
privilege="SELECT",
roles=[
"role1",
"role2",
],
schema_name="schema",
with_grant_option=False)
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
const grant = new snowflake.FileFormatGrant("grant", {
databaseName: "database",
fileFormatName: "file_format",
onFuture: false,
privilege: "SELECT",
roles: [
"role1",
"role2",
],
schemaName: "schema",
withGrantOption: false,
});
resources:
grant:
type: snowflake:FileFormatGrant
properties:
databaseName: database
fileFormatName: file_format
onFuture: false
privilege: SELECT
roles:
- role1
- role2
schemaName: schema
withGrantOption: false
Create FileFormatGrant Resource
new FileFormatGrant(name: string, args: FileFormatGrantArgs, opts?: CustomResourceOptions);
@overload
def FileFormatGrant(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
enable_multiple_grants: Optional[bool] = None,
file_format_name: Optional[str] = None,
on_all: Optional[bool] = None,
on_future: Optional[bool] = None,
privilege: Optional[str] = None,
revert_ownership_to_role_name: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
schema_name: Optional[str] = None,
with_grant_option: Optional[bool] = None)
@overload
def FileFormatGrant(resource_name: str,
args: FileFormatGrantArgs,
opts: Optional[ResourceOptions] = None)
func NewFileFormatGrant(ctx *Context, name string, args FileFormatGrantArgs, opts ...ResourceOption) (*FileFormatGrant, error)
public FileFormatGrant(string name, FileFormatGrantArgs args, CustomResourceOptions? opts = null)
public FileFormatGrant(String name, FileFormatGrantArgs args)
public FileFormatGrant(String name, FileFormatGrantArgs args, CustomResourceOptions options)
type: snowflake:FileFormatGrant
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileFormatGrantArgs
- 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 FileFormatGrantArgs
- 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 FileFormatGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FileFormatGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FileFormatGrantArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
FileFormatGrant Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FileFormatGrant resource accepts the following input properties:
- Database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- Roles List<string>
Grants privilege to these roles.
- Enable
Multiple boolGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- File
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- On
All bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- On
Future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- Privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- Revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- With
Grant boolOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- Database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- Roles []string
Grants privilege to these roles.
- Enable
Multiple boolGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- File
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- On
All bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- On
Future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- Privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- Revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- With
Grant boolOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String The name of the database containing the current or future file formats on which to grant privileges.
- roles List<String>
Grants privilege to these roles.
- enable
Multiple BooleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format StringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All Boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future Boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege String
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership StringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- schema
Name String The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant BooleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- roles string[]
Grants privilege to these roles.
- enable
Multiple booleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant booleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database_
name str The name of the database containing the current or future file formats on which to grant privileges.
- roles Sequence[str]
Grants privilege to these roles.
- enable_
multiple_ boolgrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file_
format_ strname The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on_
all bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on_
future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege str
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert_
ownership_ strto_ role_ name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- schema_
name str The name of the schema containing the current or future file formats on which to grant privileges.
- with_
grant_ booloption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String The name of the database containing the current or future file formats on which to grant privileges.
- roles List<String>
Grants privilege to these roles.
- enable
Multiple BooleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format StringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All Boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future Boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege String
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership StringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- schema
Name String The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant BooleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
Outputs
All input properties are implicitly available as output properties. Additionally, the FileFormatGrant resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing FileFormatGrant Resource
Get an existing FileFormatGrant 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?: FileFormatGrantState, opts?: CustomResourceOptions): FileFormatGrant
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
enable_multiple_grants: Optional[bool] = None,
file_format_name: Optional[str] = None,
on_all: Optional[bool] = None,
on_future: Optional[bool] = None,
privilege: Optional[str] = None,
revert_ownership_to_role_name: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
schema_name: Optional[str] = None,
with_grant_option: Optional[bool] = None) -> FileFormatGrant
func GetFileFormatGrant(ctx *Context, name string, id IDInput, state *FileFormatGrantState, opts ...ResourceOption) (*FileFormatGrant, error)
public static FileFormatGrant Get(string name, Input<string> id, FileFormatGrantState? state, CustomResourceOptions? opts = null)
public static FileFormatGrant get(String name, Output<String> id, FileFormatGrantState 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.
- Database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- Enable
Multiple boolGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- File
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- On
All bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- On
Future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- Privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- Revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles List<string>
Grants privilege to these roles.
- Schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- With
Grant boolOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- Database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- Enable
Multiple boolGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- File
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- On
All bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- On
Future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- Privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- Revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- Roles []string
Grants privilege to these roles.
- Schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- With
Grant boolOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String The name of the database containing the current or future file formats on which to grant privileges.
- enable
Multiple BooleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format StringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All Boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future Boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege String
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership StringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
Grants privilege to these roles.
- schema
Name String The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant BooleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name string The name of the database containing the current or future file formats on which to grant privileges.
- enable
Multiple booleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format stringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege string
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership stringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles string[]
Grants privilege to these roles.
- schema
Name string The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant booleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database_
name str The name of the database containing the current or future file formats on which to grant privileges.
- enable_
multiple_ boolgrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file_
format_ strname The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on_
all bool When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on_
future bool When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege str
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert_
ownership_ strto_ role_ name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles Sequence[str]
Grants privilege to these roles.
- schema_
name str The name of the schema containing the current or future file formats on which to grant privileges.
- with_
grant_ booloption When this is set to true, allows the recipient role to grant the privileges to other roles.
- database
Name String The name of the database containing the current or future file formats on which to grant privileges.
- enable
Multiple BooleanGrants When this is set to true, multiple grants of the same type can be created. This will cause Terraform to not revoke grants applied to roles and objects outside Terraform.
- file
Format StringName The name of the file format on which to grant privileges immediately (only valid if on_future is false).
- on
All Boolean When this is set to true and a schemaname is provided, apply this grant on all file formats in the given schema. When this is true and no schemaname is provided apply this grant on all file formats in the given database. The fileformatname field must be unset in order to use onall. Cannot be used together with onfuture.
- on
Future Boolean When this is set to true and a schemaname is provided, apply this grant on all future file formats in the given schema. When this is true and no schemaname is provided apply this grant on all future file formats in the given database. The fileformatname field must be unset in order to use onfuture. Cannot be used together with onall.
- privilege String
The privilege to grant on the current or future file format. To grant all privileges, use the value
ALL PRIVILEGES
- revert
Ownership StringTo Role Name The name of the role to revert ownership to on destroy. Has no effect unless
privilege
is set toOWNERSHIP
- roles List<String>
Grants privilege to these roles.
- schema
Name String The name of the schema containing the current or future file formats on which to grant privileges.
- with
Grant BooleanOption When this is set to true, allows the recipient role to grant the privileges to other roles.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
snowflake
Terraform Provider.