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

33 lines (32 loc) 1.18 kB
export declare const ComplianceState: { /** * The resource is in compliance with the policy. */ readonly Compliant: "Compliant"; /** * The resource is not in compliance with the policy. */ readonly NonCompliant: "NonCompliant"; /** * The compliance state of the resource is not known. */ readonly Unknown: "Unknown"; }; /** * The compliance state that should be set on the resource. */ export type ComplianceState = (typeof ComplianceState)[keyof typeof ComplianceState]; export declare const ResourceDiscoveryMode: { /** * Remediate resources that are already known to be non-compliant. */ readonly ExistingNonCompliant: "ExistingNonCompliant"; /** * Re-evaluate the compliance state of resources and then remediate the resources found to be non-compliant. The resourceIds filter cannot be used in this mode. */ readonly ReEvaluateCompliance: "ReEvaluateCompliance"; }; /** * The way resources to remediate are discovered. Defaults to ExistingNonCompliant if not specified. */ export type ResourceDiscoveryMode = (typeof ResourceDiscoveryMode)[keyof typeof ResourceDiscoveryMode];