AWS v6.60.0 published on Tuesday, Nov 19, 2024 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)
// 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<Get
Ontap Storage Virtual Machine Filter> - Configuration block. Detailed below.
- Id string
- Identifier of the storage virtual machine (e.g.
svm-12345678
). - Dictionary<string, string>
- Filters
[]Get
Ontap 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<Get
Ontap Storage Virtual Machine Filter> - Configuration block. Detailed below.
- id String
- Identifier of the storage virtual machine (e.g.
svm-12345678
). - Map<String,String>
- filters
Get
Ontap 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[Get
Ontap 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:
- Active
Directory 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.
- Creation
Time string - The time that the SVM was created.
- Endpoints
List<Get
Ontap 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 stringId - Identifier of the file system (e.g.
fs-12345678
). - Id string
- The SVM's system generated unique ID.
- Lifecycle
Status string - The SVM's lifecycle status.
- Lifecycle
Transition 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<Get
Ontap Storage Virtual Machine Filter>
- Active
Directory []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.
- Creation
Time string - The time that the SVM was created.
- Endpoints
[]Get
Ontap 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 stringId - Identifier of the file system (e.g.
fs-12345678
). - Id string
- The SVM's system generated unique ID.
- Lifecycle
Status string - The SVM's lifecycle status.
- Lifecycle
Transition []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
[]Get
Ontap Storage Virtual Machine Filter
- active
Directory 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.
- creation
Time String - The time that the SVM was created.
- endpoints
List<Get
Ontap 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 StringId - Identifier of the file system (e.g.
fs-12345678
). - id String
- The SVM's system generated unique ID.
- lifecycle
Status String - The SVM's lifecycle status.
- lifecycle
Transition 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<Get
Ontap Storage Virtual Machine Filter>
- active
Directory 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.
- creation
Time string - The time that the SVM was created.
- endpoints
Get
Ontap 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 stringId - Identifier of the file system (e.g.
fs-12345678
). - id string
- The SVM's system generated unique ID.
- lifecycle
Status string - The SVM's lifecycle status.
- lifecycle
Transition 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
Get
Ontap 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[Get
Ontap 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[Get
Ontap Storage Virtual Machine Filter]
- active
Directory 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.
- creation
Time 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.
- file
System StringId - Identifier of the file system (e.g.
fs-12345678
). - id String
- The SVM's system generated unique ID.
- lifecycle
Status String - The SVM's lifecycle status.
- lifecycle
Transition 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
- Netbios
Name string - The NetBIOS name of the AD computer object to which the SVM is joined.
- Self
Managed List<GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration>
- Netbios
Name string - The NetBIOS name of the AD computer object to which the SVM is joined.
- Self
Managed []GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration
- netbios
Name String - The NetBIOS name of the AD computer object to which the SVM is joined.
- self
Managed List<GetActive Directory Configurations Ontap Storage Virtual Machine Active Directory Configuration Self Managed Active Directory Configuration>
- netbios
Name string - The NetBIOS name of the AD computer object to which the SVM is joined.
- self
Managed 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]
- netbios
Name String - The NetBIOS name of the AD computer object to which the SVM is joined.
- self
Managed List<Property Map>Active Directory Configurations
GetOntapStorageVirtualMachineActiveDirectoryConfigurationSelfManagedActiveDirectoryConfiguration
- Dns
Ips List<string> - A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
- Domain
Name string - The fully qualified domain name of the self-managed AD directory.
- File
System stringAdministrators Group - The name of the domain group whose members have administrative privileges for the FSx file system.
- Organizational
Unit 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 []string - A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
- Domain
Name string - The fully qualified domain name of the self-managed AD directory.
- File
System stringAdministrators Group - The name of the domain group whose members have administrative privileges for the FSx file system.
- Organizational
Unit 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 List<String> - A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
- domain
Name String - The fully qualified domain name of the self-managed AD directory.
- file
System StringAdministrators Group - The name of the domain group whose members have administrative privileges for the FSx file system.
- organizational
Unit 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 string[] - A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
- domain
Name string - The fully qualified domain name of the self-managed AD directory.
- file
System stringAdministrators Group - The name of the domain group whose members have administrative privileges for the FSx file system.
- organizational
Unit 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.
- dns
Ips List<String> - A list of up to three IP addresses of DNS servers or domain controllers in the self-managed AD directory.
- domain
Name String - The fully qualified domain name of the self-managed AD directory.
- file
System StringAdministrators Group - The name of the domain group whose members have administrative privileges for the FSx file system.
- organizational
Unit 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<Get
Ontap Storage Virtual Machine Endpoint Iscsi> - Managements
List<Get
Ontap 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<Get
Ontap Storage Virtual Machine Endpoint Nf> - An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- Smbs
List<Get
Ontap Storage Virtual Machine Endpoint Smb> - An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- Iscsis
[]Get
Ontap Storage Virtual Machine Endpoint Iscsi - Managements
[]Get
Ontap 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
[]Get
Ontap Storage Virtual Machine Endpoint Nf - An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- Smbs
[]Get
Ontap Storage Virtual Machine Endpoint Smb - An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
List<Get
Ontap Storage Virtual Machine Endpoint Iscsi> - managements
List<Get
Ontap 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<Get
Ontap Storage Virtual Machine Endpoint Nf> - An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
List<Get
Ontap Storage Virtual Machine Endpoint Smb> - An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
Get
Ontap Storage Virtual Machine Endpoint Iscsi[] - managements
Get
Ontap 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
Get
Ontap Storage Virtual Machine Endpoint Nf[] - An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
Get
Ontap Storage Virtual Machine Endpoint Smb[] - An endpoint for connecting using the Server Message Block (SMB) protocol. See SVM Endpoint below.
- iscsis
Sequence[Get
Ontap Storage Virtual Machine Endpoint Iscsi] - managements
Sequence[Get
Ontap 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[Get
Ontap Storage Virtual Machine Endpoint Nf] - An endpoint for connecting using the Network File System (NFS) protocol. See SVM Endpoint below.
- smbs
Sequence[Get
Ontap 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
- Dns
Name string - Ip
Addresses List<string>
- Dns
Name string - Ip
Addresses []string
- dns
Name String - ip
Addresses List<String>
- dns
Name string - ip
Addresses string[]
- dns_
name str - ip_
addresses Sequence[str]
- dns
Name String - ip
Addresses List<String>
GetOntapStorageVirtualMachineEndpointManagement
- Dns
Name string - Ip
Addresses List<string>
- Dns
Name string - Ip
Addresses []string
- dns
Name String - ip
Addresses List<String>
- dns
Name string - ip
Addresses string[]
- dns_
name str - ip_
addresses Sequence[str]
- dns
Name String - ip
Addresses List<String>
GetOntapStorageVirtualMachineEndpointNf
- Dns
Name string - Ip
Addresses List<string>
- Dns
Name string - Ip
Addresses []string
- dns
Name String - ip
Addresses List<String>
- dns
Name string - ip
Addresses string[]
- dns_
name str - ip_
addresses Sequence[str]
- dns
Name String - ip
Addresses List<String>
GetOntapStorageVirtualMachineEndpointSmb
- Dns
Name string - Ip
Addresses List<string>
- Dns
Name string - Ip
Addresses []string
- dns
Name String - ip
Addresses List<String>
- dns
Name string - ip
Addresses string[]
- dns_
name str - ip_
addresses Sequence[str]
- dns
Name String - ip
Addresses 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.