1. Packages
  2. Aiven Provider
  3. API Docs
  4. OrganizationBillingGroup
Viewing docs for Aiven v6.51.0
published on Tuesday, Mar 17, 2026 by Pulumi
aiven logo
Viewing docs for Aiven v6.51.0
published on Tuesday, Mar 17, 2026 by Pulumi

    Creates and manages an organization billing group.

    This resource is in the beta stage and may change without notice. Set the PROVIDER_AIVEN_ENABLE_BETA environment variable to use the resource.

    Create OrganizationBillingGroup Resource

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

    Constructor syntax

    new OrganizationBillingGroup(name: string, args: OrganizationBillingGroupArgs, opts?: CustomResourceOptions);
    @overload
    def OrganizationBillingGroup(resource_name: str,
                                 args: OrganizationBillingGroupArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrganizationBillingGroup(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 billing_address_id: Optional[str] = None,
                                 billing_contact_emails: Optional[Sequence[OrganizationBillingGroupBillingContactEmailArgs]] = None,
                                 billing_emails: Optional[Sequence[OrganizationBillingGroupBillingEmailArgs]] = None,
                                 billing_group_name: Optional[str] = None,
                                 organization_id: Optional[str] = None,
                                 payment_method: Optional[OrganizationBillingGroupPaymentMethodArgs] = None,
                                 shipping_address_id: Optional[str] = None,
                                 custom_invoice_text: Optional[str] = None,
                                 timeouts: Optional[OrganizationBillingGroupTimeoutsArgs] = None,
                                 vat_id: Optional[str] = None)
    func NewOrganizationBillingGroup(ctx *Context, name string, args OrganizationBillingGroupArgs, opts ...ResourceOption) (*OrganizationBillingGroup, error)
    public OrganizationBillingGroup(string name, OrganizationBillingGroupArgs args, CustomResourceOptions? opts = null)
    public OrganizationBillingGroup(String name, OrganizationBillingGroupArgs args)
    public OrganizationBillingGroup(String name, OrganizationBillingGroupArgs args, CustomResourceOptions options)
    
    type: aiven:OrganizationBillingGroup
    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 OrganizationBillingGroupArgs
    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 OrganizationBillingGroupArgs
    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 OrganizationBillingGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrganizationBillingGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrganizationBillingGroupArgs
    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 organizationBillingGroupResource = new Aiven.OrganizationBillingGroup("organizationBillingGroupResource", new()
    {
        BillingAddressId = "string",
        BillingContactEmails = new[]
        {
            new Aiven.Inputs.OrganizationBillingGroupBillingContactEmailArgs
            {
                Email = "string",
            },
        },
        BillingEmails = new[]
        {
            new Aiven.Inputs.OrganizationBillingGroupBillingEmailArgs
            {
                Email = "string",
            },
        },
        BillingGroupName = "string",
        OrganizationId = "string",
        PaymentMethod = new Aiven.Inputs.OrganizationBillingGroupPaymentMethodArgs
        {
            PaymentMethodId = "string",
            PaymentMethodType = "string",
        },
        ShippingAddressId = "string",
        CustomInvoiceText = "string",
        Timeouts = new Aiven.Inputs.OrganizationBillingGroupTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
        VatId = "string",
    });
    
    example, err := aiven.NewOrganizationBillingGroup(ctx, "organizationBillingGroupResource", &aiven.OrganizationBillingGroupArgs{
    	BillingAddressId: pulumi.String("string"),
    	BillingContactEmails: aiven.OrganizationBillingGroupBillingContactEmailArray{
    		&aiven.OrganizationBillingGroupBillingContactEmailArgs{
    			Email: pulumi.String("string"),
    		},
    	},
    	BillingEmails: aiven.OrganizationBillingGroupBillingEmailArray{
    		&aiven.OrganizationBillingGroupBillingEmailArgs{
    			Email: pulumi.String("string"),
    		},
    	},
    	BillingGroupName: pulumi.String("string"),
    	OrganizationId:   pulumi.String("string"),
    	PaymentMethod: &aiven.OrganizationBillingGroupPaymentMethodArgs{
    		PaymentMethodId:   pulumi.String("string"),
    		PaymentMethodType: pulumi.String("string"),
    	},
    	ShippingAddressId: pulumi.String("string"),
    	CustomInvoiceText: pulumi.String("string"),
    	Timeouts: &aiven.OrganizationBillingGroupTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	VatId: pulumi.String("string"),
    })
    
    var organizationBillingGroupResource = new OrganizationBillingGroup("organizationBillingGroupResource", OrganizationBillingGroupArgs.builder()
        .billingAddressId("string")
        .billingContactEmails(OrganizationBillingGroupBillingContactEmailArgs.builder()
            .email("string")
            .build())
        .billingEmails(OrganizationBillingGroupBillingEmailArgs.builder()
            .email("string")
            .build())
        .billingGroupName("string")
        .organizationId("string")
        .paymentMethod(OrganizationBillingGroupPaymentMethodArgs.builder()
            .paymentMethodId("string")
            .paymentMethodType("string")
            .build())
        .shippingAddressId("string")
        .customInvoiceText("string")
        .timeouts(OrganizationBillingGroupTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .vatId("string")
        .build());
    
    organization_billing_group_resource = aiven.OrganizationBillingGroup("organizationBillingGroupResource",
        billing_address_id="string",
        billing_contact_emails=[{
            "email": "string",
        }],
        billing_emails=[{
            "email": "string",
        }],
        billing_group_name="string",
        organization_id="string",
        payment_method={
            "payment_method_id": "string",
            "payment_method_type": "string",
        },
        shipping_address_id="string",
        custom_invoice_text="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        },
        vat_id="string")
    
    const organizationBillingGroupResource = new aiven.OrganizationBillingGroup("organizationBillingGroupResource", {
        billingAddressId: "string",
        billingContactEmails: [{
            email: "string",
        }],
        billingEmails: [{
            email: "string",
        }],
        billingGroupName: "string",
        organizationId: "string",
        paymentMethod: {
            paymentMethodId: "string",
            paymentMethodType: "string",
        },
        shippingAddressId: "string",
        customInvoiceText: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
        vatId: "string",
    });
    
    type: aiven:OrganizationBillingGroup
    properties:
        billingAddressId: string
        billingContactEmails:
            - email: string
        billingEmails:
            - email: string
        billingGroupName: string
        customInvoiceText: string
        organizationId: string
        paymentMethod:
            paymentMethodId: string
            paymentMethodType: string
        shippingAddressId: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        vatId: string
    

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

    BillingAddressId string
    Billing address ID. Maximum length: 36.
    BillingContactEmails List<OrganizationBillingGroupBillingContactEmail>
    Required property. List of billing contact emails.
    BillingEmails List<OrganizationBillingGroupBillingEmail>
    Required property. List of billing contact emails.
    BillingGroupName string
    Billing Group Name. Maximum length: 128.
    OrganizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    PaymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    ShippingAddressId string
    Shipping address ID. Maximum length: 36.
    CustomInvoiceText string
    Extra billing text. Maximum length: 256.
    Timeouts OrganizationBillingGroupTimeouts
    VatId string
    VAT ID.
    BillingAddressId string
    Billing address ID. Maximum length: 36.
    BillingContactEmails []OrganizationBillingGroupBillingContactEmailArgs
    Required property. List of billing contact emails.
    BillingEmails []OrganizationBillingGroupBillingEmailArgs
    Required property. List of billing contact emails.
    BillingGroupName string
    Billing Group Name. Maximum length: 128.
    OrganizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    PaymentMethod OrganizationBillingGroupPaymentMethodArgs
    Required property. Payment method.
    ShippingAddressId string
    Shipping address ID. Maximum length: 36.
    CustomInvoiceText string
    Extra billing text. Maximum length: 256.
    Timeouts OrganizationBillingGroupTimeoutsArgs
    VatId string
    VAT ID.
    billingAddressId String
    Billing address ID. Maximum length: 36.
    billingContactEmails List<OrganizationBillingGroupBillingContactEmail>
    Required property. List of billing contact emails.
    billingEmails List<OrganizationBillingGroupBillingEmail>
    Required property. List of billing contact emails.
    billingGroupName String
    Billing Group Name. Maximum length: 128.
    organizationId String
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    shippingAddressId String
    Shipping address ID. Maximum length: 36.
    customInvoiceText String
    Extra billing text. Maximum length: 256.
    timeouts OrganizationBillingGroupTimeouts
    vatId String
    VAT ID.
    billingAddressId string
    Billing address ID. Maximum length: 36.
    billingContactEmails OrganizationBillingGroupBillingContactEmail[]
    Required property. List of billing contact emails.
    billingEmails OrganizationBillingGroupBillingEmail[]
    Required property. List of billing contact emails.
    billingGroupName string
    Billing Group Name. Maximum length: 128.
    organizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    shippingAddressId string
    Shipping address ID. Maximum length: 36.
    customInvoiceText string
    Extra billing text. Maximum length: 256.
    timeouts OrganizationBillingGroupTimeouts
    vatId string
    VAT ID.
    billing_address_id str
    Billing address ID. Maximum length: 36.
    billing_contact_emails Sequence[OrganizationBillingGroupBillingContactEmailArgs]
    Required property. List of billing contact emails.
    billing_emails Sequence[OrganizationBillingGroupBillingEmailArgs]
    Required property. List of billing contact emails.
    billing_group_name str
    Billing Group Name. Maximum length: 128.
    organization_id str
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    payment_method OrganizationBillingGroupPaymentMethodArgs
    Required property. Payment method.
    shipping_address_id str
    Shipping address ID. Maximum length: 36.
    custom_invoice_text str
    Extra billing text. Maximum length: 256.
    timeouts OrganizationBillingGroupTimeoutsArgs
    vat_id str
    VAT ID.
    billingAddressId String
    Billing address ID. Maximum length: 36.
    billingContactEmails List<Property Map>
    Required property. List of billing contact emails.
    billingEmails List<Property Map>
    Required property. List of billing contact emails.
    billingGroupName String
    Billing Group Name. Maximum length: 128.
    organizationId String
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod Property Map
    Required property. Payment method.
    shippingAddressId String
    Shipping address ID. Maximum length: 36.
    customInvoiceText String
    Extra billing text. Maximum length: 256.
    timeouts Property Map
    vatId String
    VAT ID.

    Outputs

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

    BillingGroupId string
    Billing group ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    BillingGroupId string
    Billing group ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    billingGroupId String
    Billing group ID.
    id String
    The provider-assigned unique ID for this managed resource.
    billingGroupId string
    Billing group ID.
    id string
    The provider-assigned unique ID for this managed resource.
    billing_group_id str
    Billing group ID.
    id str
    The provider-assigned unique ID for this managed resource.
    billingGroupId String
    Billing group ID.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing OrganizationBillingGroup Resource

    Get an existing OrganizationBillingGroup 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?: OrganizationBillingGroupState, opts?: CustomResourceOptions): OrganizationBillingGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            billing_address_id: Optional[str] = None,
            billing_contact_emails: Optional[Sequence[OrganizationBillingGroupBillingContactEmailArgs]] = None,
            billing_emails: Optional[Sequence[OrganizationBillingGroupBillingEmailArgs]] = None,
            billing_group_id: Optional[str] = None,
            billing_group_name: Optional[str] = None,
            custom_invoice_text: Optional[str] = None,
            organization_id: Optional[str] = None,
            payment_method: Optional[OrganizationBillingGroupPaymentMethodArgs] = None,
            shipping_address_id: Optional[str] = None,
            timeouts: Optional[OrganizationBillingGroupTimeoutsArgs] = None,
            vat_id: Optional[str] = None) -> OrganizationBillingGroup
    func GetOrganizationBillingGroup(ctx *Context, name string, id IDInput, state *OrganizationBillingGroupState, opts ...ResourceOption) (*OrganizationBillingGroup, error)
    public static OrganizationBillingGroup Get(string name, Input<string> id, OrganizationBillingGroupState? state, CustomResourceOptions? opts = null)
    public static OrganizationBillingGroup get(String name, Output<String> id, OrganizationBillingGroupState state, CustomResourceOptions options)
    resources:  _:    type: aiven:OrganizationBillingGroup    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:
    BillingAddressId string
    Billing address ID. Maximum length: 36.
    BillingContactEmails List<OrganizationBillingGroupBillingContactEmail>
    Required property. List of billing contact emails.
    BillingEmails List<OrganizationBillingGroupBillingEmail>
    Required property. List of billing contact emails.
    BillingGroupId string
    Billing group ID.
    BillingGroupName string
    Billing Group Name. Maximum length: 128.
    CustomInvoiceText string
    Extra billing text. Maximum length: 256.
    OrganizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    PaymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    ShippingAddressId string
    Shipping address ID. Maximum length: 36.
    Timeouts OrganizationBillingGroupTimeouts
    VatId string
    VAT ID.
    BillingAddressId string
    Billing address ID. Maximum length: 36.
    BillingContactEmails []OrganizationBillingGroupBillingContactEmailArgs
    Required property. List of billing contact emails.
    BillingEmails []OrganizationBillingGroupBillingEmailArgs
    Required property. List of billing contact emails.
    BillingGroupId string
    Billing group ID.
    BillingGroupName string
    Billing Group Name. Maximum length: 128.
    CustomInvoiceText string
    Extra billing text. Maximum length: 256.
    OrganizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    PaymentMethod OrganizationBillingGroupPaymentMethodArgs
    Required property. Payment method.
    ShippingAddressId string
    Shipping address ID. Maximum length: 36.
    Timeouts OrganizationBillingGroupTimeoutsArgs
    VatId string
    VAT ID.
    billingAddressId String
    Billing address ID. Maximum length: 36.
    billingContactEmails List<OrganizationBillingGroupBillingContactEmail>
    Required property. List of billing contact emails.
    billingEmails List<OrganizationBillingGroupBillingEmail>
    Required property. List of billing contact emails.
    billingGroupId String
    Billing group ID.
    billingGroupName String
    Billing Group Name. Maximum length: 128.
    customInvoiceText String
    Extra billing text. Maximum length: 256.
    organizationId String
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    shippingAddressId String
    Shipping address ID. Maximum length: 36.
    timeouts OrganizationBillingGroupTimeouts
    vatId String
    VAT ID.
    billingAddressId string
    Billing address ID. Maximum length: 36.
    billingContactEmails OrganizationBillingGroupBillingContactEmail[]
    Required property. List of billing contact emails.
    billingEmails OrganizationBillingGroupBillingEmail[]
    Required property. List of billing contact emails.
    billingGroupId string
    Billing group ID.
    billingGroupName string
    Billing Group Name. Maximum length: 128.
    customInvoiceText string
    Extra billing text. Maximum length: 256.
    organizationId string
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod OrganizationBillingGroupPaymentMethod
    Required property. Payment method.
    shippingAddressId string
    Shipping address ID. Maximum length: 36.
    timeouts OrganizationBillingGroupTimeouts
    vatId string
    VAT ID.
    billing_address_id str
    Billing address ID. Maximum length: 36.
    billing_contact_emails Sequence[OrganizationBillingGroupBillingContactEmailArgs]
    Required property. List of billing contact emails.
    billing_emails Sequence[OrganizationBillingGroupBillingEmailArgs]
    Required property. List of billing contact emails.
    billing_group_id str
    Billing group ID.
    billing_group_name str
    Billing Group Name. Maximum length: 128.
    custom_invoice_text str
    Extra billing text. Maximum length: 256.
    organization_id str
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    payment_method OrganizationBillingGroupPaymentMethodArgs
    Required property. Payment method.
    shipping_address_id str
    Shipping address ID. Maximum length: 36.
    timeouts OrganizationBillingGroupTimeoutsArgs
    vat_id str
    VAT ID.
    billingAddressId String
    Billing address ID. Maximum length: 36.
    billingContactEmails List<Property Map>
    Required property. List of billing contact emails.
    billingEmails List<Property Map>
    Required property. List of billing contact emails.
    billingGroupId String
    Billing group ID.
    billingGroupName String
    Billing Group Name. Maximum length: 128.
    customInvoiceText String
    Extra billing text. Maximum length: 256.
    organizationId String
    ID of an organization. Maximum length: 36. Changing this property forces recreation of the resource.
    paymentMethod Property Map
    Required property. Payment method.
    shippingAddressId String
    Shipping address ID. Maximum length: 36.
    timeouts Property Map
    vatId String
    VAT ID.

    Supporting Types

    OrganizationBillingGroupBillingContactEmail, OrganizationBillingGroupBillingContactEmailArgs

    Email string
    Email. Maximum length: 254.
    Email string
    Email. Maximum length: 254.
    email String
    Email. Maximum length: 254.
    email string
    Email. Maximum length: 254.
    email str
    Email. Maximum length: 254.
    email String
    Email. Maximum length: 254.

    OrganizationBillingGroupBillingEmail, OrganizationBillingGroupBillingEmailArgs

    Email string
    Email. Maximum length: 254.
    Email string
    Email. Maximum length: 254.
    email String
    Email. Maximum length: 254.
    email string
    Email. Maximum length: 254.
    email str
    Email. Maximum length: 254.
    email String
    Email. Maximum length: 254.

    OrganizationBillingGroupPaymentMethod, OrganizationBillingGroupPaymentMethodArgs

    PaymentMethodId string
    Payment method ID. Maximum length: 36.
    PaymentMethodType string
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.
    PaymentMethodId string
    Payment method ID. Maximum length: 36.
    PaymentMethodType string
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.
    paymentMethodId String
    Payment method ID. Maximum length: 36.
    paymentMethodType String
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.
    paymentMethodId string
    Payment method ID. Maximum length: 36.
    paymentMethodType string
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.
    payment_method_id str
    Payment method ID. Maximum length: 36.
    payment_method_type str
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.
    paymentMethodId String
    Payment method ID. Maximum length: 36.
    paymentMethodType String
    An enumeration. The possible values are aws_subscription, azure_subscription, bank_transfer, credit_card, custom and gcp_subscription.

    OrganizationBillingGroupTimeouts, OrganizationBillingGroupTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    $ pulumi import aiven:index/organizationBillingGroup:OrganizationBillingGroup example ORGANIZATION_ID/BILLING_GROUP_ID
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Aiven pulumi/pulumi-aiven
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aiven Terraform Provider.
    aiven logo
    Viewing docs for Aiven v6.51.0
    published on Tuesday, Mar 17, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.