export declare const ContentType: {
    /**
     * The content type is application/json.
     */
    readonly ApplicationJson: "application/json";
};
/**
 * content type
 */
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
export declare const EnableSslVerification: {
    /**
     * The ssl verification is enabled.
     */
    readonly True: "true";
    /**
     * The ssl verification is not enabled.
     */
    readonly False: "false";
};
/**
 * whether to enable ssl verification
 */
export type EnableSslVerification = (typeof EnableSslVerification)[keyof typeof EnableSslVerification];
export declare const EvidenceType: {
    /**
     * The evidence is a file.
     */
    readonly File: "File";
    /**
     * The evidence auto collected by App Compliance Automation.
     */
    readonly AutoCollectedEvidence: "AutoCollectedEvidence";
    /**
     * The evidence is data.
     */
    readonly Data: "Data";
};
/**
 * Evidence type.
 */
export type EvidenceType = (typeof EvidenceType)[keyof typeof EvidenceType];
export declare const NotificationEvent: {
    /**
     * The subscribed report's snapshot is successfully generated.
     */
    readonly Generate_snapshot_success: "generate_snapshot_success";
    /**
     * The subscribed report's snapshot is failed to generate.
     */
    readonly Generate_snapshot_failed: "generate_snapshot_failed";
    /**
     * The subscribed report failed while collecting the assessments.
     */
    readonly Assessment_failure: "assessment_failure";
    /**
     * The subscribed report's configuration is changed.
     */
    readonly Report_configuration_changes: "report_configuration_changes";
    /**
     * The subscribed report is deleted.
     */
    readonly Report_deletion: "report_deletion";
};
/**
 * notification event.
 */
export type NotificationEvent = (typeof NotificationEvent)[keyof typeof NotificationEvent];
export declare const ResourceOrigin: {
    /**
     * The resource is from Azure.
     */
    readonly Azure: "Azure";
    /**
     * The resource is from AWS.
     */
    readonly AWS: "AWS";
    /**
     * The resource is from GCP.
     */
    readonly GCP: "GCP";
};
/**
 * Resource Origin.
 */
export type ResourceOrigin = (typeof ResourceOrigin)[keyof typeof ResourceOrigin];
export declare const SendAllEvents: {
    /**
     * Need send notification under any event.
     */
    readonly True: "true";
    /**
     * No need to send notification under any event.
     */
    readonly False: "false";
};
/**
 * whether to send notification under any event.
 */
export type SendAllEvents = (typeof SendAllEvents)[keyof typeof SendAllEvents];
export declare const UpdateWebhookKey: {
    /**
     * Need update the webhook key.
     */
    readonly True: "true";
    /**
     * No need to update the webhook key.
     */
    readonly False: "false";
};
/**
 * whether to update webhookKey.
 */
export type UpdateWebhookKey = (typeof UpdateWebhookKey)[keyof typeof UpdateWebhookKey];
export declare const WebhookStatus: {
    /**
     * The webhook is enabled.
     */
    readonly Enabled: "Enabled";
    /**
     * The webhook is disabled.
     */
    readonly Disabled: "Disabled";
};
/**
 * Webhook status.
 */
export type WebhookStatus = (typeof WebhookStatus)[keyof typeof WebhookStatus];
