All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.kusto.ReadWriteDatabase Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.kusto;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.kusto.ReadWriteDatabaseArgs;
import com.pulumi.azurenative.kusto.outputs.DatabaseStatisticsResponse;
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;

/**
 * Class representing a read write database.
 * Azure REST API version: 2022-12-29. Prior API version in Azure Native 1.x: 2021-01-01.
 * 
 * ## Example Usage
 * ### Kusto ReadOnly database update
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.kusto.ReadWriteDatabase;
 * import com.pulumi.azurenative.kusto.ReadWriteDatabaseArgs;
 * 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 readWriteDatabase = new ReadWriteDatabase("readWriteDatabase", ReadWriteDatabaseArgs.builder()
 *             .clusterName("kustoCluster")
 *             .databaseName("kustoReadOnlyDatabase")
 *             .resourceGroupName("kustorptest")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* ### Kusto ReadWrite database create or update * *
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.kusto.ReadWriteDatabase;
 * import com.pulumi.azurenative.kusto.ReadWriteDatabaseArgs;
 * 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 readWriteDatabase = new ReadWriteDatabase("readWriteDatabase", ReadWriteDatabaseArgs.builder()
 *             .callerRole("Admin")
 *             .clusterName("kustoCluster")
 *             .databaseName("KustoDatabase8")
 *             .kind("ReadWrite")
 *             .location("westus")
 *             .resourceGroupName("kustorptest")
 *             .softDeletePeriod("P1D")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:kusto:ReadWriteDatabase kustoCluster/KustoDatabase8 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Kusto/clusters/{clusterName}/databases/{databaseName} * ``` * */ @ResourceType(type="azure-native:kusto:ReadWriteDatabase") public class ReadWriteDatabase extends com.pulumi.resources.CustomResource { /** * The time the data should be kept in cache for fast queries in TimeSpan. * */ @Export(name="hotCachePeriod", refs={String.class}, tree="[0]") private Output hotCachePeriod; /** * @return The time the data should be kept in cache for fast queries in TimeSpan. * */ public Output> hotCachePeriod() { return Codegen.optional(this.hotCachePeriod); } /** * Indicates whether the database is followed. * */ @Export(name="isFollowed", refs={Boolean.class}, tree="[0]") private Output isFollowed; /** * @return Indicates whether the database is followed. * */ public Output isFollowed() { return this.isFollowed; } /** * Kind of the database * Expected value is 'ReadWrite'. * */ @Export(name="kind", refs={String.class}, tree="[0]") private Output kind; /** * @return Kind of the database * Expected value is 'ReadWrite'. * */ public Output kind() { return this.kind; } /** * Resource location. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return Resource location. * */ public Output> location() { return Codegen.optional(this.location); } /** * The name of the resource * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the resource * */ public Output name() { return this.name; } /** * The provisioned state of the resource. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return The provisioned state of the resource. * */ public Output provisioningState() { return this.provisioningState; } /** * The time the data should be kept before it stops being accessible to queries in TimeSpan. * */ @Export(name="softDeletePeriod", refs={String.class}, tree="[0]") private Output softDeletePeriod; /** * @return The time the data should be kept before it stops being accessible to queries in TimeSpan. * */ public Output> softDeletePeriod() { return Codegen.optional(this.softDeletePeriod); } /** * The statistics of the database. * */ @Export(name="statistics", refs={DatabaseStatisticsResponse.class}, tree="[0]") private Output statistics; /** * @return The statistics of the database. * */ public Output statistics() { return this.statistics; } /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public ReadWriteDatabase(java.lang.String name) { this(name, ReadWriteDatabaseArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ReadWriteDatabase(java.lang.String name, ReadWriteDatabaseArgs 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 ReadWriteDatabase(java.lang.String name, ReadWriteDatabaseArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:kusto:ReadWriteDatabase", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ReadWriteDatabase(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:kusto:ReadWriteDatabase", name, null, makeResourceOptions(options, id), false); } private static ReadWriteDatabaseArgs makeArgs(ReadWriteDatabaseArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } var builder = args == null ? ReadWriteDatabaseArgs.builder() : ReadWriteDatabaseArgs.builder(args); return builder .kind("ReadWrite") .build(); } 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:kusto/v20170907privatepreview:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20180907preview:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20190121:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20190515:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20190907:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20191109:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20200215:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20200614:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20200918:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20210101:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20210827:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20220201:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20220707:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20221111:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20221229:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20230502:ReadWriteDatabase").build()), Output.of(Alias.builder().type("azure-native:kusto/v20230815:ReadWriteDatabase").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 ReadWriteDatabase get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ReadWriteDatabase(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy