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

powerflex.NvmeTarget

Explore with Pulumi AI

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

    Import

    /*

    Copyright (c) 2023-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 NVMe target by its id

    $ pulumi import powerflex:index/nvmeTarget:NvmeTarget nvme_target_import_by_id "<id>"
    
    1. This will import the NVMe target 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 NvmeTarget Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NvmeTarget(name: string, args: NvmeTargetArgs, opts?: CustomResourceOptions);
    @overload
    def NvmeTarget(resource_name: str,
                   args: NvmeTargetArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def NvmeTarget(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   ip_lists: Optional[Sequence[NvmeTargetIpListArgs]] = None,
                   discovery_port: Optional[float] = None,
                   maintenance_state: Optional[str] = None,
                   name: Optional[str] = None,
                   nvme_port: Optional[float] = None,
                   protection_domain_id: Optional[str] = None,
                   protection_domain_name: Optional[str] = None,
                   storage_port: Optional[float] = None)
    func NewNvmeTarget(ctx *Context, name string, args NvmeTargetArgs, opts ...ResourceOption) (*NvmeTarget, error)
    public NvmeTarget(string name, NvmeTargetArgs args, CustomResourceOptions? opts = null)
    public NvmeTarget(String name, NvmeTargetArgs args)
    public NvmeTarget(String name, NvmeTargetArgs args, CustomResourceOptions options)
    
    type: powerflex:NvmeTarget
    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 NvmeTargetArgs
    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 NvmeTargetArgs
    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 NvmeTargetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NvmeTargetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NvmeTargetArgs
    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 nvmeTargetResource = new Powerflex.NvmeTarget("nvmeTargetResource", new()
    {
        IpLists = new[]
        {
            new Powerflex.Inputs.NvmeTargetIpListArgs
            {
                Ip = "string",
                Role = "string",
            },
        },
        DiscoveryPort = 0,
        MaintenanceState = "string",
        Name = "string",
        NvmePort = 0,
        ProtectionDomainId = "string",
        ProtectionDomainName = "string",
        StoragePort = 0,
    });
    
    example, err := powerflex.NewNvmeTarget(ctx, "nvmeTargetResource", &powerflex.NvmeTargetArgs{
    	IpLists: powerflex.NvmeTargetIpListArray{
    		&powerflex.NvmeTargetIpListArgs{
    			Ip:   pulumi.String("string"),
    			Role: pulumi.String("string"),
    		},
    	},
    	DiscoveryPort:        pulumi.Float64(0),
    	MaintenanceState:     pulumi.String("string"),
    	Name:                 pulumi.String("string"),
    	NvmePort:             pulumi.Float64(0),
    	ProtectionDomainId:   pulumi.String("string"),
    	ProtectionDomainName: pulumi.String("string"),
    	StoragePort:          pulumi.Float64(0),
    })
    
    var nvmeTargetResource = new NvmeTarget("nvmeTargetResource", NvmeTargetArgs.builder()
        .ipLists(NvmeTargetIpListArgs.builder()
            .ip("string")
            .role("string")
            .build())
        .discoveryPort(0)
        .maintenanceState("string")
        .name("string")
        .nvmePort(0)
        .protectionDomainId("string")
        .protectionDomainName("string")
        .storagePort(0)
        .build());
    
    nvme_target_resource = powerflex.NvmeTarget("nvmeTargetResource",
        ip_lists=[{
            "ip": "string",
            "role": "string",
        }],
        discovery_port=0,
        maintenance_state="string",
        name="string",
        nvme_port=0,
        protection_domain_id="string",
        protection_domain_name="string",
        storage_port=0)
    
    const nvmeTargetResource = new powerflex.NvmeTarget("nvmeTargetResource", {
        ipLists: [{
            ip: "string",
            role: "string",
        }],
        discoveryPort: 0,
        maintenanceState: "string",
        name: "string",
        nvmePort: 0,
        protectionDomainId: "string",
        protectionDomainName: "string",
        storagePort: 0,
    });
    
    type: powerflex:NvmeTarget
    properties:
        discoveryPort: 0
        ipLists:
            - ip: string
              role: string
        maintenanceState: string
        name: string
        nvmePort: 0
        protectionDomainId: string
        protectionDomainName: string
        storagePort: 0
    

    NvmeTarget 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 NvmeTarget resource accepts the following input properties:

    IpLists List<NvmeTargetIpList>
    List of IPs associated with the NVMe target.
    DiscoveryPort double
    The discovery port of the NVMe target (default: 8009).
    MaintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    Name string
    Name of the NVMe target
    NvmePort double
    The NVMe port of the NVMe target (default: 4420).
    ProtectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    ProtectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    StoragePort double
    The storage port of the NVMe target (default: 12200).
    IpLists []NvmeTargetIpListArgs
    List of IPs associated with the NVMe target.
    DiscoveryPort float64
    The discovery port of the NVMe target (default: 8009).
    MaintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    Name string
    Name of the NVMe target
    NvmePort float64
    The NVMe port of the NVMe target (default: 4420).
    ProtectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    ProtectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    StoragePort float64
    The storage port of the NVMe target (default: 12200).
    ipLists List<NvmeTargetIpList>
    List of IPs associated with the NVMe target.
    discoveryPort Double
    The discovery port of the NVMe target (default: 8009).
    maintenanceState String
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    name String
    Name of the NVMe target
    nvmePort Double
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId String
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName String
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    storagePort Double
    The storage port of the NVMe target (default: 12200).
    ipLists NvmeTargetIpList[]
    List of IPs associated with the NVMe target.
    discoveryPort number
    The discovery port of the NVMe target (default: 8009).
    maintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    name string
    Name of the NVMe target
    nvmePort number
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    storagePort number
    The storage port of the NVMe target (default: 12200).
    ip_lists Sequence[NvmeTargetIpListArgs]
    List of IPs associated with the NVMe target.
    discovery_port float
    The discovery port of the NVMe target (default: 8009).
    maintenance_state str
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    name str
    Name of the NVMe target
    nvme_port float
    The NVMe port of the NVMe target (default: 4420).
    protection_domain_id str
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protection_domain_name str
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    storage_port float
    The storage port of the NVMe target (default: 12200).
    ipLists List<Property Map>
    List of IPs associated with the NVMe target.
    discoveryPort Number
    The discovery port of the NVMe target (default: 8009).
    maintenanceState String
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    name String
    Name of the NVMe target
    nvmePort Number
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId String
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName String
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    storagePort Number
    The storage port of the NVMe target (default: 12200).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NvmeTarget resource produces the following output properties:

    AuthenticationError string
    The authentication error of the NVMe target.
    FaultSetId string
    The fault set ID of the NVMe target.
    Id string
    The provider-assigned unique ID for this managed resource.
    MdmConnectionState string
    The MDM connection state of the NVMe target.
    MembershipState string
    The membership state of the NVMe target.
    SdtState string
    The state of the NVMe target.
    SoftwareVersionInfo string
    The software version information of the NVMe target.
    SystemId string
    The ID of the system.
    AuthenticationError string
    The authentication error of the NVMe target.
    FaultSetId string
    The fault set ID of the NVMe target.
    Id string
    The provider-assigned unique ID for this managed resource.
    MdmConnectionState string
    The MDM connection state of the NVMe target.
    MembershipState string
    The membership state of the NVMe target.
    SdtState string
    The state of the NVMe target.
    SoftwareVersionInfo string
    The software version information of the NVMe target.
    SystemId string
    The ID of the system.
    authenticationError String
    The authentication error of the NVMe target.
    faultSetId String
    The fault set ID of the NVMe target.
    id String
    The provider-assigned unique ID for this managed resource.
    mdmConnectionState String
    The MDM connection state of the NVMe target.
    membershipState String
    The membership state of the NVMe target.
    sdtState String
    The state of the NVMe target.
    softwareVersionInfo String
    The software version information of the NVMe target.
    systemId String
    The ID of the system.
    authenticationError string
    The authentication error of the NVMe target.
    faultSetId string
    The fault set ID of the NVMe target.
    id string
    The provider-assigned unique ID for this managed resource.
    mdmConnectionState string
    The MDM connection state of the NVMe target.
    membershipState string
    The membership state of the NVMe target.
    sdtState string
    The state of the NVMe target.
    softwareVersionInfo string
    The software version information of the NVMe target.
    systemId string
    The ID of the system.
    authentication_error str
    The authentication error of the NVMe target.
    fault_set_id str
    The fault set ID of the NVMe target.
    id str
    The provider-assigned unique ID for this managed resource.
    mdm_connection_state str
    The MDM connection state of the NVMe target.
    membership_state str
    The membership state of the NVMe target.
    sdt_state str
    The state of the NVMe target.
    software_version_info str
    The software version information of the NVMe target.
    system_id str
    The ID of the system.
    authenticationError String
    The authentication error of the NVMe target.
    faultSetId String
    The fault set ID of the NVMe target.
    id String
    The provider-assigned unique ID for this managed resource.
    mdmConnectionState String
    The MDM connection state of the NVMe target.
    membershipState String
    The membership state of the NVMe target.
    sdtState String
    The state of the NVMe target.
    softwareVersionInfo String
    The software version information of the NVMe target.
    systemId String
    The ID of the system.

    Look up Existing NvmeTarget Resource

    Get an existing NvmeTarget 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?: NvmeTargetState, opts?: CustomResourceOptions): NvmeTarget
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_error: Optional[str] = None,
            discovery_port: Optional[float] = None,
            fault_set_id: Optional[str] = None,
            ip_lists: Optional[Sequence[NvmeTargetIpListArgs]] = None,
            maintenance_state: Optional[str] = None,
            mdm_connection_state: Optional[str] = None,
            membership_state: Optional[str] = None,
            name: Optional[str] = None,
            nvme_port: Optional[float] = None,
            protection_domain_id: Optional[str] = None,
            protection_domain_name: Optional[str] = None,
            sdt_state: Optional[str] = None,
            software_version_info: Optional[str] = None,
            storage_port: Optional[float] = None,
            system_id: Optional[str] = None) -> NvmeTarget
    func GetNvmeTarget(ctx *Context, name string, id IDInput, state *NvmeTargetState, opts ...ResourceOption) (*NvmeTarget, error)
    public static NvmeTarget Get(string name, Input<string> id, NvmeTargetState? state, CustomResourceOptions? opts = null)
    public static NvmeTarget get(String name, Output<String> id, NvmeTargetState state, CustomResourceOptions options)
    resources:  _:    type: powerflex:NvmeTarget    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:
    AuthenticationError string
    The authentication error of the NVMe target.
    DiscoveryPort double
    The discovery port of the NVMe target (default: 8009).
    FaultSetId string
    The fault set ID of the NVMe target.
    IpLists List<NvmeTargetIpList>
    List of IPs associated with the NVMe target.
    MaintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    MdmConnectionState string
    The MDM connection state of the NVMe target.
    MembershipState string
    The membership state of the NVMe target.
    Name string
    Name of the NVMe target
    NvmePort double
    The NVMe port of the NVMe target (default: 4420).
    ProtectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    ProtectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    SdtState string
    The state of the NVMe target.
    SoftwareVersionInfo string
    The software version information of the NVMe target.
    StoragePort double
    The storage port of the NVMe target (default: 12200).
    SystemId string
    The ID of the system.
    AuthenticationError string
    The authentication error of the NVMe target.
    DiscoveryPort float64
    The discovery port of the NVMe target (default: 8009).
    FaultSetId string
    The fault set ID of the NVMe target.
    IpLists []NvmeTargetIpListArgs
    List of IPs associated with the NVMe target.
    MaintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    MdmConnectionState string
    The MDM connection state of the NVMe target.
    MembershipState string
    The membership state of the NVMe target.
    Name string
    Name of the NVMe target
    NvmePort float64
    The NVMe port of the NVMe target (default: 4420).
    ProtectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    ProtectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    SdtState string
    The state of the NVMe target.
    SoftwareVersionInfo string
    The software version information of the NVMe target.
    StoragePort float64
    The storage port of the NVMe target (default: 12200).
    SystemId string
    The ID of the system.
    authenticationError String
    The authentication error of the NVMe target.
    discoveryPort Double
    The discovery port of the NVMe target (default: 8009).
    faultSetId String
    The fault set ID of the NVMe target.
    ipLists List<NvmeTargetIpList>
    List of IPs associated with the NVMe target.
    maintenanceState String
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    mdmConnectionState String
    The MDM connection state of the NVMe target.
    membershipState String
    The membership state of the NVMe target.
    name String
    Name of the NVMe target
    nvmePort Double
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId String
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName String
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    sdtState String
    The state of the NVMe target.
    softwareVersionInfo String
    The software version information of the NVMe target.
    storagePort Double
    The storage port of the NVMe target (default: 12200).
    systemId String
    The ID of the system.
    authenticationError string
    The authentication error of the NVMe target.
    discoveryPort number
    The discovery port of the NVMe target (default: 8009).
    faultSetId string
    The fault set ID of the NVMe target.
    ipLists NvmeTargetIpList[]
    List of IPs associated with the NVMe target.
    maintenanceState string
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    mdmConnectionState string
    The MDM connection state of the NVMe target.
    membershipState string
    The membership state of the NVMe target.
    name string
    Name of the NVMe target
    nvmePort number
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId string
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName string
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    sdtState string
    The state of the NVMe target.
    softwareVersionInfo string
    The software version information of the NVMe target.
    storagePort number
    The storage port of the NVMe target (default: 12200).
    systemId string
    The ID of the system.
    authentication_error str
    The authentication error of the NVMe target.
    discovery_port float
    The discovery port of the NVMe target (default: 8009).
    fault_set_id str
    The fault set ID of the NVMe target.
    ip_lists Sequence[NvmeTargetIpListArgs]
    List of IPs associated with the NVMe target.
    maintenance_state str
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    mdm_connection_state str
    The MDM connection state of the NVMe target.
    membership_state str
    The membership state of the NVMe target.
    name str
    Name of the NVMe target
    nvme_port float
    The NVMe port of the NVMe target (default: 4420).
    protection_domain_id str
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protection_domain_name str
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    sdt_state str
    The state of the NVMe target.
    software_version_info str
    The software version information of the NVMe target.
    storage_port float
    The storage port of the NVMe target (default: 12200).
    system_id str
    The ID of the system.
    authenticationError String
    The authentication error of the NVMe target.
    discoveryPort Number
    The discovery port of the NVMe target (default: 8009).
    faultSetId String
    The fault set ID of the NVMe target.
    ipLists List<Property Map>
    List of IPs associated with the NVMe target.
    maintenanceState String
    The maintenance state of the NVMe target. Active to trigger enter maintenance mode; Inactive to exit maintenance mode.
    mdmConnectionState String
    The MDM connection state of the NVMe target.
    membershipState String
    The membership state of the NVMe target.
    name String
    Name of the NVMe target
    nvmePort Number
    The NVMe port of the NVMe target (default: 4420).
    protectionDomainId String
    ID of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainname'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    protectionDomainName String
    Name of the Protection Domain under which the NVMe target will be created. Conflicts with 'protectiondomainid'. Cannot be updated.Note: Either protection_domain_id or protection_domain_name must be specified.
    sdtState String
    The state of the NVMe target.
    softwareVersionInfo String
    The software version information of the NVMe target.
    storagePort Number
    The storage port of the NVMe target (default: 12200).
    systemId String
    The ID of the system.

    Supporting Types

    NvmeTargetIpList, NvmeTargetIpListArgs

    Ip string
    NVMe Target IP.
    Role string
    NVMe Target IP role.
    Ip string
    NVMe Target IP.
    Role string
    NVMe Target IP role.
    ip String
    NVMe Target IP.
    role String
    NVMe Target IP role.
    ip string
    NVMe Target IP.
    role string
    NVMe Target IP role.
    ip str
    NVMe Target IP.
    role str
    NVMe Target IP role.
    ip String
    NVMe Target IP.
    role String
    NVMe Target IP role.

    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