com.ovhcloud.pulumi.ovh.CloudProjectDatabase.inputs.GetKafkaTopicArgs 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.CloudProjectDatabase.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetKafkaTopicArgs extends com.pulumi.resources.InvokeArgs {
public static final GetKafkaTopicArgs Empty = new GetKafkaTopicArgs();
/**
* Cluster ID
*
*/
@Import(name="clusterId", required=true)
private Output clusterId;
/**
* @return Cluster ID
*
*/
public Output clusterId() {
return this.clusterId;
}
/**
* Topic ID
*
*/
@Import(name="id", required=true)
private Output id;
/**
* @return Topic ID
*
*/
public Output id() {
return this.id;
}
/**
* The id of the public cloud project. If omitted,
* the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used.
*
*/
@Import(name="serviceName", required=true)
private Output serviceName;
/**
* @return The id of the public cloud project. If omitted,
* the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used.
*
*/
public Output serviceName() {
return this.serviceName;
}
private GetKafkaTopicArgs() {}
private GetKafkaTopicArgs(GetKafkaTopicArgs $) {
this.clusterId = $.clusterId;
this.id = $.id;
this.serviceName = $.serviceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetKafkaTopicArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetKafkaTopicArgs $;
public Builder() {
$ = new GetKafkaTopicArgs();
}
public Builder(GetKafkaTopicArgs defaults) {
$ = new GetKafkaTopicArgs(Objects.requireNonNull(defaults));
}
/**
* @param clusterId Cluster ID
*
* @return builder
*
*/
public Builder clusterId(Output clusterId) {
$.clusterId = clusterId;
return this;
}
/**
* @param clusterId Cluster ID
*
* @return builder
*
*/
public Builder clusterId(String clusterId) {
return clusterId(Output.of(clusterId));
}
/**
* @param id Topic ID
*
* @return builder
*
*/
public Builder id(Output id) {
$.id = id;
return this;
}
/**
* @param id Topic ID
*
* @return builder
*
*/
public Builder id(String id) {
return id(Output.of(id));
}
/**
* @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(Output serviceName) {
$.serviceName = serviceName;
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) {
return serviceName(Output.of(serviceName));
}
public GetKafkaTopicArgs build() {
if ($.clusterId == null) {
throw new MissingRequiredPropertyException("GetKafkaTopicArgs", "clusterId");
}
if ($.id == null) {
throw new MissingRequiredPropertyException("GetKafkaTopicArgs", "id");
}
if ($.serviceName == null) {
throw new MissingRequiredPropertyException("GetKafkaTopicArgs", "serviceName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy