1. Packages
  2. Snowflake Provider
  3. API Docs
  4. Service
Snowflake v2.1.0 published on Thursday, Jun 26, 2025 by Pulumi

snowflake.Service

Explore with Pulumi AI

snowflake logo
Snowflake v2.1.0 published on Thursday, Jun 26, 2025 by Pulumi

    Import

    $ pulumi import snowflake:index/service:Service example '"<database_name>"."<schema_name>"."<service_name>"'
    

    Create Service Resource

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

    Constructor syntax

    new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
    @overload
    def Service(resource_name: str,
                args: ServiceArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Service(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                compute_pool: Optional[str] = None,
                schema: Optional[str] = None,
                database: Optional[str] = None,
                from_specification: Optional[ServiceFromSpecificationArgs] = None,
                comment: Optional[str] = None,
                external_access_integrations: Optional[Sequence[str]] = None,
                auto_resume: Optional[str] = None,
                from_specification_template: Optional[ServiceFromSpecificationTemplateArgs] = None,
                max_instances: Optional[int] = None,
                min_instances: Optional[int] = None,
                min_ready_instances: Optional[int] = None,
                name: Optional[str] = None,
                query_warehouse: Optional[str] = None,
                auto_suspend_secs: Optional[int] = None)
    func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
    public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
    public Service(String name, ServiceArgs args)
    public Service(String name, ServiceArgs args, CustomResourceOptions options)
    
    type: snowflake:Service
    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 ServiceArgs
    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 ServiceArgs
    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 ServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceArgs
    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 serviceResource = new Snowflake.Service("serviceResource", new()
    {
        ComputePool = "string",
        Schema = "string",
        Database = "string",
        FromSpecification = new Snowflake.Inputs.ServiceFromSpecificationArgs
        {
            File = "string",
            Path = "string",
            Stage = "string",
            Text = "string",
        },
        Comment = "string",
        ExternalAccessIntegrations = new[]
        {
            "string",
        },
        AutoResume = "string",
        FromSpecificationTemplate = new Snowflake.Inputs.ServiceFromSpecificationTemplateArgs
        {
            Usings = new[]
            {
                new Snowflake.Inputs.ServiceFromSpecificationTemplateUsingArgs
                {
                    Key = "string",
                    Value = "string",
                },
            },
            File = "string",
            Path = "string",
            Stage = "string",
            Text = "string",
        },
        MaxInstances = 0,
        MinInstances = 0,
        MinReadyInstances = 0,
        Name = "string",
        QueryWarehouse = "string",
        AutoSuspendSecs = 0,
    });
    
    example, err := snowflake.NewService(ctx, "serviceResource", &snowflake.ServiceArgs{
    	ComputePool: pulumi.String("string"),
    	Schema:      pulumi.String("string"),
    	Database:    pulumi.String("string"),
    	FromSpecification: &snowflake.ServiceFromSpecificationArgs{
    		File:  pulumi.String("string"),
    		Path:  pulumi.String("string"),
    		Stage: pulumi.String("string"),
    		Text:  pulumi.String("string"),
    	},
    	Comment: pulumi.String("string"),
    	ExternalAccessIntegrations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AutoResume: pulumi.String("string"),
    	FromSpecificationTemplate: &snowflake.ServiceFromSpecificationTemplateArgs{
    		Usings: snowflake.ServiceFromSpecificationTemplateUsingArray{
    			&snowflake.ServiceFromSpecificationTemplateUsingArgs{
    				Key:   pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		File:  pulumi.String("string"),
    		Path:  pulumi.String("string"),
    		Stage: pulumi.String("string"),
    		Text:  pulumi.String("string"),
    	},
    	MaxInstances:      pulumi.Int(0),
    	MinInstances:      pulumi.Int(0),
    	MinReadyInstances: pulumi.Int(0),
    	Name:              pulumi.String("string"),
    	QueryWarehouse:    pulumi.String("string"),
    	AutoSuspendSecs:   pulumi.Int(0),
    })
    
    var serviceResource = new Service("serviceResource", ServiceArgs.builder()
        .computePool("string")
        .schema("string")
        .database("string")
        .fromSpecification(ServiceFromSpecificationArgs.builder()
            .file("string")
            .path("string")
            .stage("string")
            .text("string")
            .build())
        .comment("string")
        .externalAccessIntegrations("string")
        .autoResume("string")
        .fromSpecificationTemplate(ServiceFromSpecificationTemplateArgs.builder()
            .usings(ServiceFromSpecificationTemplateUsingArgs.builder()
                .key("string")
                .value("string")
                .build())
            .file("string")
            .path("string")
            .stage("string")
            .text("string")
            .build())
        .maxInstances(0)
        .minInstances(0)
        .minReadyInstances(0)
        .name("string")
        .queryWarehouse("string")
        .autoSuspendSecs(0)
        .build());
    
    service_resource = snowflake.Service("serviceResource",
        compute_pool="string",
        schema="string",
        database="string",
        from_specification={
            "file": "string",
            "path": "string",
            "stage": "string",
            "text": "string",
        },
        comment="string",
        external_access_integrations=["string"],
        auto_resume="string",
        from_specification_template={
            "usings": [{
                "key": "string",
                "value": "string",
            }],
            "file": "string",
            "path": "string",
            "stage": "string",
            "text": "string",
        },
        max_instances=0,
        min_instances=0,
        min_ready_instances=0,
        name="string",
        query_warehouse="string",
        auto_suspend_secs=0)
    
    const serviceResource = new snowflake.Service("serviceResource", {
        computePool: "string",
        schema: "string",
        database: "string",
        fromSpecification: {
            file: "string",
            path: "string",
            stage: "string",
            text: "string",
        },
        comment: "string",
        externalAccessIntegrations: ["string"],
        autoResume: "string",
        fromSpecificationTemplate: {
            usings: [{
                key: "string",
                value: "string",
            }],
            file: "string",
            path: "string",
            stage: "string",
            text: "string",
        },
        maxInstances: 0,
        minInstances: 0,
        minReadyInstances: 0,
        name: "string",
        queryWarehouse: "string",
        autoSuspendSecs: 0,
    });
    
    type: snowflake:Service
    properties:
        autoResume: string
        autoSuspendSecs: 0
        comment: string
        computePool: string
        database: string
        externalAccessIntegrations:
            - string
        fromSpecification:
            file: string
            path: string
            stage: string
            text: string
        fromSpecificationTemplate:
            file: string
            path: string
            stage: string
            text: string
            usings:
                - key: string
                  value: string
        maxInstances: 0
        minInstances: 0
        minReadyInstances: 0
        name: string
        queryWarehouse: string
        schema: string
    

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

    ComputePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    AutoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    AutoSuspendSecs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    Comment string
    Specifies a comment for the service.
    ExternalAccessIntegrations List<string>
    Specifies the names of the external access integrations that allow your service to access external sites.
    FromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    MaxInstances int
    Specifies the maximum number of service instances to run.
    MinInstances int
    Specifies the minimum number of service instances to run.
    MinReadyInstances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    Name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    QueryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ComputePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    AutoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    AutoSuspendSecs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    Comment string
    Specifies a comment for the service.
    ExternalAccessIntegrations []string
    Specifies the names of the external access integrations that allow your service to access external sites.
    FromSpecification ServiceFromSpecificationArgs
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FromSpecificationTemplate ServiceFromSpecificationTemplateArgs
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    MaxInstances int
    Specifies the maximum number of service instances to run.
    MinInstances int
    Specifies the minimum number of service instances to run.
    MinReadyInstances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    Name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    QueryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    computePool String
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoResume String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs Integer
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment String
    Specifies a comment for the service.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    maxInstances Integer
    Specifies the maximum number of service instances to run.
    minInstances Integer
    Specifies the minimum number of service instances to run.
    minReadyInstances Integer
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name String
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse String
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    computePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment string
    Specifies a comment for the service.
    externalAccessIntegrations string[]
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    maxInstances number
    Specifies the maximum number of service instances to run.
    minInstances number
    Specifies the minimum number of service instances to run.
    minReadyInstances number
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    compute_pool str
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database str
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    auto_resume str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    auto_suspend_secs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment str
    Specifies a comment for the service.
    external_access_integrations Sequence[str]
    Specifies the names of the external access integrations that allow your service to access external sites.
    from_specification ServiceFromSpecificationArgs
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    from_specification_template ServiceFromSpecificationTemplateArgs
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    max_instances int
    Specifies the maximum number of service instances to run.
    min_instances int
    Specifies the minimum number of service instances to run.
    min_ready_instances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name str
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    query_warehouse str
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    computePool String
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    autoResume String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs Number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment String
    Specifies a comment for the service.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification Property Map
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate Property Map
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    maxInstances Number
    Specifies the maximum number of service instances to run.
    minInstances Number
    Specifies the minimum number of service instances to run.
    minReadyInstances Number
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name String
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse String
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:

    DescribeOutputs List<ServiceDescribeOutput>
    Outputs the result of DESCRIBE SERVICE for the given service.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServiceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    ShowOutputs List<ServiceShowOutput>
    Outputs the result of SHOW SERVICES for the given service.
    DescribeOutputs []ServiceDescribeOutput
    Outputs the result of DESCRIBE SERVICE for the given service.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServiceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    ShowOutputs []ServiceShowOutput
    Outputs the result of SHOW SERVICES for the given service.
    describeOutputs List<ServiceDescribeOutput>
    Outputs the result of DESCRIBE SERVICE for the given service.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    serviceType String
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs List<ServiceShowOutput>
    Outputs the result of SHOW SERVICES for the given service.
    describeOutputs ServiceDescribeOutput[]
    Outputs the result of DESCRIBE SERVICE for the given service.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    id string
    The provider-assigned unique ID for this managed resource.
    serviceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs ServiceShowOutput[]
    Outputs the result of SHOW SERVICES for the given service.
    describe_outputs Sequence[ServiceDescribeOutput]
    Outputs the result of DESCRIBE SERVICE for the given service.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    id str
    The provider-assigned unique ID for this managed resource.
    service_type str
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    show_outputs Sequence[ServiceShowOutput]
    Outputs the result of SHOW SERVICES for the given service.
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE SERVICE for the given service.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    id String
    The provider-assigned unique ID for this managed resource.
    serviceType String
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs List<Property Map>
    Outputs the result of SHOW SERVICES for the given service.

    Look up Existing Service Resource

    Get an existing Service 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?: ServiceState, opts?: CustomResourceOptions): Service
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_resume: Optional[str] = None,
            auto_suspend_secs: Optional[int] = None,
            comment: Optional[str] = None,
            compute_pool: Optional[str] = None,
            database: Optional[str] = None,
            describe_outputs: Optional[Sequence[ServiceDescribeOutputArgs]] = None,
            external_access_integrations: Optional[Sequence[str]] = None,
            from_specification: Optional[ServiceFromSpecificationArgs] = None,
            from_specification_template: Optional[ServiceFromSpecificationTemplateArgs] = None,
            fully_qualified_name: Optional[str] = None,
            max_instances: Optional[int] = None,
            min_instances: Optional[int] = None,
            min_ready_instances: Optional[int] = None,
            name: Optional[str] = None,
            query_warehouse: Optional[str] = None,
            schema: Optional[str] = None,
            service_type: Optional[str] = None,
            show_outputs: Optional[Sequence[ServiceShowOutputArgs]] = None) -> Service
    func GetService(ctx *Context, name string, id IDInput, state *ServiceState, opts ...ResourceOption) (*Service, error)
    public static Service Get(string name, Input<string> id, ServiceState? state, CustomResourceOptions? opts = null)
    public static Service get(String name, Output<String> id, ServiceState state, CustomResourceOptions options)
    resources:  _:    type: snowflake:Service    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.
    The following state arguments are supported:
    AutoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    AutoSuspendSecs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    Comment string
    Specifies a comment for the service.
    ComputePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs List<ServiceDescribeOutput>
    Outputs the result of DESCRIBE SERVICE for the given service.
    ExternalAccessIntegrations List<string>
    Specifies the names of the external access integrations that allow your service to access external sites.
    FromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    MaxInstances int
    Specifies the maximum number of service instances to run.
    MinInstances int
    Specifies the minimum number of service instances to run.
    MinReadyInstances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    Name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    QueryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ServiceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    ShowOutputs List<ServiceShowOutput>
    Outputs the result of SHOW SERVICES for the given service.
    AutoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    AutoSuspendSecs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    Comment string
    Specifies a comment for the service.
    ComputePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    DescribeOutputs []ServiceDescribeOutputArgs
    Outputs the result of DESCRIBE SERVICE for the given service.
    ExternalAccessIntegrations []string
    Specifies the names of the external access integrations that allow your service to access external sites.
    FromSpecification ServiceFromSpecificationArgs
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FromSpecificationTemplate ServiceFromSpecificationTemplateArgs
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    FullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    MaxInstances int
    Specifies the maximum number of service instances to run.
    MinInstances int
    Specifies the minimum number of service instances to run.
    MinReadyInstances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    Name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    QueryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    Schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    ServiceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    ShowOutputs []ServiceShowOutputArgs
    Outputs the result of SHOW SERVICES for the given service.
    autoResume String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs Integer
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment String
    Specifies a comment for the service.
    computePool String
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<ServiceDescribeOutput>
    Outputs the result of DESCRIBE SERVICE for the given service.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    maxInstances Integer
    Specifies the maximum number of service instances to run.
    minInstances Integer
    Specifies the minimum number of service instances to run.
    minReadyInstances Integer
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name String
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse String
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    serviceType String
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs List<ServiceShowOutput>
    Outputs the result of SHOW SERVICES for the given service.
    autoResume string
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment string
    Specifies a comment for the service.
    computePool string
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database string
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs ServiceDescribeOutput[]
    Outputs the result of DESCRIBE SERVICE for the given service.
    externalAccessIntegrations string[]
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification ServiceFromSpecification
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate ServiceFromSpecificationTemplate
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fullyQualifiedName string
    Fully qualified name of the resource. For more information, see object name resolution.
    maxInstances number
    Specifies the maximum number of service instances to run.
    minInstances number
    Specifies the minimum number of service instances to run.
    minReadyInstances number
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name string
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse string
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema string
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    serviceType string
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs ServiceShowOutput[]
    Outputs the result of SHOW SERVICES for the given service.
    auto_resume str
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    auto_suspend_secs int
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment str
    Specifies a comment for the service.
    compute_pool str
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database str
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describe_outputs Sequence[ServiceDescribeOutputArgs]
    Outputs the result of DESCRIBE SERVICE for the given service.
    external_access_integrations Sequence[str]
    Specifies the names of the external access integrations that allow your service to access external sites.
    from_specification ServiceFromSpecificationArgs
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    from_specification_template ServiceFromSpecificationTemplateArgs
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fully_qualified_name str
    Fully qualified name of the resource. For more information, see object name resolution.
    max_instances int
    Specifies the maximum number of service instances to run.
    min_instances int
    Specifies the minimum number of service instances to run.
    min_ready_instances int
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name str
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    query_warehouse str
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema str
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    service_type str
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    show_outputs Sequence[ServiceShowOutputArgs]
    Outputs the result of SHOW SERVICES for the given service.
    autoResume String
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (default)) Specifies whether to automatically resume a service. Available options are: "true" or "false". When the value is not set in the configuration the provider will put "default" there which means to use the Snowflake default for this value.
    autoSuspendSecs Number
    (Default: fallback to Snowflake default - uses special value that cannot be set in the configuration manually (-1)) Specifies the number of seconds of inactivity (service is idle) after which Snowflake automatically suspends the service.
    comment String
    Specifies a comment for the service.
    computePool String
    Specifies the name of the compute pool in your account on which to run the service. Identifiers with special or lower-case characters are not supported. This limitation in the provider follows the limitation in Snowflake (see docs). Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    database String
    The database in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    describeOutputs List<Property Map>
    Outputs the result of DESCRIBE SERVICE for the given service.
    externalAccessIntegrations List<String>
    Specifies the names of the external access integrations that allow your service to access external sites.
    fromSpecification Property Map
    Specifies the service specification to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fromSpecificationTemplate Property Map
    Specifies the service specification template to use for the service. Note that external changes on this field and nested fields are not detected. Use correctly formatted YAML files. Watch out for the space/tabs indentation. See service specification for more information.
    fullyQualifiedName String
    Fully qualified name of the resource. For more information, see object name resolution.
    maxInstances Number
    Specifies the maximum number of service instances to run.
    minInstances Number
    Specifies the minimum number of service instances to run.
    minReadyInstances Number
    Indicates the minimum service instances that must be ready for Snowflake to consider the service is ready to process requests.
    name String
    Specifies the identifier for the service; must be unique for the schema in which the service is created. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    queryWarehouse String
    Warehouse to use if a service container connects to Snowflake to execute a query but does not explicitly specify a warehouse to use. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    schema String
    The schema in which to create the service. Due to technical limitations (read more here), avoid using the following characters: |, ., ".
    serviceType String
    Specifies a type for the service. This field is used for checking external changes and recreating the resources if needed.
    showOutputs List<Property Map>
    Outputs the result of SHOW SERVICES for the given service.

    Supporting Types

    ServiceDescribeOutput, ServiceDescribeOutputArgs

    autoResume Boolean
    autoSuspendSecs Integer
    comment String
    computePool String
    createdOn String
    currentInstances Integer
    databaseName String
    dnsName String
    externalAccessIntegrations List<String>
    isAsyncJob Boolean
    isJob Boolean
    isUpgrading Boolean
    managingObjectDomain String
    managingObjectName String
    maxInstances Integer
    minInstances Integer
    minReadyInstances Integer
    name String
    owner String
    ownerRoleType String
    queryWarehouse String
    resumedOn String
    schemaName String
    spec String
    specDigest String
    status String
    suspendedOn String
    targetInstances Integer
    updatedOn String

    ServiceFromSpecification, ServiceFromSpecificationArgs

    File string
    The file name of the service specification. Example: spec.yaml.
    Path string
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    Stage string
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    Text string
    The embedded text of the service specification.
    File string
    The file name of the service specification. Example: spec.yaml.
    Path string
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    Stage string
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    Text string
    The embedded text of the service specification.
    file String
    The file name of the service specification. Example: spec.yaml.
    path String
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage String
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text String
    The embedded text of the service specification.
    file string
    The file name of the service specification. Example: spec.yaml.
    path string
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage string
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text string
    The embedded text of the service specification.
    file str
    The file name of the service specification. Example: spec.yaml.
    path str
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage str
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text str
    The embedded text of the service specification.
    file String
    The file name of the service specification. Example: spec.yaml.
    path String
    The path to the service specification file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage String
    The fully qualified name of the stage containing the service specification file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text String
    The embedded text of the service specification.

    ServiceFromSpecificationTemplate, ServiceFromSpecificationTemplateArgs

    Usings List<ServiceFromSpecificationTemplateUsing>
    List of the specified template variables and the values of those variables.
    File string
    The file name of the service specification template. Example: spec.yaml.
    Path string
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    Stage string
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    Text string
    The embedded text of the service specification template.
    Usings []ServiceFromSpecificationTemplateUsing
    List of the specified template variables and the values of those variables.
    File string
    The file name of the service specification template. Example: spec.yaml.
    Path string
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    Stage string
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    Text string
    The embedded text of the service specification template.
    usings List<ServiceFromSpecificationTemplateUsing>
    List of the specified template variables and the values of those variables.
    file String
    The file name of the service specification template. Example: spec.yaml.
    path String
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage String
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text String
    The embedded text of the service specification template.
    usings ServiceFromSpecificationTemplateUsing[]
    List of the specified template variables and the values of those variables.
    file string
    The file name of the service specification template. Example: spec.yaml.
    path string
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage string
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text string
    The embedded text of the service specification template.
    usings Sequence[ServiceFromSpecificationTemplateUsing]
    List of the specified template variables and the values of those variables.
    file str
    The file name of the service specification template. Example: spec.yaml.
    path str
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage str
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text str
    The embedded text of the service specification template.
    usings List<Property Map>
    List of the specified template variables and the values of those variables.
    file String
    The file name of the service specification template. Example: spec.yaml.
    path String
    The path to the service specification template file on the given stage. When the path is specified, the / character is automatically added as a path prefix. Example: path/to/spec.
    stage String
    The fully qualified name of the stage containing the service specification template file. At symbol (@) is added automatically. Example: "\"<db_name>\".\"<schema_name>\".\"<stage_name>\"". For more information about this resource, see docs.
    text String
    The embedded text of the service specification template.

    ServiceFromSpecificationTemplateUsing, ServiceFromSpecificationTemplateUsingArgs

    Key string
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    Value string
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
    Key string
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    Value string
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
    key String
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    value String
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
    key string
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    value string
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
    key str
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    value str
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
    key String
    The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
    value String
    The value to assign to the variable in the template. The provider wraps it in $$ by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.

    ServiceShowOutput, ServiceShowOutputArgs

    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 v2.1.0 published on Thursday, Jun 26, 2025 by Pulumi