1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. hbr
  5. HanaInstance
Alibaba Cloud v3.54.0 published on Wednesday, Apr 24, 2024 by Pulumi

alicloud.hbr.HanaInstance

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.54.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Provides a Hybrid Backup Recovery (HBR) Hana Instance resource.

    For information about Hybrid Backup Recovery (HBR) Hana Instance and how to use it, see What is Hana Instance.

    NOTE: Available in v1.178.0+.

    NOTE: The sid attribute is required when destroying resources.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const example = alicloud.resourcemanager.getResourceGroups({
        status: "OK",
    });
    const exampleVault = new alicloud.hbr.Vault("example", {vaultName: "terraform-example"});
    const exampleHanaInstance = new alicloud.hbr.HanaInstance("example", {
        alertSetting: "INHERITED",
        hanaName: "terraform-example",
        host: "1.1.1.1",
        instanceNumber: 1,
        password: "YouPassword123",
        resourceGroupId: example.then(example => example.groups?.[0]?.id),
        sid: "HXE",
        useSsl: false,
        userName: "admin",
        validateCertificate: false,
        vaultId: exampleVault.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example = alicloud.resourcemanager.get_resource_groups(status="OK")
    example_vault = alicloud.hbr.Vault("example", vault_name="terraform-example")
    example_hana_instance = alicloud.hbr.HanaInstance("example",
        alert_setting="INHERITED",
        hana_name="terraform-example",
        host="1.1.1.1",
        instance_number=1,
        password="YouPassword123",
        resource_group_id=example.groups[0].id,
        sid="HXE",
        use_ssl=False,
        user_name="admin",
        validate_certificate=False,
        vault_id=example_vault.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/hbr"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{
    			Status: pulumi.StringRef("OK"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleVault, err := hbr.NewVault(ctx, "example", &hbr.VaultArgs{
    			VaultName: pulumi.String("terraform-example"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hbr.NewHanaInstance(ctx, "example", &hbr.HanaInstanceArgs{
    			AlertSetting:        pulumi.String("INHERITED"),
    			HanaName:            pulumi.String("terraform-example"),
    			Host:                pulumi.String("1.1.1.1"),
    			InstanceNumber:      pulumi.Int(1),
    			Password:            pulumi.String("YouPassword123"),
    			ResourceGroupId:     pulumi.String(example.Groups[0].Id),
    			Sid:                 pulumi.String("HXE"),
    			UseSsl:              pulumi.Bool(false),
    			UserName:            pulumi.String("admin"),
    			ValidateCertificate: pulumi.Bool(false),
    			VaultId:             exampleVault.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = AliCloud.ResourceManager.GetResourceGroups.Invoke(new()
        {
            Status = "OK",
        });
    
        var exampleVault = new AliCloud.Hbr.Vault("example", new()
        {
            VaultName = "terraform-example",
        });
    
        var exampleHanaInstance = new AliCloud.Hbr.HanaInstance("example", new()
        {
            AlertSetting = "INHERITED",
            HanaName = "terraform-example",
            Host = "1.1.1.1",
            InstanceNumber = 1,
            Password = "YouPassword123",
            ResourceGroupId = example.Apply(getResourceGroupsResult => getResourceGroupsResult.Groups[0]?.Id),
            Sid = "HXE",
            UseSsl = false,
            UserName = "admin",
            ValidateCertificate = false,
            VaultId = exampleVault.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
    import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
    import com.pulumi.alicloud.hbr.Vault;
    import com.pulumi.alicloud.hbr.VaultArgs;
    import com.pulumi.alicloud.hbr.HanaInstance;
    import com.pulumi.alicloud.hbr.HanaInstanceArgs;
    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 example = ResourcemanagerFunctions.getResourceGroups(GetResourceGroupsArgs.builder()
                .status("OK")
                .build());
    
            var exampleVault = new Vault("exampleVault", VaultArgs.builder()        
                .vaultName("terraform-example")
                .build());
    
            var exampleHanaInstance = new HanaInstance("exampleHanaInstance", HanaInstanceArgs.builder()        
                .alertSetting("INHERITED")
                .hanaName("terraform-example")
                .host("1.1.1.1")
                .instanceNumber(1)
                .password("YouPassword123")
                .resourceGroupId(example.applyValue(getResourceGroupsResult -> getResourceGroupsResult.groups()[0].id()))
                .sid("HXE")
                .useSsl(false)
                .userName("admin")
                .validateCertificate(false)
                .vaultId(exampleVault.id())
                .build());
    
        }
    }
    
    resources:
      exampleVault:
        type: alicloud:hbr:Vault
        name: example
        properties:
          vaultName: terraform-example
      exampleHanaInstance:
        type: alicloud:hbr:HanaInstance
        name: example
        properties:
          alertSetting: INHERITED
          hanaName: terraform-example
          host: 1.1.1.1
          instanceNumber: 1
          password: YouPassword123
          resourceGroupId: ${example.groups[0].id}
          sid: HXE
          useSsl: false
          userName: admin
          validateCertificate: false
          vaultId: ${exampleVault.id}
    variables:
      example:
        fn::invoke:
          Function: alicloud:resourcemanager:getResourceGroups
          Arguments:
            status: OK
    

    Create HanaInstance Resource

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

    Constructor syntax

    new HanaInstance(name: string, args: HanaInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def HanaInstance(resource_name: str,
                     args: HanaInstanceArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def HanaInstance(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     vault_id: Optional[str] = None,
                     alert_setting: Optional[str] = None,
                     ecs_instance_ids: Optional[Sequence[str]] = None,
                     hana_name: Optional[str] = None,
                     host: Optional[str] = None,
                     instance_number: Optional[int] = None,
                     password: Optional[str] = None,
                     resource_group_id: Optional[str] = None,
                     sid: Optional[str] = None,
                     use_ssl: Optional[bool] = None,
                     user_name: Optional[str] = None,
                     validate_certificate: Optional[bool] = None)
    func NewHanaInstance(ctx *Context, name string, args HanaInstanceArgs, opts ...ResourceOption) (*HanaInstance, error)
    public HanaInstance(string name, HanaInstanceArgs args, CustomResourceOptions? opts = null)
    public HanaInstance(String name, HanaInstanceArgs args)
    public HanaInstance(String name, HanaInstanceArgs args, CustomResourceOptions options)
    
    type: alicloud:hbr:HanaInstance
    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 HanaInstanceArgs
    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 HanaInstanceArgs
    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 HanaInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HanaInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HanaInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var hanaInstanceResource = new AliCloud.Hbr.HanaInstance("hanaInstanceResource", new()
    {
        VaultId = "string",
        AlertSetting = "string",
        EcsInstanceIds = new[]
        {
            "string",
        },
        HanaName = "string",
        Host = "string",
        InstanceNumber = 0,
        Password = "string",
        ResourceGroupId = "string",
        Sid = "string",
        UseSsl = false,
        UserName = "string",
        ValidateCertificate = false,
    });
    
    example, err := hbr.NewHanaInstance(ctx, "hanaInstanceResource", &hbr.HanaInstanceArgs{
    	VaultId:      pulumi.String("string"),
    	AlertSetting: pulumi.String("string"),
    	EcsInstanceIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	HanaName:            pulumi.String("string"),
    	Host:                pulumi.String("string"),
    	InstanceNumber:      pulumi.Int(0),
    	Password:            pulumi.String("string"),
    	ResourceGroupId:     pulumi.String("string"),
    	Sid:                 pulumi.String("string"),
    	UseSsl:              pulumi.Bool(false),
    	UserName:            pulumi.String("string"),
    	ValidateCertificate: pulumi.Bool(false),
    })
    
    var hanaInstanceResource = new HanaInstance("hanaInstanceResource", HanaInstanceArgs.builder()        
        .vaultId("string")
        .alertSetting("string")
        .ecsInstanceIds("string")
        .hanaName("string")
        .host("string")
        .instanceNumber(0)
        .password("string")
        .resourceGroupId("string")
        .sid("string")
        .useSsl(false)
        .userName("string")
        .validateCertificate(false)
        .build());
    
    hana_instance_resource = alicloud.hbr.HanaInstance("hanaInstanceResource",
        vault_id="string",
        alert_setting="string",
        ecs_instance_ids=["string"],
        hana_name="string",
        host="string",
        instance_number=0,
        password="string",
        resource_group_id="string",
        sid="string",
        use_ssl=False,
        user_name="string",
        validate_certificate=False)
    
    const hanaInstanceResource = new alicloud.hbr.HanaInstance("hanaInstanceResource", {
        vaultId: "string",
        alertSetting: "string",
        ecsInstanceIds: ["string"],
        hanaName: "string",
        host: "string",
        instanceNumber: 0,
        password: "string",
        resourceGroupId: "string",
        sid: "string",
        useSsl: false,
        userName: "string",
        validateCertificate: false,
    });
    
    type: alicloud:hbr:HanaInstance
    properties:
        alertSetting: string
        ecsInstanceIds:
            - string
        hanaName: string
        host: string
        instanceNumber: 0
        password: string
        resourceGroupId: string
        sid: string
        useSsl: false
        userName: string
        validateCertificate: false
        vaultId: string
    

    HanaInstance Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The HanaInstance resource accepts the following input properties:

    VaultId string
    The ID of the backup vault.
    AlertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    EcsInstanceIds List<string>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    HanaName string
    The name of the SAP HANA instance.
    Host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    InstanceNumber int
    The instance number of the SAP HANA system.
    Password string
    The password that is used to connect with the SAP HANA database.
    ResourceGroupId string
    The ID of the resource group.
    Sid string
    The security identifier (SID) of the SAP HANA database.
    UseSsl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    UserName string
    The username of the SYSTEMDB database.
    ValidateCertificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    VaultId string
    The ID of the backup vault.
    AlertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    EcsInstanceIds []string
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    HanaName string
    The name of the SAP HANA instance.
    Host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    InstanceNumber int
    The instance number of the SAP HANA system.
    Password string
    The password that is used to connect with the SAP HANA database.
    ResourceGroupId string
    The ID of the resource group.
    Sid string
    The security identifier (SID) of the SAP HANA database.
    UseSsl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    UserName string
    The username of the SYSTEMDB database.
    ValidateCertificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId String
    The ID of the backup vault.
    alertSetting String
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds List<String>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaName String
    The name of the SAP HANA instance.
    host String
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber Integer
    The instance number of the SAP HANA system.
    password String
    The password that is used to connect with the SAP HANA database.
    resourceGroupId String
    The ID of the resource group.
    sid String
    The security identifier (SID) of the SAP HANA database.
    useSsl Boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName String
    The username of the SYSTEMDB database.
    validateCertificate Boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId string
    The ID of the backup vault.
    alertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds string[]
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaName string
    The name of the SAP HANA instance.
    host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber number
    The instance number of the SAP HANA system.
    password string
    The password that is used to connect with the SAP HANA database.
    resourceGroupId string
    The ID of the resource group.
    sid string
    The security identifier (SID) of the SAP HANA database.
    useSsl boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName string
    The username of the SYSTEMDB database.
    validateCertificate boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vault_id str
    The ID of the backup vault.
    alert_setting str
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecs_instance_ids Sequence[str]
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hana_name str
    The name of the SAP HANA instance.
    host str
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instance_number int
    The instance number of the SAP HANA system.
    password str
    The password that is used to connect with the SAP HANA database.
    resource_group_id str
    The ID of the resource group.
    sid str
    The security identifier (SID) of the SAP HANA database.
    use_ssl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    user_name str
    The username of the SYSTEMDB database.
    validate_certificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId String
    The ID of the backup vault.
    alertSetting String
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds List<String>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaName String
    The name of the SAP HANA instance.
    host String
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber Number
    The instance number of the SAP HANA system.
    password String
    The password that is used to connect with the SAP HANA database.
    resourceGroupId String
    The ID of the resource group.
    sid String
    The security identifier (SID) of the SAP HANA database.
    useSsl Boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName String
    The username of the SYSTEMDB database.
    validateCertificate Boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.

    Outputs

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

    HanaInstanceId string
    The id of the Hana Instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the resource.
    HanaInstanceId string
    The id of the Hana Instance.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of the resource.
    hanaInstanceId String
    The id of the Hana Instance.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the resource.
    hanaInstanceId string
    The id of the Hana Instance.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of the resource.
    hana_instance_id str
    The id of the Hana Instance.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of the resource.
    hanaInstanceId String
    The id of the Hana Instance.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of the resource.

    Look up Existing HanaInstance Resource

    Get an existing HanaInstance 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?: HanaInstanceState, opts?: CustomResourceOptions): HanaInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alert_setting: Optional[str] = None,
            ecs_instance_ids: Optional[Sequence[str]] = None,
            hana_instance_id: Optional[str] = None,
            hana_name: Optional[str] = None,
            host: Optional[str] = None,
            instance_number: Optional[int] = None,
            password: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            sid: Optional[str] = None,
            status: Optional[str] = None,
            use_ssl: Optional[bool] = None,
            user_name: Optional[str] = None,
            validate_certificate: Optional[bool] = None,
            vault_id: Optional[str] = None) -> HanaInstance
    func GetHanaInstance(ctx *Context, name string, id IDInput, state *HanaInstanceState, opts ...ResourceOption) (*HanaInstance, error)
    public static HanaInstance Get(string name, Input<string> id, HanaInstanceState? state, CustomResourceOptions? opts = null)
    public static HanaInstance get(String name, Output<String> id, HanaInstanceState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AlertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    EcsInstanceIds List<string>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    HanaInstanceId string
    The id of the Hana Instance.
    HanaName string
    The name of the SAP HANA instance.
    Host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    InstanceNumber int
    The instance number of the SAP HANA system.
    Password string
    The password that is used to connect with the SAP HANA database.
    ResourceGroupId string
    The ID of the resource group.
    Sid string
    The security identifier (SID) of the SAP HANA database.
    Status string
    The status of the resource.
    UseSsl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    UserName string
    The username of the SYSTEMDB database.
    ValidateCertificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    VaultId string
    The ID of the backup vault.
    AlertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    EcsInstanceIds []string
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    HanaInstanceId string
    The id of the Hana Instance.
    HanaName string
    The name of the SAP HANA instance.
    Host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    InstanceNumber int
    The instance number of the SAP HANA system.
    Password string
    The password that is used to connect with the SAP HANA database.
    ResourceGroupId string
    The ID of the resource group.
    Sid string
    The security identifier (SID) of the SAP HANA database.
    Status string
    The status of the resource.
    UseSsl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    UserName string
    The username of the SYSTEMDB database.
    ValidateCertificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    VaultId string
    The ID of the backup vault.
    alertSetting String
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds List<String>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaInstanceId String
    The id of the Hana Instance.
    hanaName String
    The name of the SAP HANA instance.
    host String
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber Integer
    The instance number of the SAP HANA system.
    password String
    The password that is used to connect with the SAP HANA database.
    resourceGroupId String
    The ID of the resource group.
    sid String
    The security identifier (SID) of the SAP HANA database.
    status String
    The status of the resource.
    useSsl Boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName String
    The username of the SYSTEMDB database.
    validateCertificate Boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId String
    The ID of the backup vault.
    alertSetting string
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds string[]
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaInstanceId string
    The id of the Hana Instance.
    hanaName string
    The name of the SAP HANA instance.
    host string
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber number
    The instance number of the SAP HANA system.
    password string
    The password that is used to connect with the SAP HANA database.
    resourceGroupId string
    The ID of the resource group.
    sid string
    The security identifier (SID) of the SAP HANA database.
    status string
    The status of the resource.
    useSsl boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName string
    The username of the SYSTEMDB database.
    validateCertificate boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId string
    The ID of the backup vault.
    alert_setting str
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecs_instance_ids Sequence[str]
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hana_instance_id str
    The id of the Hana Instance.
    hana_name str
    The name of the SAP HANA instance.
    host str
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instance_number int
    The instance number of the SAP HANA system.
    password str
    The password that is used to connect with the SAP HANA database.
    resource_group_id str
    The ID of the resource group.
    sid str
    The security identifier (SID) of the SAP HANA database.
    status str
    The status of the resource.
    use_ssl bool
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    user_name str
    The username of the SYSTEMDB database.
    validate_certificate bool
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vault_id str
    The ID of the backup vault.
    alertSetting String
    The alert settings. Valid value: INHERITED, which indicates that the backup client sends alert notifications in the same way as the backup vault.
    ecsInstanceIds List<String>
    The IDs of ECS instances that host the SAP HANA instance to be registered. HBR installs backup clients on the specified ECS instances.
    hanaInstanceId String
    The id of the Hana Instance.
    hanaName String
    The name of the SAP HANA instance.
    host String
    The private or internal IP address of the host where the primary node of the SAP HANA instance resides.
    instanceNumber Number
    The instance number of the SAP HANA system.
    password String
    The password that is used to connect with the SAP HANA database.
    resourceGroupId String
    The ID of the resource group.
    sid String
    The security identifier (SID) of the SAP HANA database.
    status String
    The status of the resource.
    useSsl Boolean
    Specifies whether to connect with the SAP HANA database over Secure Sockets Layer (SSL).
    userName String
    The username of the SYSTEMDB database.
    validateCertificate Boolean
    Specifies whether to verify the SSL certificate of the SAP HANA database.
    vaultId String
    The ID of the backup vault.

    Import

    Hybrid Backup Recovery (HBR) Hana Instance can be imported using the id, e.g.

    $ pulumi import alicloud:hbr/hanaInstance:HanaInstance example <vault_id>:<hana_instance_id>
    

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

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.54.0 published on Wednesday, Apr 24, 2024 by Pulumi