UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

119 lines (118 loc) 5.07 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * The Azure AD for customers resource. * * Uses Azure REST API version 2023-05-17-preview. In version 2.x of the Azure Native provider, it used API version 2023-05-17-preview. */ export declare class CIAMTenant extends pulumi.CustomResource { /** * Get an existing CIAMTenant 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): CIAMTenant; /** * Returns true if the given object is an instance of CIAMTenant. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CIAMTenant; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The type of billing. Will be MAU for all new customers. Cannot be changed if value is 'MAU'. Learn more about Azure AD for customers billing at [aka.ms/b2cBilling](https://aka.ms/b2cbilling). */ readonly billingType: pulumi.Output<string>; /** * These properties are used to create the Azure AD for customers tenant. These properties are not part of the Azure resource. */ readonly createTenantProperties: pulumi.Output<outputs.azureactivedirectory.CreateCIAMTenantPropertiesResponse>; /** * The domain name of the tenant */ readonly domainName: pulumi.Output<string>; /** * The data from which the billing type took effect */ readonly effectiveStartDateUtc: pulumi.Output<string>; /** * The location in which the resource is hosted and data resides. Can be one of 'United States', 'Europe', 'Asia Pacific', or 'Australia'. Refer to [this documentation](https://aka.ms/ciam-data-location) for more information. */ readonly location: pulumi.Output<string>; /** * The name of the Azure AD for customers tenant resource. */ readonly name: pulumi.Output<string>; readonly provisioningState: pulumi.Output<string>; /** * SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling). */ readonly sku: pulumi.Output<outputs.azureactivedirectory.CIAMResourceSKUResponse>; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: pulumi.Output<outputs.azureactivedirectory.SystemDataResponse>; /** * Resource Tags */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * An identifier of the Azure AD for customers tenant. */ readonly tenantId: pulumi.Output<string | undefined>; /** * The type of the Azure AD for customers tenant resource. */ readonly type: pulumi.Output<string>; /** * Create a CIAMTenant resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CIAMTenantArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CIAMTenant resource. */ export interface CIAMTenantArgs { /** * These properties are used to create the Azure AD for customers tenant. These properties are not part of the Azure resource. */ createTenantProperties: pulumi.Input<inputs.azureactivedirectory.CreateCIAMTenantPropertiesArgs>; /** * The location in which the resource is hosted and data resides. Can be one of 'United States', 'Europe', 'Asia Pacific', or 'Australia'. Refer to [this documentation](https://aka.ms/ciam-data-location) for more information. */ location?: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The initial sub domain of the tenant. */ resourceName?: pulumi.Input<string>; /** * SKU properties of the Azure AD for customers tenant. Learn more about Azure AD for customers billing at [https://aka.ms/ciambilling](https://aka.ms/ciambilling). */ sku: pulumi.Input<inputs.azureactivedirectory.CIAMResourceSKUArgs>; /** * Resource Tags */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * An identifier of the Azure AD for customers tenant. */ tenantId?: pulumi.Input<string>; }