1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. hbr
  5. HanaInstance
Alibaba Cloud v3.43.1 published on Monday, Sep 11, 2023 by Pulumi

alicloud.hbr.HanaInstance

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.43.1 published on Monday, Sep 11, 2023 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

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

    Create HanaInstance Resource

    new HanaInstance(name: string, args: HanaInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def HanaInstance(resource_name: str,
                     opts: Optional[ResourceOptions] = 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,
                     vault_id: Optional[str] = None)
    @overload
    def HanaInstance(resource_name: str,
                     args: HanaInstanceArgs,
                     opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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>
    

    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.43.1 published on Monday, Sep 11, 2023 by Pulumi