1. Packages
  2. AWS Classic
  3. API Docs
  4. fsx
  5. getOntapStorageVirtualMachine

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.33.0 published on Wednesday, May 1, 2024 by Pulumi

aws.fsx.getOntapStorageVirtualMachine

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.33.0 published on Wednesday, May 1, 2024 by Pulumi

    Retrieve information on FSx ONTAP Storage Virtual Machine (SVM).

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.fsx.getOntapStorageVirtualMachine({
        id: "svm-12345678",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.fsx.get_ontap_storage_virtual_machine(id="svm-12345678")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fsx.LookupOntapStorageVirtualMachine(ctx, &fsx.LookupOntapStorageVirtualMachineArgs{
    			Id: pulumi.StringRef("svm-12345678"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Aws.Fsx.GetOntapStorageVirtualMachine.Invoke(new()
        {
            Id = "svm-12345678",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.fsx.FsxFunctions;
    import com.pulumi.aws.fsx.inputs.GetOntapStorageVirtualMachineArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = FsxFunctions.getOntapStorageVirtualMachine(GetOntapStorageVirtualMachineArgs.builder()
                .id("svm-12345678")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: aws:fsx:getOntapStorageVirtualMachine
          Arguments:
            id: svm-12345678
    

    Filter Example

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.fsx.getOntapStorageVirtualMachine({
        filters: [{
            name: "file-system-id",
            values: ["fs-12345678"],
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.fsx.get_ontap_storage_virtual_machine(filters=[aws.fsx.GetOntapStorageVirtualMachineFilterArgs(
        name="file-system-id",
        values=["fs-12345678"],
    )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fsx.LookupOntapStorageVirtualMachine(ctx, &fsx.LookupOntapStorageVirtualMachineArgs{
    			Filters: []fsx.GetOntapStorageVirtualMachineFilter{
    				{
    					Name: "file-system-id",
    					Values: []string{
    						"fs-12345678",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Aws.Fsx.GetOntapStorageVirtualMachine.Invoke(new()
        {
            Filters = new[]
            {
                new Aws.Fsx.Inputs.GetOntapStorageVirtualMachineFilterInputArgs
                {
                    Name = "file-system-id",
                    Values = new[]
                    {
                        "fs-12345678",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.fsx.FsxFunctions;
    import com.pulumi.aws.fsx.inputs.GetOntapStorageVirtualMachineArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = FsxFunctions.getOntapStorageVirtualMachine(GetOntapStorageVirtualMachineArgs.builder()
                .filters(GetOntapStorageVirtualMachineFilterArgs.builder()
                    .name("file-system-id")
                    .values("fs-12345678")
                    .build())
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: aws:fsx:getOntapStorageVirtualMachine
          Arguments:
            filters:
              - name: file-system-id
                values:
                  - fs-12345678
    

    Using getOntapStorageVirtualMachine

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getOntapStorageVirtualMachine(args: GetOntapStorageVirtualMachineArgs, opts?: InvokeOptions): Promise<GetOntapStorageVirtualMachineResult>
    function getOntapStorageVirtualMachineOutput(args: GetOntapStorageVirtualMachineOutputArgs, opts?: InvokeOptions): Output<GetOntapStorageVirtualMachineResult>
    def get_ontap_storage_virtual_machine(filters: Optional[Sequence[GetOntapStorageVirtualMachineFilter]] = None,
                                          id: Optional[str] = None,
                                          tags: Optional[Mapping[str, str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetOntapStorageVirtualMachineResult
    def get_ontap_storage_virtual_machine_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOntapStorageVirtualMachineFilterArgs]]]] = None,
                                          id: Optional[pulumi.Input[str]] = None,
                                          tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetOntapStorageVirtualMachineResult]
    func LookupOntapStorageVirtualMachine(ctx *Context, args *LookupOntapStorageVirtualMachineArgs, opts ...InvokeOption) (*LookupOntapStorageVirtualMachineResult, error)
    func LookupOntapStorageVirtualMachineOutput(ctx *Context, args *LookupOntapStorageVirtualMachineOutputArgs, opts ...InvokeOption) LookupOntapStorageVirtualMachineResultOutput

    > Note: This function is named LookupOntapStorageVirtualMachine in the Go SDK.

    public static class GetOntapStorageVirtualMachine 
    {
        public static Task<GetOntapStorageVirtualMachineResult> InvokeAsync(GetOntapStorageVirtualMachineArgs args, InvokeOptions? opts = null)
        public static Output<GetOntapStorageVirtualMachineResult> Invoke(GetOntapStorageVirtualMachineInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOntapStorageVirtualMachineResult> getOntapStorageVirtualMachine(GetOntapStorageVirtualMachineArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: aws:fsx/getOntapStorageVirtualMachine:getOntapStorageVirtualMachine
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<Pulumi.Aws.Fsx.Inputs.GetOntapStorageVirtualMachineFilter>
    Configuration block. Detailed below.
    Id string
    Identifier of the storage virtual machine (e.g. svm-12345678).
    Tags Dictionary<string, string>
    Filters []GetOntapStorageVirtualMachineFilter
    Configuration block. Detailed below.
    Id string
    Identifier of the storage virtual machine (e.g. svm-12345678).
    Tags map[string]string
    filters List<GetOntapStorageVirtualMachineFilter>
    Configuration block. Detailed below.
    id String
    Identifier of the storage virtual machine (e.g. svm-12345678).
    tags Map<String,String>
    filters GetOntapStorageVirtualMachineFilter[]
    Configuration block. Detailed below.
    id string
    Identifier of the storage virtual machine (e.g. svm-12345678).
    tags {[key: string]: string}
    filters Sequence[GetOntapStorageVirtualMachineFilter]
    Configuration block. Detailed below.
    id str
    Identifier of the storage virtual machine (e.g. svm-12345678).
    tags Mapping[str, str]
    filters List<Property Map>
    Configuration block. Detailed below.
    id String
    Identifier of the storage virtual machine (e.g. svm-12345678).
    tags Map<String>

    getOntapStorageVirtualMachine Result

    The following output properties are available:

    ActiveDirectoryConfigurations List<Pulumi.Aws.Fsx.Outputs.GetOntapStorageVirtualMachineActiveDirectoryConfiguration>
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    Arn string
    Amazon Resource Name of the SVM.
    CreationTime string
    The time that the SVM was created.
    Endpoints List<Pulumi.Aws.Fsx.Outputs.GetOntapStorageVirtualMachineEndpoint>
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    FileSystemId string
    Identifier of the file system (e.g. fs-12345678).
    Id string
    The SVM's system generated unique ID.
    LifecycleStatus string
    The SVM's lifecycle status.
    LifecycleTransitionReasons List<Pulumi.Aws.Fsx.Outputs.GetOntapStorageVirtualMachineLifecycleTransitionReason>
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    Name string
    The name of the SVM, if provisioned.
    Subtype string
    The SVM's subtype.
    Tags Dictionary<string, string>
    Uuid string
    The SVM's UUID.
    Filters List<Pulumi.Aws.Fsx.Outputs.GetOntapStorageVirtualMachineFilter>
    ActiveDirectoryConfigurations []GetOntapStorageVirtualMachineActiveDirectoryConfiguration
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    Arn string
    Amazon Resource Name of the SVM.
    CreationTime string
    The time that the SVM was created.
    Endpoints []GetOntapStorageVirtualMachineEndpoint
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    FileSystemId string
    Identifier of the file system (e.g. fs-12345678).
    Id string
    The SVM's system generated unique ID.
    LifecycleStatus string
    The SVM's lifecycle status.
    LifecycleTransitionReasons []GetOntapStorageVirtualMachineLifecycleTransitionReason
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    Name string
    The name of the SVM, if provisioned.
    Subtype string
    The SVM's subtype.
    Tags map[string]string
    Uuid string
    The SVM's UUID.
    Filters []GetOntapStorageVirtualMachineFilter
    activeDirectoryConfigurations List<GetOntapStorageVirtualMachineActiveDirectoryConfiguration>
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    arn String
    Amazon Resource Name of the SVM.
    creationTime String
    The time that the SVM was created.
    endpoints List<GetOntapStorageVirtualMachineEndpoint>
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    fileSystemId String
    Identifier of the file system (e.g. fs-12345678).
    id String
    The SVM's system generated unique ID.
    lifecycleStatus String
    The SVM's lifecycle status.
    lifecycleTransitionReasons List<GetOntapStorageVirtualMachineLifecycleTransitionReason>
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    name String
    The name of the SVM, if provisioned.
    subtype String
    The SVM's subtype.
    tags Map<String,String>
    uuid String
    The SVM's UUID.
    filters List<GetOntapStorageVirtualMachineFilter>
    activeDirectoryConfigurations GetOntapStorageVirtualMachineActiveDirectoryConfiguration[]
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    arn string
    Amazon Resource Name of the SVM.
    creationTime string
    The time that the SVM was created.
    endpoints GetOntapStorageVirtualMachineEndpoint[]
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    fileSystemId string
    Identifier of the file system (e.g. fs-12345678).
    id string
    The SVM's system generated unique ID.
    lifecycleStatus string
    The SVM's lifecycle status.
    lifecycleTransitionReasons GetOntapStorageVirtualMachineLifecycleTransitionReason[]
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    name string
    The name of the SVM, if provisioned.
    subtype string
    The SVM's subtype.
    tags {[key: string]: string}
    uuid string
    The SVM's UUID.
    filters GetOntapStorageVirtualMachineFilter[]
    active_directory_configurations Sequence[GetOntapStorageVirtualMachineActiveDirectoryConfiguration]
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    arn str
    Amazon Resource Name of the SVM.
    creation_time str
    The time that the SVM was created.
    endpoints Sequence[GetOntapStorageVirtualMachineEndpoint]
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    file_system_id str
    Identifier of the file system (e.g. fs-12345678).
    id str
    The SVM's system generated unique ID.
    lifecycle_status str
    The SVM's lifecycle status.
    lifecycle_transition_reasons Sequence[GetOntapStorageVirtualMachineLifecycleTransitionReason]
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    name str
    The name of the SVM, if provisioned.
    subtype str
    The SVM's subtype.
    tags Mapping[str, str]
    uuid str
    The SVM's UUID.
    filters Sequence[GetOntapStorageVirtualMachineFilter]
    activeDirectoryConfigurations List<Property Map>
    The Microsoft Active Directory configuration to which the SVM is joined, if applicable. See Active Directory Configuration below.
    arn String
    Amazon Resource Name of the SVM.
    creationTime String
    The time that the SVM was created.
    endpoints List<Property Map>
    The endpoints that are used to access data or to manage the SVM using the NetApp ONTAP CLI, REST API, or NetApp CloudManager. They are the Iscsi, Management, Nfs, and Smb endpoints. See SVM Endpoints below.
    fileSystemId String
    Identifier of the file system (e.g. fs-12345678).
    id String
    The SVM's system generated unique ID.
    lifecycleStatus String
    The SVM's lifecycle status.
    lifecycleTransitionReasons List<Property Map>
    Describes why the SVM lifecycle state changed. See Lifecycle Transition Reason below.
    name String
    The name of the SVM, if provisioned.
    subtype String
    The SVM's subtype.
    tags Map<String>
    uuid String
    The SVM's UUID.
    filters List<Property Map>

    Supporting Types

    GetOntapStorageVirtualMachineActiveDirectoryConfiguration

    netbiosName String
    The NetBIOS name of the AD computer object to which the SVM is joined.
    selfManagedActiveDirectoryConfigurations List<Property Map>

    GetOntapStorageVirtualMachineActiveDirectoryConfigurationSelfManagedActiveDirectoryConfiguration

    DnsIps List<string>
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    DomainName string
    The fully qualified domain name of the self-managed AD directory.
    FileSystemAdministratorsGroup string
    The name of the domain group whose members have administrative privileges for the FSx file system.
    OrganizationalUnitDistinguishedName string
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    Username string
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.
    DnsIps []string
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    DomainName string
    The fully qualified domain name of the self-managed AD directory.
    FileSystemAdministratorsGroup string
    The name of the domain group whose members have administrative privileges for the FSx file system.
    OrganizationalUnitDistinguishedName string
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    Username string
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.
    dnsIps List<String>
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    domainName String
    The fully qualified domain name of the self-managed AD directory.
    fileSystemAdministratorsGroup String
    The name of the domain group whose members have administrative privileges for the FSx file system.
    organizationalUnitDistinguishedName String
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    username String
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.
    dnsIps string[]
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    domainName string
    The fully qualified domain name of the self-managed AD directory.
    fileSystemAdministratorsGroup string
    The name of the domain group whose members have administrative privileges for the FSx file system.
    organizationalUnitDistinguishedName string
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    username string
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.
    dns_ips Sequence[str]
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    domain_name str
    The fully qualified domain name of the self-managed AD directory.
    file_system_administrators_group str
    The name of the domain group whose members have administrative privileges for the FSx file system.
    organizational_unit_distinguished_name str
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    username str
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.
    dnsIps List<String>
    A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
    domainName String
    The fully qualified domain name of the self-managed AD directory.
    fileSystemAdministratorsGroup String
    The name of the domain group whose members have administrative privileges for the FSx file system.
    organizationalUnitDistinguishedName String
    The fully qualified distinguished name of the organizational unit within the self-managed AD directory to which the Windows File Server or ONTAP storage virtual machine (SVM) instance is joined.
    username String
    The user name for the service account on your self-managed AD domain that FSx uses to join to your AD domain.

    GetOntapStorageVirtualMachineEndpoint

    Iscsis List<Pulumi.Aws.Fsx.Inputs.GetOntapStorageVirtualMachineEndpointIscsi>
    Managements List<Pulumi.Aws.Fsx.Inputs.GetOntapStorageVirtualMachineEndpointManagement>
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    Nfs List<Pulumi.Aws.Fsx.Inputs.GetOntapStorageVirtualMachineEndpointNf>
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    Smbs List<Pulumi.Aws.Fsx.Inputs.GetOntapStorageVirtualMachineEndpointSmb>
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
    Iscsis []GetOntapStorageVirtualMachineEndpointIscsi
    Managements []GetOntapStorageVirtualMachineEndpointManagement
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    Nfs []GetOntapStorageVirtualMachineEndpointNf
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    Smbs []GetOntapStorageVirtualMachineEndpointSmb
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
    iscsis List<GetOntapStorageVirtualMachineEndpointIscsi>
    managements List<GetOntapStorageVirtualMachineEndpointManagement>
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    nfs List<GetOntapStorageVirtualMachineEndpointNf>
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    smbs List<GetOntapStorageVirtualMachineEndpointSmb>
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
    iscsis GetOntapStorageVirtualMachineEndpointIscsi[]
    managements GetOntapStorageVirtualMachineEndpointManagement[]
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    nfs GetOntapStorageVirtualMachineEndpointNf[]
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    smbs GetOntapStorageVirtualMachineEndpointSmb[]
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
    iscsis Sequence[GetOntapStorageVirtualMachineEndpointIscsi]
    managements Sequence[GetOntapStorageVirtualMachineEndpointManagement]
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    nfs Sequence[GetOntapStorageVirtualMachineEndpointNf]
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    smbs Sequence[GetOntapStorageVirtualMachineEndpointSmb]
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
    iscsis List<Property Map>
    managements List<Property Map>
    An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
    nfs List<Property Map>
    An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
    smbs List<Property Map>
    An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.

    GetOntapStorageVirtualMachineEndpointIscsi

    DnsName string
    IpAddresses List<string>
    DnsName string
    IpAddresses []string
    dnsName String
    ipAddresses List<String>
    dnsName string
    ipAddresses string[]
    dns_name str
    ip_addresses Sequence[str]
    dnsName String
    ipAddresses List<String>

    GetOntapStorageVirtualMachineEndpointManagement

    DnsName string
    IpAddresses List<string>
    DnsName string
    IpAddresses []string
    dnsName String
    ipAddresses List<String>
    dnsName string
    ipAddresses string[]
    dns_name str
    ip_addresses Sequence[str]
    dnsName String
    ipAddresses List<String>

    GetOntapStorageVirtualMachineEndpointNf

    DnsName string
    IpAddresses List<string>
    DnsName string
    IpAddresses []string
    dnsName String
    ipAddresses List<String>
    dnsName string
    ipAddresses string[]
    dns_name str
    ip_addresses Sequence[str]
    dnsName String
    ipAddresses List<String>

    GetOntapStorageVirtualMachineEndpointSmb

    DnsName string
    IpAddresses List<string>
    DnsName string
    IpAddresses []string
    dnsName String
    ipAddresses List<String>
    dnsName string
    ipAddresses string[]
    dns_name str
    ip_addresses Sequence[str]
    dnsName String
    ipAddresses List<String>

    GetOntapStorageVirtualMachineFilter

    Name string
    Name of the field to filter by, as defined by the underlying AWS API.
    Values List<string>
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.
    Name string
    Name of the field to filter by, as defined by the underlying AWS API.
    Values []string
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.
    name String
    Name of the field to filter by, as defined by the underlying AWS API.
    values List<String>
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.
    name string
    Name of the field to filter by, as defined by the underlying AWS API.
    values string[]
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.
    name str
    Name of the field to filter by, as defined by the underlying AWS API.
    values Sequence[str]
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.
    name String
    Name of the field to filter by, as defined by the underlying AWS API.
    values List<String>
    Set of values that are accepted for the given field. An SVM will be selected if any one of the given values matches.

    GetOntapStorageVirtualMachineLifecycleTransitionReason

    Message string
    A detailed message.
    Message string
    A detailed message.
    message String
    A detailed message.
    message string
    A detailed message.
    message str
    A detailed message.
    message String
    A detailed message.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.33.0 published on Wednesday, May 1, 2024 by Pulumi