!> Warning Versioning only works if your listing ever sourced the manifest from stage. This is a Snowflake limitation.
!> Warning External changes to the manifest (inlined and staged) won’t be detected by the provider automatically. You need to manually trigger updates when manifest content changes.
!> Warning This resource isn’t suitable for public listings because its review process doesn’t align with Terraform’s standard method for managing infrastructure resources. The challenge is that the review process often takes time and might need several manual revisions. We need to reconsider how to integrate this process into a resource. Although we plan to support this in the future, it might be added later. Currently, the resource may not function well with public listings because review requests are closely connected to the publish field.
!> Warning To use external resources in your manifest (e.g., company logo) you must be sourcing your manifest from a stage. Any references to external resources are relative to the manifest location in the stage.
!> Warning Currently, this resource doesn’t support organization listings. We plan to add support for this in the future (through separate parameter or entirely new resource). There is a workaround for this provided in this issue: #3982, but beware that in the next major version of the provider such workarounds may not be allowed.
Note When using manifest from stage, the change in either stage id, location, or version will create a new listing version that can be seen by calling the SHOW VERSIONS IN LISTING command.
Note For inlined manifest version, only string is accepted. The manifest structure is not mapped to the resource schema to keep it simple and aligned with other resources that accept similar metadata (e.g., service templates). While it’s more recommended to keep your manifest in a stage, the inlined version may be useful for initial setup and testing.
Note For manifest reference visit Snowflake’s listing manifest reference documentation.
Note To use listings in gov deployments, please read the Government providers documentation first.
Resource used to manage listing objects. For more information, check listing documentation.
Create Listing Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Listing(name: string, args: ListingArgs, opts?: CustomResourceOptions);@overload
def Listing(resource_name: str,
args: ListingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Listing(resource_name: str,
opts: Optional[ResourceOptions] = None,
manifest: Optional[ListingManifestArgs] = None,
application_package: Optional[str] = None,
comment: Optional[str] = None,
name: Optional[str] = None,
publish: Optional[str] = None,
share: Optional[str] = None)func NewListing(ctx *Context, name string, args ListingArgs, opts ...ResourceOption) (*Listing, error)public Listing(string name, ListingArgs args, CustomResourceOptions? opts = null)
public Listing(String name, ListingArgs args)
public Listing(String name, ListingArgs args, CustomResourceOptions options)
type: snowflake:Listing
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 ListingArgs
- 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 ListingArgs
- 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 ListingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListingArgs
- 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 listingResource = new Snowflake.Listing("listingResource", new()
{
Manifest = new Snowflake.Inputs.ListingManifestArgs
{
FromStage = new Snowflake.Inputs.ListingManifestFromStageArgs
{
Stage = "string",
Location = "string",
VersionComment = "string",
VersionName = "string",
},
FromString = "string",
},
ApplicationPackage = "string",
Comment = "string",
Name = "string",
Publish = "string",
Share = "string",
});
example, err := snowflake.NewListing(ctx, "listingResource", &snowflake.ListingArgs{
Manifest: &snowflake.ListingManifestArgs{
FromStage: &snowflake.ListingManifestFromStageArgs{
Stage: pulumi.String("string"),
Location: pulumi.String("string"),
VersionComment: pulumi.String("string"),
VersionName: pulumi.String("string"),
},
FromString: pulumi.String("string"),
},
ApplicationPackage: pulumi.String("string"),
Comment: pulumi.String("string"),
Name: pulumi.String("string"),
Publish: pulumi.String("string"),
Share: pulumi.String("string"),
})
var listingResource = new Listing("listingResource", ListingArgs.builder()
.manifest(ListingManifestArgs.builder()
.fromStage(ListingManifestFromStageArgs.builder()
.stage("string")
.location("string")
.versionComment("string")
.versionName("string")
.build())
.fromString("string")
.build())
.applicationPackage("string")
.comment("string")
.name("string")
.publish("string")
.share("string")
.build());
listing_resource = snowflake.Listing("listingResource",
manifest={
"from_stage": {
"stage": "string",
"location": "string",
"version_comment": "string",
"version_name": "string",
},
"from_string": "string",
},
application_package="string",
comment="string",
name="string",
publish="string",
share="string")
const listingResource = new snowflake.Listing("listingResource", {
manifest: {
fromStage: {
stage: "string",
location: "string",
versionComment: "string",
versionName: "string",
},
fromString: "string",
},
applicationPackage: "string",
comment: "string",
name: "string",
publish: "string",
share: "string",
});
type: snowflake:Listing
properties:
applicationPackage: string
comment: string
manifest:
fromStage:
location: string
stage: string
versionComment: string
versionName: string
fromString: string
name: string
publish: string
share: string
Listing 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 Listing resource accepts the following input properties:
- Manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Application
Package string - Specifies the application package attached to the listing.
- Comment string
- Specifies a comment for the listing.
- Name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- Publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- Manifest
Listing
Manifest Args - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Application
Package string - Specifies the application package attached to the listing.
- Comment string
- Specifies a comment for the listing.
- Name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- Publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- application
Package String - Specifies the application package attached to the listing.
- comment String
- Specifies a comment for the listing.
- name String
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish String
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - String
- Specifies the identifier for the share to attach to the listing.
- manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- application
Package string - Specifies the application package attached to the listing.
- comment string
- Specifies a comment for the listing.
- name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- manifest
Listing
Manifest Args - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- application_
package str - Specifies the application package attached to the listing.
- comment str
- Specifies a comment for the listing.
- name str
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish str
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - str
- Specifies the identifier for the share to attach to the listing.
- manifest Property Map
- Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- application
Package String - Specifies the application package attached to the listing.
- comment String
- Specifies a comment for the listing.
- name String
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish String
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - String
- Specifies the identifier for the share to attach to the listing.
Outputs
All input properties are implicitly available as output properties. Additionally, the Listing resource produces the following output properties:
- 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<ListingShow Output> - Outputs the result of
SHOW LISTINGSfor the given listing.
- 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 []ListingShow Output - Outputs the result of
SHOW LISTINGSfor the given listing.
- 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<ListingShow Output> - Outputs the result of
SHOW LISTINGSfor the given listing.
- 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 ListingShow Output[] - Outputs the result of
SHOW LISTINGSfor the given listing.
- 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[ListingShow Output] - Outputs the result of
SHOW LISTINGSfor the given listing.
- 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 LISTINGSfor the given listing.
Look up Existing Listing Resource
Get an existing Listing 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?: ListingState, opts?: CustomResourceOptions): Listing@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_package: Optional[str] = None,
comment: Optional[str] = None,
fully_qualified_name: Optional[str] = None,
manifest: Optional[ListingManifestArgs] = None,
name: Optional[str] = None,
publish: Optional[str] = None,
share: Optional[str] = None,
show_outputs: Optional[Sequence[ListingShowOutputArgs]] = None) -> Listingfunc GetListing(ctx *Context, name string, id IDInput, state *ListingState, opts ...ResourceOption) (*Listing, error)public static Listing Get(string name, Input<string> id, ListingState? state, CustomResourceOptions? opts = null)public static Listing get(String name, Output<String> id, ListingState state, CustomResourceOptions options)resources: _: type: snowflake:Listing 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.
- Application
Package string - Specifies the application package attached to the listing.
- Comment string
- Specifies a comment for the listing.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- Publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- Show
Outputs List<ListingShow Output> - Outputs the result of
SHOW LISTINGSfor the given listing.
- Application
Package string - Specifies the application package attached to the listing.
- Comment string
- Specifies a comment for the listing.
- Fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- Manifest
Listing
Manifest Args - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- Name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- Publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- Show
Outputs []ListingShow Output Args - Outputs the result of
SHOW LISTINGSfor the given listing.
- application
Package String - Specifies the application package attached to the listing.
- comment String
- Specifies a comment for the listing.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- name String
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish String
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - String
- Specifies the identifier for the share to attach to the listing.
- show
Outputs List<ListingShow Output> - Outputs the result of
SHOW LISTINGSfor the given listing.
- application
Package string - Specifies the application package attached to the listing.
- comment string
- Specifies a comment for the listing.
- fully
Qualified stringName - Fully qualified name of the resource. For more information, see object name resolution.
- manifest
Listing
Manifest - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- name string
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish string
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - string
- Specifies the identifier for the share to attach to the listing.
- show
Outputs ListingShow Output[] - Outputs the result of
SHOW LISTINGSfor the given listing.
- application_
package str - Specifies the application package attached to the listing.
- comment str
- Specifies a comment for the listing.
- fully_
qualified_ strname - Fully qualified name of the resource. For more information, see object name resolution.
- manifest
Listing
Manifest Args - Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- name str
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish str
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - str
- Specifies the identifier for the share to attach to the listing.
- show_
outputs Sequence[ListingShow Output Args] - Outputs the result of
SHOW LISTINGSfor the given listing.
- application
Package String - Specifies the application package attached to the listing.
- comment String
- Specifies a comment for the listing.
- fully
Qualified StringName - Fully qualified name of the resource. For more information, see object name resolution.
- manifest Property Map
- Specifies the way manifest is provided for the listing. For more information on manifest syntax, see Listing manifest reference. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
- name String
- Specifies the listing identifier (name). It must be unique within the organization, regardless of which Snowflake region the account is located in. Must start with an alphabetic character and cannot contain spaces or special characters except for underscores.
- publish String
- (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (
default)) Determines if the listing should be published. - String
- Specifies the identifier for the share to attach to the listing.
- show
Outputs List<Property Map> - Outputs the result of
SHOW LISTINGSfor the given listing.
Supporting Types
ListingManifest, ListingManifestArgs
- From
Stage ListingManifest From Stage - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- From
String string - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
- From
Stage ListingManifest From Stage - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- From
String string - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
- from
Stage ListingManifest From Stage - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- from
String String - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
- from
Stage ListingManifest From Stage - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- from
String string - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
- from_
stage ListingManifest From Stage - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- from_
string str - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
- from
Stage Property Map - Manifest provided from a given stage. If the manifest file is in the root, only stage needs to be passed. For more information on manifest syntax, see Listing manifest reference. A proper YAML indentation (2 spaces) is required.
- from
String String - Manifest provided as a string. Wrapping
$$signs are added by the provider automatically; do not include them. For more information on manifest syntax, see Listing manifest reference. Also, the multiline string syntax is a must here. A proper YAML indentation (2 spaces) is required.
ListingManifestFromStage, ListingManifestFromStageArgs
- Stage string
- Identifier of the stage where the manifest file is located.
- Location string
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- Version
Comment string - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- Version
Name string - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
- Stage string
- Identifier of the stage where the manifest file is located.
- Location string
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- Version
Comment string - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- Version
Name string - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
- stage String
- Identifier of the stage where the manifest file is located.
- location String
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- version
Comment String - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- version
Name String - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
- stage string
- Identifier of the stage where the manifest file is located.
- location string
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- version
Comment string - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- version
Name string - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
- stage str
- Identifier of the stage where the manifest file is located.
- location str
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- version_
comment str - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- version_
name str - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
- stage String
- Identifier of the stage where the manifest file is located.
- location String
- Location of the manifest file in the stage. If not specified, the manifest file will be expected to be at the root of the stage.
- version
Comment String - Specifies a comment for the listing version. Whenever a new version is created, this comment will be associated with it. The comment on the version will be visible in the SHOW VERSIONS IN LISTING command output.
- version
Name String - Represents manifest version name. It's case-sensitive and used in manifest versioning. Version name should be specified or changed whenever any changes in the manifest should be applied to the listing. Later on the versions of the listing can be analyzed by calling the SHOW VERSIONS IN LISTING command. The resource does not track the changes on the specified stage.
ListingShowOutput, ListingShowOutputArgs
- Comment string
- Created
On string - Detailed
Target stringAccounts - Distribution string
- Global
Name string - Is
Application bool - Is
By boolRequest - Is
Limited boolTrial - Is
Monetized bool - Is
Mountless boolQueryable - Is
Targeted bool - Name string
- Organization
Profile stringName - Owner string
- Owner
Role stringType - Profile string
- Published
On string - Regions string
- Rejected
On string - Review
State string - State string
- Subtitle string
- Target
Accounts string - Title string
- Uniform
Listing stringLocator - Updated
On string
- Comment string
- Created
On string - Detailed
Target stringAccounts - Distribution string
- Global
Name string - Is
Application bool - Is
By boolRequest - Is
Limited boolTrial - Is
Monetized bool - Is
Mountless boolQueryable - Is
Targeted bool - Name string
- Organization
Profile stringName - Owner string
- Owner
Role stringType - Profile string
- Published
On string - Regions string
- Rejected
On string - Review
State string - State string
- Subtitle string
- Target
Accounts string - Title string
- Uniform
Listing stringLocator - Updated
On string
- comment String
- created
On String - detailed
Target StringAccounts - distribution String
- global
Name String - is
Application Boolean - is
By BooleanRequest - is
Limited BooleanTrial - is
Monetized Boolean - is
Mountless BooleanQueryable - is
Targeted Boolean - name String
- organization
Profile StringName - owner String
- owner
Role StringType - profile String
- published
On String - regions String
- rejected
On String - review
State String - state String
- subtitle String
- target
Accounts String - title String
- uniform
Listing StringLocator - updated
On String
- comment string
- created
On string - detailed
Target stringAccounts - distribution string
- global
Name string - is
Application boolean - is
By booleanRequest - is
Limited booleanTrial - is
Monetized boolean - is
Mountless booleanQueryable - is
Targeted boolean - name string
- organization
Profile stringName - owner string
- owner
Role stringType - profile string
- published
On string - regions string
- rejected
On string - review
State string - state string
- subtitle string
- target
Accounts string - title string
- uniform
Listing stringLocator - updated
On string
- comment str
- created_
on str - detailed_
target_ straccounts - distribution str
- global_
name str - is_
application bool - is_
by_ boolrequest - is_
limited_ booltrial - is_
monetized bool - is_
mountless_ boolqueryable - is_
targeted bool - name str
- organization_
profile_ strname - owner str
- owner_
role_ strtype - profile str
- published_
on str - regions str
- rejected_
on str - review_
state str - state str
- subtitle str
- target_
accounts str - title str
- uniform_
listing_ strlocator - updated_
on str
- comment String
- created
On String - detailed
Target StringAccounts - distribution String
- global
Name String - is
Application Boolean - is
By BooleanRequest - is
Limited BooleanTrial - is
Monetized Boolean - is
Mountless BooleanQueryable - is
Targeted Boolean - name String
- organization
Profile StringName - owner String
- owner
Role StringType - profile String
- published
On String - regions String
- rejected
On String - review
State String - state String
- subtitle String
- target
Accounts String - title String
- uniform
Listing StringLocator - updated
On String
Import
$ pulumi import snowflake:index/listing:Listing example '"<listing_name>"'
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
snowflakeTerraform Provider.
