com.ovhcloud.pulumi.ovh.CloudProject.inputs.GetM3dbNamespacePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH 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.ovhcloud.pulumi.ovh.CloudProject.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetM3dbNamespacePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetM3dbNamespacePlainArgs Empty = new GetM3dbNamespacePlainArgs();
/**
* Cluster ID
*
*/
@Import(name="clusterId", required=true)
private String clusterId;
/**
* @return Cluster ID
*
*/
public String clusterId() {
return this.clusterId;
}
/**
* Name of the namespace.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Name of the namespace.
*
*/
public String name() {
return this.name;
}
/**
* The id of the public cloud project. If omitted,
* the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used.
*
*/
@Import(name="serviceName", required=true)
private String serviceName;
/**
* @return The id of the public cloud project. If omitted,
* the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used.
*
*/
public String serviceName() {
return this.serviceName;
}
private GetM3dbNamespacePlainArgs() {}
private GetM3dbNamespacePlainArgs(GetM3dbNamespacePlainArgs $) {
this.clusterId = $.clusterId;
this.name = $.name;
this.serviceName = $.serviceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetM3dbNamespacePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetM3dbNamespacePlainArgs $;
public Builder() {
$ = new GetM3dbNamespacePlainArgs();
}
public Builder(GetM3dbNamespacePlainArgs defaults) {
$ = new GetM3dbNamespacePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param clusterId Cluster ID
*
* @return builder
*
*/
public Builder clusterId(String clusterId) {
$.clusterId = clusterId;
return this;
}
/**
* @param name Name of the namespace.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param serviceName The id of the public cloud project. If omitted,
* the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used.
*
* @return builder
*
*/
public Builder serviceName(String serviceName) {
$.serviceName = serviceName;
return this;
}
public GetM3dbNamespacePlainArgs build() {
if ($.clusterId == null) {
throw new MissingRequiredPropertyException("GetM3dbNamespacePlainArgs", "clusterId");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("GetM3dbNamespacePlainArgs", "name");
}
if ($.serviceName == null) {
throw new MissingRequiredPropertyException("GetM3dbNamespacePlainArgs", "serviceName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy