com.pulumi.azure.eventhub.EventhubNamespaceDisasterRecoveryConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.eventhub;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.eventhub.EventhubNamespaceDisasterRecoveryConfigArgs;
import com.pulumi.azure.eventhub.inputs.EventhubNamespaceDisasterRecoveryConfigState;
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.String;
import javax.annotation.Nullable;
/**
* Manages an Disaster Recovery Config for an Event Hub Namespace.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.eventhub.EventHubNamespace;
* import com.pulumi.azure.eventhub.EventHubNamespaceArgs;
* import com.pulumi.azure.eventhub.EventhubNamespaceDisasterRecoveryConfig;
* import com.pulumi.azure.eventhub.EventhubNamespaceDisasterRecoveryConfigArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("eventhub-replication")
* .location("West Europe")
* .build());
*
* var primary = new EventHubNamespace("primary", EventHubNamespaceArgs.builder()
* .name("eventhub-primary")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku("Standard")
* .build());
*
* var secondary = new EventHubNamespace("secondary", EventHubNamespaceArgs.builder()
* .name("eventhub-secondary")
* .location(example.location())
* .resourceGroupName(example.name())
* .sku("Standard")
* .build());
*
* var exampleEventhubNamespaceDisasterRecoveryConfig = new EventhubNamespaceDisasterRecoveryConfig("exampleEventhubNamespaceDisasterRecoveryConfig", EventhubNamespaceDisasterRecoveryConfigArgs.builder()
* .name("replicate-eventhub")
* .resourceGroupName(example.name())
* .namespaceName(primary.name())
* .partnerNamespaceId(secondary.id())
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* EventHubs can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:eventhub/eventhubNamespaceDisasterRecoveryConfig:EventhubNamespaceDisasterRecoveryConfig config1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.EventHub/namespaces/namespace1/disasterRecoveryConfigs/config1
* ```
*
*/
@ResourceType(type="azure:eventhub/eventhubNamespaceDisasterRecoveryConfig:EventhubNamespaceDisasterRecoveryConfig")
public class EventhubNamespaceDisasterRecoveryConfig extends com.pulumi.resources.CustomResource {
/**
* Specifies the name of the Disaster Recovery Config. Changing this forces a new resource to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Specifies the name of the Disaster Recovery Config. Changing this forces a new resource to be created.
*
*/
public Output name() {
return this.name;
}
/**
* Specifies the name of the primary EventHub Namespace to replicate. Changing this forces a new resource to be created.
*
*/
@Export(name="namespaceName", refs={String.class}, tree="[0]")
private Output namespaceName;
/**
* @return Specifies the name of the primary EventHub Namespace to replicate. Changing this forces a new resource to be created.
*
*/
public Output namespaceName() {
return this.namespaceName;
}
/**
* The ID of the EventHub Namespace to replicate to.
*
*/
@Export(name="partnerNamespaceId", refs={String.class}, tree="[0]")
private Output partnerNamespaceId;
/**
* @return The ID of the EventHub Namespace to replicate to.
*
*/
public Output partnerNamespaceId() {
return this.partnerNamespaceId;
}
/**
* The name of the resource group in which the Disaster Recovery Config exists. Changing this forces a new resource to be created.
*
*/
@Export(name="resourceGroupName", refs={String.class}, tree="[0]")
private Output resourceGroupName;
/**
* @return The name of the resource group in which the Disaster Recovery Config exists. Changing this forces a new resource to be created.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public EventhubNamespaceDisasterRecoveryConfig(java.lang.String name) {
this(name, EventhubNamespaceDisasterRecoveryConfigArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public EventhubNamespaceDisasterRecoveryConfig(java.lang.String name, EventhubNamespaceDisasterRecoveryConfigArgs 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 EventhubNamespaceDisasterRecoveryConfig(java.lang.String name, EventhubNamespaceDisasterRecoveryConfigArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:eventhub/eventhubNamespaceDisasterRecoveryConfig:EventhubNamespaceDisasterRecoveryConfig", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private EventhubNamespaceDisasterRecoveryConfig(java.lang.String name, Output id, @Nullable EventhubNamespaceDisasterRecoveryConfigState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:eventhub/eventhubNamespaceDisasterRecoveryConfig:EventhubNamespaceDisasterRecoveryConfig", name, state, makeResourceOptions(options, id), false);
}
private static EventhubNamespaceDisasterRecoveryConfigArgs makeArgs(EventhubNamespaceDisasterRecoveryConfigArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? EventhubNamespaceDisasterRecoveryConfigArgs.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())
.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 state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static EventhubNamespaceDisasterRecoveryConfig get(java.lang.String name, Output id, @Nullable EventhubNamespaceDisasterRecoveryConfigState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new EventhubNamespaceDisasterRecoveryConfig(name, id, state, options);
}
}