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

205 lines (204 loc) 7.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Domain service. * * 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 DomainService extends pulumi.CustomResource { /** * Get an existing DomainService 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): DomainService; /** * Returns true if the given object is an instance of DomainService. 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 DomainService; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Configuration diagnostics data containing latest execution from client. */ readonly configDiagnostics: pulumi.Output<outputs.aad.ConfigDiagnosticsResponse | undefined>; /** * Deployment Id */ readonly deploymentId: pulumi.Output<string>; /** * Domain Configuration Type */ readonly domainConfigurationType: pulumi.Output<string | undefined>; /** * The name of the Azure domain that the user would like to deploy Domain Services to. */ readonly domainName: pulumi.Output<string | undefined>; /** * DomainSecurity Settings */ readonly domainSecuritySettings: pulumi.Output<outputs.aad.DomainSecuritySettingsResponse | undefined>; /** * Resource etag */ readonly etag: pulumi.Output<string | undefined>; /** * Enabled or Disabled flag to turn on Group-based filtered sync */ readonly filteredSync: pulumi.Output<string | undefined>; /** * Secure LDAP Settings */ readonly ldapsSettings: pulumi.Output<outputs.aad.LdapsSettingsResponse | undefined>; /** * Resource location */ readonly location: pulumi.Output<string | undefined>; /** * Migration Properties */ readonly migrationProperties: pulumi.Output<outputs.aad.MigrationPropertiesResponse>; /** * Resource name */ readonly name: pulumi.Output<string>; /** * Notification Settings */ readonly notificationSettings: pulumi.Output<outputs.aad.NotificationSettingsResponse | undefined>; /** * the current deployment or provisioning state, which only appears in the response. */ readonly provisioningState: pulumi.Output<string>; /** * List of ReplicaSets */ readonly replicaSets: pulumi.Output<outputs.aad.ReplicaSetResponse[] | undefined>; /** * Resource Forest Settings */ readonly resourceForestSettings: pulumi.Output<outputs.aad.ResourceForestSettingsResponse | undefined>; /** * Sku Type */ readonly sku: pulumi.Output<string | undefined>; /** * The unique sync application id of the Azure AD Domain Services deployment. */ readonly syncApplicationId: pulumi.Output<string>; /** * SyncOwner ReplicaSet Id */ readonly syncOwner: pulumi.Output<string>; /** * All or CloudOnly, All users in AAD are synced to AAD DS domain or only users actively syncing in the cloud */ readonly syncScope: pulumi.Output<string | undefined>; /** * 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>; /** * Data Model Version */ readonly version: pulumi.Output<number>; /** * Create a DomainService 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: DomainServiceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DomainService resource. */ export interface DomainServiceArgs { /** * Configuration diagnostics data containing latest execution from client. */ configDiagnostics?: pulumi.Input<inputs.aad.ConfigDiagnosticsArgs>; /** * Domain Configuration Type */ domainConfigurationType?: pulumi.Input<string>; /** * The name of the Azure domain that the user would like to deploy Domain Services to. */ domainName?: pulumi.Input<string>; /** * DomainSecurity Settings */ domainSecuritySettings?: pulumi.Input<inputs.aad.DomainSecuritySettingsArgs>; /** * The name of the domain service. */ domainServiceName?: pulumi.Input<string>; /** * Enabled or Disabled flag to turn on Group-based filtered sync */ filteredSync?: pulumi.Input<string | enums.aad.FilteredSync>; /** * Secure LDAP Settings */ ldapsSettings?: pulumi.Input<inputs.aad.LdapsSettingsArgs>; /** * Resource location */ location?: pulumi.Input<string>; /** * Notification Settings */ notificationSettings?: pulumi.Input<inputs.aad.NotificationSettingsArgs>; /** * List of ReplicaSets */ replicaSets?: pulumi.Input<pulumi.Input<inputs.aad.ReplicaSetArgs>[]>; /** * Resource Forest Settings */ resourceForestSettings?: pulumi.Input<inputs.aad.ResourceForestSettingsArgs>; /** * The name of the resource group within the user's subscription. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Sku Type */ sku?: pulumi.Input<string>; /** * All or CloudOnly, All users in AAD are synced to AAD DS domain or only users actively syncing in the cloud */ syncScope?: pulumi.Input<string | enums.aad.SyncScope>; /** * Resource tags */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }