1. Packages
  2. Snowflake
  3. API Docs
  4. MaterializedView
Snowflake v0.52.0 published on Thursday, Apr 18, 2024 by Pulumi

snowflake.MaterializedView

Explore with Pulumi AI

snowflake logo
Snowflake v0.52.0 published on Thursday, Apr 18, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const view = new snowflake.MaterializedView("view", {
        database: "db",
        schema: "schema",
        warehouse: "warehouse",
        comment: "comment",
        statement: "select * from foo;\n",
        orReplace: false,
        isSecure: false,
    });
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    view = snowflake.MaterializedView("view",
        database="db",
        schema="schema",
        warehouse="warehouse",
        comment="comment",
        statement="select * from foo;\n",
        or_replace=False,
        is_secure=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.NewMaterializedView(ctx, "view", &snowflake.MaterializedViewArgs{
    			Database:  pulumi.String("db"),
    			Schema:    pulumi.String("schema"),
    			Warehouse: pulumi.String("warehouse"),
    			Comment:   pulumi.String("comment"),
    			Statement: pulumi.String("select * from foo;\n"),
    			OrReplace: pulumi.Bool(false),
    			IsSecure:  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 view = new Snowflake.MaterializedView("view", new()
        {
            Database = "db",
            Schema = "schema",
            Warehouse = "warehouse",
            Comment = "comment",
            Statement = @"select * from foo;
    ",
            OrReplace = false,
            IsSecure = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.MaterializedView;
    import com.pulumi.snowflake.MaterializedViewArgs;
    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 view = new MaterializedView("view", MaterializedViewArgs.builder()        
                .database("db")
                .schema("schema")
                .warehouse("warehouse")
                .comment("comment")
                .statement("""
    select * from foo;
                """)
                .orReplace(false)
                .isSecure(false)
                .build());
    
        }
    }
    
    resources:
      view:
        type: snowflake:MaterializedView
        properties:
          database: db
          schema: schema
          warehouse: warehouse
          comment: comment
          statement: |
            select * from foo;        
          orReplace: false
          isSecure: false
    

    Create MaterializedView Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MaterializedView(name: string, args: MaterializedViewArgs, opts?: CustomResourceOptions);
    @overload
    def MaterializedView(resource_name: str,
                         args: MaterializedViewArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def MaterializedView(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         database: Optional[str] = None,
                         schema: Optional[str] = None,
                         statement: Optional[str] = None,
                         warehouse: Optional[str] = None,
                         comment: Optional[str] = None,
                         is_secure: Optional[bool] = None,
                         name: Optional[str] = None,
                         or_replace: Optional[bool] = None,
                         tags: Optional[Sequence[MaterializedViewTagArgs]] = None)
    func NewMaterializedView(ctx *Context, name string, args MaterializedViewArgs, opts ...ResourceOption) (*MaterializedView, error)
    public MaterializedView(string name, MaterializedViewArgs args, CustomResourceOptions? opts = null)
    public MaterializedView(String name, MaterializedViewArgs args)
    public MaterializedView(String name, MaterializedViewArgs args, CustomResourceOptions options)
    
    type: snowflake:MaterializedView
    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 MaterializedViewArgs
    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 MaterializedViewArgs
    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 MaterializedViewArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MaterializedViewArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MaterializedViewArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var materializedViewResource = new Snowflake.MaterializedView("materializedViewResource", new()
    {
        Database = "string",
        Schema = "string",
        Statement = "string",
        Warehouse = "string",
        Comment = "string",
        IsSecure = false,
        Name = "string",
        OrReplace = false,
    });
    
    example, err := snowflake.NewMaterializedView(ctx, "materializedViewResource", &snowflake.MaterializedViewArgs{
    	Database:  pulumi.String("string"),
    	Schema:    pulumi.String("string"),
    	Statement: pulumi.String("string"),
    	Warehouse: pulumi.String("string"),
    	Comment:   pulumi.String("string"),
    	IsSecure:  pulumi.Bool(false),
    	Name:      pulumi.String("string"),
    	OrReplace: pulumi.Bool(false),
    })
    
    var materializedViewResource = new MaterializedView("materializedViewResource", MaterializedViewArgs.builder()        
        .database("string")
        .schema("string")
        .statement("string")
        .warehouse("string")
        .comment("string")
        .isSecure(false)
        .name("string")
        .orReplace(false)
        .build());
    
    materialized_view_resource = snowflake.MaterializedView("materializedViewResource",
        database="string",
        schema="string",
        statement="string",
        warehouse="string",
        comment="string",
        is_secure=False,
        name="string",
        or_replace=False)
    
    const materializedViewResource = new snowflake.MaterializedView("materializedViewResource", {
        database: "string",
        schema: "string",
        statement: "string",
        warehouse: "string",
        comment: "string",
        isSecure: false,
        name: "string",
        orReplace: false,
    });
    
    type: snowflake:MaterializedView
    properties:
        comment: string
        database: string
        isSecure: false
        name: string
        orReplace: false
        schema: string
        statement: string
        warehouse: string
    

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

    Database string
    Name of the database that the tag was created in.
    Schema string
    Name of the schema that the tag was created in.
    Statement string
    Specifies the query used to create the view.
    Warehouse string
    The warehouse name.
    Comment string
    Specifies a comment for the view.
    IsSecure bool
    Specifies that the view is secure.
    Name string
    Tag name, e.g. department.
    OrReplace bool
    Overwrites the View if it exists.
    Tags List<MaterializedViewTag>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    Database string
    Name of the database that the tag was created in.
    Schema string
    Name of the schema that the tag was created in.
    Statement string
    Specifies the query used to create the view.
    Warehouse string
    The warehouse name.
    Comment string
    Specifies a comment for the view.
    IsSecure bool
    Specifies that the view is secure.
    Name string
    Tag name, e.g. department.
    OrReplace bool
    Overwrites the View if it exists.
    Tags []MaterializedViewTagArgs
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    database String
    Name of the database that the tag was created in.
    schema String
    Name of the schema that the tag was created in.
    statement String
    Specifies the query used to create the view.
    warehouse String
    The warehouse name.
    comment String
    Specifies a comment for the view.
    isSecure Boolean
    Specifies that the view is secure.
    name String
    Tag name, e.g. department.
    orReplace Boolean
    Overwrites the View if it exists.
    tags List<MaterializedViewTag>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    database string
    Name of the database that the tag was created in.
    schema string
    Name of the schema that the tag was created in.
    statement string
    Specifies the query used to create the view.
    warehouse string
    The warehouse name.
    comment string
    Specifies a comment for the view.
    isSecure boolean
    Specifies that the view is secure.
    name string
    Tag name, e.g. department.
    orReplace boolean
    Overwrites the View if it exists.
    tags MaterializedViewTag[]
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    database str
    Name of the database that the tag was created in.
    schema str
    Name of the schema that the tag was created in.
    statement str
    Specifies the query used to create the view.
    warehouse str
    The warehouse name.
    comment str
    Specifies a comment for the view.
    is_secure bool
    Specifies that the view is secure.
    name str
    Tag name, e.g. department.
    or_replace bool
    Overwrites the View if it exists.
    tags Sequence[MaterializedViewTagArgs]
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    database String
    Name of the database that the tag was created in.
    schema String
    Name of the schema that the tag was created in.
    statement String
    Specifies the query used to create the view.
    warehouse String
    The warehouse name.
    comment String
    Specifies a comment for the view.
    isSecure Boolean
    Specifies that the view is secure.
    name String
    Tag name, e.g. department.
    orReplace Boolean
    Overwrites the View if it exists.
    tags List<Property Map>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MaterializedView 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 MaterializedView Resource

    Get an existing MaterializedView 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?: MaterializedViewState, opts?: CustomResourceOptions): MaterializedView
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            comment: Optional[str] = None,
            database: Optional[str] = None,
            is_secure: Optional[bool] = None,
            name: Optional[str] = None,
            or_replace: Optional[bool] = None,
            schema: Optional[str] = None,
            statement: Optional[str] = None,
            tags: Optional[Sequence[MaterializedViewTagArgs]] = None,
            warehouse: Optional[str] = None) -> MaterializedView
    func GetMaterializedView(ctx *Context, name string, id IDInput, state *MaterializedViewState, opts ...ResourceOption) (*MaterializedView, error)
    public static MaterializedView Get(string name, Input<string> id, MaterializedViewState? state, CustomResourceOptions? opts = null)
    public static MaterializedView get(String name, Output<String> id, MaterializedViewState 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:
    Comment string
    Specifies a comment for the view.
    Database string
    Name of the database that the tag was created in.
    IsSecure bool
    Specifies that the view is secure.
    Name string
    Tag name, e.g. department.
    OrReplace bool
    Overwrites the View if it exists.
    Schema string
    Name of the schema that the tag was created in.
    Statement string
    Specifies the query used to create the view.
    Tags List<MaterializedViewTag>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    Warehouse string
    The warehouse name.
    Comment string
    Specifies a comment for the view.
    Database string
    Name of the database that the tag was created in.
    IsSecure bool
    Specifies that the view is secure.
    Name string
    Tag name, e.g. department.
    OrReplace bool
    Overwrites the View if it exists.
    Schema string
    Name of the schema that the tag was created in.
    Statement string
    Specifies the query used to create the view.
    Tags []MaterializedViewTagArgs
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    Warehouse string
    The warehouse name.
    comment String
    Specifies a comment for the view.
    database String
    Name of the database that the tag was created in.
    isSecure Boolean
    Specifies that the view is secure.
    name String
    Tag name, e.g. department.
    orReplace Boolean
    Overwrites the View if it exists.
    schema String
    Name of the schema that the tag was created in.
    statement String
    Specifies the query used to create the view.
    tags List<MaterializedViewTag>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    warehouse String
    The warehouse name.
    comment string
    Specifies a comment for the view.
    database string
    Name of the database that the tag was created in.
    isSecure boolean
    Specifies that the view is secure.
    name string
    Tag name, e.g. department.
    orReplace boolean
    Overwrites the View if it exists.
    schema string
    Name of the schema that the tag was created in.
    statement string
    Specifies the query used to create the view.
    tags MaterializedViewTag[]
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    warehouse string
    The warehouse name.
    comment str
    Specifies a comment for the view.
    database str
    Name of the database that the tag was created in.
    is_secure bool
    Specifies that the view is secure.
    name str
    Tag name, e.g. department.
    or_replace bool
    Overwrites the View if it exists.
    schema str
    Name of the schema that the tag was created in.
    statement str
    Specifies the query used to create the view.
    tags Sequence[MaterializedViewTagArgs]
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    warehouse str
    The warehouse name.
    comment String
    Specifies a comment for the view.
    database String
    Name of the database that the tag was created in.
    isSecure Boolean
    Specifies that the view is secure.
    name String
    Tag name, e.g. department.
    orReplace Boolean
    Overwrites the View if it exists.
    schema String
    Name of the schema that the tag was created in.
    statement String
    Specifies the query used to create the view.
    tags List<Property Map>
    Definitions of a tag to associate with the resource.

    Deprecated: Use the 'snowflake_tag_association' resource instead.

    warehouse String
    The warehouse name.

    Supporting Types

    MaterializedViewTag, MaterializedViewTagArgs

    Name string
    Tag name, e.g. department.
    Value string
    Tag value, e.g. marketing_info.
    Database string
    Name of the database that the tag was created in.
    Schema string
    Name of the schema that the tag was created in.
    Name string
    Tag name, e.g. department.
    Value string
    Tag value, e.g. marketing_info.
    Database string
    Name of the database that the tag was created in.
    Schema string
    Name of the schema that the tag was created in.
    name String
    Tag name, e.g. department.
    value String
    Tag value, e.g. marketing_info.
    database String
    Name of the database that the tag was created in.
    schema String
    Name of the schema that the tag was created in.
    name string
    Tag name, e.g. department.
    value string
    Tag value, e.g. marketing_info.
    database string
    Name of the database that the tag was created in.
    schema string
    Name of the schema that the tag was created in.
    name str
    Tag name, e.g. department.
    value str
    Tag value, e.g. marketing_info.
    database str
    Name of the database that the tag was created in.
    schema str
    Name of the schema that the tag was created in.
    name String
    Tag name, e.g. department.
    value String
    Tag value, e.g. marketing_info.
    database String
    Name of the database that the tag was created in.
    schema String
    Name of the schema that the tag was created in.

    Import

    format is database name | schema name | view name

    $ pulumi import snowflake:index/materializedView:MaterializedView example 'dbName|schemaName|viewName'
    

    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.
    snowflake logo
    Snowflake v0.52.0 published on Thursday, Apr 18, 2024 by Pulumi