@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.12 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource for OuContainer.
*
* Uses Azure REST API version 2022-12-01. In version 2.x of the Azure Native provider, it used API version 2022-12-01.
*
* Other available API versions: 2025-05-01, 2025-06-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native aad [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare class OuContainer extends pulumi.CustomResource {
/**
* Get an existing OuContainer 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): OuContainer;
/**
* Returns true if the given object is an instance of OuContainer. 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 OuContainer;
/**
* The list of container accounts
*/
readonly accounts: pulumi.Output<outputs.aad.ContainerAccountResponse[] | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The OuContainer name
*/
readonly containerId: pulumi.Output<string>;
/**
* The Deployment id
*/
readonly deploymentId: pulumi.Output<string>;
/**
* Distinguished Name of OuContainer instance
*/
readonly distinguishedName: pulumi.Output<string>;
/**
* The domain name of Domain Services.
*/
readonly domainName: pulumi.Output<string>;
/**
* Resource etag
*/
readonly etag: pulumi.Output<string | undefined>;
/**
* Resource location
*/
readonly location: pulumi.Output<string | undefined>;
/**
* Resource name
*/
readonly name: pulumi.Output<string>;
/**
* The current deployment or provisioning state, which only appears in the response.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* Status of OuContainer instance
*/
readonly serviceStatus: pulumi.Output<string>;
/**
* The system meta data relating to this resource.
*/
readonly systemData: pulumi.Output<outputs.aad.SystemDataResponse>;
/**
* Resource tags
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* Azure Active Directory tenant id
*/
readonly tenantId: pulumi.Output<string>;
/**
* Resource type
*/
readonly type: pulumi.Output<string>;
/**
* Create a OuContainer 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: OuContainerArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a OuContainer resource.
*/
export interface OuContainerArgs {
/**
* The account name
*/
accountName?: pulumi.Input<string>;
/**
* The name of the domain service.
*/
domainServiceName: pulumi.Input<string>;
/**
* The name of the OuContainer.
*/
ouContainerName?: pulumi.Input<string>;
/**
* The account password
*/
password?: pulumi.Input<string>;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The account spn
*/
spn?: pulumi.Input<string>;
}