1. Packages
  2. Aiven Provider
  3. API Docs
  4. AccountAuthentication
Viewing docs for Aiven v4.5.2 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
aiven logo
Viewing docs for Aiven v4.5.2 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    The Account Authentication resource allows the creation and management of an Aiven Account Authentications.

    Create AccountAuthentication Resource

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

    Constructor syntax

    new AccountAuthentication(name: string, args: AccountAuthenticationArgs, opts?: CustomResourceOptions);
    @overload
    def AccountAuthentication(resource_name: str,
                              args: AccountAuthenticationArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def AccountAuthentication(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              account_id: Optional[str] = None,
                              type: Optional[str] = None,
                              enabled: Optional[bool] = None,
                              name: Optional[str] = None,
                              saml_certificate: Optional[str] = None,
                              saml_entity_id: Optional[str] = None,
                              saml_idp_url: Optional[str] = None)
    func NewAccountAuthentication(ctx *Context, name string, args AccountAuthenticationArgs, opts ...ResourceOption) (*AccountAuthentication, error)
    public AccountAuthentication(string name, AccountAuthenticationArgs args, CustomResourceOptions? opts = null)
    public AccountAuthentication(String name, AccountAuthenticationArgs args)
    public AccountAuthentication(String name, AccountAuthenticationArgs args, CustomResourceOptions options)
    
    type: aiven:AccountAuthentication
    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 AccountAuthenticationArgs
    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 AccountAuthenticationArgs
    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 AccountAuthenticationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AccountAuthenticationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AccountAuthenticationArgs
    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 accountAuthenticationResource = new Aiven.AccountAuthentication("accountAuthenticationResource", new()
    {
        AccountId = "string",
        Type = "string",
        Enabled = false,
        Name = "string",
        SamlCertificate = "string",
        SamlEntityId = "string",
        SamlIdpUrl = "string",
    });
    
    example, err := aiven.NewAccountAuthentication(ctx, "accountAuthenticationResource", &aiven.AccountAuthenticationArgs{
    	AccountId:       pulumi.String("string"),
    	Type:            pulumi.String("string"),
    	Enabled:         pulumi.Bool(false),
    	Name:            pulumi.String("string"),
    	SamlCertificate: pulumi.String("string"),
    	SamlEntityId:    pulumi.String("string"),
    	SamlIdpUrl:      pulumi.String("string"),
    })
    
    var accountAuthenticationResource = new AccountAuthentication("accountAuthenticationResource", AccountAuthenticationArgs.builder()
        .accountId("string")
        .type("string")
        .enabled(false)
        .name("string")
        .samlCertificate("string")
        .samlEntityId("string")
        .samlIdpUrl("string")
        .build());
    
    account_authentication_resource = aiven.AccountAuthentication("accountAuthenticationResource",
        account_id="string",
        type="string",
        enabled=False,
        name="string",
        saml_certificate="string",
        saml_entity_id="string",
        saml_idp_url="string")
    
    const accountAuthenticationResource = new aiven.AccountAuthentication("accountAuthenticationResource", {
        accountId: "string",
        type: "string",
        enabled: false,
        name: "string",
        samlCertificate: "string",
        samlEntityId: "string",
        samlIdpUrl: "string",
    });
    
    type: aiven:AccountAuthentication
    properties:
        accountId: string
        enabled: false
        name: string
        samlCertificate: string
        samlEntityId: string
        samlIdpUrl: string
        type: string
    

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

    AccountId string
    The unique id of the account.
    Type string
    The account authentication type. The possible values are internal and saml.
    Enabled bool
    Status of account authentication method. The default value is false.
    Name string
    The name of the account authentication.
    SamlCertificate string
    SAML Certificate
    SamlEntityId string
    SAML Entity id
    SamlIdpUrl string
    SAML Idp URL
    AccountId string
    The unique id of the account.
    Type string
    The account authentication type. The possible values are internal and saml.
    Enabled bool
    Status of account authentication method. The default value is false.
    Name string
    The name of the account authentication.
    SamlCertificate string
    SAML Certificate
    SamlEntityId string
    SAML Entity id
    SamlIdpUrl string
    SAML Idp URL
    accountId String
    The unique id of the account.
    type String
    The account authentication type. The possible values are internal and saml.
    enabled Boolean
    Status of account authentication method. The default value is false.
    name String
    The name of the account authentication.
    samlCertificate String
    SAML Certificate
    samlEntityId String
    SAML Entity id
    samlIdpUrl String
    SAML Idp URL
    accountId string
    The unique id of the account.
    type string
    The account authentication type. The possible values are internal and saml.
    enabled boolean
    Status of account authentication method. The default value is false.
    name string
    The name of the account authentication.
    samlCertificate string
    SAML Certificate
    samlEntityId string
    SAML Entity id
    samlIdpUrl string
    SAML Idp URL
    account_id str
    The unique id of the account.
    type str
    The account authentication type. The possible values are internal and saml.
    enabled bool
    Status of account authentication method. The default value is false.
    name str
    The name of the account authentication.
    saml_certificate str
    SAML Certificate
    saml_entity_id str
    SAML Entity id
    saml_idp_url str
    SAML Idp URL
    accountId String
    The unique id of the account.
    type String
    The account authentication type. The possible values are internal and saml.
    enabled Boolean
    Status of account authentication method. The default value is false.
    name String
    The name of the account authentication.
    samlCertificate String
    SAML Certificate
    samlEntityId String
    SAML Entity id
    samlIdpUrl String
    SAML Idp URL

    Outputs

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

    AuthenticationId string
    Account authentication id
    CreateTime string
    Time of creation
    Id string
    The provider-assigned unique ID for this managed resource.
    SamlAcsUrl string
    SAML Assertion Consumer Service URL
    SamlMetadataUrl string
    SAML Metadata URL
    UpdateTime string
    Time of last update
    AuthenticationId string
    Account authentication id
    CreateTime string
    Time of creation
    Id string
    The provider-assigned unique ID for this managed resource.
    SamlAcsUrl string
    SAML Assertion Consumer Service URL
    SamlMetadataUrl string
    SAML Metadata URL
    UpdateTime string
    Time of last update
    authenticationId String
    Account authentication id
    createTime String
    Time of creation
    id String
    The provider-assigned unique ID for this managed resource.
    samlAcsUrl String
    SAML Assertion Consumer Service URL
    samlMetadataUrl String
    SAML Metadata URL
    updateTime String
    Time of last update
    authenticationId string
    Account authentication id
    createTime string
    Time of creation
    id string
    The provider-assigned unique ID for this managed resource.
    samlAcsUrl string
    SAML Assertion Consumer Service URL
    samlMetadataUrl string
    SAML Metadata URL
    updateTime string
    Time of last update
    authentication_id str
    Account authentication id
    create_time str
    Time of creation
    id str
    The provider-assigned unique ID for this managed resource.
    saml_acs_url str
    SAML Assertion Consumer Service URL
    saml_metadata_url str
    SAML Metadata URL
    update_time str
    Time of last update
    authenticationId String
    Account authentication id
    createTime String
    Time of creation
    id String
    The provider-assigned unique ID for this managed resource.
    samlAcsUrl String
    SAML Assertion Consumer Service URL
    samlMetadataUrl String
    SAML Metadata URL
    updateTime String
    Time of last update

    Look up Existing AccountAuthentication Resource

    Get an existing AccountAuthentication 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?: AccountAuthenticationState, opts?: CustomResourceOptions): AccountAuthentication
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            authentication_id: Optional[str] = None,
            create_time: Optional[str] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            saml_acs_url: Optional[str] = None,
            saml_certificate: Optional[str] = None,
            saml_entity_id: Optional[str] = None,
            saml_idp_url: Optional[str] = None,
            saml_metadata_url: Optional[str] = None,
            type: Optional[str] = None,
            update_time: Optional[str] = None) -> AccountAuthentication
    func GetAccountAuthentication(ctx *Context, name string, id IDInput, state *AccountAuthenticationState, opts ...ResourceOption) (*AccountAuthentication, error)
    public static AccountAuthentication Get(string name, Input<string> id, AccountAuthenticationState? state, CustomResourceOptions? opts = null)
    public static AccountAuthentication get(String name, Output<String> id, AccountAuthenticationState state, CustomResourceOptions options)
    resources:  _:    type: aiven:AccountAuthentication    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:
    AccountId string
    The unique id of the account.
    AuthenticationId string
    Account authentication id
    CreateTime string
    Time of creation
    Enabled bool
    Status of account authentication method. The default value is false.
    Name string
    The name of the account authentication.
    SamlAcsUrl string
    SAML Assertion Consumer Service URL
    SamlCertificate string
    SAML Certificate
    SamlEntityId string
    SAML Entity id
    SamlIdpUrl string
    SAML Idp URL
    SamlMetadataUrl string
    SAML Metadata URL
    Type string
    The account authentication type. The possible values are internal and saml.
    UpdateTime string
    Time of last update
    AccountId string
    The unique id of the account.
    AuthenticationId string
    Account authentication id
    CreateTime string
    Time of creation
    Enabled bool
    Status of account authentication method. The default value is false.
    Name string
    The name of the account authentication.
    SamlAcsUrl string
    SAML Assertion Consumer Service URL
    SamlCertificate string
    SAML Certificate
    SamlEntityId string
    SAML Entity id
    SamlIdpUrl string
    SAML Idp URL
    SamlMetadataUrl string
    SAML Metadata URL
    Type string
    The account authentication type. The possible values are internal and saml.
    UpdateTime string
    Time of last update
    accountId String
    The unique id of the account.
    authenticationId String
    Account authentication id
    createTime String
    Time of creation
    enabled Boolean
    Status of account authentication method. The default value is false.
    name String
    The name of the account authentication.
    samlAcsUrl String
    SAML Assertion Consumer Service URL
    samlCertificate String
    SAML Certificate
    samlEntityId String
    SAML Entity id
    samlIdpUrl String
    SAML Idp URL
    samlMetadataUrl String
    SAML Metadata URL
    type String
    The account authentication type. The possible values are internal and saml.
    updateTime String
    Time of last update
    accountId string
    The unique id of the account.
    authenticationId string
    Account authentication id
    createTime string
    Time of creation
    enabled boolean
    Status of account authentication method. The default value is false.
    name string
    The name of the account authentication.
    samlAcsUrl string
    SAML Assertion Consumer Service URL
    samlCertificate string
    SAML Certificate
    samlEntityId string
    SAML Entity id
    samlIdpUrl string
    SAML Idp URL
    samlMetadataUrl string
    SAML Metadata URL
    type string
    The account authentication type. The possible values are internal and saml.
    updateTime string
    Time of last update
    account_id str
    The unique id of the account.
    authentication_id str
    Account authentication id
    create_time str
    Time of creation
    enabled bool
    Status of account authentication method. The default value is false.
    name str
    The name of the account authentication.
    saml_acs_url str
    SAML Assertion Consumer Service URL
    saml_certificate str
    SAML Certificate
    saml_entity_id str
    SAML Entity id
    saml_idp_url str
    SAML Idp URL
    saml_metadata_url str
    SAML Metadata URL
    type str
    The account authentication type. The possible values are internal and saml.
    update_time str
    Time of last update
    accountId String
    The unique id of the account.
    authenticationId String
    Account authentication id
    createTime String
    Time of creation
    enabled Boolean
    Status of account authentication method. The default value is false.
    name String
    The name of the account authentication.
    samlAcsUrl String
    SAML Assertion Consumer Service URL
    samlCertificate String
    SAML Certificate
    samlEntityId String
    SAML Entity id
    samlIdpUrl String
    SAML Idp URL
    samlMetadataUrl String
    SAML Metadata URL
    type String
    The account authentication type. The possible values are internal and saml.
    updateTime String
    Time of last update

    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 v4.5.2 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.