configurations
Creates, updates, deletes, gets or lists a configurations
resource.
Overview
Name | configurations |
Type | Resource |
Id | azure.ad_hybrid_health_service.configurations |
Fields
Name | Datatype | Description |
---|---|---|
aadLicense | string | The Azure Active Directory license of the tenant. |
aadPremium | boolean | Indicate if the tenant has Azure Active Directory Premium license or not. |
agentAutoUpdate | boolean | Indicates if the tenant is configured to automatically receive updates for Azure Active Directory Connect Health client side features. |
alertSuppressionTimeInMins | integer | The time in minutes after which an alert will be auto-suppressed. |
consentedToMicrosoftDevOps | boolean | Indicates if the tenant data can be seen by Microsoft through Azure portal. |
countryLetterCode | string | The country letter code of the tenant. |
createdDate | string | The date, in UTC, when the tenant was onboarded to Azure Active Directory Connect Health. |
devOpsTtl | string | The date and time, in UTC, till when the tenant data can be seen by Microsoft through Azure portal. |
disabled | boolean | Indicates if the tenant is disabled in Azure Active Directory Connect Health. |
disabledReason | integer | The reason due to which the tenant was disabled in Azure Active Directory Connect Health. |
globalAdminsEmail | array | The list of global administrators for the tenant. |
initialDomain | string | The initial domain of the tenant. |
lastDisabled | string | The date and time, in UTC, when the tenant was last disabled in Azure Active Directory Connect Health. |
lastVerified | string | The date and time, in UTC, when the tenant onboarding status in Azure Active Directory Connect Health was last verified. |
onboarded | boolean | Indicates if the tenant is already onboarded to Azure Active Directory Connect Health. |
onboardingAllowed | boolean | Indicates if the tenant is allowed to onboard to Azure Active Directory Connect Health. |
pksCertificate | object | The certificate associated with the tenant to onboard data to Azure Active Directory Connect Health. |
privatePreviewTenant | boolean | Indicates if the tenant has signed up for private preview of Azure Active Directory Connect Health features. |
tenantId | string | The Id of the tenant. |
tenantInQuarantine | boolean | Indicates if data collection for this tenant is disabled or not. |
tenantName | string | The name of the tenant. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT |
| Gets the details of a tenant onboarded to Azure Active Directory Connect Health. |
update | UPDATE |
| Updates tenant properties for tenants onboarded to Azure Active Directory Connect Health. |
add | EXEC |
| Onboards a tenant in Azure Active Directory Connect Health. |
SELECT
examples
Gets the details of a tenant onboarded to Azure Active Directory Connect Health.
SELECT
aadLicense,
aadPremium,
agentAutoUpdate,
alertSuppressionTimeInMins,
consentedToMicrosoftDevOps,
countryLetterCode,
createdDate,
devOpsTtl,
disabled,
disabledReason,
globalAdminsEmail,
initialDomain,
lastDisabled,
lastVerified,
onboarded,
onboardingAllowed,
pksCertificate,
privatePreviewTenant,
tenantId,
tenantInQuarantine,
tenantName
FROM azure.ad_hybrid_health_service.configurations
;
UPDATE
example
Updates a configurations
resource.
/*+ update */
UPDATE azure.ad_hybrid_health_service.configurations
SET
tenantId = '{{ tenantId }}',
aadLicense = '{{ aadLicense }}',
aadPremium = true|false,
agentAutoUpdate = true|false,
alertSuppressionTimeInMins = '{{ alertSuppressionTimeInMins }}',
consentedToMicrosoftDevOps = true|false,
countryLetterCode = '{{ countryLetterCode }}',
createdDate = '{{ createdDate }}',
devOpsTtl = '{{ devOpsTtl }}',
disabled = true|false,
disabledReason = '{{ disabledReason }}',
globalAdminsEmail = '{{ globalAdminsEmail }}',
initialDomain = '{{ initialDomain }}',
lastDisabled = '{{ lastDisabled }}',
lastVerified = '{{ lastVerified }}',
onboardingAllowed = true|false,
onboarded = true|false,
pksCertificate = '{{ pksCertificate }}',
privatePreviewTenant = true|false,
tenantInQuarantine = true|false,
tenantName = '{{ tenantName }}'
WHERE
= '{{ }}';