powerflex.SdcHost
Explore with Pulumi AI
Import
/*
Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import SDC by it’s IP address
$ pulumi import powerflex:index/sdcHost:SdcHost sdc "<ip>"
This will import the SDC instance with specified IP into your Terraform state.
After successful import, you can run terraform state list to ensure the resource has been imported successfully.
Now, you can fill in the resource block with the appropriate arguments and settings that match the imported resource’s real-world configuration.
Execute pulumi preview to see if your configuration and the imported resource are in sync. Make adjustments if needed.
Finally, execute pulumi up to bring the resource fully under Terraform’s management.
Now, the resource which was not part of terraform became part of Terraform managed infrastructure.
Create SdcHost Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SdcHost(name: string, args: SdcHostArgs, opts?: CustomResourceOptions);
@overload
def SdcHost(resource_name: str,
args: SdcHostArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SdcHost(resource_name: str,
opts: Optional[ResourceOptions] = None,
ip: Optional[str] = None,
os_family: Optional[str] = None,
package_path: Optional[str] = None,
remote: Optional[SdcHostRemoteArgs] = None,
clusters_mdm_ips: Optional[Sequence[str]] = None,
esxi: Optional[SdcHostEsxiArgs] = None,
linux_drv_cfg: Optional[str] = None,
name: Optional[str] = None,
performance_profile: Optional[str] = None,
use_remote_path: Optional[bool] = None,
windows_drv_cfg: Optional[str] = None)
func NewSdcHost(ctx *Context, name string, args SdcHostArgs, opts ...ResourceOption) (*SdcHost, error)
public SdcHost(string name, SdcHostArgs args, CustomResourceOptions? opts = null)
public SdcHost(String name, SdcHostArgs args)
public SdcHost(String name, SdcHostArgs args, CustomResourceOptions options)
type: powerflex:SdcHost
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 SdcHostArgs
- 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 SdcHostArgs
- 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 SdcHostArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SdcHostArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SdcHostArgs
- 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 sdcHostResource = new Powerflex.SdcHost("sdcHostResource", new()
{
Ip = "string",
OsFamily = "string",
PackagePath = "string",
Remote = new Powerflex.Inputs.SdcHostRemoteArgs
{
User = "string",
Certificate = "string",
Dir = "string",
HostKey = "string",
Password = "string",
Port = "string",
PrivateKey = "string",
},
ClustersMdmIps = new[]
{
"string",
},
Esxi = new Powerflex.Inputs.SdcHostEsxiArgs
{
Guid = "string",
VerifyVibSignature = false,
},
LinuxDrvCfg = "string",
Name = "string",
PerformanceProfile = "string",
UseRemotePath = false,
WindowsDrvCfg = "string",
});
example, err := powerflex.NewSdcHost(ctx, "sdcHostResource", &powerflex.SdcHostArgs{
Ip: pulumi.String("string"),
OsFamily: pulumi.String("string"),
PackagePath: pulumi.String("string"),
Remote: &powerflex.SdcHostRemoteArgs{
User: pulumi.String("string"),
Certificate: pulumi.String("string"),
Dir: pulumi.String("string"),
HostKey: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
},
ClustersMdmIps: pulumi.StringArray{
pulumi.String("string"),
},
Esxi: &powerflex.SdcHostEsxiArgs{
Guid: pulumi.String("string"),
VerifyVibSignature: pulumi.Bool(false),
},
LinuxDrvCfg: pulumi.String("string"),
Name: pulumi.String("string"),
PerformanceProfile: pulumi.String("string"),
UseRemotePath: pulumi.Bool(false),
WindowsDrvCfg: pulumi.String("string"),
})
var sdcHostResource = new SdcHost("sdcHostResource", SdcHostArgs.builder()
.ip("string")
.osFamily("string")
.packagePath("string")
.remote(SdcHostRemoteArgs.builder()
.user("string")
.certificate("string")
.dir("string")
.hostKey("string")
.password("string")
.port("string")
.privateKey("string")
.build())
.clustersMdmIps("string")
.esxi(SdcHostEsxiArgs.builder()
.guid("string")
.verifyVibSignature(false)
.build())
.linuxDrvCfg("string")
.name("string")
.performanceProfile("string")
.useRemotePath(false)
.windowsDrvCfg("string")
.build());
sdc_host_resource = powerflex.SdcHost("sdcHostResource",
ip="string",
os_family="string",
package_path="string",
remote={
"user": "string",
"certificate": "string",
"dir": "string",
"host_key": "string",
"password": "string",
"port": "string",
"private_key": "string",
},
clusters_mdm_ips=["string"],
esxi={
"guid": "string",
"verify_vib_signature": False,
},
linux_drv_cfg="string",
name="string",
performance_profile="string",
use_remote_path=False,
windows_drv_cfg="string")
const sdcHostResource = new powerflex.SdcHost("sdcHostResource", {
ip: "string",
osFamily: "string",
packagePath: "string",
remote: {
user: "string",
certificate: "string",
dir: "string",
hostKey: "string",
password: "string",
port: "string",
privateKey: "string",
},
clustersMdmIps: ["string"],
esxi: {
guid: "string",
verifyVibSignature: false,
},
linuxDrvCfg: "string",
name: "string",
performanceProfile: "string",
useRemotePath: false,
windowsDrvCfg: "string",
});
type: powerflex:SdcHost
properties:
clustersMdmIps:
- string
esxi:
guid: string
verifyVibSignature: false
ip: string
linuxDrvCfg: string
name: string
osFamily: string
packagePath: string
performanceProfile: string
remote:
certificate: string
dir: string
hostKey: string
password: string
port: string
privateKey: string
user: string
useRemotePath: false
windowsDrvCfg: string
SdcHost 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 SdcHost resource accepts the following input properties:
- Ip string
- IP address of the server to be configured as SDC.
- Os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- Package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- Remote
Sdc
Host Remote - Remote login details of the SDC.
- Clusters
Mdm List<string>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- Esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - Linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- Name string
- Name of SDC.
- Performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- Use
Remote boolPath - Use path on remote server where SDC is installed. Defaults to
false
. - Windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- Ip string
- IP address of the server to be configured as SDC.
- Os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- Package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- Remote
Sdc
Host Remote Args - Remote login details of the SDC.
- Clusters
Mdm []stringIps - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- Esxi
Sdc
Host Esxi Args - Details of the SDC host if the
os_family
isesxi
. - Linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- Name string
- Name of SDC.
- Performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- Use
Remote boolPath - Use path on remote server where SDC is installed. Defaults to
false
. - Windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- ip String
- IP address of the server to be configured as SDC.
- os
Family String - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path String - Full path (on local machine) of the package to be installed on the SDC.
- remote
Sdc
Host Remote - Remote login details of the SDC.
- clusters
Mdm List<String>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - linux
Drv StringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- name String
- Name of SDC.
- performance
Profile String - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- use
Remote BooleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv StringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- ip string
- IP address of the server to be configured as SDC.
- os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- remote
Sdc
Host Remote - Remote login details of the SDC.
- clusters
Mdm string[]Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- name string
- Name of SDC.
- performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- use
Remote booleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- ip str
- IP address of the server to be configured as SDC.
- os_
family str - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package_
path str - Full path (on local machine) of the package to be installed on the SDC.
- remote
Sdc
Host Remote Args - Remote login details of the SDC.
- clusters_
mdm_ Sequence[str]ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi Args - Details of the SDC host if the
os_family
isesxi
. - linux_
drv_ strcfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- name str
- Name of SDC.
- performance_
profile str - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- use_
remote_ boolpath - Use path on remote server where SDC is installed. Defaults to
false
. - windows_
drv_ strcfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- ip String
- IP address of the server to be configured as SDC.
- os
Family String - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path String - Full path (on local machine) of the package to be installed on the SDC.
- remote Property Map
- Remote login details of the SDC.
- clusters
Mdm List<String>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi Property Map
- Details of the SDC host if the
os_family
isesxi
. - linux
Drv StringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- name String
- Name of SDC.
- performance
Profile String - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- use
Remote BooleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv StringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
Outputs
All input properties are implicitly available as output properties. Additionally, the SdcHost resource produces the following output properties:
- Guid string
- GUID of the HOST
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Approved bool - Is Host Approved
- Mdm
Connection stringState - MDM Connection State
- On
Vmware bool - Is Host on VMware
- System
Id string - System ID of the Host
- Guid string
- GUID of the HOST
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Approved bool - Is Host Approved
- Mdm
Connection stringState - MDM Connection State
- On
Vmware bool - Is Host on VMware
- System
Id string - System ID of the Host
- guid String
- GUID of the HOST
- id String
- The provider-assigned unique ID for this managed resource.
- is
Approved Boolean - Is Host Approved
- mdm
Connection StringState - MDM Connection State
- on
Vmware Boolean - Is Host on VMware
- system
Id String - System ID of the Host
- guid string
- GUID of the HOST
- id string
- The provider-assigned unique ID for this managed resource.
- is
Approved boolean - Is Host Approved
- mdm
Connection stringState - MDM Connection State
- on
Vmware boolean - Is Host on VMware
- system
Id string - System ID of the Host
- guid str
- GUID of the HOST
- id str
- The provider-assigned unique ID for this managed resource.
- is_
approved bool - Is Host Approved
- mdm_
connection_ strstate - MDM Connection State
- on_
vmware bool - Is Host on VMware
- system_
id str - System ID of the Host
- guid String
- GUID of the HOST
- id String
- The provider-assigned unique ID for this managed resource.
- is
Approved Boolean - Is Host Approved
- mdm
Connection StringState - MDM Connection State
- on
Vmware Boolean - Is Host on VMware
- system
Id String - System ID of the Host
Look up Existing SdcHost Resource
Get an existing SdcHost 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?: SdcHostState, opts?: CustomResourceOptions): SdcHost
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
clusters_mdm_ips: Optional[Sequence[str]] = None,
esxi: Optional[SdcHostEsxiArgs] = None,
guid: Optional[str] = None,
ip: Optional[str] = None,
is_approved: Optional[bool] = None,
linux_drv_cfg: Optional[str] = None,
mdm_connection_state: Optional[str] = None,
name: Optional[str] = None,
on_vmware: Optional[bool] = None,
os_family: Optional[str] = None,
package_path: Optional[str] = None,
performance_profile: Optional[str] = None,
remote: Optional[SdcHostRemoteArgs] = None,
system_id: Optional[str] = None,
use_remote_path: Optional[bool] = None,
windows_drv_cfg: Optional[str] = None) -> SdcHost
func GetSdcHost(ctx *Context, name string, id IDInput, state *SdcHostState, opts ...ResourceOption) (*SdcHost, error)
public static SdcHost Get(string name, Input<string> id, SdcHostState? state, CustomResourceOptions? opts = null)
public static SdcHost get(String name, Output<String> id, SdcHostState state, CustomResourceOptions options)
resources: _: type: powerflex:SdcHost 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.
- Clusters
Mdm List<string>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- Esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - Guid string
- GUID of the HOST
- Ip string
- IP address of the server to be configured as SDC.
- Is
Approved bool - Is Host Approved
- Linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- Mdm
Connection stringState - MDM Connection State
- Name string
- Name of SDC.
- On
Vmware bool - Is Host on VMware
- Os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- Package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- Performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- Remote
Sdc
Host Remote - Remote login details of the SDC.
- System
Id string - System ID of the Host
- Use
Remote boolPath - Use path on remote server where SDC is installed. Defaults to
false
. - Windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- Clusters
Mdm []stringIps - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- Esxi
Sdc
Host Esxi Args - Details of the SDC host if the
os_family
isesxi
. - Guid string
- GUID of the HOST
- Ip string
- IP address of the server to be configured as SDC.
- Is
Approved bool - Is Host Approved
- Linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- Mdm
Connection stringState - MDM Connection State
- Name string
- Name of SDC.
- On
Vmware bool - Is Host on VMware
- Os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- Package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- Performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- Remote
Sdc
Host Remote Args - Remote login details of the SDC.
- System
Id string - System ID of the Host
- Use
Remote boolPath - Use path on remote server where SDC is installed. Defaults to
false
. - Windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- clusters
Mdm List<String>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - guid String
- GUID of the HOST
- ip String
- IP address of the server to be configured as SDC.
- is
Approved Boolean - Is Host Approved
- linux
Drv StringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- mdm
Connection StringState - MDM Connection State
- name String
- Name of SDC.
- on
Vmware Boolean - Is Host on VMware
- os
Family String - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path String - Full path (on local machine) of the package to be installed on the SDC.
- performance
Profile String - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- remote
Sdc
Host Remote - Remote login details of the SDC.
- system
Id String - System ID of the Host
- use
Remote BooleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv StringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- clusters
Mdm string[]Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi - Details of the SDC host if the
os_family
isesxi
. - guid string
- GUID of the HOST
- ip string
- IP address of the server to be configured as SDC.
- is
Approved boolean - Is Host Approved
- linux
Drv stringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- mdm
Connection stringState - MDM Connection State
- name string
- Name of SDC.
- on
Vmware boolean - Is Host on VMware
- os
Family string - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path string - Full path (on local machine) of the package to be installed on the SDC.
- performance
Profile string - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- remote
Sdc
Host Remote - Remote login details of the SDC.
- system
Id string - System ID of the Host
- use
Remote booleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv stringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- clusters_
mdm_ Sequence[str]ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi
Sdc
Host Esxi Args - Details of the SDC host if the
os_family
isesxi
. - guid str
- GUID of the HOST
- ip str
- IP address of the server to be configured as SDC.
- is_
approved bool - Is Host Approved
- linux_
drv_ strcfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- mdm_
connection_ strstate - MDM Connection State
- name str
- Name of SDC.
- on_
vmware bool - Is Host on VMware
- os_
family str - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package_
path str - Full path (on local machine) of the package to be installed on the SDC.
- performance_
profile str - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- remote
Sdc
Host Remote Args - Remote login details of the SDC.
- system_
id str - System ID of the Host
- use_
remote_ boolpath - Use path on remote server where SDC is installed. Defaults to
false
. - windows_
drv_ strcfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
- clusters
Mdm List<String>Ips - List of MDM IPs (primary,secondary or list of virtual IPs) seperated by cluster, to be assigned to the SDC.Each string in the list is a set of Mdm Ips related to a specific cluster. These Ips should be seperated by comma I.E. ['x.x.x.x,y.y.y.y', 'z.z.z.z,a.a.a.a'].
- esxi Property Map
- Details of the SDC host if the
os_family
isesxi
. - guid String
- GUID of the HOST
- ip String
- IP address of the server to be configured as SDC.
- is
Approved Boolean - Is Host Approved
- linux
Drv StringCfg - Path to the drv_cfg for linux, defaults to /opt/emc/scaleio/sdc/bin/
- mdm
Connection StringState - MDM Connection State
- name String
- Name of SDC.
- on
Vmware Boolean - Is Host on VMware
- os
Family String - Operating System family of the SDC. Accepted values are 'linux', 'windows' and 'esxi'. Cannot be changed once set.
- package
Path String - Full path (on local machine) of the package to be installed on the SDC.
- performance
Profile String - Performance profile of the SDC. Accepted values are 'HighPerformance' and 'Compact'.
- remote Property Map
- Remote login details of the SDC.
- system
Id String - System ID of the Host
- use
Remote BooleanPath - Use path on remote server where SDC is installed. Defaults to
false
. - windows
Drv StringCfg - Path to the drv_cfg.exe config for windows, defaults to C:\Program Files\EMC\scaleio\sdc\bin\
Supporting Types
SdcHostEsxi, SdcHostEsxiArgs
- Guid string
- GUID of the SDC.
- Verify
Vib boolSignature - Whether to verify the VIB signature or not. Defaults to
true
.
- Guid string
- GUID of the SDC.
- Verify
Vib boolSignature - Whether to verify the VIB signature or not. Defaults to
true
.
- guid String
- GUID of the SDC.
- verify
Vib BooleanSignature - Whether to verify the VIB signature or not. Defaults to
true
.
- guid string
- GUID of the SDC.
- verify
Vib booleanSignature - Whether to verify the VIB signature or not. Defaults to
true
.
- guid str
- GUID of the SDC.
- verify_
vib_ boolsignature - Whether to verify the VIB signature or not. Defaults to
true
.
- guid String
- GUID of the SDC.
- verify
Vib BooleanSignature - Whether to verify the VIB signature or not. Defaults to
true
.
SdcHostRemote, SdcHostRemoteArgs
- User string
- Remote Login username of the SDC server.
- Certificate string
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - Dir string
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - Host
Key string - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- Password string
- Remote Login password of the SDC server.
- Port string
- Remote Login port of the SDC server. Defaults to
22
. - Private
Key string - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
- User string
- Remote Login username of the SDC server.
- Certificate string
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - Dir string
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - Host
Key string - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- Password string
- Remote Login password of the SDC server.
- Port string
- Remote Login port of the SDC server. Defaults to
22
. - Private
Key string - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
- user String
- Remote Login username of the SDC server.
- certificate String
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - dir String
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - host
Key String - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- password String
- Remote Login password of the SDC server.
- port String
- Remote Login port of the SDC server. Defaults to
22
. - private
Key String - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
- user string
- Remote Login username of the SDC server.
- certificate string
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - dir string
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - host
Key string - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- password string
- Remote Login password of the SDC server.
- port string
- Remote Login port of the SDC server. Defaults to
22
. - private
Key string - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
- user str
- Remote Login username of the SDC server.
- certificate str
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - dir str
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - host_
key str - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- password str
- Remote Login password of the SDC server.
- port str
- Remote Login port of the SDC server. Defaults to
22
. - private_
key str - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
- user String
- Remote Login username of the SDC server.
- certificate String
- Remote Login certificate issued by a CA to the remote login user. Must be used with
private_key
and the private key must match the certificate. - dir String
- Directory on the SDC server to upload packages to for Unix. Defaults to
/tmp
on Unix. - host
Key String - Remote Login host key of the SDC server. Corresponds to the UserKnownHostsFile field of OpenSSH.
- password String
- Remote Login password of the SDC server.
- port String
- Remote Login port of the SDC server. Defaults to
22
. - private
Key String - Remote Login private key of the SDC server. Corresponds to the IdentityFile field of OpenSSH.
Package Details
- Repository
- powerflex dell/terraform-provider-powerflex
- License
- Notes
- This Pulumi package is based on the
powerflex
Terraform Provider.