
com.pulumi.azurenative.storagemover.outputs.AzureStorageBlobContainerEndpointPropertiesResponse Maven / Gradle / Ivy
// *** 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.storagemover.outputs;
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 AzureStorageBlobContainerEndpointPropertiesResponse {
/**
* @return The name of the Storage blob container that is the target destination.
*
*/
private String blobContainerName;
/**
* @return A description for the Endpoint.
*
*/
private @Nullable String description;
/**
* @return The Endpoint resource type.
* Expected value is 'AzureStorageBlobContainer'.
*
*/
private String endpointType;
/**
* @return The provisioning state of this resource.
*
*/
private String provisioningState;
/**
* @return The Azure Resource ID of the storage account that is the target destination.
*
*/
private String storageAccountResourceId;
private AzureStorageBlobContainerEndpointPropertiesResponse() {}
/**
* @return The name of the Storage blob container that is the target destination.
*
*/
public String blobContainerName() {
return this.blobContainerName;
}
/**
* @return A description for the Endpoint.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return The Endpoint resource type.
* Expected value is 'AzureStorageBlobContainer'.
*
*/
public String endpointType() {
return this.endpointType;
}
/**
* @return The provisioning state of this resource.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return The Azure Resource ID of the storage account that is the target destination.
*
*/
public String storageAccountResourceId() {
return this.storageAccountResourceId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AzureStorageBlobContainerEndpointPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String blobContainerName;
private @Nullable String description;
private String endpointType;
private String provisioningState;
private String storageAccountResourceId;
public Builder() {}
public Builder(AzureStorageBlobContainerEndpointPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.blobContainerName = defaults.blobContainerName;
this.description = defaults.description;
this.endpointType = defaults.endpointType;
this.provisioningState = defaults.provisioningState;
this.storageAccountResourceId = defaults.storageAccountResourceId;
}
@CustomType.Setter
public Builder blobContainerName(String blobContainerName) {
if (blobContainerName == null) {
throw new MissingRequiredPropertyException("AzureStorageBlobContainerEndpointPropertiesResponse", "blobContainerName");
}
this.blobContainerName = blobContainerName;
return this;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder endpointType(String endpointType) {
if (endpointType == null) {
throw new MissingRequiredPropertyException("AzureStorageBlobContainerEndpointPropertiesResponse", "endpointType");
}
this.endpointType = endpointType;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("AzureStorageBlobContainerEndpointPropertiesResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder storageAccountResourceId(String storageAccountResourceId) {
if (storageAccountResourceId == null) {
throw new MissingRequiredPropertyException("AzureStorageBlobContainerEndpointPropertiesResponse", "storageAccountResourceId");
}
this.storageAccountResourceId = storageAccountResourceId;
return this;
}
public AzureStorageBlobContainerEndpointPropertiesResponse build() {
final var _resultValue = new AzureStorageBlobContainerEndpointPropertiesResponse();
_resultValue.blobContainerName = blobContainerName;
_resultValue.description = description;
_resultValue.endpointType = endpointType;
_resultValue.provisioningState = provisioningState;
_resultValue.storageAccountResourceId = storageAccountResourceId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy