com.pulumi.azurenative.datafactory.inputs.GetChangeDataCapturePlainArgs 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.datafactory.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetChangeDataCapturePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetChangeDataCapturePlainArgs Empty = new GetChangeDataCapturePlainArgs();
/**
* The change data capture name.
*
*/
@Import(name="changeDataCaptureName", required=true)
private String changeDataCaptureName;
/**
* @return The change data capture name.
*
*/
public String changeDataCaptureName() {
return this.changeDataCaptureName;
}
/**
* The factory name.
*
*/
@Import(name="factoryName", required=true)
private String factoryName;
/**
* @return The factory name.
*
*/
public String factoryName() {
return this.factoryName;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The resource group name.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
private GetChangeDataCapturePlainArgs() {}
private GetChangeDataCapturePlainArgs(GetChangeDataCapturePlainArgs $) {
this.changeDataCaptureName = $.changeDataCaptureName;
this.factoryName = $.factoryName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetChangeDataCapturePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetChangeDataCapturePlainArgs $;
public Builder() {
$ = new GetChangeDataCapturePlainArgs();
}
public Builder(GetChangeDataCapturePlainArgs defaults) {
$ = new GetChangeDataCapturePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param changeDataCaptureName The change data capture name.
*
* @return builder
*
*/
public Builder changeDataCaptureName(String changeDataCaptureName) {
$.changeDataCaptureName = changeDataCaptureName;
return this;
}
/**
* @param factoryName The factory name.
*
* @return builder
*
*/
public Builder factoryName(String factoryName) {
$.factoryName = factoryName;
return this;
}
/**
* @param resourceGroupName The resource group name.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
public GetChangeDataCapturePlainArgs build() {
if ($.changeDataCaptureName == null) {
throw new MissingRequiredPropertyException("GetChangeDataCapturePlainArgs", "changeDataCaptureName");
}
if ($.factoryName == null) {
throw new MissingRequiredPropertyException("GetChangeDataCapturePlainArgs", "factoryName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetChangeDataCapturePlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy