@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.43 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get OuContainer in DomainService instance.
*
* Uses Azure REST 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 function getOuContainer(args: GetOuContainerArgs, opts?: pulumi.InvokeOptions): Promise<GetOuContainerResult>;
export interface GetOuContainerArgs {
/**
* The name of the domain service.
*/
domainServiceName: string;
/**
* The name of the OuContainer.
*/
ouContainerName: string;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Resource for OuContainer.
*/
export interface GetOuContainerResult {
/**
* The list of container accounts
*/
readonly accounts?: outputs.aad.ContainerAccountResponse[];
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The OuContainer name
*/
readonly containerId: string;
/**
* The Deployment id
*/
readonly deploymentId: string;
/**
* Distinguished Name of OuContainer instance
*/
readonly distinguishedName: string;
/**
* The domain name of Domain Services.
*/
readonly domainName: string;
/**
* Resource etag
*/
readonly etag?: string;
/**
* Resource Id
*/
readonly id: string;
/**
* Resource location
*/
readonly location?: string;
/**
* Resource name
*/
readonly name: string;
/**
* The current deployment or provisioning state, which only appears in the response.
*/
readonly provisioningState: string;
/**
* Status of OuContainer instance
*/
readonly serviceStatus: string;
/**
* The system meta data relating to this resource.
*/
readonly systemData: outputs.aad.SystemDataResponse;
/**
* Resource tags
*/
readonly tags?: {
[key: string]: string;
};
/**
* Azure Active Directory tenant id
*/
readonly tenantId: string;
/**
* Resource type
*/
readonly type: string;
}
/**
* Get OuContainer in DomainService instance.
*
* Uses Azure REST 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 function getOuContainerOutput(args: GetOuContainerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOuContainerResult>;
export interface GetOuContainerOutputArgs {
/**
* The name of the domain service.
*/
domainServiceName: pulumi.Input<string>;
/**
* The name of the OuContainer.
*/
ouContainerName: pulumi.Input<string>;
/**
* The name of the resource group within the user's subscription. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}