snowflake.getFileFormats
Explore with Pulumi AI
!> 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.getFileFormats({
database: "MYDB",
schema: "MYSCHEMA",
});
import pulumi
import pulumi_snowflake as snowflake
current = snowflake.get_file_formats(database="MYDB",
schema="MYSCHEMA")
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.GetFileFormats(ctx, &snowflake.GetFileFormatsArgs{
Database: "MYDB",
Schema: "MYSCHEMA",
}, 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.GetFileFormats.Invoke(new()
{
Database = "MYDB",
Schema = "MYSCHEMA",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.snowflake.SnowflakeFunctions;
import com.pulumi.snowflake.inputs.GetFileFormatsArgs;
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.getFileFormats(GetFileFormatsArgs.builder()
.database("MYDB")
.schema("MYSCHEMA")
.build());
}
}
variables:
current:
fn::invoke:
function: snowflake:getFileFormats
arguments:
database: MYDB
schema: MYSCHEMA
Using getFileFormats
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 getFileFormats(args: GetFileFormatsArgs, opts?: InvokeOptions): Promise<GetFileFormatsResult>
function getFileFormatsOutput(args: GetFileFormatsOutputArgs, opts?: InvokeOptions): Output<GetFileFormatsResult>
def get_file_formats(database: Optional[str] = None,
schema: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFileFormatsResult
def get_file_formats_output(database: Optional[pulumi.Input[str]] = None,
schema: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFileFormatsResult]
func GetFileFormats(ctx *Context, args *GetFileFormatsArgs, opts ...InvokeOption) (*GetFileFormatsResult, error)
func GetFileFormatsOutput(ctx *Context, args *GetFileFormatsOutputArgs, opts ...InvokeOption) GetFileFormatsResultOutput
> Note: This function is named GetFileFormats
in the Go SDK.
public static class GetFileFormats
{
public static Task<GetFileFormatsResult> InvokeAsync(GetFileFormatsArgs args, InvokeOptions? opts = null)
public static Output<GetFileFormatsResult> Invoke(GetFileFormatsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFileFormatsResult> getFileFormats(GetFileFormatsArgs args, InvokeOptions options)
public static Output<GetFileFormatsResult> getFileFormats(GetFileFormatsArgs args, InvokeOptions options)
fn::invoke:
function: snowflake:index/getFileFormats:getFileFormats
arguments:
# arguments dictionary
The following arguments are supported:
getFileFormats Result
The following output properties are available:
- Database string
- The database from which to return the schemas from.
- File
Formats List<GetFile Formats File Format> - The file formats in the schema
- Id string
- The provider-assigned unique ID for this managed resource.
- Schema string
- The schema from which to return the file formats from.
- Database string
- The database from which to return the schemas from.
- File
Formats []GetFile Formats File Format - The file formats in the schema
- Id string
- The provider-assigned unique ID for this managed resource.
- Schema string
- The schema from which to return the file formats from.
- database String
- The database from which to return the schemas from.
- file
Formats List<GetFile Formats File Format> - The file formats in the schema
- id String
- The provider-assigned unique ID for this managed resource.
- schema String
- The schema from which to return the file formats from.
- database string
- The database from which to return the schemas from.
- file
Formats GetFile Formats File Format[] - The file formats in the schema
- id string
- The provider-assigned unique ID for this managed resource.
- schema string
- The schema from which to return the file formats from.
- database str
- The database from which to return the schemas from.
- file_
formats Sequence[GetFile Formats File Format] - The file formats in the schema
- id str
- The provider-assigned unique ID for this managed resource.
- schema str
- The schema from which to return the file formats from.
- database String
- The database from which to return the schemas from.
- file
Formats List<Property Map> - The file formats in the schema
- id String
- The provider-assigned unique ID for this managed resource.
- schema String
- The schema from which to return the file formats from.
Supporting Types
GetFileFormatsFileFormat
- Comment string
- Database string
- Format
Type string - Name string
- Schema string
- Comment string
- Database string
- Format
Type string - Name string
- Schema string
- comment String
- database String
- format
Type String - name String
- schema String
- comment string
- database string
- format
Type string - name string
- schema string
- comment str
- database str
- format_
type str - name str
- schema str
- comment String
- database String
- format
Type String - name String
- schema String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.