AWS v6.71.0 published on Friday, Mar 7, 2025 by Pulumi
aws.fsx.getOntapStorageVirtualMachine
Explore with Pulumi AI
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=[{
    "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)
public static Output<GetOntapStorageVirtualMachineResult> getOntapStorageVirtualMachine(GetOntapStorageVirtualMachineArgs args, InvokeOptions options)
fn::invoke:
  function: aws:fsx/getOntapStorageVirtualMachine:getOntapStorageVirtualMachine
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Filters
List<GetOntap Storage Virtual Machine Filter> 
- Configuration block. Detailed below.
- Id string
- Identifier of the storage virtual machine (e.g. svm-12345678).
- Dictionary<string, string>
- Filters
[]GetOntap Storage Virtual Machine Filter 
- Configuration block. Detailed below.
- Id string
- Identifier of the storage virtual machine (e.g. svm-12345678).
- map[string]string
- filters
List<GetOntap Storage Virtual Machine Filter> 
- Configuration block. Detailed below.
- id String
- Identifier of the storage virtual machine (e.g. svm-12345678).
- Map<String,String>
- filters
GetOntap Storage Virtual Machine Filter[] 
- Configuration block. Detailed below.
- id string
- Identifier of the storage virtual machine (e.g. svm-12345678).
- {[key: string]: string}
- filters
Sequence[GetOntap Storage Virtual Machine Filter] 
- Configuration block. Detailed below.
- id str
- Identifier of the storage virtual machine (e.g. svm-12345678).
- Mapping[str, str]
- filters List<Property Map>
- Configuration block. Detailed below.
- id String
- Identifier of the storage virtual machine (e.g. svm-12345678).
- Map<String>
getOntapStorageVirtualMachine Result
The following output properties are available:
- ActiveDirectory List<GetConfigurations Ontap Storage Virtual Machine Active Directory Configuration> 
- 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<GetOntap Storage Virtual Machine Endpoint> 
- 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.
- FileSystem stringId 
- 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.
- LifecycleTransition List<GetReasons Ontap Storage Virtual Machine Lifecycle Transition Reason> 
- 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.
- Dictionary<string, string>
- Uuid string
- The SVM's UUID.
- Filters
List<GetOntap Storage Virtual Machine Filter> 
- ActiveDirectory []GetConfigurations Ontap Storage Virtual Machine Active Directory Configuration 
- 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
[]GetOntap Storage Virtual Machine Endpoint 
- 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.
- FileSystem stringId 
- 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.
- LifecycleTransition []GetReasons Ontap Storage Virtual Machine Lifecycle Transition Reason 
- 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.
- map[string]string
- Uuid string
- The SVM's UUID.
- Filters
[]GetOntap Storage Virtual Machine Filter 
- activeDirectory List<GetConfigurations Ontap Storage Virtual Machine Active Directory Configuration> 
- 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<GetOntap Storage Virtual Machine Endpoint> 
- 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.
- fileSystem StringId 
- 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.
- lifecycleTransition List<GetReasons Ontap Storage Virtual Machine Lifecycle Transition Reason> 
- 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.
- Map<String,String>
- uuid String
- The SVM's UUID.
- filters
List<GetOntap Storage Virtual Machine Filter> 
- activeDirectory GetConfigurations Ontap Storage Virtual Machine Active Directory Configuration[] 
- 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
GetOntap Storage Virtual Machine Endpoint[] 
- 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.
- fileSystem stringId 
- 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.
- lifecycleTransition GetReasons Ontap Storage Virtual Machine Lifecycle Transition Reason[] 
- 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.
- {[key: string]: string}
- uuid string
- The SVM's UUID.
- filters
GetOntap Storage Virtual Machine Filter[] 
- active_directory_ Sequence[Getconfigurations Ontap Storage Virtual Machine Active Directory Configuration] 
- 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[GetOntap Storage Virtual Machine Endpoint] 
- 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_ strid 
- 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_ Sequence[Getreasons Ontap Storage Virtual Machine Lifecycle Transition Reason] 
- 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.
- Mapping[str, str]
- uuid str
- The SVM's UUID.
- filters
Sequence[GetOntap Storage Virtual Machine Filter] 
- activeDirectory List<Property Map>Configurations 
- 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.
- fileSystem StringId 
- 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.
- lifecycleTransition List<Property Map>Reasons 
- 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.
- 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.
- SelfManaged List<GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration> 
- NetbiosName string
- The NetBIOS name of the AD computer object to which the SVM is joined.
- SelfManaged []GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration 
- netbiosName String
- The NetBIOS name of the AD computer object to which the SVM is joined.
- selfManaged List<GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration> 
- netbiosName string
- The NetBIOS name of the AD computer object to which the SVM is joined.
- selfManaged GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration[] 
- netbios_name str
- The NetBIOS name of the AD computer object to which the SVM is joined.
- self_managed_ Sequence[Getactive_ directory_ configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration] 
- netbiosName String
- The NetBIOS name of the AD computer object to which the SVM is joined.
- selfManaged List<Property Map>Active Directory Configurations 
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.
- FileSystem stringAdministrators Group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- OrganizationalUnit stringDistinguished Name 
- 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.
- FileSystem stringAdministrators Group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- OrganizationalUnit stringDistinguished Name 
- 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.
- fileSystem StringAdministrators Group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- organizationalUnit StringDistinguished Name 
- 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.
- fileSystem stringAdministrators Group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- organizationalUnit stringDistinguished Name 
- 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_ stradministrators_ group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- organizational_unit_ strdistinguished_ name 
- 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.
- fileSystem StringAdministrators Group 
- The name of the domain group whose members have administrative privileges for the FSx file system.
- organizationalUnit StringDistinguished Name 
- 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<GetOntap Storage Virtual Machine Endpoint Iscsi> 
- Managements
List<GetOntap Storage Virtual Machine Endpoint Management> 
- An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
- Nfs
List<GetOntap Storage Virtual Machine Endpoint Nf> 
- An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- Smbs
List<GetOntap Storage Virtual Machine Endpoint Smb> 
- An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- Iscsis
[]GetOntap Storage Virtual Machine Endpoint Iscsi 
- Managements
[]GetOntap Storage Virtual Machine Endpoint Management 
- An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
- Nfs
[]GetOntap Storage Virtual Machine Endpoint Nf 
- An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- Smbs
[]GetOntap Storage Virtual Machine Endpoint Smb 
- An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
List<GetOntap Storage Virtual Machine Endpoint Iscsi> 
- managements
List<GetOntap Storage Virtual Machine Endpoint Management> 
- An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
- nfs
List<GetOntap Storage Virtual Machine Endpoint Nf> 
- An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
List<GetOntap Storage Virtual Machine Endpoint Smb> 
- An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
GetOntap Storage Virtual Machine Endpoint Iscsi[] 
- managements
GetOntap Storage Virtual Machine Endpoint Management[] 
- An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
- nfs
GetOntap Storage Virtual Machine Endpoint Nf[] 
- An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
GetOntap Storage Virtual Machine Endpoint Smb[] 
- An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
Sequence[GetOntap Storage Virtual Machine Endpoint Iscsi] 
- managements
Sequence[GetOntap Storage Virtual Machine Endpoint Management] 
- An endpoint for managing SVMs using the NetApp ONTAP CLI, NetApp ONTAP API, or NetApp CloudManager. See SVM Endpoint below.
- nfs
Sequence[GetOntap Storage Virtual Machine Endpoint Nf] 
- An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
Sequence[GetOntap Storage Virtual Machine Endpoint Smb] 
- 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 awsTerraform Provider.