com.pulumi.azurenative.hybridnetwork.outputs.ArtifactStoreNetworkFabricControllerEndPointsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.hybridnetwork.outputs;
import com.pulumi.azurenative.hybridnetwork.outputs.ReferencedResourceResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ArtifactStoreNetworkFabricControllerEndPointsResponse {
/**
* @return list of network fabric controllers.
*
*/
private @Nullable List networkFabricControllerIds;
private ArtifactStoreNetworkFabricControllerEndPointsResponse() {}
/**
* @return list of network fabric controllers.
*
*/
public List networkFabricControllerIds() {
return this.networkFabricControllerIds == null ? List.of() : this.networkFabricControllerIds;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArtifactStoreNetworkFabricControllerEndPointsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List networkFabricControllerIds;
public Builder() {}
public Builder(ArtifactStoreNetworkFabricControllerEndPointsResponse defaults) {
Objects.requireNonNull(defaults);
this.networkFabricControllerIds = defaults.networkFabricControllerIds;
}
@CustomType.Setter
public Builder networkFabricControllerIds(@Nullable List networkFabricControllerIds) {
this.networkFabricControllerIds = networkFabricControllerIds;
return this;
}
public Builder networkFabricControllerIds(ReferencedResourceResponse... networkFabricControllerIds) {
return networkFabricControllerIds(List.of(networkFabricControllerIds));
}
public ArtifactStoreNetworkFabricControllerEndPointsResponse build() {
final var _resultValue = new ArtifactStoreNetworkFabricControllerEndPointsResponse();
_resultValue.networkFabricControllerIds = networkFabricControllerIds;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy