com.pulumi.azurenative.iotoperationsmq.outputs.DataLakeFabricStorageResponse 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.
The newest version!
// *** 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.iotoperationsmq.outputs;
import com.pulumi.azurenative.iotoperationsmq.outputs.DataLakeFabricStorageAuthenticationResponse;
import com.pulumi.azurenative.iotoperationsmq.outputs.FabricGuidsResponse;
import com.pulumi.azurenative.iotoperationsmq.outputs.FabricNamesResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DataLakeFabricStorageResponse {
/**
* @return DataLake fabric storage authentication details.
*
*/
private DataLakeFabricStorageAuthenticationResponse authentication;
/**
* @return DataLake fabric storage endpoint to use.
*
*/
private String endpoint;
/**
* @return Fabric path type to use.
*
*/
private String fabricPath;
/**
* @return Fabric one lake Guids.
*
*/
private @Nullable FabricGuidsResponse guids;
/**
* @return Fabric one lake Names.
*
*/
private @Nullable FabricNamesResponse names;
private DataLakeFabricStorageResponse() {}
/**
* @return DataLake fabric storage authentication details.
*
*/
public DataLakeFabricStorageAuthenticationResponse authentication() {
return this.authentication;
}
/**
* @return DataLake fabric storage endpoint to use.
*
*/
public String endpoint() {
return this.endpoint;
}
/**
* @return Fabric path type to use.
*
*/
public String fabricPath() {
return this.fabricPath;
}
/**
* @return Fabric one lake Guids.
*
*/
public Optional guids() {
return Optional.ofNullable(this.guids);
}
/**
* @return Fabric one lake Names.
*
*/
public Optional names() {
return Optional.ofNullable(this.names);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DataLakeFabricStorageResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private DataLakeFabricStorageAuthenticationResponse authentication;
private String endpoint;
private String fabricPath;
private @Nullable FabricGuidsResponse guids;
private @Nullable FabricNamesResponse names;
public Builder() {}
public Builder(DataLakeFabricStorageResponse defaults) {
Objects.requireNonNull(defaults);
this.authentication = defaults.authentication;
this.endpoint = defaults.endpoint;
this.fabricPath = defaults.fabricPath;
this.guids = defaults.guids;
this.names = defaults.names;
}
@CustomType.Setter
public Builder authentication(DataLakeFabricStorageAuthenticationResponse authentication) {
if (authentication == null) {
throw new MissingRequiredPropertyException("DataLakeFabricStorageResponse", "authentication");
}
this.authentication = authentication;
return this;
}
@CustomType.Setter
public Builder endpoint(String endpoint) {
if (endpoint == null) {
throw new MissingRequiredPropertyException("DataLakeFabricStorageResponse", "endpoint");
}
this.endpoint = endpoint;
return this;
}
@CustomType.Setter
public Builder fabricPath(String fabricPath) {
if (fabricPath == null) {
throw new MissingRequiredPropertyException("DataLakeFabricStorageResponse", "fabricPath");
}
this.fabricPath = fabricPath;
return this;
}
@CustomType.Setter
public Builder guids(@Nullable FabricGuidsResponse guids) {
this.guids = guids;
return this;
}
@CustomType.Setter
public Builder names(@Nullable FabricNamesResponse names) {
this.names = names;
return this;
}
public DataLakeFabricStorageResponse build() {
final var _resultValue = new DataLakeFabricStorageResponse();
_resultValue.authentication = authentication;
_resultValue.endpoint = endpoint;
_resultValue.fabricPath = fabricPath;
_resultValue.guids = guids;
_resultValue.names = names;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy