com.pulumi.azure.storage.outputs.GetContainersContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.storage.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetContainersContainer {
/**
* @return The data plane ID of the Storage Container.
*
*/
private String dataPlaneId;
/**
* @return The name of this Storage Container.
*
*/
private String name;
/**
* @return The resource manager ID of the Storage Container.
*
*/
private String resourceManagerId;
private GetContainersContainer() {}
/**
* @return The data plane ID of the Storage Container.
*
*/
public String dataPlaneId() {
return this.dataPlaneId;
}
/**
* @return The name of this Storage Container.
*
*/
public String name() {
return this.name;
}
/**
* @return The resource manager ID of the Storage Container.
*
*/
public String resourceManagerId() {
return this.resourceManagerId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContainersContainer defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String dataPlaneId;
private String name;
private String resourceManagerId;
public Builder() {}
public Builder(GetContainersContainer defaults) {
Objects.requireNonNull(defaults);
this.dataPlaneId = defaults.dataPlaneId;
this.name = defaults.name;
this.resourceManagerId = defaults.resourceManagerId;
}
@CustomType.Setter
public Builder dataPlaneId(String dataPlaneId) {
if (dataPlaneId == null) {
throw new MissingRequiredPropertyException("GetContainersContainer", "dataPlaneId");
}
this.dataPlaneId = dataPlaneId;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetContainersContainer", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder resourceManagerId(String resourceManagerId) {
if (resourceManagerId == null) {
throw new MissingRequiredPropertyException("GetContainersContainer", "resourceManagerId");
}
this.resourceManagerId = resourceManagerId;
return this;
}
public GetContainersContainer build() {
final var _resultValue = new GetContainersContainer();
_resultValue.dataPlaneId = dataPlaneId;
_resultValue.name = name;
_resultValue.resourceManagerId = resourceManagerId;
return _resultValue;
}
}
}