Skip to content

Import Hypervisor Configuration

backupgateway_import_hypervisor_configuration R Documentation

Connect to a hypervisor by importing its configuration

Description

Connect to a hypervisor by importing its configuration.

Usage

backupgateway_import_hypervisor_configuration(Name, Host, Username,
  Password, KmsKeyArn, Tags)

Arguments

Name

[required] The name of the hypervisor.

Host

[required] The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).

Username

The username for the hypervisor.

Password

The password for the hypervisor.

KmsKeyArn

The Key Management Service for the hypervisor.

Tags

The tags of the hypervisor configuration to import.

Value

A list with the following syntax:

list(
  HypervisorArn = "string"
)

Request syntax

svc$import_hypervisor_configuration(
  Name = "string",
  Host = "string",
  Username = "string",
  Password = "string",
  KmsKeyArn = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)