com.pulumi.azurenative.datafactory.ChangeDataCapture 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;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.datafactory.ChangeDataCaptureArgs;
import com.pulumi.azurenative.datafactory.outputs.ChangeDataCaptureResponseFolder;
import com.pulumi.azurenative.datafactory.outputs.MapperPolicyResponse;
import com.pulumi.azurenative.datafactory.outputs.MapperSourceConnectionsInfoResponse;
import com.pulumi.azurenative.datafactory.outputs.MapperTargetConnectionsInfoResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Change data capture resource type.
* Azure REST API version: 2018-06-01.
*
* ## Example Usage
* ### ChangeDataCapture_Create
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.datafactory.ChangeDataCapture;
* import com.pulumi.azurenative.datafactory.ChangeDataCaptureArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var changeDataCapture = new ChangeDataCapture("changeDataCapture", ChangeDataCaptureArgs.builder()
* .allowVNetOverride(false)
* .changeDataCaptureName("exampleChangeDataCapture")
* .description("Sample demo change data capture to transfer data from delimited (csv) to Azure SQL Database with automapped and non-automapped mappings.")
* .factoryName("exampleFactoryName")
* .resourceGroupName("exampleResourceGroup")
* .build());
*
* }
* }
*
* }
*
* ### ChangeDataCapture_Update
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.datafactory.ChangeDataCapture;
* import com.pulumi.azurenative.datafactory.ChangeDataCaptureArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var changeDataCapture = new ChangeDataCapture("changeDataCapture", ChangeDataCaptureArgs.builder()
* .allowVNetOverride(false)
* .changeDataCaptureName("exampleChangeDataCapture")
* .description("Sample demo change data capture to transfer data from delimited (csv) to Azure SQL Database. Updating table mappings.")
* .factoryName("exampleFactoryName")
* .resourceGroupName("exampleResourceGroup")
* .status("Stopped")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:datafactory:ChangeDataCapture exampleChangeDataCapture /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/adfcdcs/{changeDataCaptureName}
* ```
*
*/
@ResourceType(type="azure-native:datafactory:ChangeDataCapture")
public class ChangeDataCapture extends com.pulumi.resources.CustomResource {
/**
* A boolean to determine if the vnet configuration needs to be overwritten.
*
*/
@Export(name="allowVNetOverride", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> allowVNetOverride;
/**
* @return A boolean to determine if the vnet configuration needs to be overwritten.
*
*/
public Output> allowVNetOverride() {
return Codegen.optional(this.allowVNetOverride);
}
/**
* The description of the change data capture.
*
*/
@Export(name="description", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> description;
/**
* @return The description of the change data capture.
*
*/
public Output> description() {
return Codegen.optional(this.description);
}
/**
* Etag identifies change in the resource.
*
*/
@Export(name="etag", refs={String.class}, tree="[0]")
private Output etag;
/**
* @return Etag identifies change in the resource.
*
*/
public Output etag() {
return this.etag;
}
/**
* The folder that this CDC is in. If not specified, CDC will appear at the root level.
*
*/
@Export(name="folder", refs={ChangeDataCaptureResponseFolder.class}, tree="[0]")
private Output* @Nullable */ ChangeDataCaptureResponseFolder> folder;
/**
* @return The folder that this CDC is in. If not specified, CDC will appear at the root level.
*
*/
public Output> folder() {
return Codegen.optional(this.folder);
}
/**
* The resource name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The resource name.
*
*/
public Output name() {
return this.name;
}
/**
* CDC policy
*
*/
@Export(name="policy", refs={MapperPolicyResponse.class}, tree="[0]")
private Output policy;
/**
* @return CDC policy
*
*/
public Output policy() {
return this.policy;
}
/**
* List of sources connections that can be used as sources in the CDC.
*
*/
@Export(name="sourceConnectionsInfo", refs={List.class,MapperSourceConnectionsInfoResponse.class}, tree="[0,1]")
private Output> sourceConnectionsInfo;
/**
* @return List of sources connections that can be used as sources in the CDC.
*
*/
public Output> sourceConnectionsInfo() {
return this.sourceConnectionsInfo;
}
/**
* Status of the CDC as to if it is running or stopped.
*
*/
@Export(name="status", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> status;
/**
* @return Status of the CDC as to if it is running or stopped.
*
*/
public Output> status() {
return Codegen.optional(this.status);
}
/**
* List of target connections that can be used as sources in the CDC.
*
*/
@Export(name="targetConnectionsInfo", refs={List.class,MapperTargetConnectionsInfoResponse.class}, tree="[0,1]")
private Output> targetConnectionsInfo;
/**
* @return List of target connections that can be used as sources in the CDC.
*
*/
public Output> targetConnectionsInfo() {
return this.targetConnectionsInfo;
}
/**
* The resource type.
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The resource type.
*
*/
public Output type() {
return this.type;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public ChangeDataCapture(java.lang.String name) {
this(name, ChangeDataCaptureArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public ChangeDataCapture(java.lang.String name, ChangeDataCaptureArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public ChangeDataCapture(java.lang.String name, ChangeDataCaptureArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:datafactory:ChangeDataCapture", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private ChangeDataCapture(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:datafactory:ChangeDataCapture", name, null, makeResourceOptions(options, id), false);
}
private static ChangeDataCaptureArgs makeArgs(ChangeDataCaptureArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? ChangeDataCaptureArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:datafactory/v20180601:ChangeDataCapture").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static ChangeDataCapture get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new ChangeDataCapture(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy