com.pulumi.azurenative.documentdb.outputs.GetCassandraResourceCassandraKeyspaceResult 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.documentdb.outputs;
import com.pulumi.azurenative.documentdb.outputs.CassandraKeyspaceGetPropertiesResponseOptions;
import com.pulumi.azurenative.documentdb.outputs.CassandraKeyspaceGetPropertiesResponseResource;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetCassandraResourceCassandraKeyspaceResult {
/**
* @return The unique resource identifier of the ARM resource.
*
*/
private String id;
/**
* @return The location of the resource group to which the resource belongs.
*
*/
private @Nullable String location;
/**
* @return The name of the ARM resource.
*
*/
private String name;
private @Nullable CassandraKeyspaceGetPropertiesResponseOptions options;
private @Nullable CassandraKeyspaceGetPropertiesResponseResource resource;
/**
* @return Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
*
*/
private @Nullable Map tags;
/**
* @return The type of Azure resource.
*
*/
private String type;
private GetCassandraResourceCassandraKeyspaceResult() {}
/**
* @return The unique resource identifier of the ARM resource.
*
*/
public String id() {
return this.id;
}
/**
* @return The location of the resource group to which the resource belongs.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The name of the ARM resource.
*
*/
public String name() {
return this.name;
}
public Optional options() {
return Optional.ofNullable(this.options);
}
public Optional resource() {
return Optional.ofNullable(this.resource);
}
/**
* @return Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return The type of Azure resource.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCassandraResourceCassandraKeyspaceResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private @Nullable String location;
private String name;
private @Nullable CassandraKeyspaceGetPropertiesResponseOptions options;
private @Nullable CassandraKeyspaceGetPropertiesResponseResource resource;
private @Nullable Map tags;
private String type;
public Builder() {}
public Builder(GetCassandraResourceCassandraKeyspaceResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.location = defaults.location;
this.name = defaults.name;
this.options = defaults.options;
this.resource = defaults.resource;
this.tags = defaults.tags;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetCassandraResourceCassandraKeyspaceResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder location(@Nullable String location) {
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetCassandraResourceCassandraKeyspaceResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder options(@Nullable CassandraKeyspaceGetPropertiesResponseOptions options) {
this.options = options;
return this;
}
@CustomType.Setter
public Builder resource(@Nullable CassandraKeyspaceGetPropertiesResponseResource resource) {
this.resource = resource;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetCassandraResourceCassandraKeyspaceResult", "type");
}
this.type = type;
return this;
}
public GetCassandraResourceCassandraKeyspaceResult build() {
final var _resultValue = new GetCassandraResourceCassandraKeyspaceResult();
_resultValue.id = id;
_resultValue.location = location;
_resultValue.name = name;
_resultValue.options = options;
_resultValue.resource = resource;
_resultValue.tags = tags;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy