ALTER LISTING¶
Modifies the properties of a listing.
Syntax¶
ALTER LISTING [ IF EXISTS ] <name>
[ { PUBLISH | UNPUBLISH } ]
[ COMMENT = '<string>' ]
ALTER LISTING [ IF EXISTS ] <name> [ { PUBLISH | UNPUBLISH } ]
[ COMMENT = '<string>'' ]
ALTER LISTING [ IF EXISTS ] <name> AS '<yaml_manifest_string>'
[ PUBLISH={ TRUE | FALSE } ]
[ REVIEW= { TRUE | FALSE } ]
[ COMMENT = '<string>' ]
ALTER LISTING [ IF EXISTS ] <name> RENAME TO <new_name>;
ALTER LISTING [ IF EXISTS ] <name> SET COMMENT = '<string>'
Parameters¶
name
Specifies the identifier (name) for the listing being altered.
yaml_manifest_string
Specifies the YAML format manifest for the listing. For information about and examples of listing manifest files, see Listing manifest reference.
Manifests are normally provided as dollar quoted strings. For more information, see Dollar-Quoted String Constants.
RENAME TO new_name
Specifies the new identifier for the listing which must be unique. The new identifier cannot be used if the identifier is already in place for a different listing.
{ PUBLISH | UNPUBLISH }
Specifies the action to perform on the listing:
PUBLISH
Makes a previously undiscoverable listing discoverable.Specifying PUBLISH on a previously published listing has no effect.
UNPUBLISH
Makes a previously discoverable listing undiscoverable for new consumers. Existing consumers can continue to access the data associated with an unpublished listing.Specifying UNPUBLISH on a previously unpublished listing has no effect.
See also Unpublish a listing.
SET ...
Specifies one (or more) properties to set for the listing (separated by blank spaces, commas, or new lines).
COMMENT = 'string_literal'
Adds a comment or overwrites the existing comment for an existing listing.
PUBLISH = { TRUE | FALSE }
Specifies how the listing should be published.
If TRUE, listing is published immediately on listing to Marketplace Ops for review.
Default: TRUE.
REVIEW = { TRUE | FALSE }
Specifies whether the listing should or should not submitted to Marketplace Ops review.
Default: TRUE.
Different combinations of values for the PUBLISH and REVIEW properties result in the following behaviors:
PUBLISH |
REVIEW |
Behavior |
---|---|---|
TRUE |
TRUE |
Request review then immediately publish after approval. |
TRUE |
FALSE |
Results in an error. You cannot publish a listing on the Snowflake Marketplace without review. |
FALSE |
TRUE |
Request a review without publishing automatically after review. |
FALSE |
FALSE |
Save your listing as a draft without requesting review or publishing. |
Usage notes¶
Listings can be renamed only in DRAFT state.
When setting the live version of the YAML format manifest for a listing, you must use
COMMIT
to apply the changes, orABORT
to discard the changes.
Access control requirements¶
A role used to execute this SQL command must have either of the following privileges at a minimum:
Privilege |
Object |
Notes |
---|---|---|
OWNERSHIP or MODIFY |
On the listing being modified. |
If you’re using the ALTER command to modify the manifest content for auto-fulfillment, you must use a role with the delegated privileges necessary to configure cross-cloud auto-fulfillment. See Allow accounts to set up Cross-Cloud Auto-Fulfillment.
Operating on any object in a schema also requires the USAGE privilege on the parent database and schema.
For instructions on creating a custom role with a specified set of privileges, see creating custom roles.
For general information about roles and privilege grants for performing SQL actions on securable objects, see Overview of Access Control.
Examples¶
Alters the listing MYLISTING to use an updated manifest file:
ALTER LISTING MYLISTING AS $$ title: "MyListing" subtitle: "Subtitle for MyListing" description: "Description or MyListing" listing_terms: type: "STANDARD" targets: accounts: ["Org1.Account1"] usage_examples: - title: "this is a test sql" description: "Simple example" query: "select *" $$
Alters the listing MYLISTING by publishing it:
ALTER LISTING MYLISTING PUBLISH;
Alters the listing MYLISTING by unpublishing it:
ALTER LISTING MYLISTING UNPUBLISH;
Alters the listing MYLISTING by setting a new comment:
ALTER LISTING MYLISTING SET COMMENT = 'My listing is ready!';