powerflex.PeerSystem
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 Peer System by its id
$ pulumi import powerflex:index/peerSystem:PeerSystem example "<id>"
This will import the resource instance with specified ID 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 PeerSystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PeerSystem(name: string, args: PeerSystemArgs, opts?: CustomResourceOptions);
@overload
def PeerSystem(resource_name: str,
args: PeerSystemArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PeerSystem(resource_name: str,
opts: Optional[ResourceOptions] = None,
ip_lists: Optional[Sequence[str]] = None,
peer_system_id: Optional[str] = None,
add_certificate: Optional[bool] = None,
destination_primary_mdm_information: Optional[PeerSystemDestinationPrimaryMdmInformationArgs] = None,
name: Optional[str] = None,
perf_profile: Optional[str] = None,
port: Optional[float] = None,
source_primary_mdm_information: Optional[PeerSystemSourcePrimaryMdmInformationArgs] = None)
func NewPeerSystem(ctx *Context, name string, args PeerSystemArgs, opts ...ResourceOption) (*PeerSystem, error)
public PeerSystem(string name, PeerSystemArgs args, CustomResourceOptions? opts = null)
public PeerSystem(String name, PeerSystemArgs args)
public PeerSystem(String name, PeerSystemArgs args, CustomResourceOptions options)
type: powerflex:PeerSystem
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 PeerSystemArgs
- 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 PeerSystemArgs
- 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 PeerSystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PeerSystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PeerSystemArgs
- 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 peerSystemResource = new Powerflex.PeerSystem("peerSystemResource", new()
{
IpLists = new[]
{
"string",
},
PeerSystemId = "string",
AddCertificate = false,
DestinationPrimaryMdmInformation = new Powerflex.Inputs.PeerSystemDestinationPrimaryMdmInformationArgs
{
Ip = "string",
ManagementIp = "string",
ManagementPassword = "string",
ManagementUsername = "string",
SshPassword = "string",
SshPort = "string",
SshUsername = "string",
},
Name = "string",
PerfProfile = "string",
Port = 0,
SourcePrimaryMdmInformation = new Powerflex.Inputs.PeerSystemSourcePrimaryMdmInformationArgs
{
Ip = "string",
ManagementIp = "string",
ManagementPassword = "string",
ManagementUsername = "string",
SshPassword = "string",
SshPort = "string",
SshUsername = "string",
},
});
example, err := powerflex.NewPeerSystem(ctx, "peerSystemResource", &powerflex.PeerSystemArgs{
IpLists: pulumi.StringArray{
pulumi.String("string"),
},
PeerSystemId: pulumi.String("string"),
AddCertificate: pulumi.Bool(false),
DestinationPrimaryMdmInformation: &powerflex.PeerSystemDestinationPrimaryMdmInformationArgs{
Ip: pulumi.String("string"),
ManagementIp: pulumi.String("string"),
ManagementPassword: pulumi.String("string"),
ManagementUsername: pulumi.String("string"),
SshPassword: pulumi.String("string"),
SshPort: pulumi.String("string"),
SshUsername: pulumi.String("string"),
},
Name: pulumi.String("string"),
PerfProfile: pulumi.String("string"),
Port: pulumi.Float64(0),
SourcePrimaryMdmInformation: &powerflex.PeerSystemSourcePrimaryMdmInformationArgs{
Ip: pulumi.String("string"),
ManagementIp: pulumi.String("string"),
ManagementPassword: pulumi.String("string"),
ManagementUsername: pulumi.String("string"),
SshPassword: pulumi.String("string"),
SshPort: pulumi.String("string"),
SshUsername: pulumi.String("string"),
},
})
var peerSystemResource = new PeerSystem("peerSystemResource", PeerSystemArgs.builder()
.ipLists("string")
.peerSystemId("string")
.addCertificate(false)
.destinationPrimaryMdmInformation(PeerSystemDestinationPrimaryMdmInformationArgs.builder()
.ip("string")
.managementIp("string")
.managementPassword("string")
.managementUsername("string")
.sshPassword("string")
.sshPort("string")
.sshUsername("string")
.build())
.name("string")
.perfProfile("string")
.port(0)
.sourcePrimaryMdmInformation(PeerSystemSourcePrimaryMdmInformationArgs.builder()
.ip("string")
.managementIp("string")
.managementPassword("string")
.managementUsername("string")
.sshPassword("string")
.sshPort("string")
.sshUsername("string")
.build())
.build());
peer_system_resource = powerflex.PeerSystem("peerSystemResource",
ip_lists=["string"],
peer_system_id="string",
add_certificate=False,
destination_primary_mdm_information={
"ip": "string",
"management_ip": "string",
"management_password": "string",
"management_username": "string",
"ssh_password": "string",
"ssh_port": "string",
"ssh_username": "string",
},
name="string",
perf_profile="string",
port=0,
source_primary_mdm_information={
"ip": "string",
"management_ip": "string",
"management_password": "string",
"management_username": "string",
"ssh_password": "string",
"ssh_port": "string",
"ssh_username": "string",
})
const peerSystemResource = new powerflex.PeerSystem("peerSystemResource", {
ipLists: ["string"],
peerSystemId: "string",
addCertificate: false,
destinationPrimaryMdmInformation: {
ip: "string",
managementIp: "string",
managementPassword: "string",
managementUsername: "string",
sshPassword: "string",
sshPort: "string",
sshUsername: "string",
},
name: "string",
perfProfile: "string",
port: 0,
sourcePrimaryMdmInformation: {
ip: "string",
managementIp: "string",
managementPassword: "string",
managementUsername: "string",
sshPassword: "string",
sshPort: "string",
sshUsername: "string",
},
});
type: powerflex:PeerSystem
properties:
addCertificate: false
destinationPrimaryMdmInformation:
ip: string
managementIp: string
managementPassword: string
managementUsername: string
sshPassword: string
sshPort: string
sshUsername: string
ipLists:
- string
name: string
peerSystemId: string
perfProfile: string
port: 0
sourcePrimaryMdmInformation:
ip: string
managementIp: string
managementPassword: string
managementUsername: string
sshPassword: string
sshPort: string
sshUsername: string
PeerSystem 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 PeerSystem resource accepts the following input properties:
- Ip
Lists List<string> - List of ips for the peer mdm system.
- Peer
System stringId - Unique identifier of the peer mdm system.
- Add
Certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- Destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- Name string
- Name of the peer mdm instance.
- Perf
Profile string - Performance profile of the peer mdm instance.
- Port double
- Port of the peer mdm instance.
- Source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- Ip
Lists []string - List of ips for the peer mdm system.
- Peer
System stringId - Unique identifier of the peer mdm system.
- Add
Certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- Destination
Primary PeerMdm Information System Destination Primary Mdm Information Args - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- Name string
- Name of the peer mdm instance.
- Perf
Profile string - Performance profile of the peer mdm instance.
- Port float64
- Port of the peer mdm instance.
- Source
Primary PeerMdm Information System Source Primary Mdm Information Args - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- ip
Lists List<String> - List of ips for the peer mdm system.
- peer
System StringId - Unique identifier of the peer mdm system.
- add
Certificate Boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- name String
- Name of the peer mdm instance.
- perf
Profile String - Performance profile of the peer mdm instance.
- port Double
- Port of the peer mdm instance.
- source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- ip
Lists string[] - List of ips for the peer mdm system.
- peer
System stringId - Unique identifier of the peer mdm system.
- add
Certificate boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- name string
- Name of the peer mdm instance.
- perf
Profile string - Performance profile of the peer mdm instance.
- port number
- Port of the peer mdm instance.
- source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- ip_
lists Sequence[str] - List of ips for the peer mdm system.
- peer_
system_ strid - Unique identifier of the peer mdm system.
- add_
certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- destination_
primary_ Peermdm_ information System Destination Primary Mdm Information Args - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- name str
- Name of the peer mdm instance.
- perf_
profile str - Performance profile of the peer mdm instance.
- port float
- Port of the peer mdm instance.
- source_
primary_ Peermdm_ information System Source Primary Mdm Information Args - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- ip
Lists List<String> - List of ips for the peer mdm system.
- peer
System StringId - Unique identifier of the peer mdm system.
- add
Certificate Boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- destination
Primary Property MapMdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- name String
- Name of the peer mdm instance.
- perf
Profile String - Performance profile of the peer mdm instance.
- port Number
- Port of the peer mdm instance.
- source
Primary Property MapMdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
Outputs
All input properties are implicitly available as output properties. Additionally, the PeerSystem resource produces the following output properties:
- Coupling
Rc string - Coupling return code number of the peer mdm system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Membership
State string - membership state of the peer mdm instance.
- Network
Type string - Network type of the peer mdm system.
- Software
Version stringInfo - Software version details of the peer mdm instance.
- System
Id string - Unique identifier of the peer mdm system.
- Coupling
Rc string - Coupling return code number of the peer mdm system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Membership
State string - membership state of the peer mdm instance.
- Network
Type string - Network type of the peer mdm system.
- Software
Version stringInfo - Software version details of the peer mdm instance.
- System
Id string - Unique identifier of the peer mdm system.
- coupling
Rc String - Coupling return code number of the peer mdm system.
- id String
- The provider-assigned unique ID for this managed resource.
- membership
State String - membership state of the peer mdm instance.
- network
Type String - Network type of the peer mdm system.
- software
Version StringInfo - Software version details of the peer mdm instance.
- system
Id String - Unique identifier of the peer mdm system.
- coupling
Rc string - Coupling return code number of the peer mdm system.
- id string
- The provider-assigned unique ID for this managed resource.
- membership
State string - membership state of the peer mdm instance.
- network
Type string - Network type of the peer mdm system.
- software
Version stringInfo - Software version details of the peer mdm instance.
- system
Id string - Unique identifier of the peer mdm system.
- coupling_
rc str - Coupling return code number of the peer mdm system.
- id str
- The provider-assigned unique ID for this managed resource.
- membership_
state str - membership state of the peer mdm instance.
- network_
type str - Network type of the peer mdm system.
- software_
version_ strinfo - Software version details of the peer mdm instance.
- system_
id str - Unique identifier of the peer mdm system.
- coupling
Rc String - Coupling return code number of the peer mdm system.
- id String
- The provider-assigned unique ID for this managed resource.
- membership
State String - membership state of the peer mdm instance.
- network
Type String - Network type of the peer mdm system.
- software
Version StringInfo - Software version details of the peer mdm instance.
- system
Id String - Unique identifier of the peer mdm system.
Look up Existing PeerSystem Resource
Get an existing PeerSystem 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?: PeerSystemState, opts?: CustomResourceOptions): PeerSystem
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
add_certificate: Optional[bool] = None,
coupling_rc: Optional[str] = None,
destination_primary_mdm_information: Optional[PeerSystemDestinationPrimaryMdmInformationArgs] = None,
ip_lists: Optional[Sequence[str]] = None,
membership_state: Optional[str] = None,
name: Optional[str] = None,
network_type: Optional[str] = None,
peer_system_id: Optional[str] = None,
perf_profile: Optional[str] = None,
port: Optional[float] = None,
software_version_info: Optional[str] = None,
source_primary_mdm_information: Optional[PeerSystemSourcePrimaryMdmInformationArgs] = None,
system_id: Optional[str] = None) -> PeerSystem
func GetPeerSystem(ctx *Context, name string, id IDInput, state *PeerSystemState, opts ...ResourceOption) (*PeerSystem, error)
public static PeerSystem Get(string name, Input<string> id, PeerSystemState? state, CustomResourceOptions? opts = null)
public static PeerSystem get(String name, Output<String> id, PeerSystemState state, CustomResourceOptions options)
resources: _: type: powerflex:PeerSystem 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.
- Add
Certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- Coupling
Rc string - Coupling return code number of the peer mdm system.
- Destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- Ip
Lists List<string> - List of ips for the peer mdm system.
- Membership
State string - membership state of the peer mdm instance.
- Name string
- Name of the peer mdm instance.
- Network
Type string - Network type of the peer mdm system.
- Peer
System stringId - Unique identifier of the peer mdm system.
- Perf
Profile string - Performance profile of the peer mdm instance.
- Port double
- Port of the peer mdm instance.
- Software
Version stringInfo - Software version details of the peer mdm instance.
- Source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- System
Id string - Unique identifier of the peer mdm system.
- Add
Certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- Coupling
Rc string - Coupling return code number of the peer mdm system.
- Destination
Primary PeerMdm Information System Destination Primary Mdm Information Args - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- Ip
Lists []string - List of ips for the peer mdm system.
- Membership
State string - membership state of the peer mdm instance.
- Name string
- Name of the peer mdm instance.
- Network
Type string - Network type of the peer mdm system.
- Peer
System stringId - Unique identifier of the peer mdm system.
- Perf
Profile string - Performance profile of the peer mdm instance.
- Port float64
- Port of the peer mdm instance.
- Software
Version stringInfo - Software version details of the peer mdm instance.
- Source
Primary PeerMdm Information System Source Primary Mdm Information Args - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- System
Id string - Unique identifier of the peer mdm system.
- add
Certificate Boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- coupling
Rc String - Coupling return code number of the peer mdm system.
- destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- ip
Lists List<String> - List of ips for the peer mdm system.
- membership
State String - membership state of the peer mdm instance.
- name String
- Name of the peer mdm instance.
- network
Type String - Network type of the peer mdm system.
- peer
System StringId - Unique identifier of the peer mdm system.
- perf
Profile String - Performance profile of the peer mdm instance.
- port Double
- Port of the peer mdm instance.
- software
Version StringInfo - Software version details of the peer mdm instance.
- source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- system
Id String - Unique identifier of the peer mdm system.
- add
Certificate boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- coupling
Rc string - Coupling return code number of the peer mdm system.
- destination
Primary PeerMdm Information System Destination Primary Mdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- ip
Lists string[] - List of ips for the peer mdm system.
- membership
State string - membership state of the peer mdm instance.
- name string
- Name of the peer mdm instance.
- network
Type string - Network type of the peer mdm system.
- peer
System stringId - Unique identifier of the peer mdm system.
- perf
Profile string - Performance profile of the peer mdm instance.
- port number
- Port of the peer mdm instance.
- software
Version stringInfo - Software version details of the peer mdm instance.
- source
Primary PeerMdm Information System Source Primary Mdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- system
Id string - Unique identifier of the peer mdm system.
- add_
certificate bool - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- coupling_
rc str - Coupling return code number of the peer mdm system.
- destination_
primary_ Peermdm_ information System Destination Primary Mdm Information Args - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- ip_
lists Sequence[str] - List of ips for the peer mdm system.
- membership_
state str - membership state of the peer mdm instance.
- name str
- Name of the peer mdm instance.
- network_
type str - Network type of the peer mdm system.
- peer_
system_ strid - Unique identifier of the peer mdm system.
- perf_
profile str - Performance profile of the peer mdm instance.
- port float
- Port of the peer mdm instance.
- software_
version_ strinfo - Software version details of the peer mdm instance.
- source_
primary_ Peermdm_ information System Source Primary Mdm Information Args - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- system_
id str - Unique identifier of the peer mdm system.
- add
Certificate Boolean - Flag that if set to true will attempt to add certificate of the peer mdm destination to source. This flag is only used during create.
- coupling
Rc String - Coupling return code number of the peer mdm system.
- destination
Primary Property MapMdm Information - Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
- ip
Lists List<String> - List of ips for the peer mdm system.
- membership
State String - membership state of the peer mdm instance.
- name String
- Name of the peer mdm instance.
- network
Type String - Network type of the peer mdm system.
- peer
System StringId - Unique identifier of the peer mdm system.
- perf
Profile String - Performance profile of the peer mdm instance.
- port Number
- Port of the peer mdm instance.
- software
Version StringInfo - Software version details of the peer mdm instance.
- source
Primary Property MapMdm Information - Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
- system
Id String - Unique identifier of the peer mdm system.
Supporting Types
PeerSystemDestinationPrimaryMdmInformation, PeerSystemDestinationPrimaryMdmInformationArgs
- Ip string
- ip of the primary destination mdm instance.
- Management
Ip string - ip of the destination management instance.
- Management
Password string - password of the management instance.
- Management
Username string - ssh username of the destination management instance.
- Ssh
Password string - ssh password of the primary destination mdm instance.
- Ssh
Port string - port of the primary destination mdm instance.
- Ssh
Username string - ssh username of the destination primary mdm instance.
- Ip string
- ip of the primary destination mdm instance.
- Management
Ip string - ip of the destination management instance.
- Management
Password string - password of the management instance.
- Management
Username string - ssh username of the destination management instance.
- Ssh
Password string - ssh password of the primary destination mdm instance.
- Ssh
Port string - port of the primary destination mdm instance.
- Ssh
Username string - ssh username of the destination primary mdm instance.
- ip String
- ip of the primary destination mdm instance.
- management
Ip String - ip of the destination management instance.
- management
Password String - password of the management instance.
- management
Username String - ssh username of the destination management instance.
- ssh
Password String - ssh password of the primary destination mdm instance.
- ssh
Port String - port of the primary destination mdm instance.
- ssh
Username String - ssh username of the destination primary mdm instance.
- ip string
- ip of the primary destination mdm instance.
- management
Ip string - ip of the destination management instance.
- management
Password string - password of the management instance.
- management
Username string - ssh username of the destination management instance.
- ssh
Password string - ssh password of the primary destination mdm instance.
- ssh
Port string - port of the primary destination mdm instance.
- ssh
Username string - ssh username of the destination primary mdm instance.
- ip str
- ip of the primary destination mdm instance.
- management_
ip str - ip of the destination management instance.
- management_
password str - password of the management instance.
- management_
username str - ssh username of the destination management instance.
- ssh_
password str - ssh password of the primary destination mdm instance.
- ssh_
port str - port of the primary destination mdm instance.
- ssh_
username str - ssh username of the destination primary mdm instance.
- ip String
- ip of the primary destination mdm instance.
- management
Ip String - ip of the destination management instance.
- management
Password String - password of the management instance.
- management
Username String - ssh username of the destination management instance.
- ssh
Password String - ssh password of the primary destination mdm instance.
- ssh
Port String - port of the primary destination mdm instance.
- ssh
Username String - ssh username of the destination primary mdm instance.
PeerSystemSourcePrimaryMdmInformation, PeerSystemSourcePrimaryMdmInformationArgs
- Ip string
- ip of the primary source mdm instance.
- Management
Ip string - ip of the source management instance.
- Management
Password string - password of the source instance.
- Management
Username string - ssh username of the source management instance.
- Ssh
Password string - ssh password of the source primary mdm instance.
- Ssh
Port string - port of the primary source mdm instance.
- Ssh
Username string - ssh username of the source primary mdm instance.
- Ip string
- ip of the primary source mdm instance.
- Management
Ip string - ip of the source management instance.
- Management
Password string - password of the source instance.
- Management
Username string - ssh username of the source management instance.
- Ssh
Password string - ssh password of the source primary mdm instance.
- Ssh
Port string - port of the primary source mdm instance.
- Ssh
Username string - ssh username of the source primary mdm instance.
- ip String
- ip of the primary source mdm instance.
- management
Ip String - ip of the source management instance.
- management
Password String - password of the source instance.
- management
Username String - ssh username of the source management instance.
- ssh
Password String - ssh password of the source primary mdm instance.
- ssh
Port String - port of the primary source mdm instance.
- ssh
Username String - ssh username of the source primary mdm instance.
- ip string
- ip of the primary source mdm instance.
- management
Ip string - ip of the source management instance.
- management
Password string - password of the source instance.
- management
Username string - ssh username of the source management instance.
- ssh
Password string - ssh password of the source primary mdm instance.
- ssh
Port string - port of the primary source mdm instance.
- ssh
Username string - ssh username of the source primary mdm instance.
- ip str
- ip of the primary source mdm instance.
- management_
ip str - ip of the source management instance.
- management_
password str - password of the source instance.
- management_
username str - ssh username of the source management instance.
- ssh_
password str - ssh password of the source primary mdm instance.
- ssh_
port str - port of the primary source mdm instance.
- ssh_
username str - ssh username of the source primary mdm instance.
- ip String
- ip of the primary source mdm instance.
- management
Ip String - ip of the source management instance.
- management
Password String - password of the source instance.
- management
Username String - ssh username of the source management instance.
- ssh
Password String - ssh password of the source primary mdm instance.
- ssh
Port String - port of the primary source mdm instance.
- ssh
Username String - ssh username of the source primary mdm instance.
Package Details
- Repository
- powerflex dell/terraform-provider-powerflex
- License
- Notes
- This Pulumi package is based on the
powerflex
Terraform Provider.