Skip to content

Commit

Permalink
Generated from 3f35282848f1c66a7e9ea9d63ada9acc4da797c4
Browse files Browse the repository at this point in the history
Make ComplianceState a string type property
  • Loading branch information
SDK Automation committed May 1, 2020
1 parent 092ab0e commit 77103cf
Showing 1 changed file with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,10 @@ export interface ErrorResponse {
*/
export interface ComplianceStatus {
/**
* The compliance state of the configuration. Possible values include: 'Pending', 'Compliant',
* 'Noncompliant'
* The compliance state of the configuration.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly complianceState?: ComplianceState;
readonly complianceState?: string;
/**
* Datetime the configuration was last applied.
*/
Expand Down Expand Up @@ -245,14 +244,6 @@ export interface ResourceProviderOperationList extends Array<ResourceProviderOpe
readonly nextLink?: string;
}

/**
* Defines values for ComplianceState.
* Possible values include: 'Pending', 'Compliant', 'Noncompliant'
* @readonly
* @enum {string}
*/
export type ComplianceState = 'Pending' | 'Compliant' | 'Noncompliant';

/**
* Defines values for MessageLevel.
* Possible values include: 'Error', 'Warning', 'Information'
Expand Down

0 comments on commit 77103cf

Please sign in to comment.