1. Packages
  2. Snowflake
  3. API Docs
  4. ResourceMonitorGrant
Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi

snowflake.ResourceMonitorGrant

Explore with Pulumi AI

snowflake logo
Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi

    Deprecation This resource is deprecated and will be removed in a future major version release. Please use snowflake.GrantPrivilegesToAccountRole instead.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        var grant = new Snowflake.ResourceMonitorGrant("grant", new()
        {
            MonitorName = "monitor",
            Privilege = "MODIFY",
            Roles = new[]
            {
                "role1",
            },
            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.NewResourceMonitorGrant(ctx, "grant", &snowflake.ResourceMonitorGrantArgs{
    			MonitorName: pulumi.String("monitor"),
    			Privilege:   pulumi.String("MODIFY"),
    			Roles: pulumi.StringArray{
    				pulumi.String("role1"),
    			},
    			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.ResourceMonitorGrant;
    import com.pulumi.snowflake.ResourceMonitorGrantArgs;
    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 ResourceMonitorGrant("grant", ResourceMonitorGrantArgs.builder()        
                .monitorName("monitor")
                .privilege("MODIFY")
                .roles("role1")
                .withGrantOption(false)
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    grant = snowflake.ResourceMonitorGrant("grant",
        monitor_name="monitor",
        privilege="MODIFY",
        roles=["role1"],
        with_grant_option=False)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const grant = new snowflake.ResourceMonitorGrant("grant", {
        monitorName: "monitor",
        privilege: "MODIFY",
        roles: ["role1"],
        withGrantOption: false,
    });
    
    resources:
      grant:
        type: snowflake:ResourceMonitorGrant
        properties:
          monitorName: monitor
          privilege: MODIFY
          roles:
            - role1
          withGrantOption: false
    

    Create ResourceMonitorGrant Resource

    new ResourceMonitorGrant(name: string, args: ResourceMonitorGrantArgs, opts?: CustomResourceOptions);
    @overload
    def ResourceMonitorGrant(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             enable_multiple_grants: Optional[bool] = None,
                             monitor_name: Optional[str] = None,
                             privilege: Optional[str] = None,
                             roles: Optional[Sequence[str]] = None,
                             with_grant_option: Optional[bool] = None)
    @overload
    def ResourceMonitorGrant(resource_name: str,
                             args: ResourceMonitorGrantArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewResourceMonitorGrant(ctx *Context, name string, args ResourceMonitorGrantArgs, opts ...ResourceOption) (*ResourceMonitorGrant, error)
    public ResourceMonitorGrant(string name, ResourceMonitorGrantArgs args, CustomResourceOptions? opts = null)
    public ResourceMonitorGrant(String name, ResourceMonitorGrantArgs args)
    public ResourceMonitorGrant(String name, ResourceMonitorGrantArgs args, CustomResourceOptions options)
    
    type: snowflake:ResourceMonitorGrant
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ResourceMonitorGrantArgs
    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 ResourceMonitorGrantArgs
    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 ResourceMonitorGrantArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResourceMonitorGrantArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResourceMonitorGrantArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ResourceMonitorGrant 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 ResourceMonitorGrant resource accepts the following input properties:

    MonitorName string
    Identifier for the resource monitor; must be unique for your account.
    EnableMultipleGrants bool
    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.
    Privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    Roles List<string>
    Grants privilege to these roles.
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    MonitorName string
    Identifier for the resource monitor; must be unique for your account.
    EnableMultipleGrants bool
    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.
    Privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    Roles []string
    Grants privilege to these roles.
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    monitorName String
    Identifier for the resource monitor; must be unique for your account.
    enableMultipleGrants Boolean
    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.
    privilege String
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles List<String>
    Grants privilege to these roles.
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    monitorName string
    Identifier for the resource monitor; must be unique for your account.
    enableMultipleGrants boolean
    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.
    privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles string[]
    Grants privilege to these roles.
    withGrantOption boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    monitor_name str
    Identifier for the resource monitor; must be unique for your account.
    enable_multiple_grants bool
    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.
    privilege str
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles Sequence[str]
    Grants privilege to these roles.
    with_grant_option bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    monitorName String
    Identifier for the resource monitor; must be unique for your account.
    enableMultipleGrants Boolean
    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.
    privilege String
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles List<String>
    Grants privilege to these roles.
    withGrantOption Boolean
    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 ResourceMonitorGrant 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 ResourceMonitorGrant Resource

    Get an existing ResourceMonitorGrant 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?: ResourceMonitorGrantState, opts?: CustomResourceOptions): ResourceMonitorGrant
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enable_multiple_grants: Optional[bool] = None,
            monitor_name: Optional[str] = None,
            privilege: Optional[str] = None,
            roles: Optional[Sequence[str]] = None,
            with_grant_option: Optional[bool] = None) -> ResourceMonitorGrant
    func GetResourceMonitorGrant(ctx *Context, name string, id IDInput, state *ResourceMonitorGrantState, opts ...ResourceOption) (*ResourceMonitorGrant, error)
    public static ResourceMonitorGrant Get(string name, Input<string> id, ResourceMonitorGrantState? state, CustomResourceOptions? opts = null)
    public static ResourceMonitorGrant get(String name, Output<String> id, ResourceMonitorGrantState 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.
    The following state arguments are supported:
    EnableMultipleGrants bool
    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.
    MonitorName string
    Identifier for the resource monitor; must be unique for your account.
    Privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    Roles List<string>
    Grants privilege to these roles.
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    EnableMultipleGrants bool
    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.
    MonitorName string
    Identifier for the resource monitor; must be unique for your account.
    Privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    Roles []string
    Grants privilege to these roles.
    WithGrantOption bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    enableMultipleGrants Boolean
    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.
    monitorName String
    Identifier for the resource monitor; must be unique for your account.
    privilege String
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles List<String>
    Grants privilege to these roles.
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    enableMultipleGrants boolean
    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.
    monitorName string
    Identifier for the resource monitor; must be unique for your account.
    privilege string
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles string[]
    Grants privilege to these roles.
    withGrantOption boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    enable_multiple_grants bool
    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.
    monitor_name str
    Identifier for the resource monitor; must be unique for your account.
    privilege str
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles Sequence[str]
    Grants privilege to these roles.
    with_grant_option bool
    When this is set to true, allows the recipient role to grant the privileges to other roles.
    enableMultipleGrants Boolean
    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.
    monitorName String
    Identifier for the resource monitor; must be unique for your account.
    privilege String
    The privilege to grant on the resource monitor. To grant all privileges, use the value ALL PRIVILEGES
    roles List<String>
    Grants privilege to these roles.
    withGrantOption Boolean
    When this is set to true, allows the recipient role to grant the privileges to other roles.

    Import

    format is monitor_name|privilege|with_grant_option|roles

    $ pulumi import snowflake:index/resourceMonitorGrant:ResourceMonitorGrant example "MY_RESOURCE_MONITOR|MONITOR|false|role1,role2"
    

    Package Details

    Repository
    Snowflake pulumi/pulumi-snowflake
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the snowflake Terraform Provider.
    snowflake logo
    Snowflake v0.50.2 published on Friday, Mar 8, 2024 by Pulumi