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

com.pulumi.azurenative.datacatalog.ADCCatalog 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.datacatalog;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.datacatalog.ADCCatalogArgs;
import com.pulumi.azurenative.datacatalog.outputs.PrincipalsResponse;
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.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Azure Data Catalog.
 * Azure REST API version: 2016-03-30. Prior API version in Azure Native 1.x: 2016-03-30.
 * 
 * ## Example Usage
 * ### Create Azure Data Catalog Service
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.datacatalog.ADCCatalog;
 * import com.pulumi.azurenative.datacatalog.ADCCatalogArgs;
 * import com.pulumi.azurenative.datacatalog.inputs.PrincipalsArgs;
 * 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 }{{@code
 *     public static void main(String[] args) }{{@code
 *         Pulumi.run(App::stack);
 *     }}{@code
 * 
 *     public static void stack(Context ctx) }{{@code
 *         var adcCatalog = new ADCCatalog("adcCatalog", ADCCatalogArgs.builder()
 *             .admins(PrincipalsArgs.builder()
 *                 .objectId("99999999-9999-9999-999999999999")
 *                 .upn("myupn}{@literal @}{@code microsoft.com")
 *                 .build())
 *             .catalogName("exampleCatalog")
 *             .enableAutomaticUnitAdjustment(false)
 *             .location("North US")
 *             .resourceGroupName("exampleResourceGroup")
 *             .sku("Standard")
 *             .tags(Map.ofEntries(
 *                 Map.entry("mykey", "myvalue"),
 *                 Map.entry("mykey2", "myvalue2")
 *             ))
 *             .units(1)
 *             .users(PrincipalsArgs.builder()
 *                 .objectId("99999999-9999-9999-999999999999")
 *                 .upn("myupn}{@literal @}{@code microsoft.com")
 *                 .build())
 *             .build());
 * 
 *     }}{@code
 * }}{@code
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:datacatalog:ADCCatalog exampleCatalog /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataCatalog/catalogs/{catalogName} * ``` * */ @ResourceType(type="azure-native:datacatalog:ADCCatalog") public class ADCCatalog extends com.pulumi.resources.CustomResource { /** * Azure data catalog admin list. * */ @Export(name="admins", refs={List.class,PrincipalsResponse.class}, tree="[0,1]") private Output> admins; /** * @return Azure data catalog admin list. * */ public Output>> admins() { return Codegen.optional(this.admins); } /** * Automatic unit adjustment enabled or not. * */ @Export(name="enableAutomaticUnitAdjustment", refs={Boolean.class}, tree="[0]") private Output enableAutomaticUnitAdjustment; /** * @return Automatic unit adjustment enabled or not. * */ public Output> enableAutomaticUnitAdjustment() { return Codegen.optional(this.enableAutomaticUnitAdjustment); } /** * Resource etag * */ @Export(name="etag", refs={String.class}, tree="[0]") private Output etag; /** * @return Resource etag * */ public Output> etag() { return Codegen.optional(this.etag); } /** * Resource location * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return Resource location * */ public Output> location() { return Codegen.optional(this.location); } /** * Resource name * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Resource name * */ public Output name() { return this.name; } /** * Azure data catalog SKU. * */ @Export(name="sku", refs={String.class}, tree="[0]") private Output sku; /** * @return Azure data catalog SKU. * */ public Output> sku() { return Codegen.optional(this.sku); } /** * Azure data catalog provision status. * */ @Export(name="successfullyProvisioned", refs={Boolean.class}, tree="[0]") private Output successfullyProvisioned; /** * @return Azure data catalog provision status. * */ public Output> successfullyProvisioned() { return Codegen.optional(this.successfullyProvisioned); } /** * Resource tags * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Resource tags * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * Resource type * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Resource type * */ public Output type() { return this.type; } /** * Azure data catalog units. * */ @Export(name="units", refs={Integer.class}, tree="[0]") private Output units; /** * @return Azure data catalog units. * */ public Output> units() { return Codegen.optional(this.units); } /** * Azure data catalog user list. * */ @Export(name="users", refs={List.class,PrincipalsResponse.class}, tree="[0,1]") private Output> users; /** * @return Azure data catalog user list. * */ public Output>> users() { return Codegen.optional(this.users); } /** * * @param name The _unique_ name of the resulting resource. */ public ADCCatalog(java.lang.String name) { this(name, ADCCatalogArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ADCCatalog(java.lang.String name, ADCCatalogArgs 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 ADCCatalog(java.lang.String name, ADCCatalogArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:datacatalog:ADCCatalog", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ADCCatalog(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:datacatalog:ADCCatalog", name, null, makeResourceOptions(options, id), false); } private static ADCCatalogArgs makeArgs(ADCCatalogArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? ADCCatalogArgs.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:datacatalog/v20160330:ADCCatalog").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 ADCCatalog get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ADCCatalog(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy