Snowflake v0.55.0 published on Friday, Jun 7, 2024 by Pulumi
snowflake.getRowAccessPolicies
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
const current = snowflake.getRowAccessPolicies({
database: "MYDB",
schema: "MYSCHEMA",
});
import pulumi
import pulumi_snowflake as snowflake
current = snowflake.get_row_access_policies(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.GetRowAccessPolicies(ctx, &snowflake.GetRowAccessPoliciesArgs{
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.GetRowAccessPolicies.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.GetRowAccessPoliciesArgs;
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.getRowAccessPolicies(GetRowAccessPoliciesArgs.builder()
.database("MYDB")
.schema("MYSCHEMA")
.build());
}
}
variables:
current:
fn::invoke:
Function: snowflake:getRowAccessPolicies
Arguments:
database: MYDB
schema: MYSCHEMA
Using getRowAccessPolicies
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 getRowAccessPolicies(args: GetRowAccessPoliciesArgs, opts?: InvokeOptions): Promise<GetRowAccessPoliciesResult>
function getRowAccessPoliciesOutput(args: GetRowAccessPoliciesOutputArgs, opts?: InvokeOptions): Output<GetRowAccessPoliciesResult>
def get_row_access_policies(database: Optional[str] = None,
schema: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRowAccessPoliciesResult
def get_row_access_policies_output(database: Optional[pulumi.Input[str]] = None,
schema: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRowAccessPoliciesResult]
func GetRowAccessPolicies(ctx *Context, args *GetRowAccessPoliciesArgs, opts ...InvokeOption) (*GetRowAccessPoliciesResult, error)
func GetRowAccessPoliciesOutput(ctx *Context, args *GetRowAccessPoliciesOutputArgs, opts ...InvokeOption) GetRowAccessPoliciesResultOutput
> Note: This function is named GetRowAccessPolicies
in the Go SDK.
public static class GetRowAccessPolicies
{
public static Task<GetRowAccessPoliciesResult> InvokeAsync(GetRowAccessPoliciesArgs args, InvokeOptions? opts = null)
public static Output<GetRowAccessPoliciesResult> Invoke(GetRowAccessPoliciesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRowAccessPoliciesResult> getRowAccessPolicies(GetRowAccessPoliciesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: snowflake:index/getRowAccessPolicies:getRowAccessPolicies
arguments:
# arguments dictionary
The following arguments are supported:
getRowAccessPolicies Result
The following output properties are available:
- Database string
- The database from which to return the schemas from.
- Id string
- The provider-assigned unique ID for this managed resource.
- Row
Access List<GetPolicies Row Access Policies Row Access Policy> - The row access policy in the schema
- Schema string
- The schema from which to return the row access policy from.
- Database string
- The database from which to return the schemas from.
- Id string
- The provider-assigned unique ID for this managed resource.
- Row
Access []GetPolicies Row Access Policies Row Access Policy - The row access policy in the schema
- Schema string
- The schema from which to return the row access policy from.
- database String
- The database from which to return the schemas from.
- id String
- The provider-assigned unique ID for this managed resource.
- row
Access List<GetPolicies Row Access Policies Row Access Policy> - The row access policy in the schema
- schema String
- The schema from which to return the row access policy from.
- database string
- The database from which to return the schemas from.
- id string
- The provider-assigned unique ID for this managed resource.
- row
Access GetPolicies Row Access Policies Row Access Policy[] - The row access policy in the schema
- schema string
- The schema from which to return the row access policy from.
- database str
- The database from which to return the schemas from.
- id str
- The provider-assigned unique ID for this managed resource.
- row_
access_ Sequence[Getpolicies Row Access Policies Row Access Policy] - The row access policy in the schema
- schema str
- The schema from which to return the row access policy from.
- database String
- The database from which to return the schemas from.
- id String
- The provider-assigned unique ID for this managed resource.
- row
Access List<Property Map>Policies - The row access policy in the schema
- schema String
- The schema from which to return the row access policy from.
Supporting Types
GetRowAccessPoliciesRowAccessPolicy
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.