com.pulumi.aws.fsx.outputs.OntapStorageVirtualMachineEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.fsx.outputs;
import com.pulumi.aws.fsx.outputs.OntapStorageVirtualMachineEndpointIscsi;
import com.pulumi.aws.fsx.outputs.OntapStorageVirtualMachineEndpointManagement;
import com.pulumi.aws.fsx.outputs.OntapStorageVirtualMachineEndpointNf;
import com.pulumi.aws.fsx.outputs.OntapStorageVirtualMachineEndpointSmb;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class OntapStorageVirtualMachineEndpoint {
/**
* @return An endpoint for accessing data on your storage virtual machine via iSCSI protocol. See Endpoint.
*
*/
private @Nullable List iscsis;
/**
* @return An endpoint for managing your file system using the NetApp ONTAP CLI and NetApp ONTAP API. See Endpoint.
*
*/
private @Nullable List managements;
/**
* @return An endpoint for accessing data on your storage virtual machine via NFS protocol. See Endpoint.
*
*/
private @Nullable List nfs;
/**
* @return An endpoint for accessing data on your storage virtual machine via SMB protocol. This is only set if an active_directory_configuration has been set. See Endpoint.
*
*/
private @Nullable List smbs;
private OntapStorageVirtualMachineEndpoint() {}
/**
* @return An endpoint for accessing data on your storage virtual machine via iSCSI protocol. See Endpoint.
*
*/
public List iscsis() {
return this.iscsis == null ? List.of() : this.iscsis;
}
/**
* @return An endpoint for managing your file system using the NetApp ONTAP CLI and NetApp ONTAP API. See Endpoint.
*
*/
public List managements() {
return this.managements == null ? List.of() : this.managements;
}
/**
* @return An endpoint for accessing data on your storage virtual machine via NFS protocol. See Endpoint.
*
*/
public List nfs() {
return this.nfs == null ? List.of() : this.nfs;
}
/**
* @return An endpoint for accessing data on your storage virtual machine via SMB protocol. This is only set if an active_directory_configuration has been set. See Endpoint.
*
*/
public List smbs() {
return this.smbs == null ? List.of() : this.smbs;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OntapStorageVirtualMachineEndpoint defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List iscsis;
private @Nullable List managements;
private @Nullable List nfs;
private @Nullable List smbs;
public Builder() {}
public Builder(OntapStorageVirtualMachineEndpoint defaults) {
Objects.requireNonNull(defaults);
this.iscsis = defaults.iscsis;
this.managements = defaults.managements;
this.nfs = defaults.nfs;
this.smbs = defaults.smbs;
}
@CustomType.Setter
public Builder iscsis(@Nullable List iscsis) {
this.iscsis = iscsis;
return this;
}
public Builder iscsis(OntapStorageVirtualMachineEndpointIscsi... iscsis) {
return iscsis(List.of(iscsis));
}
@CustomType.Setter
public Builder managements(@Nullable List managements) {
this.managements = managements;
return this;
}
public Builder managements(OntapStorageVirtualMachineEndpointManagement... managements) {
return managements(List.of(managements));
}
@CustomType.Setter
public Builder nfs(@Nullable List nfs) {
this.nfs = nfs;
return this;
}
public Builder nfs(OntapStorageVirtualMachineEndpointNf... nfs) {
return nfs(List.of(nfs));
}
@CustomType.Setter
public Builder smbs(@Nullable List smbs) {
this.smbs = smbs;
return this;
}
public Builder smbs(OntapStorageVirtualMachineEndpointSmb... smbs) {
return smbs(List.of(smbs));
}
public OntapStorageVirtualMachineEndpoint build() {
final var _resultValue = new OntapStorageVirtualMachineEndpoint();
_resultValue.iscsis = iscsis;
_resultValue.managements = managements;
_resultValue.nfs = nfs;
_resultValue.smbs = smbs;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy