azure-native.datacatalog.ADCCatalog
Explore with Pulumi AI
Azure Data Catalog. API Version: 2016-03-30.
Example Usage
Create Azure Data Catalog Service
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var adcCatalog = new AzureNative.DataCatalog.ADCCatalog("adcCatalog", new()
{
Admins = new[]
{
new AzureNative.DataCatalog.Inputs.PrincipalsArgs
{
ObjectId = "99999999-9999-9999-999999999999",
Upn = "myupn@microsoft.com",
},
},
CatalogName = "exampleCatalog",
EnableAutomaticUnitAdjustment = false,
Location = "North US",
ResourceGroupName = "exampleResourceGroup",
Sku = "Standard",
Tags =
{
{ "mykey", "myvalue" },
{ "mykey2", "myvalue2" },
},
Units = 1,
Users = new[]
{
new AzureNative.DataCatalog.Inputs.PrincipalsArgs
{
ObjectId = "99999999-9999-9999-999999999999",
Upn = "myupn@microsoft.com",
},
},
});
});
package main
import (
datacatalog "github.com/pulumi/pulumi-azure-native-sdk/datacatalog"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datacatalog.NewADCCatalog(ctx, "adcCatalog", &datacatalog.ADCCatalogArgs{
Admins: []datacatalog.PrincipalsArgs{
{
ObjectId: pulumi.String("99999999-9999-9999-999999999999"),
Upn: pulumi.String("myupn@microsoft.com"),
},
},
CatalogName: pulumi.String("exampleCatalog"),
EnableAutomaticUnitAdjustment: pulumi.Bool(false),
Location: pulumi.String("North US"),
ResourceGroupName: pulumi.String("exampleResourceGroup"),
Sku: pulumi.String("Standard"),
Tags: pulumi.StringMap{
"mykey": pulumi.String("myvalue"),
"mykey2": pulumi.String("myvalue2"),
},
Units: pulumi.Int(1),
Users: []datacatalog.PrincipalsArgs{
{
ObjectId: pulumi.String("99999999-9999-9999-999999999999"),
Upn: pulumi.String("myupn@microsoft.com"),
},
},
})
if err != nil {
return err
}
return nil
})
}
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 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 adcCatalog = new ADCCatalog("adcCatalog", ADCCatalogArgs.builder()
.admins(Map.ofEntries(
Map.entry("objectId", "99999999-9999-9999-999999999999"),
Map.entry("upn", "myupn@microsoft.com")
))
.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(Map.ofEntries(
Map.entry("objectId", "99999999-9999-9999-999999999999"),
Map.entry("upn", "myupn@microsoft.com")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
adc_catalog = azure_native.datacatalog.ADCCatalog("adcCatalog",
admins=[azure_native.datacatalog.PrincipalsArgs(
object_id="99999999-9999-9999-999999999999",
upn="myupn@microsoft.com",
)],
catalog_name="exampleCatalog",
enable_automatic_unit_adjustment=False,
location="North US",
resource_group_name="exampleResourceGroup",
sku="Standard",
tags={
"mykey": "myvalue",
"mykey2": "myvalue2",
},
units=1,
users=[azure_native.datacatalog.PrincipalsArgs(
object_id="99999999-9999-9999-999999999999",
upn="myupn@microsoft.com",
)])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const adcCatalog = new azure_native.datacatalog.ADCCatalog("adcCatalog", {
admins: [{
objectId: "99999999-9999-9999-999999999999",
upn: "myupn@microsoft.com",
}],
catalogName: "exampleCatalog",
enableAutomaticUnitAdjustment: false,
location: "North US",
resourceGroupName: "exampleResourceGroup",
sku: "Standard",
tags: {
mykey: "myvalue",
mykey2: "myvalue2",
},
units: 1,
users: [{
objectId: "99999999-9999-9999-999999999999",
upn: "myupn@microsoft.com",
}],
});
resources:
adcCatalog:
type: azure-native:datacatalog:ADCCatalog
properties:
admins:
- objectId: 99999999-9999-9999-999999999999
upn: myupn@microsoft.com
catalogName: exampleCatalog
enableAutomaticUnitAdjustment: false
location: North US
resourceGroupName: exampleResourceGroup
sku: Standard
tags:
mykey: myvalue
mykey2: myvalue2
units: 1
users:
- objectId: 99999999-9999-9999-999999999999
upn: myupn@microsoft.com
Create ADCCatalog Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ADCCatalog(name: string, args: ADCCatalogArgs, opts?: CustomResourceOptions);
@overload
def ADCCatalog(resource_name: str,
args: ADCCatalogArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ADCCatalog(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
admins: Optional[Sequence[PrincipalsArgs]] = None,
catalog_name: Optional[str] = None,
enable_automatic_unit_adjustment: Optional[bool] = None,
location: Optional[str] = None,
sku: Optional[Union[str, SkuType]] = None,
successfully_provisioned: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
units: Optional[int] = None,
users: Optional[Sequence[PrincipalsArgs]] = None)
func NewADCCatalog(ctx *Context, name string, args ADCCatalogArgs, opts ...ResourceOption) (*ADCCatalog, error)
public ADCCatalog(string name, ADCCatalogArgs args, CustomResourceOptions? opts = null)
public ADCCatalog(String name, ADCCatalogArgs args)
public ADCCatalog(String name, ADCCatalogArgs args, CustomResourceOptions options)
type: azure-native:datacatalog:ADCCatalog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ADCCatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ADCCatalogArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ADCCatalogArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ADCCatalogArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ADCCatalogArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var adccatalogResource = new AzureNative.Datacatalog.ADCCatalog("adccatalogResource", new()
{
ResourceGroupName = "string",
Admins = new[]
{
{
{ "objectId", "string" },
{ "upn", "string" },
},
},
CatalogName = "string",
EnableAutomaticUnitAdjustment = false,
Location = "string",
Sku = "string",
SuccessfullyProvisioned = false,
Tags =
{
{ "string", "string" },
},
Units = 0,
Users = new[]
{
{
{ "objectId", "string" },
{ "upn", "string" },
},
},
});
example, err := datacatalog.NewADCCatalog(ctx, "adccatalogResource", &datacatalog.ADCCatalogArgs{
ResourceGroupName: "string",
Admins: []map[string]interface{}{
map[string]interface{}{
"objectId": "string",
"upn": "string",
},
},
CatalogName: "string",
EnableAutomaticUnitAdjustment: false,
Location: "string",
Sku: "string",
SuccessfullyProvisioned: false,
Tags: map[string]interface{}{
"string": "string",
},
Units: 0,
Users: []map[string]interface{}{
map[string]interface{}{
"objectId": "string",
"upn": "string",
},
},
})
var adccatalogResource = new ADCCatalog("adccatalogResource", ADCCatalogArgs.builder()
.resourceGroupName("string")
.admins(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.catalogName("string")
.enableAutomaticUnitAdjustment(false)
.location("string")
.sku("string")
.successfullyProvisioned(false)
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.units(0)
.users(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
adccatalog_resource = azure_native.datacatalog.ADCCatalog("adccatalogResource",
resource_group_name=string,
admins=[{
objectId: string,
upn: string,
}],
catalog_name=string,
enable_automatic_unit_adjustment=False,
location=string,
sku=string,
successfully_provisioned=False,
tags={
string: string,
},
units=0,
users=[{
objectId: string,
upn: string,
}])
const adccatalogResource = new azure_native.datacatalog.ADCCatalog("adccatalogResource", {
resourceGroupName: "string",
admins: [{
objectId: "string",
upn: "string",
}],
catalogName: "string",
enableAutomaticUnitAdjustment: false,
location: "string",
sku: "string",
successfullyProvisioned: false,
tags: {
string: "string",
},
units: 0,
users: [{
objectId: "string",
upn: "string",
}],
});
type: azure-native:datacatalog:ADCCatalog
properties:
admins:
- objectId: string
upn: string
catalogName: string
enableAutomaticUnitAdjustment: false
location: string
resourceGroupName: string
sku: string
successfullyProvisioned: false
tags:
string: string
units: 0
users:
- objectId: string
upn: string
ADCCatalog Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ADCCatalog resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Admins
List<Pulumi.
Azure Native. Data Catalog. Inputs. Principals> - Azure data catalog admin list.
- Catalog
Name string - The name of the data catalog in the specified subscription and resource group.
- Enable
Automatic boolUnit Adjustment - Automatic unit adjustment enabled or not.
- Location string
- Resource location
- Sku
string | Pulumi.
Azure Native. Data Catalog. Sku Type - Azure data catalog SKU.
- Successfully
Provisioned bool - Azure data catalog provision status.
- Dictionary<string, string>
- Resource tags
- Units int
- Azure data catalog units.
- Users
List<Pulumi.
Azure Native. Data Catalog. Inputs. Principals> - Azure data catalog user list.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Admins
[]Principals
Args - Azure data catalog admin list.
- Catalog
Name string - The name of the data catalog in the specified subscription and resource group.
- Enable
Automatic boolUnit Adjustment - Automatic unit adjustment enabled or not.
- Location string
- Resource location
- Sku
string | Sku
Type - Azure data catalog SKU.
- Successfully
Provisioned bool - Azure data catalog provision status.
- map[string]string
- Resource tags
- Units int
- Azure data catalog units.
- Users
[]Principals
Args - Azure data catalog user list.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- admins List<Principals>
- Azure data catalog admin list.
- catalog
Name String - The name of the data catalog in the specified subscription and resource group.
- enable
Automatic BooleanUnit Adjustment - Automatic unit adjustment enabled or not.
- location String
- Resource location
- sku
String | Sku
Type - Azure data catalog SKU.
- successfully
Provisioned Boolean - Azure data catalog provision status.
- Map<String,String>
- Resource tags
- units Integer
- Azure data catalog units.
- users List<Principals>
- Azure data catalog user list.
- resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- admins Principals[]
- Azure data catalog admin list.
- catalog
Name string - The name of the data catalog in the specified subscription and resource group.
- enable
Automatic booleanUnit Adjustment - Automatic unit adjustment enabled or not.
- location string
- Resource location
- sku
string | Sku
Type - Azure data catalog SKU.
- successfully
Provisioned boolean - Azure data catalog provision status.
- {[key: string]: string}
- Resource tags
- units number
- Azure data catalog units.
- users Principals[]
- Azure data catalog user list.
- resource_
group_ strname - The name of the resource group within the user's subscription. The name is case insensitive.
- admins
Sequence[Principals
Args] - Azure data catalog admin list.
- catalog_
name str - The name of the data catalog in the specified subscription and resource group.
- enable_
automatic_ boolunit_ adjustment - Automatic unit adjustment enabled or not.
- location str
- Resource location
- sku
str | Sku
Type - Azure data catalog SKU.
- successfully_
provisioned bool - Azure data catalog provision status.
- Mapping[str, str]
- Resource tags
- units int
- Azure data catalog units.
- users
Sequence[Principals
Args] - Azure data catalog user list.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- admins List<Property Map>
- Azure data catalog admin list.
- catalog
Name String - The name of the data catalog in the specified subscription and resource group.
- enable
Automatic BooleanUnit Adjustment - Automatic unit adjustment enabled or not.
- location String
- Resource location
- sku String | "Free" | "Standard"
- Azure data catalog SKU.
- successfully
Provisioned Boolean - Azure data catalog provision status.
- Map<String>
- Resource tags
- units Number
- Azure data catalog units.
- users List<Property Map>
- Azure data catalog user list.
Outputs
All input properties are implicitly available as output properties. Additionally, the ADCCatalog resource produces the following output properties:
Supporting Types
Principals, PrincipalsArgs
PrincipalsResponse, PrincipalsResponseArgs
SkuType, SkuTypeArgs
- Free
- Free
- Standard
- Standard
- Sku
Type Free - Free
- Sku
Type Standard - Standard
- Free
- Free
- Standard
- Standard
- Free
- Free
- Standard
- Standard
- FREE
- Free
- STANDARD
- Standard
- "Free"
- Free
- "Standard"
- Standard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datacatalog:ADCCatalog exampleCatalog /subscriptions/12345678-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataCatalog/catalogs/exampleCatalog
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0