1. Packages
  2. Powerflex Provider
  3. API Docs
  4. PeerSystem
powerflex 1.8.0 published on Monday, Apr 14, 2025 by dell

powerflex.PeerSystem

Explore with Pulumi AI

powerflex logo
powerflex 1.8.0 published on Monday, Apr 14, 2025 by dell

    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>"
    
    1. This will import the resource instance with specified ID into your Terraform state.

    2. After successful import, you can run terraform state list to ensure the resource has been imported successfully.

    3. Now, you can fill in the resource block with the appropriate arguments and settings that match the imported resource’s real-world configuration.

    4. Execute pulumi preview to see if your configuration and the imported resource are in sync. Make adjustments if needed.

    5. Finally, execute pulumi up to bring the resource fully under Terraform’s management.

    6. 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:

    IpLists List<string>
    List of ips for the peer mdm system.
    PeerSystemId string
    Unique identifier of the peer mdm system.
    AddCertificate 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.
    DestinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    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.
    PerfProfile string
    Performance profile of the peer mdm instance.
    Port double
    Port of the peer mdm instance.
    SourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    IpLists []string
    List of ips for the peer mdm system.
    PeerSystemId string
    Unique identifier of the peer mdm system.
    AddCertificate 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.
    DestinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformationArgs
    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.
    PerfProfile string
    Performance profile of the peer mdm instance.
    Port float64
    Port of the peer mdm instance.
    SourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformationArgs
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    ipLists List<String>
    List of ips for the peer mdm system.
    peerSystemId String
    Unique identifier of the peer mdm system.
    addCertificate 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.
    destinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    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.
    perfProfile String
    Performance profile of the peer mdm instance.
    port Double
    Port of the peer mdm instance.
    sourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    ipLists string[]
    List of ips for the peer mdm system.
    peerSystemId string
    Unique identifier of the peer mdm system.
    addCertificate 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.
    destinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    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.
    perfProfile string
    Performance profile of the peer mdm instance.
    port number
    Port of the peer mdm instance.
    sourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    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_id str
    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_mdm_information PeerSystemDestinationPrimaryMdmInformationArgs
    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_mdm_information PeerSystemSourcePrimaryMdmInformationArgs
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    ipLists List<String>
    List of ips for the peer mdm system.
    peerSystemId String
    Unique identifier of the peer mdm system.
    addCertificate 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.
    destinationPrimaryMdmInformation Property Map
    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.
    perfProfile String
    Performance profile of the peer mdm instance.
    port Number
    Port of the peer mdm instance.
    sourcePrimaryMdmInformation Property Map
    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:

    CouplingRc string
    Coupling return code number of the peer mdm system.
    Id string
    The provider-assigned unique ID for this managed resource.
    MembershipState string
    membership state of the peer mdm instance.
    NetworkType string
    Network type of the peer mdm system.
    SoftwareVersionInfo string
    Software version details of the peer mdm instance.
    SystemId string
    Unique identifier of the peer mdm system.
    CouplingRc string
    Coupling return code number of the peer mdm system.
    Id string
    The provider-assigned unique ID for this managed resource.
    MembershipState string
    membership state of the peer mdm instance.
    NetworkType string
    Network type of the peer mdm system.
    SoftwareVersionInfo string
    Software version details of the peer mdm instance.
    SystemId string
    Unique identifier of the peer mdm system.
    couplingRc String
    Coupling return code number of the peer mdm system.
    id String
    The provider-assigned unique ID for this managed resource.
    membershipState String
    membership state of the peer mdm instance.
    networkType String
    Network type of the peer mdm system.
    softwareVersionInfo String
    Software version details of the peer mdm instance.
    systemId String
    Unique identifier of the peer mdm system.
    couplingRc string
    Coupling return code number of the peer mdm system.
    id string
    The provider-assigned unique ID for this managed resource.
    membershipState string
    membership state of the peer mdm instance.
    networkType string
    Network type of the peer mdm system.
    softwareVersionInfo string
    Software version details of the peer mdm instance.
    systemId 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_info str
    Software version details of the peer mdm instance.
    system_id str
    Unique identifier of the peer mdm system.
    couplingRc String
    Coupling return code number of the peer mdm system.
    id String
    The provider-assigned unique ID for this managed resource.
    membershipState String
    membership state of the peer mdm instance.
    networkType String
    Network type of the peer mdm system.
    softwareVersionInfo String
    Software version details of the peer mdm instance.
    systemId 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.
    The following state arguments are supported:
    AddCertificate 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.
    CouplingRc string
    Coupling return code number of the peer mdm system.
    DestinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
    IpLists List<string>
    List of ips for the peer mdm system.
    MembershipState string
    membership state of the peer mdm instance.
    Name string
    Name of the peer mdm instance.
    NetworkType string
    Network type of the peer mdm system.
    PeerSystemId string
    Unique identifier of the peer mdm system.
    PerfProfile string
    Performance profile of the peer mdm instance.
    Port double
    Port of the peer mdm instance.
    SoftwareVersionInfo string
    Software version details of the peer mdm instance.
    SourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    SystemId string
    Unique identifier of the peer mdm system.
    AddCertificate 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.
    CouplingRc string
    Coupling return code number of the peer mdm system.
    DestinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformationArgs
    Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
    IpLists []string
    List of ips for the peer mdm system.
    MembershipState string
    membership state of the peer mdm instance.
    Name string
    Name of the peer mdm instance.
    NetworkType string
    Network type of the peer mdm system.
    PeerSystemId string
    Unique identifier of the peer mdm system.
    PerfProfile string
    Performance profile of the peer mdm instance.
    Port float64
    Port of the peer mdm instance.
    SoftwareVersionInfo string
    Software version details of the peer mdm instance.
    SourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformationArgs
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    SystemId string
    Unique identifier of the peer mdm system.
    addCertificate 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.
    couplingRc String
    Coupling return code number of the peer mdm system.
    destinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
    ipLists List<String>
    List of ips for the peer mdm system.
    membershipState String
    membership state of the peer mdm instance.
    name String
    Name of the peer mdm instance.
    networkType String
    Network type of the peer mdm system.
    peerSystemId String
    Unique identifier of the peer mdm system.
    perfProfile String
    Performance profile of the peer mdm instance.
    port Double
    Port of the peer mdm instance.
    softwareVersionInfo String
    Software version details of the peer mdm instance.
    sourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    systemId String
    Unique identifier of the peer mdm system.
    addCertificate 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.
    couplingRc string
    Coupling return code number of the peer mdm system.
    destinationPrimaryMdmInformation PeerSystemDestinationPrimaryMdmInformation
    Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
    ipLists string[]
    List of ips for the peer mdm system.
    membershipState string
    membership state of the peer mdm instance.
    name string
    Name of the peer mdm instance.
    networkType string
    Network type of the peer mdm system.
    peerSystemId string
    Unique identifier of the peer mdm system.
    perfProfile string
    Performance profile of the peer mdm instance.
    port number
    Port of the peer mdm instance.
    softwareVersionInfo string
    Software version details of the peer mdm instance.
    sourcePrimaryMdmInformation PeerSystemSourcePrimaryMdmInformation
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    systemId 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_mdm_information PeerSystemDestinationPrimaryMdmInformationArgs
    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_id str
    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_info str
    Software version details of the peer mdm instance.
    source_primary_mdm_information PeerSystemSourcePrimaryMdmInformationArgs
    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.
    addCertificate 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.
    couplingRc String
    Coupling return code number of the peer mdm system.
    destinationPrimaryMdmInformation Property Map
    Only used if add*certificate is set to true during create. The destination primary mdm information to get the root certificate.
    ipLists List<String>
    List of ips for the peer mdm system.
    membershipState String
    membership state of the peer mdm instance.
    name String
    Name of the peer mdm instance.
    networkType String
    Network type of the peer mdm system.
    peerSystemId String
    Unique identifier of the peer mdm system.
    perfProfile String
    Performance profile of the peer mdm instance.
    port Number
    Port of the peer mdm instance.
    softwareVersionInfo String
    Software version details of the peer mdm instance.
    sourcePrimaryMdmInformation Property Map
    Only used if add*certificate is set to true during create. The source primary mdm information to get the root certificate.
    systemId String
    Unique identifier of the peer mdm system.

    Supporting Types

    PeerSystemDestinationPrimaryMdmInformation, PeerSystemDestinationPrimaryMdmInformationArgs

    Ip string
    ip of the primary destination mdm instance.
    ManagementIp string
    ip of the destination management instance.
    ManagementPassword string
    password of the management instance.
    ManagementUsername string
    ssh username of the destination management instance.
    SshPassword string
    ssh password of the primary destination mdm instance.
    SshPort string
    port of the primary destination mdm instance.
    SshUsername string
    ssh username of the destination primary mdm instance.
    Ip string
    ip of the primary destination mdm instance.
    ManagementIp string
    ip of the destination management instance.
    ManagementPassword string
    password of the management instance.
    ManagementUsername string
    ssh username of the destination management instance.
    SshPassword string
    ssh password of the primary destination mdm instance.
    SshPort string
    port of the primary destination mdm instance.
    SshUsername string
    ssh username of the destination primary mdm instance.
    ip String
    ip of the primary destination mdm instance.
    managementIp String
    ip of the destination management instance.
    managementPassword String
    password of the management instance.
    managementUsername String
    ssh username of the destination management instance.
    sshPassword String
    ssh password of the primary destination mdm instance.
    sshPort String
    port of the primary destination mdm instance.
    sshUsername String
    ssh username of the destination primary mdm instance.
    ip string
    ip of the primary destination mdm instance.
    managementIp string
    ip of the destination management instance.
    managementPassword string
    password of the management instance.
    managementUsername string
    ssh username of the destination management instance.
    sshPassword string
    ssh password of the primary destination mdm instance.
    sshPort string
    port of the primary destination mdm instance.
    sshUsername 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.
    managementIp String
    ip of the destination management instance.
    managementPassword String
    password of the management instance.
    managementUsername String
    ssh username of the destination management instance.
    sshPassword String
    ssh password of the primary destination mdm instance.
    sshPort String
    port of the primary destination mdm instance.
    sshUsername String
    ssh username of the destination primary mdm instance.

    PeerSystemSourcePrimaryMdmInformation, PeerSystemSourcePrimaryMdmInformationArgs

    Ip string
    ip of the primary source mdm instance.
    ManagementIp string
    ip of the source management instance.
    ManagementPassword string
    password of the source instance.
    ManagementUsername string
    ssh username of the source management instance.
    SshPassword string
    ssh password of the source primary mdm instance.
    SshPort string
    port of the primary source mdm instance.
    SshUsername string
    ssh username of the source primary mdm instance.
    Ip string
    ip of the primary source mdm instance.
    ManagementIp string
    ip of the source management instance.
    ManagementPassword string
    password of the source instance.
    ManagementUsername string
    ssh username of the source management instance.
    SshPassword string
    ssh password of the source primary mdm instance.
    SshPort string
    port of the primary source mdm instance.
    SshUsername string
    ssh username of the source primary mdm instance.
    ip String
    ip of the primary source mdm instance.
    managementIp String
    ip of the source management instance.
    managementPassword String
    password of the source instance.
    managementUsername String
    ssh username of the source management instance.
    sshPassword String
    ssh password of the source primary mdm instance.
    sshPort String
    port of the primary source mdm instance.
    sshUsername String
    ssh username of the source primary mdm instance.
    ip string
    ip of the primary source mdm instance.
    managementIp string
    ip of the source management instance.
    managementPassword string
    password of the source instance.
    managementUsername string
    ssh username of the source management instance.
    sshPassword string
    ssh password of the source primary mdm instance.
    sshPort string
    port of the primary source mdm instance.
    sshUsername 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.
    managementIp String
    ip of the source management instance.
    managementPassword String
    password of the source instance.
    managementUsername String
    ssh username of the source management instance.
    sshPassword String
    ssh password of the source primary mdm instance.
    sshPort String
    port of the primary source mdm instance.
    sshUsername 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.
    powerflex logo
    powerflex 1.8.0 published on Monday, Apr 14, 2025 by dell