snowflake.ProcedureGrant
Explore with Pulumi AI
Deprecation This resource is deprecated and will be removed in a future major version release. Please use snowflake.GrantPrivilegesToAccountRole instead.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
const grant = new snowflake.ProcedureGrant("grant", {
databaseName: "database",
schemaName: "schema",
procedureName: "procedure",
argumentDataTypes: [
"array",
"string",
],
privilege: "USAGE",
roles: [
"role1",
"role2",
],
shares: [
"share1",
"share2",
],
onFuture: false,
withGrantOption: false,
});
import pulumi
import pulumi_snowflake as snowflake
grant = snowflake.ProcedureGrant("grant",
database_name="database",
schema_name="schema",
procedure_name="procedure",
argument_data_types=[
"array",
"string",
],
privilege="USAGE",
roles=[
"role1",
"role2",
],
shares=[
"share1",
"share2",
],
on_future=False,
with_grant_option=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.NewProcedureGrant(ctx, "grant", &snowflake.ProcedureGrantArgs{
DatabaseName: pulumi.String("database"),
SchemaName: pulumi.String("schema"),
ProcedureName: pulumi.String("procedure"),
ArgumentDataTypes: pulumi.StringArray{
pulumi.String("array"),
pulumi.String("string"),
},
Privilege: pulumi.String("USAGE"),
Roles: pulumi.StringArray{
pulumi.String("role1"),
pulumi.String("role2"),
},
Shares: pulumi.StringArray{
pulumi.String("share1"),
pulumi.String("share2"),
},
OnFuture: pulumi.Bool(false),
WithGrantOption: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
var grant = new Snowflake.ProcedureGrant("grant", new()
{
DatabaseName = "database",
SchemaName = "schema",
ProcedureName = "procedure",
ArgumentDataTypes = new[]
{
"array",
"string",
},
Privilege = "USAGE",
Roles = new[]
{
"role1",
"role2",
},
Shares = new[]
{
"share1",
"share2",
},
OnFuture = false,
WithGrantOption = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.ProcedureGrant;
import com.pulumi.snowflake.ProcedureGrantArgs;
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 ProcedureGrant("grant", ProcedureGrantArgs.builder()
.databaseName("database")
.schemaName("schema")
.procedureName("procedure")
.argumentDataTypes(
"array",
"string")
.privilege("USAGE")
.roles(
"role1",
"role2")
.shares(
"share1",
"share2")
.onFuture(false)
.withGrantOption(false)
.build());
}
}
resources:
grant:
type: snowflake:ProcedureGrant
properties:
databaseName: database
schemaName: schema
procedureName: procedure
argumentDataTypes:
- array
- string
privilege: USAGE
roles:
- role1
- role2
shares:
- share1
- share2
onFuture: false
withGrantOption: false
Create ProcedureGrant Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProcedureGrant(name: string, args: ProcedureGrantArgs, opts?: CustomResourceOptions);
@overload
def ProcedureGrant(resource_name: str,
args: ProcedureGrantArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProcedureGrant(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_name: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
argument_data_types: Optional[Sequence[str]] = None,
enable_multiple_grants: Optional[bool] = None,
on_all: Optional[bool] = None,
on_future: Optional[bool] = None,
privilege: Optional[str] = None,
procedure_name: Optional[str] = None,
revert_ownership_to_role_name: Optional[str] = None,
schema_name: Optional[str] = None,
shares: Optional[Sequence[str]] = None,
with_grant_option: Optional[bool] = None)
func NewProcedureGrant(ctx *Context, name string, args ProcedureGrantArgs, opts ...ResourceOption) (*ProcedureGrant, error)
public ProcedureGrant(string name, ProcedureGrantArgs args, CustomResourceOptions? opts = null)
public ProcedureGrant(String name, ProcedureGrantArgs args)
public ProcedureGrant(String name, ProcedureGrantArgs args, CustomResourceOptions options)
type: snowflake:ProcedureGrant
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 ProcedureGrantArgs
- 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 ProcedureGrantArgs
- 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 ProcedureGrantArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProcedureGrantArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProcedureGrantArgs
- 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 procedureGrantResource = new Snowflake.ProcedureGrant("procedureGrantResource", new()
{
DatabaseName = "string",
Roles = new[]
{
"string",
},
ArgumentDataTypes = new[]
{
"string",
},
EnableMultipleGrants = false,
OnAll = false,
OnFuture = false,
Privilege = "string",
ProcedureName = "string",
RevertOwnershipToRoleName = "string",
SchemaName = "string",
Shares = new[]
{
"string",
},
WithGrantOption = false,
});
example, err := snowflake.NewProcedureGrant(ctx, "procedureGrantResource", &snowflake.ProcedureGrantArgs{
DatabaseName: pulumi.String("string"),
Roles: pulumi.StringArray{
pulumi.String("string"),
},
ArgumentDataTypes: pulumi.StringArray{
pulumi.String("string"),
},
EnableMultipleGrants: pulumi.Bool(false),
OnAll: pulumi.Bool(false),
OnFuture: pulumi.Bool(false),
Privilege: pulumi.String("string"),
ProcedureName: pulumi.String("string"),
RevertOwnershipToRoleName: pulumi.String("string"),
SchemaName: pulumi.String("string"),
Shares: pulumi.StringArray{
pulumi.String("string"),
},
WithGrantOption: pulumi.Bool(false),
})
var procedureGrantResource = new ProcedureGrant("procedureGrantResource", ProcedureGrantArgs.builder()
.databaseName("string")
.roles("string")
.argumentDataTypes("string")
.enableMultipleGrants(false)
.onAll(false)
.onFuture(false)
.privilege("string")
.procedureName("string")
.revertOwnershipToRoleName("string")
.schemaName("string")
.shares("string")
.withGrantOption(false)
.build());
procedure_grant_resource = snowflake.ProcedureGrant("procedureGrantResource",
database_name="string",
roles=["string"],
argument_data_types=["string"],
enable_multiple_grants=False,
on_all=False,
on_future=False,
privilege="string",
procedure_name="string",
revert_ownership_to_role_name="string",
schema_name="string",
shares=["string"],
with_grant_option=False)
const procedureGrantResource = new snowflake.ProcedureGrant("procedureGrantResource", {
databaseName: "string",
roles: ["string"],
argumentDataTypes: ["string"],
enableMultipleGrants: false,
onAll: false,
onFuture: false,
privilege: "string",
procedureName: "string",
revertOwnershipToRoleName: "string",
schemaName: "string",
shares: ["string"],
withGrantOption: false,
});
type: snowflake:ProcedureGrant
properties:
argumentDataTypes:
- string
databaseName: string
enableMultipleGrants: false
onAll: false
onFuture: false
privilege: string
procedureName: string
revertOwnershipToRoleName: string
roles:
- string
schemaName: string
shares:
- string
withGrantOption: false
ProcedureGrant 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 ProcedureGrant resource accepts the following input properties:
- Database
Name string - The name of the database containing the current or future procedures on which to grant privileges.
- Roles List<string>
- Grants privilege to these roles.
- Argument
Data List<string>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- Enable
Multiple boolGrants - On
All bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- On
Future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- Privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- Procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<string>
- Grants privilege to these shares (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- Roles []string
- Grants privilege to these roles.
- Argument
Data []stringTypes - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- Enable
Multiple boolGrants - On
All bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- On
Future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- Privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- Procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- []string
- Grants privilege to these shares (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- roles List<String>
- Grants privilege to these roles.
- argument
Data List<String>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- enable
Multiple BooleanGrants - on
All Boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future Boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege String
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name String - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<String>
- Grants privilege to these shares (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- roles string[]
- Grants privilege to these roles.
- argument
Data string[]Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- enable
Multiple booleanGrants - on
All boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- string[]
- Grants privilege to these shares (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- roles Sequence[str]
- Grants privilege to these roles.
- argument_
data_ Sequence[str]types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- enable_
multiple_ boolgrants - on_
all bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on_
future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege str
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure_
name str - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- Sequence[str]
- Grants privilege to these shares (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- roles List<String>
- Grants privilege to these roles.
- argument
Data List<String>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- enable
Multiple BooleanGrants - on
All Boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future Boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege String
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name String - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<String>
- Grants privilege to these shares (only valid if on_future is false).
- 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 ProcedureGrant 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 ProcedureGrant Resource
Get an existing ProcedureGrant 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?: ProcedureGrantState, opts?: CustomResourceOptions): ProcedureGrant
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
argument_data_types: Optional[Sequence[str]] = None,
database_name: Optional[str] = None,
enable_multiple_grants: Optional[bool] = None,
on_all: Optional[bool] = None,
on_future: Optional[bool] = None,
privilege: Optional[str] = None,
procedure_name: Optional[str] = None,
revert_ownership_to_role_name: Optional[str] = None,
roles: Optional[Sequence[str]] = None,
schema_name: Optional[str] = None,
shares: Optional[Sequence[str]] = None,
with_grant_option: Optional[bool] = None) -> ProcedureGrant
func GetProcedureGrant(ctx *Context, name string, id IDInput, state *ProcedureGrantState, opts ...ResourceOption) (*ProcedureGrant, error)
public static ProcedureGrant Get(string name, Input<string> id, ProcedureGrantState? state, CustomResourceOptions? opts = null)
public static ProcedureGrant get(String name, Output<String> id, ProcedureGrantState 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.
- Argument
Data List<string>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- Database
Name string - The name of the database containing the current or future procedures on which to grant privileges.
- Enable
Multiple boolGrants - On
All bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- On
Future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- Privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- Procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<string>
- Grants privilege to these shares (only valid if on_future is false).
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- Argument
Data []stringTypes - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- Database
Name string - The name of the database containing the current or future procedures on which to grant privileges.
- Enable
Multiple boolGrants - On
All bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- On
Future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- Privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- Procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- []string
- Grants privilege to these shares (only valid if on_future is false).
- With
Grant boolOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- argument
Data List<String>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- database
Name String - The name of the database containing the current or future procedures on which to grant privileges.
- enable
Multiple BooleanGrants - on
All Boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future Boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege String
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name String - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<String>
- Grants privilege to these shares (only valid if on_future is false).
- with
Grant BooleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- argument
Data string[]Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- database
Name string - The name of the database containing the current or future procedures on which to grant privileges.
- enable
Multiple booleanGrants - on
All boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege string
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name string - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- string[]
- Grants privilege to these shares (only valid if on_future is false).
- with
Grant booleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- argument_
data_ Sequence[str]types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- database_
name str - The name of the database containing the current or future procedures on which to grant privileges.
- enable_
multiple_ boolgrants - on_
all bool - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on_
future bool - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege str
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure_
name str - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- Sequence[str]
- Grants privilege to these shares (only valid if on_future is false).
- with_
grant_ booloption - When this is set to true, allows the recipient role to grant the privileges to other roles.
- argument
Data List<String>Types - List of the argument data types for the procedure (must be present if procedure has arguments and procedure_name is present)
- database
Name String - The name of the database containing the current or future procedures on which to grant privileges.
- enable
Multiple BooleanGrants - on
All Boolean - When this is set to true and a schemaname is provided, apply this grant on all procedures in the given schema. When this is true and no schemaname is provided apply this grant on all procedures in the given database. The procedurename and shares fields must be unset in order to use onall. Cannot be used together with on_future.
- on
Future Boolean - When this is set to true and a schemaname is provided, apply this grant on all future procedures in the given schema. When this is true and no schemaname is provided apply this grant on all future procedures in the given database. The procedurename and shares fields must be unset in order to use onfuture. Cannot be used together with on_all.
- privilege String
- The privilege to grant on the current or future procedure. To grant all privileges, use the value
ALL PRIVILEGES
- procedure
Name String - The name of the procedure on which to grant privileges immediately (only valid if on_future is false).
- 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 procedures on which to grant privileges.
- List<String>
- Grants privilege to these shares (only valid if on_future is false).
- with
Grant BooleanOption - When this is set to true, allows the recipient role to grant the privileges to other roles.
Import
format is database_name|schema_name|procedure_name|argument_data_types|privilege|with_grant_option|on_future|roles|shares
$ pulumi import snowflake:index/procedureGrant:ProcedureGrant example "MY_DATABASE|MY_SCHEMA|MY_PROCEDURE|ARG1TYPE,ARG2TYPE|USAGE|false|false|role1,role2|share1,share2"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.