1. Packages
  2. Packages
  3. Scaleway
  4. API Docs
  5. billing
  6. getBudgetAlertNotification
Viewing docs for Scaleway v1.53.0
published on Friday, Jul 17, 2026 by pulumiverse
scaleway logo
Viewing docs for Scaleway v1.53.0
published on Friday, Jul 17, 2026 by pulumiverse

    Retrieves information about a Scaleway Budget Alert Notification.

    Use this data source to get details of an existing budget alert notification by its ID.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = scaleway.billing.getBudgetAlertNotification({
        notificationId: "11111111-1111-1111-1111-111111111111",
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    
    main = scaleway.billing.get_budget_alert_notification(notification_id="11111111-1111-1111-1111-111111111111")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/billing"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billing.LookupBudgetAlertNotification(ctx, &billing.LookupBudgetAlertNotificationArgs{
    			NotificationId: "11111111-1111-1111-1111-111111111111",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var main = Scaleway.Billing.GetBudgetAlertNotification.Invoke(new()
        {
            NotificationId = "11111111-1111-1111-1111-111111111111",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.billing.BillingFunctions;
    import com.pulumi.scaleway.billing.inputs.GetBudgetAlertNotificationArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 main = BillingFunctions.getBudgetAlertNotification(GetBudgetAlertNotificationArgs.builder()
                .notificationId("11111111-1111-1111-1111-111111111111")
                .build());
    
        }
    }
    
    variables:
      main:
        fn::invoke:
          function: scaleway:billing:getBudgetAlertNotification
          arguments:
            notificationId: 11111111-1111-1111-1111-111111111111
    
    Example coming soon!
    

    Using getBudgetAlertNotification

    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 getBudgetAlertNotification(args: GetBudgetAlertNotificationArgs, opts?: InvokeOptions): Promise<GetBudgetAlertNotificationResult>
    function getBudgetAlertNotificationOutput(args: GetBudgetAlertNotificationOutputArgs, opts?: InvokeOptions): Output<GetBudgetAlertNotificationResult>
    def get_budget_alert_notification(budget_alert_id: Optional[str] = None,
                                      notification_id: Optional[str] = None,
                                      organization_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetBudgetAlertNotificationResult
    def get_budget_alert_notification_output(budget_alert_id: pulumi.Input[Optional[str]] = None,
                                      notification_id: pulumi.Input[Optional[str]] = None,
                                      organization_id: pulumi.Input[Optional[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetBudgetAlertNotificationResult]
    func LookupBudgetAlertNotification(ctx *Context, args *LookupBudgetAlertNotificationArgs, opts ...InvokeOption) (*LookupBudgetAlertNotificationResult, error)
    func LookupBudgetAlertNotificationOutput(ctx *Context, args *LookupBudgetAlertNotificationOutputArgs, opts ...InvokeOption) LookupBudgetAlertNotificationResultOutput

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

    public static class GetBudgetAlertNotification 
    {
        public static Task<GetBudgetAlertNotificationResult> InvokeAsync(GetBudgetAlertNotificationArgs args, InvokeOptions? opts = null)
        public static Output<GetBudgetAlertNotificationResult> Invoke(GetBudgetAlertNotificationInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBudgetAlertNotificationResult> getBudgetAlertNotification(GetBudgetAlertNotificationArgs args, InvokeOptions options)
    public static Output<GetBudgetAlertNotificationResult> getBudgetAlertNotification(GetBudgetAlertNotificationArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scaleway:billing/getBudgetAlertNotification:getBudgetAlertNotification
      arguments:
        # arguments dictionary
    data "scaleway_billing_get_budget_alert_notification" "name" {
        # arguments
    }

    The following arguments are supported:

    NotificationId string
    The ID of the budget alert notification to retrieve.
    BudgetAlertId string
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    OrganizationId string
    The organization ID. If not provided, the default organization configured in the provider is used.
    NotificationId string
    The ID of the budget alert notification to retrieve.
    BudgetAlertId string
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    OrganizationId string
    The organization ID. If not provided, the default organization configured in the provider is used.
    notification_id string
    The ID of the budget alert notification to retrieve.
    budget_alert_id string
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    organization_id string
    The organization ID. If not provided, the default organization configured in the provider is used.
    notificationId String
    The ID of the budget alert notification to retrieve.
    budgetAlertId String
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    organizationId String
    The organization ID. If not provided, the default organization configured in the provider is used.
    notificationId string
    The ID of the budget alert notification to retrieve.
    budgetAlertId string
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    organizationId string
    The organization ID. If not provided, the default organization configured in the provider is used.
    notification_id str
    The ID of the budget alert notification to retrieve.
    budget_alert_id str
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    organization_id str
    The organization ID. If not provided, the default organization configured in the provider is used.
    notificationId String
    The ID of the budget alert notification to retrieve.
    budgetAlertId String
    The ID of the budget alert. If not provided, it will be retrieved from the notification.
    organizationId String
    The organization ID. If not provided, the default organization configured in the provider is used.

    getBudgetAlertNotification Result

    The following output properties are available:

    BudgetAlertId string
    CreatedAt string
    The date and time of budget alert notification creation
    Id string
    The ID of the budget alert notification
    NotificationId string
    OrganizationId string
    Recipients List<string>
    List of recipients for this notification
    Type string
    The type of notification (sms, email, or webhook)
    UpdatedAt string
    The date and time when the budget alert notification was last updated
    BudgetAlertId string
    CreatedAt string
    The date and time of budget alert notification creation
    Id string
    The ID of the budget alert notification
    NotificationId string
    OrganizationId string
    Recipients []string
    List of recipients for this notification
    Type string
    The type of notification (sms, email, or webhook)
    UpdatedAt string
    The date and time when the budget alert notification was last updated
    budget_alert_id string
    created_at string
    The date and time of budget alert notification creation
    id string
    The ID of the budget alert notification
    notification_id string
    organization_id string
    recipients list(string)
    List of recipients for this notification
    type string
    The type of notification (sms, email, or webhook)
    updated_at string
    The date and time when the budget alert notification was last updated
    budgetAlertId String
    createdAt String
    The date and time of budget alert notification creation
    id String
    The ID of the budget alert notification
    notificationId String
    organizationId String
    recipients List<String>
    List of recipients for this notification
    type String
    The type of notification (sms, email, or webhook)
    updatedAt String
    The date and time when the budget alert notification was last updated
    budgetAlertId string
    createdAt string
    The date and time of budget alert notification creation
    id string
    The ID of the budget alert notification
    notificationId string
    organizationId string
    recipients string[]
    List of recipients for this notification
    type string
    The type of notification (sms, email, or webhook)
    updatedAt string
    The date and time when the budget alert notification was last updated
    budget_alert_id str
    created_at str
    The date and time of budget alert notification creation
    id str
    The ID of the budget alert notification
    notification_id str
    organization_id str
    recipients Sequence[str]
    List of recipients for this notification
    type str
    The type of notification (sms, email, or webhook)
    updated_at str
    The date and time when the budget alert notification was last updated
    budgetAlertId String
    createdAt String
    The date and time of budget alert notification creation
    id String
    The ID of the budget alert notification
    notificationId String
    organizationId String
    recipients List<String>
    List of recipients for this notification
    type String
    The type of notification (sms, email, or webhook)
    updatedAt String
    The date and time when the budget alert notification was last updated

    Package Details

    Repository
    scaleway pulumiverse/pulumi-scaleway
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scaleway Terraform Provider.
    scaleway logo
    Viewing docs for Scaleway v1.53.0
    published on Friday, Jul 17, 2026 by pulumiverse

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial