All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.documentdb.outputs.GetGremlinResourceGremlinDatabaseResult Maven / Gradle / Ivy

There is a newer version: 2.72.0
Show 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.documentdb.outputs;

import com.pulumi.azurenative.documentdb.outputs.GremlinDatabaseGetPropertiesResponseOptions;
import com.pulumi.azurenative.documentdb.outputs.GremlinDatabaseGetPropertiesResponseResource;
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 GetGremlinResourceGremlinDatabaseResult {
    /**
     * @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 GremlinDatabaseGetPropertiesResponseOptions options;
    private @Nullable GremlinDatabaseGetPropertiesResponseResource 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 GetGremlinResourceGremlinDatabaseResult() {}
    /**
     * @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(GetGremlinResourceGremlinDatabaseResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String id;
        private @Nullable String location;
        private String name;
        private @Nullable GremlinDatabaseGetPropertiesResponseOptions options;
        private @Nullable GremlinDatabaseGetPropertiesResponseResource resource;
        private @Nullable Map tags;
        private String type;
        public Builder() {}
        public Builder(GetGremlinResourceGremlinDatabaseResult 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("GetGremlinResourceGremlinDatabaseResult", "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("GetGremlinResourceGremlinDatabaseResult", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder options(@Nullable GremlinDatabaseGetPropertiesResponseOptions options) {

            this.options = options;
            return this;
        }
        @CustomType.Setter
        public Builder resource(@Nullable GremlinDatabaseGetPropertiesResponseResource 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("GetGremlinResourceGremlinDatabaseResult", "type");
            }
            this.type = type;
            return this;
        }
        public GetGremlinResourceGremlinDatabaseResult build() {
            final var _resultValue = new GetGremlinResourceGremlinDatabaseResult();
            _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