snowflake.getAlerts
Explore with Pulumi AI
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Snowflake = Pulumi.Snowflake;
return await Deployment.RunAsync(() =>
{
var current = Snowflake.GetAlerts.Invoke(new()
{
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.GetAlerts(ctx, &snowflake.GetAlertsArgs{
Database: pulumi.StringRef("MYDB"),
Schema: pulumi.StringRef("MYSCHEMA"),
}, nil)
if err != nil {
return err
}
return nil
})
}
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.GetAlertsArgs;
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.getAlerts(GetAlertsArgs.builder()
.database("MYDB")
.schema("MYSCHEMA")
.build());
}
}
import pulumi
import pulumi_snowflake as snowflake
current = snowflake.get_alerts(database="MYDB",
schema="MYSCHEMA")
import * as pulumi from "@pulumi/pulumi";
import * as snowflake from "@pulumi/snowflake";
const current = snowflake.getAlerts({
database: "MYDB",
schema: "MYSCHEMA",
});
variables:
current:
fn::invoke:
Function: snowflake:getAlerts
Arguments:
database: MYDB
schema: MYSCHEMA
Using getAlerts
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 getAlerts(args: GetAlertsArgs, opts?: InvokeOptions): Promise<GetAlertsResult>
function getAlertsOutput(args: GetAlertsOutputArgs, opts?: InvokeOptions): Output<GetAlertsResult>
def get_alerts(database: Optional[str] = None,
pattern: Optional[str] = None,
schema: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAlertsResult
def get_alerts_output(database: Optional[pulumi.Input[str]] = None,
pattern: Optional[pulumi.Input[str]] = None,
schema: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAlertsResult]
func GetAlerts(ctx *Context, args *GetAlertsArgs, opts ...InvokeOption) (*GetAlertsResult, error)
func GetAlertsOutput(ctx *Context, args *GetAlertsOutputArgs, opts ...InvokeOption) GetAlertsResultOutput
> Note: This function is named GetAlerts
in the Go SDK.
public static class GetAlerts
{
public static Task<GetAlertsResult> InvokeAsync(GetAlertsArgs args, InvokeOptions? opts = null)
public static Output<GetAlertsResult> Invoke(GetAlertsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAlertsResult> getAlerts(GetAlertsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: snowflake:index/getAlerts:getAlerts
arguments:
# arguments dictionary
The following arguments are supported:
getAlerts Result
The following output properties are available:
- Alerts
List<Get
Alerts Alert> Lists alerts for the current/specified database or schema, or across the entire account.
- Id string
The provider-assigned unique ID for this managed resource.
- Database string
The database from which to return the alerts from.
- Pattern string
Filters the command output by object name.
- Schema string
The schema from which to return the alerts from.
- Alerts
[]Get
Alerts Alert Lists alerts for the current/specified database or schema, or across the entire account.
- Id string
The provider-assigned unique ID for this managed resource.
- Database string
The database from which to return the alerts from.
- Pattern string
Filters the command output by object name.
- Schema string
The schema from which to return the alerts from.
- alerts
List<Get
Alerts Alert> Lists alerts for the current/specified database or schema, or across the entire account.
- id String
The provider-assigned unique ID for this managed resource.
- database String
The database from which to return the alerts from.
- pattern String
Filters the command output by object name.
- schema String
The schema from which to return the alerts from.
- alerts
Get
Alerts Alert[] Lists alerts for the current/specified database or schema, or across the entire account.
- id string
The provider-assigned unique ID for this managed resource.
- database string
The database from which to return the alerts from.
- pattern string
Filters the command output by object name.
- schema string
The schema from which to return the alerts from.
- alerts
Sequence[Get
Alerts Alert] Lists alerts for the current/specified database or schema, or across the entire account.
- id str
The provider-assigned unique ID for this managed resource.
- database str
The database from which to return the alerts from.
- pattern str
Filters the command output by object name.
- schema str
The schema from which to return the alerts from.
- alerts List<Property Map>
Lists alerts for the current/specified database or schema, or across the entire account.
- id String
The provider-assigned unique ID for this managed resource.
- database String
The database from which to return the alerts from.
- pattern String
Filters the command output by object name.
- schema String
The schema from which to return the alerts from.
Supporting Types
GetAlertsAlert
- Action string
- Comment string
- Condition string
- Database
Name string - Name string
- Owner string
- Schema
Name string
- Action string
- Comment string
- Condition string
- Database
Name string - Name string
- Owner string
- Schema
Name string
- action String
- comment String
- condition String
- database
Name String - name String
- owner String
- schema
Name String
- action string
- comment string
- condition string
- database
Name string - name string
- owner string
- schema
Name string
- action str
- comment str
- condition str
- database_
name str - name str
- owner str
- schema_
name str
- action String
- comment String
- condition String
- database
Name String - name String
- owner String
- schema
Name String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
snowflake
Terraform Provider.