Import
$ pulumi import snowflake:index/notebook:Notebook example '"<db_name>"."<schema_name>"."<notebook_name>"'
Create Notebook Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Notebook(name: string, args: NotebookArgs, opts?: CustomResourceOptions);@overload
def Notebook(resource_name: str,
args: NotebookArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Notebook(resource_name: str,
opts: Optional[ResourceOptions] = None,
database: Optional[str] = None,
schema: Optional[str] = None,
comment: Optional[str] = None,
froms: Optional[Sequence[NotebookFromArgs]] = None,
idle_auto_shutdown_time_seconds: Optional[int] = None,
main_file: Optional[str] = None,
name: Optional[str] = None,
query_warehouse: Optional[str] = None,
warehouse: Optional[str] = None)func NewNotebook(ctx *Context, name string, args NotebookArgs, opts ...ResourceOption) (*Notebook, error)public Notebook(string name, NotebookArgs args, CustomResourceOptions? opts = null)
public Notebook(String name, NotebookArgs args)
public Notebook(String name, NotebookArgs args, CustomResourceOptions options)
type: snowflake:Notebook
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 NotebookArgs
- 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 NotebookArgs
- 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 NotebookArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NotebookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NotebookArgs
- 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 notebookResource = new Snowflake.Notebook("notebookResource", new()
{
Database = "string",
Schema = "string",
Comment = "string",
Froms = new[]
{
new Snowflake.Inputs.NotebookFromArgs
{
Stage = "string",
Path = "string",
},
},
IdleAutoShutdownTimeSeconds = 0,
MainFile = "string",
Name = "string",
QueryWarehouse = "string",
Warehouse = "string",
});
example, err := snowflake.NewNotebook(ctx, "notebookResource", &snowflake.NotebookArgs{
Database: pulumi.String("string"),
Schema: pulumi.String("string"),
Comment: pulumi.String("string"),
Froms: snowflake.NotebookFromArray{
&snowflake.NotebookFromArgs{
Stage: pulumi.String("string"),
Path: pulumi.String("string"),
},
},
IdleAutoShutdownTimeSeconds: pulumi.Int(0),
MainFile: pulumi.String("string"),
Name: pulumi.String("string"),
QueryWarehouse: pulumi.String("string"),
Warehouse: pulumi.String("string"),
})
var notebookResource = new Notebook("notebookResource", NotebookArgs.builder()
.database("string")
.schema("string")
.comment("string")
.froms(NotebookFromArgs.builder()
.stage("string")
.path("string")
.build())
.idleAutoShutdownTimeSeconds(0)
.mainFile("string")
.name("string")
.queryWarehouse("string")
.warehouse("string")
.build());
notebook_resource = snowflake.Notebook("notebookResource",
database="string",
schema="string",
comment="string",
froms=[{
"stage": "string",
"path": "string",
}],
idle_auto_shutdown_time_seconds=0,
main_file="string",
name="string",
query_warehouse="string",
warehouse="string")
const notebookResource = new snowflake.Notebook("notebookResource", {
database: "string",
schema: "string",
comment: "string",
froms: [{
stage: "string",
path: "string",
}],
idleAutoShutdownTimeSeconds: 0,
mainFile: "string",
name: "string",
queryWarehouse: "string",
warehouse: "string",
});
type: snowflake:Notebook
properties:
comment: string
database: string
froms:
- path: string
stage: string
idleAutoShutdownTimeSeconds: 0
mainFile: string
name: string
queryWarehouse: string
schema: string
warehouse: string
Notebook Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Notebook resource accepts the following input properties:
- Database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Comment string
- Specifies a comment for the notebook.
- Froms
List<Notebook
From> - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- Idle
Auto intShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- Main
File string - Specifies a user-specified identifier for the notebook file name.
- Name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- Warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- Database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Comment string
- Specifies a comment for the notebook.
- Froms
[]Notebook
From Args - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- Idle
Auto intShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- Main
File string - Specifies a user-specified identifier for the notebook file name.
- Name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- Warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- database String
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - schema String
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - comment String
- Specifies a comment for the notebook.
- froms
List<Notebook
From> - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- idle
Auto IntegerShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File String - Specifies a user-specified identifier for the notebook file name.
- name String
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse String - Specifies the warehouse where SQL queries in the notebook are run.
- warehouse String
- Specifies the warehouse that runs the notebook kernel and python code.
- database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - comment string
- Specifies a comment for the notebook.
- froms
Notebook
From[] - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- idle
Auto numberShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File string - Specifies a user-specified identifier for the notebook file name.
- name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- database str
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - schema str
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - comment str
- Specifies a comment for the notebook.
- froms
Sequence[Notebook
From Args] - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- idle_
auto_ intshutdown_ time_ seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main_
file str - Specifies a user-specified identifier for the notebook file name.
- name str
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query_
warehouse str - Specifies the warehouse where SQL queries in the notebook are run.
- warehouse str
- Specifies the warehouse that runs the notebook kernel and python code.
- database String
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - schema String
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - comment String
- Specifies a comment for the notebook.
- froms List<Property Map>
- Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- idle
Auto NumberShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File String - Specifies a user-specified identifier for the notebook file name.
- name String
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse String - Specifies the warehouse where SQL queries in the notebook are run.
- warehouse String
- Specifies the warehouse that runs the notebook kernel and python code.
Outputs
All input properties are implicitly available as output properties. Additionally, the Notebook resource produces the following output properties:
- Describe
Outputs List<NotebookDescribe Output> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs List<NotebookShow Output> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
- Describe
Outputs []NotebookDescribe Output - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Id string
- The provider-assigned unique ID for this managed resource.
- Show
Outputs []NotebookShow Output - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
- describe
Outputs List<NotebookDescribe Output> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<NotebookShow Output> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
- describe
Outputs NotebookDescribe Output[] - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- id string
- The provider-assigned unique ID for this managed resource.
- show
Outputs NotebookShow Output[] - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
- describe_
outputs Sequence[NotebookDescribe Output] - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- id str
- The provider-assigned unique ID for this managed resource.
- show_
outputs Sequence[NotebookShow Output] - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
- describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- id String
- The provider-assigned unique ID for this managed resource.
- show
Outputs List<Property Map> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook
Look up Existing Notebook Resource
Get an existing Notebook 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?: NotebookState, opts?: CustomResourceOptions): Notebook@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comment: Optional[str] = None,
database: Optional[str] = None,
describe_outputs: Optional[Sequence[NotebookDescribeOutputArgs]] = None,
froms: Optional[Sequence[NotebookFromArgs]] = None,
fully_qualified_name: Optional[str] = None,
idle_auto_shutdown_time_seconds: Optional[int] = None,
main_file: Optional[str] = None,
name: Optional[str] = None,
query_warehouse: Optional[str] = None,
schema: Optional[str] = None,
show_outputs: Optional[Sequence[NotebookShowOutputArgs]] = None,
warehouse: Optional[str] = None) -> Notebookfunc GetNotebook(ctx *Context, name string, id IDInput, state *NotebookState, opts ...ResourceOption) (*Notebook, error)public static Notebook Get(string name, Input<string> id, NotebookState? state, CustomResourceOptions? opts = null)public static Notebook get(String name, Output<String> id, NotebookState state, CustomResourceOptions options)resources: _: type: snowflake:Notebook get: id: ${id}- 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.
- Comment string
- Specifies a comment for the notebook.
- Database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Describe
Outputs List<NotebookDescribe Output> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - Froms
List<Notebook
From> - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Idle
Auto intShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- Main
File string - Specifies a user-specified identifier for the notebook file name.
- Name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- Schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Show
Outputs List<NotebookShow Output> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - Warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- Comment string
- Specifies a comment for the notebook.
- Database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Describe
Outputs []NotebookDescribe Output Args - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - Froms
[]Notebook
From Args - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Idle
Auto intShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- Main
File string - Specifies a user-specified identifier for the notebook file name.
- Name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- Schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - Show
Outputs []NotebookShow Output Args - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - Warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- comment String
- Specifies a comment for the notebook.
- database String
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - describe
Outputs List<NotebookDescribe Output> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - froms
List<Notebook
From> - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- idle
Auto IntegerShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File String - Specifies a user-specified identifier for the notebook file name.
- name String
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse String - Specifies the warehouse where SQL queries in the notebook are run.
- schema String
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs List<NotebookShow Output> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - warehouse String
- Specifies the warehouse that runs the notebook kernel and python code.
- comment string
- Specifies a comment for the notebook.
- database string
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - describe
Outputs NotebookDescribe Output[] - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - froms
Notebook
From[] - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- idle
Auto numberShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File string - Specifies a user-specified identifier for the notebook file name.
- name string
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse string - Specifies the warehouse where SQL queries in the notebook are run.
- schema string
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs NotebookShow Output[] - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - warehouse string
- Specifies the warehouse that runs the notebook kernel and python code.
- comment str
- Specifies a comment for the notebook.
- database str
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - describe_
outputs Sequence[NotebookDescribe Output Args] - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - froms
Sequence[Notebook
From Args] - Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- idle_
auto_ intshutdown_ time_ seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main_
file str - Specifies a user-specified identifier for the notebook file name.
- name str
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query_
warehouse str - Specifies the warehouse where SQL queries in the notebook are run.
- schema str
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show_
outputs Sequence[NotebookShow Output Args] - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - warehouse str
- Specifies the warehouse that runs the notebook kernel and python code.
- comment String
- Specifies a comment for the notebook.
- database String
- The database in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - describe
Outputs List<Property Map> - Outputs the result of
DESCRIBE NOTEBOOKfor the given notebook. - froms List<Property Map>
- Specifies the location in a stage of an .ipynb file from which the notebook should be created. MAIN_FILE parameter a user-specified identifier for the notebook file name must also be set alongside it.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- idle
Auto NumberShutdown Time Seconds - Specifies the number of seconds of idle time before the notebook is shut down automatically.
- main
File String - Specifies a user-specified identifier for the notebook file name.
- name String
- Specifies the identifier for the notebook; must be unique for the schema in which the notebook is created. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - query
Warehouse String - Specifies the warehouse where SQL queries in the notebook are run.
- schema String
- The schema in which to create the notebook. Due to technical limitations (read more here), avoid using the following characters:
|,.,". - show
Outputs List<Property Map> - Outputs the result of
SHOW NOTEBOOKSfor the given notebook - warehouse String
- Specifies the warehouse that runs the notebook kernel and python code.
Supporting Types
NotebookDescribeOutput, NotebookDescribeOutputArgs
- Code
Warehouse string - Comment string
- Compute
Pool string - Default
Packages string - Default
Version string - Default
Version stringAlias - Default
Version stringGit Commit Hash - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - External
Access stringIntegrations - External
Access stringSecrets - Idle
Auto intShutdown Time Seconds - Import
Urls string - Last
Version stringAlias - Last
Version stringGit Commit Hash - Last
Version stringLocation Uri - Last
Version stringName - Last
Version stringSource Location Uri - Live
Version stringLocation Uri - Main
File string - Name string
- Owner string
- Query
Warehouse string - Runtime
Environment stringVersion - Runtime
Name string - Title string
- Url
Id string - User
Packages string
- Code
Warehouse string - Comment string
- Compute
Pool string - Default
Packages string - Default
Version string - Default
Version stringAlias - Default
Version stringGit Commit Hash - Default
Version stringLocation Uri - Default
Version stringName - Default
Version stringSource Location Uri - External
Access stringIntegrations - External
Access stringSecrets - Idle
Auto intShutdown Time Seconds - Import
Urls string - Last
Version stringAlias - Last
Version stringGit Commit Hash - Last
Version stringLocation Uri - Last
Version stringName - Last
Version stringSource Location Uri - Live
Version stringLocation Uri - Main
File string - Name string
- Owner string
- Query
Warehouse string - Runtime
Environment stringVersion - Runtime
Name string - Title string
- Url
Id string - User
Packages string
- code
Warehouse String - comment String
- compute
Pool String - default
Packages String - default
Version String - default
Version StringAlias - default
Version StringGit Commit Hash - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - external
Access StringIntegrations - external
Access StringSecrets - idle
Auto IntegerShutdown Time Seconds - import
Urls String - last
Version StringAlias - last
Version StringGit Commit Hash - last
Version StringLocation Uri - last
Version StringName - last
Version StringSource Location Uri - live
Version StringLocation Uri - main
File String - name String
- owner String
- query
Warehouse String - runtime
Environment StringVersion - runtime
Name String - title String
- url
Id String - user
Packages String
- code
Warehouse string - comment string
- compute
Pool string - default
Packages string - default
Version string - default
Version stringAlias - default
Version stringGit Commit Hash - default
Version stringLocation Uri - default
Version stringName - default
Version stringSource Location Uri - external
Access stringIntegrations - external
Access stringSecrets - idle
Auto numberShutdown Time Seconds - import
Urls string - last
Version stringAlias - last
Version stringGit Commit Hash - last
Version stringLocation Uri - last
Version stringName - last
Version stringSource Location Uri - live
Version stringLocation Uri - main
File string - name string
- owner string
- query
Warehouse string - runtime
Environment stringVersion - runtime
Name string - title string
- url
Id string - user
Packages string
- code_
warehouse str - comment str
- compute_
pool str - default_
packages str - default_
version str - default_
version_ stralias - default_
version_ strgit_ commit_ hash - default_
version_ strlocation_ uri - default_
version_ strname - default_
version_ strsource_ location_ uri - external_
access_ strintegrations - external_
access_ strsecrets - idle_
auto_ intshutdown_ time_ seconds - import_
urls str - last_
version_ stralias - last_
version_ strgit_ commit_ hash - last_
version_ strlocation_ uri - last_
version_ strname - last_
version_ strsource_ location_ uri - live_
version_ strlocation_ uri - main_
file str - name str
- owner str
- query_
warehouse str - runtime_
environment_ strversion - runtime_
name str - title str
- url_
id str - user_
packages str
- code
Warehouse String - comment String
- compute
Pool String - default
Packages String - default
Version String - default
Version StringAlias - default
Version StringGit Commit Hash - default
Version StringLocation Uri - default
Version StringName - default
Version StringSource Location Uri - external
Access StringIntegrations - external
Access StringSecrets - idle
Auto NumberShutdown Time Seconds - import
Urls String - last
Version StringAlias - last
Version StringGit Commit Hash - last
Version StringLocation Uri - last
Version StringName - last
Version StringSource Location Uri - live
Version StringLocation Uri - main
File String - name String
- owner String
- query
Warehouse String - runtime
Environment StringVersion - runtime
Name String - title String
- url
Id String - user
Packages String
NotebookFrom, NotebookFromArgs
NotebookShowOutput, NotebookShowOutputArgs
- Code
Warehouse string - Comment string
- Created
On string - Database
Name string - Name string
- Owner string
- Owner
Role stringType - Query
Warehouse string - Schema
Name string - Url
Id string
- Code
Warehouse string - Comment string
- Created
On string - Database
Name string - Name string
- Owner string
- Owner
Role stringType - Query
Warehouse string - Schema
Name string - Url
Id string
- code
Warehouse String - comment String
- created
On String - database
Name String - name String
- owner String
- owner
Role StringType - query
Warehouse String - schema
Name String - url
Id String
- code
Warehouse string - comment string
- created
On string - database
Name string - name string
- owner string
- owner
Role stringType - query
Warehouse string - schema
Name string - url
Id string
- code_
warehouse str - comment str
- created_
on str - database_
name str - name str
- owner str
- owner_
role_ strtype - query_
warehouse str - schema_
name str - url_
id str
- code
Warehouse String - comment String
- created
On String - database
Name String - name String
- owner String
- owner
Role StringType - query
Warehouse String - schema
Name String - url
Id String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflakeTerraform Provider.
