1. Packages
  2. Vantage Provider
  3. API Docs
  4. ReportNotification
vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh

vantage.ReportNotification

Explore with Pulumi AI

vantage logo
vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh

    Manages a Report Notification.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as vantage from "@pulumi/vantage";
    
    const testNotif = new vantage.ReportNotification("testNotif", {
        costReportToken: vantage_cost_report.demo_report.token,
        title: "Test Notification",
        userTokens: [
            "usr_36b848747e1683bc",
            "usr_899b013c355547db",
        ],
        frequency: "daily",
        change: "dollars",
        workspaceToken: "wrkspc_47c3254c790e9351",
    });
    
    import pulumi
    import pulumi_vantage as vantage
    
    test_notif = vantage.ReportNotification("testNotif",
        cost_report_token=vantage_cost_report["demo_report"]["token"],
        title="Test Notification",
        user_tokens=[
            "usr_36b848747e1683bc",
            "usr_899b013c355547db",
        ],
        frequency="daily",
        change="dollars",
        workspace_token="wrkspc_47c3254c790e9351")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vantage/vantage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vantage.NewReportNotification(ctx, "testNotif", &vantage.ReportNotificationArgs{
    			CostReportToken: pulumi.Any(vantage_cost_report.Demo_report.Token),
    			Title:           pulumi.String("Test Notification"),
    			UserTokens: pulumi.StringArray{
    				pulumi.String("usr_36b848747e1683bc"),
    				pulumi.String("usr_899b013c355547db"),
    			},
    			Frequency:      pulumi.String("daily"),
    			Change:         pulumi.String("dollars"),
    			WorkspaceToken: pulumi.String("wrkspc_47c3254c790e9351"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vantage = Pulumi.Vantage;
    
    return await Deployment.RunAsync(() => 
    {
        var testNotif = new Vantage.ReportNotification("testNotif", new()
        {
            CostReportToken = vantage_cost_report.Demo_report.Token,
            Title = "Test Notification",
            UserTokens = new[]
            {
                "usr_36b848747e1683bc",
                "usr_899b013c355547db",
            },
            Frequency = "daily",
            Change = "dollars",
            WorkspaceToken = "wrkspc_47c3254c790e9351",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vantage.ReportNotification;
    import com.pulumi.vantage.ReportNotificationArgs;
    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) {
            var testNotif = new ReportNotification("testNotif", ReportNotificationArgs.builder()
                .costReportToken(vantage_cost_report.demo_report().token())
                .title("Test Notification")
                .userTokens(            
                    "usr_36b848747e1683bc",
                    "usr_899b013c355547db")
                .frequency("daily")
                .change("dollars")
                .workspaceToken("wrkspc_47c3254c790e9351")
                .build());
    
        }
    }
    
    resources:
      testNotif:
        type: vantage:ReportNotification
        properties:
          costReportToken: ${vantage_cost_report.demo_report.token}
          title: Test Notification
          userTokens:
            - usr_36b848747e1683bc
            - usr_899b013c355547db
          frequency: daily
          change: dollars
          workspaceToken: wrkspc_47c3254c790e9351
    

    Create ReportNotification Resource

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

    Constructor syntax

    new ReportNotification(name: string, args: ReportNotificationArgs, opts?: CustomResourceOptions);
    @overload
    def ReportNotification(resource_name: str,
                           args: ReportNotificationArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ReportNotification(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           change: Optional[str] = None,
                           cost_report_token: Optional[str] = None,
                           frequency: Optional[str] = None,
                           title: Optional[str] = None,
                           user_tokens: Optional[Sequence[str]] = None,
                           workspace_token: Optional[str] = None)
    func NewReportNotification(ctx *Context, name string, args ReportNotificationArgs, opts ...ResourceOption) (*ReportNotification, error)
    public ReportNotification(string name, ReportNotificationArgs args, CustomResourceOptions? opts = null)
    public ReportNotification(String name, ReportNotificationArgs args)
    public ReportNotification(String name, ReportNotificationArgs args, CustomResourceOptions options)
    
    type: vantage:ReportNotification
    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 ReportNotificationArgs
    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 ReportNotificationArgs
    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 ReportNotificationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReportNotificationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReportNotificationArgs
    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 reportNotificationResource = new Vantage.ReportNotification("reportNotificationResource", new()
    {
        Change = "string",
        CostReportToken = "string",
        Frequency = "string",
        Title = "string",
        UserTokens = new[]
        {
            "string",
        },
        WorkspaceToken = "string",
    });
    
    example, err := vantage.NewReportNotification(ctx, "reportNotificationResource", &vantage.ReportNotificationArgs{
    Change: pulumi.String("string"),
    CostReportToken: pulumi.String("string"),
    Frequency: pulumi.String("string"),
    Title: pulumi.String("string"),
    UserTokens: pulumi.StringArray{
    pulumi.String("string"),
    },
    WorkspaceToken: pulumi.String("string"),
    })
    
    var reportNotificationResource = new ReportNotification("reportNotificationResource", ReportNotificationArgs.builder()
        .change("string")
        .costReportToken("string")
        .frequency("string")
        .title("string")
        .userTokens("string")
        .workspaceToken("string")
        .build());
    
    report_notification_resource = vantage.ReportNotification("reportNotificationResource",
        change="string",
        cost_report_token="string",
        frequency="string",
        title="string",
        user_tokens=["string"],
        workspace_token="string")
    
    const reportNotificationResource = new vantage.ReportNotification("reportNotificationResource", {
        change: "string",
        costReportToken: "string",
        frequency: "string",
        title: "string",
        userTokens: ["string"],
        workspaceToken: "string",
    });
    
    type: vantage:ReportNotification
    properties:
        change: string
        costReportToken: string
        frequency: string
        title: string
        userTokens:
            - string
        workspaceToken: string
    

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

    Change string
    The kind of change sent ReportNotification. One of percentage/dollars
    CostReportToken string
    Token for the cost report to be used in the notification
    Frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    Title string
    Title of the report notification
    UserTokens List<string>
    Tokens for the users to be notified
    WorkspaceToken string
    Token for the workspace the report notification is added toe notification
    Change string
    The kind of change sent ReportNotification. One of percentage/dollars
    CostReportToken string
    Token for the cost report to be used in the notification
    Frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    Title string
    Title of the report notification
    UserTokens []string
    Tokens for the users to be notified
    WorkspaceToken string
    Token for the workspace the report notification is added toe notification
    change String
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken String
    Token for the cost report to be used in the notification
    frequency String
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title String
    Title of the report notification
    userTokens List<String>
    Tokens for the users to be notified
    workspaceToken String
    Token for the workspace the report notification is added toe notification
    change string
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken string
    Token for the cost report to be used in the notification
    frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title string
    Title of the report notification
    userTokens string[]
    Tokens for the users to be notified
    workspaceToken string
    Token for the workspace the report notification is added toe notification
    change str
    The kind of change sent ReportNotification. One of percentage/dollars
    cost_report_token str
    Token for the cost report to be used in the notification
    frequency str
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title str
    Title of the report notification
    user_tokens Sequence[str]
    Tokens for the users to be notified
    workspace_token str
    Token for the workspace the report notification is added toe notification
    change String
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken String
    Token for the cost report to be used in the notification
    frequency String
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title String
    Title of the report notification
    userTokens List<String>
    Tokens for the users to be notified
    workspaceToken String
    Token for the workspace the report notification is added toe notification

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Token string
    Unique report notification identifier
    Id string
    The provider-assigned unique ID for this managed resource.
    Token string
    Unique report notification identifier
    id String
    The provider-assigned unique ID for this managed resource.
    token String
    Unique report notification identifier
    id string
    The provider-assigned unique ID for this managed resource.
    token string
    Unique report notification identifier
    id str
    The provider-assigned unique ID for this managed resource.
    token str
    Unique report notification identifier
    id String
    The provider-assigned unique ID for this managed resource.
    token String
    Unique report notification identifier

    Look up Existing ReportNotification Resource

    Get an existing ReportNotification 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?: ReportNotificationState, opts?: CustomResourceOptions): ReportNotification
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            change: Optional[str] = None,
            cost_report_token: Optional[str] = None,
            frequency: Optional[str] = None,
            title: Optional[str] = None,
            token: Optional[str] = None,
            user_tokens: Optional[Sequence[str]] = None,
            workspace_token: Optional[str] = None) -> ReportNotification
    func GetReportNotification(ctx *Context, name string, id IDInput, state *ReportNotificationState, opts ...ResourceOption) (*ReportNotification, error)
    public static ReportNotification Get(string name, Input<string> id, ReportNotificationState? state, CustomResourceOptions? opts = null)
    public static ReportNotification get(String name, Output<String> id, ReportNotificationState state, CustomResourceOptions options)
    resources:  _:    type: vantage:ReportNotification    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:
    Change string
    The kind of change sent ReportNotification. One of percentage/dollars
    CostReportToken string
    Token for the cost report to be used in the notification
    Frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    Title string
    Title of the report notification
    Token string
    Unique report notification identifier
    UserTokens List<string>
    Tokens for the users to be notified
    WorkspaceToken string
    Token for the workspace the report notification is added toe notification
    Change string
    The kind of change sent ReportNotification. One of percentage/dollars
    CostReportToken string
    Token for the cost report to be used in the notification
    Frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    Title string
    Title of the report notification
    Token string
    Unique report notification identifier
    UserTokens []string
    Tokens for the users to be notified
    WorkspaceToken string
    Token for the workspace the report notification is added toe notification
    change String
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken String
    Token for the cost report to be used in the notification
    frequency String
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title String
    Title of the report notification
    token String
    Unique report notification identifier
    userTokens List<String>
    Tokens for the users to be notified
    workspaceToken String
    Token for the workspace the report notification is added toe notification
    change string
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken string
    Token for the cost report to be used in the notification
    frequency string
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title string
    Title of the report notification
    token string
    Unique report notification identifier
    userTokens string[]
    Tokens for the users to be notified
    workspaceToken string
    Token for the workspace the report notification is added toe notification
    change str
    The kind of change sent ReportNotification. One of percentage/dollars
    cost_report_token str
    Token for the cost report to be used in the notification
    frequency str
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title str
    Title of the report notification
    token str
    Unique report notification identifier
    user_tokens Sequence[str]
    Tokens for the users to be notified
    workspace_token str
    Token for the workspace the report notification is added toe notification
    change String
    The kind of change sent ReportNotification. One of percentage/dollars
    costReportToken String
    Token for the cost report to be used in the notification
    frequency String
    The frequency at which the ReportNotification is sent. One of daily/weekly/monthly
    title String
    Title of the report notification
    token String
    Unique report notification identifier
    userTokens List<String>
    Tokens for the users to be notified
    workspaceToken String
    Token for the workspace the report notification is added toe notification

    Package Details

    Repository
    vantage vantage-sh/terraform-provider-vantage
    License
    Notes
    This Pulumi package is based on the vantage Terraform Provider.
    vantage logo
    vantage 0.1.48 published on Tuesday, Mar 18, 2025 by vantage-sh