com.pulumi.azurenative.documentdb.inputs.GetGremlinResourceGremlinGraphPlainArgs 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.documentdb.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGremlinResourceGremlinGraphPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGremlinResourceGremlinGraphPlainArgs Empty = new GetGremlinResourceGremlinGraphPlainArgs();
/**
* Cosmos DB database account name.
*
*/
@Import(name="accountName", required=true)
private String accountName;
/**
* @return Cosmos DB database account name.
*
*/
public String accountName() {
return this.accountName;
}
/**
* Cosmos DB database name.
*
*/
@Import(name="databaseName", required=true)
private String databaseName;
/**
* @return Cosmos DB database name.
*
*/
public String databaseName() {
return this.databaseName;
}
/**
* Cosmos DB graph name.
*
*/
@Import(name="graphName", required=true)
private String graphName;
/**
* @return Cosmos DB graph name.
*
*/
public String graphName() {
return this.graphName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetGremlinResourceGremlinGraphPlainArgs() {}
private GetGremlinResourceGremlinGraphPlainArgs(GetGremlinResourceGremlinGraphPlainArgs $) {
this.accountName = $.accountName;
this.databaseName = $.databaseName;
this.graphName = $.graphName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGremlinResourceGremlinGraphPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGremlinResourceGremlinGraphPlainArgs $;
public Builder() {
$ = new GetGremlinResourceGremlinGraphPlainArgs();
}
public Builder(GetGremlinResourceGremlinGraphPlainArgs defaults) {
$ = new GetGremlinResourceGremlinGraphPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param accountName Cosmos DB database account name.
*
* @return builder
*
*/
public Builder accountName(String accountName) {
$.accountName = accountName;
return this;
}
/**
* @param databaseName Cosmos DB database name.
*
* @return builder
*
*/
public Builder databaseName(String databaseName) {
$.databaseName = databaseName;
return this;
}
/**
* @param graphName Cosmos DB graph name.
*
* @return builder
*
*/
public Builder graphName(String graphName) {
$.graphName = graphName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetGremlinResourceGremlinGraphPlainArgs build() {
if ($.accountName == null) {
throw new MissingRequiredPropertyException("GetGremlinResourceGremlinGraphPlainArgs", "accountName");
}
if ($.databaseName == null) {
throw new MissingRequiredPropertyException("GetGremlinResourceGremlinGraphPlainArgs", "databaseName");
}
if ($.graphName == null) {
throw new MissingRequiredPropertyException("GetGremlinResourceGremlinGraphPlainArgs", "graphName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetGremlinResourceGremlinGraphPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy