1. Packages
  2. Snowflake Provider
  3. API Docs
  4. getStorageIntegrations
Snowflake v1.1.4 published on Wednesday, Mar 26, 2025 by Pulumi

snowflake.getStorageIntegrations

Explore with Pulumi AI

snowflake logo
Snowflake v1.1.4 published on Wednesday, Mar 26, 2025 by Pulumi

    !> Caution: Preview Feature This feature is considered a preview feature in the provider, regardless of the state of the resource in Snowflake. We do not guarantee its stability. It will be reworked and marked as a stable feature in future releases. Breaking changes are expected, even without bumping the major version. To use this feature, add the relevant feature name to preview_features_enabled field in the provider configuration. Please always refer to the Getting Help section in our Github repo to best determine how to get help for your questions.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as snowflake from "@pulumi/snowflake";
    
    const current = snowflake.getStorageIntegrations({});
    
    import pulumi
    import pulumi_snowflake as snowflake
    
    current = snowflake.get_storage_integrations()
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-snowflake/sdk/go/snowflake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := snowflake.GetStorageIntegrations(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Snowflake = Pulumi.Snowflake;
    
    return await Deployment.RunAsync(() => 
    {
        var current = Snowflake.GetStorageIntegrations.Invoke();
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.snowflake.SnowflakeFunctions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var current = SnowflakeFunctions.getStorageIntegrations();
    
        }
    }
    
    variables:
      current:
        fn::invoke:
          function: snowflake:getStorageIntegrations
          arguments: {}
    

    Using getStorageIntegrations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getStorageIntegrations(opts?: InvokeOptions): Promise<GetStorageIntegrationsResult>
    function getStorageIntegrationsOutput(opts?: InvokeOptions): Output<GetStorageIntegrationsResult>
    def get_storage_integrations(opts: Optional[InvokeOptions] = None) -> GetStorageIntegrationsResult
    def get_storage_integrations_output(opts: Optional[InvokeOptions] = None) -> Output[GetStorageIntegrationsResult]
    func GetStorageIntegrations(ctx *Context, opts ...InvokeOption) (*GetStorageIntegrationsResult, error)
    func GetStorageIntegrationsOutput(ctx *Context, opts ...InvokeOption) GetStorageIntegrationsResultOutput

    > Note: This function is named GetStorageIntegrations in the Go SDK.

    public static class GetStorageIntegrations 
    {
        public static Task<GetStorageIntegrationsResult> InvokeAsync(InvokeOptions? opts = null)
        public static Output<GetStorageIntegrationsResult> Invoke(InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetStorageIntegrationsResult> getStorageIntegrations(InvokeOptions options)
    public static Output<GetStorageIntegrationsResult> getStorageIntegrations(InvokeOptions options)
    
    fn::invoke:
      function: snowflake:index/getStorageIntegrations:getStorageIntegrations
      arguments:
        # arguments dictionary

    getStorageIntegrations Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    StorageIntegrations List<GetStorageIntegrationsStorageIntegration>
    The storage integrations in the database
    Id string
    The provider-assigned unique ID for this managed resource.
    StorageIntegrations []GetStorageIntegrationsStorageIntegration
    The storage integrations in the database
    id String
    The provider-assigned unique ID for this managed resource.
    storageIntegrations List<GetStorageIntegrationsStorageIntegration>
    The storage integrations in the database
    id string
    The provider-assigned unique ID for this managed resource.
    storageIntegrations GetStorageIntegrationsStorageIntegration[]
    The storage integrations in the database
    id str
    The provider-assigned unique ID for this managed resource.
    storage_integrations Sequence[GetStorageIntegrationsStorageIntegration]
    The storage integrations in the database
    id String
    The provider-assigned unique ID for this managed resource.
    storageIntegrations List<Property Map>
    The storage integrations in the database

    Supporting Types

    GetStorageIntegrationsStorageIntegration

    Comment string
    Enabled bool
    Name string
    Type string
    Comment string
    Enabled bool
    Name string
    Type string
    comment String
    enabled Boolean
    name String
    type String
    comment string
    enabled boolean
    name string
    type string
    comment str
    enabled bool
    name str
    type str
    comment String
    enabled Boolean
    name String
    type String

    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 v1.1.4 published on Wednesday, Mar 26, 2025 by Pulumi