/** * @public * @enum */ export declare const AccountAccessType: { /** * Indicates that the customer is using Grafana to monitor resources in their current account. */ readonly CURRENT_ACCOUNT: "CURRENT_ACCOUNT"; /** * Indicates that the customer is using Grafana to monitor resources in organizational units. */ readonly ORGANIZATION: "ORGANIZATION"; }; /** * @public */ export type AccountAccessType = (typeof AccountAccessType)[keyof typeof AccountAccessType]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly CANNOT_PARSE: "CANNOT_PARSE"; readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED"; readonly OTHER: "OTHER"; readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const LicenseType: { /** * Grafana Enterprise License. */ readonly ENTERPRISE: "ENTERPRISE"; /** * Grafana Enterprise Free Trial License. */ readonly ENTERPRISE_FREE_TRIAL: "ENTERPRISE_FREE_TRIAL"; }; /** * @public */ export type LicenseType = (typeof LicenseType)[keyof typeof LicenseType]; /** * @public * @enum */ export declare const AuthenticationProviderTypes: { /** * Indicates that AMG workspace has AWS SSO enabled as its authentication provider. */ readonly AWS_SSO: "AWS_SSO"; /** * Indicates that the AMG workspace has SAML enabled as its authentication provider. */ readonly SAML: "SAML"; }; /** * @public */ export type AuthenticationProviderTypes = (typeof AuthenticationProviderTypes)[keyof typeof AuthenticationProviderTypes]; /** * @public * @enum */ export declare const SamlConfigurationStatus: { /** * Indicates that SAML on an AMG workspace is enabled and has been configured. */ readonly CONFIGURED: "CONFIGURED"; /** * Indicates that SAML on an AMG workspace is enabled but has not been configured. */ readonly NOT_CONFIGURED: "NOT_CONFIGURED"; }; /** * @public */ export type SamlConfigurationStatus = (typeof SamlConfigurationStatus)[keyof typeof SamlConfigurationStatus]; /** * @public * @enum */ export declare const DataSourceType: { /** * Amazon OpenSearch Service */ readonly AMAZON_OPENSEARCH_SERVICE: "AMAZON_OPENSEARCH_SERVICE"; /** * Amazon Athena */ readonly ATHENA: "ATHENA"; /** * CloudWatch Logs */ readonly CLOUDWATCH: "CLOUDWATCH"; /** * Managed Prometheus */ readonly PROMETHEUS: "PROMETHEUS"; /** * Redshift */ readonly REDSHIFT: "REDSHIFT"; /** * IoT SiteWise */ readonly SITEWISE: "SITEWISE"; /** * Timestream */ readonly TIMESTREAM: "TIMESTREAM"; /** * IoT TwinMaker */ readonly TWINMAKER: "TWINMAKER"; /** * X-Ray */ readonly XRAY: "XRAY"; }; /** * @public */ export type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType]; /** * @public * @enum */ export declare const NotificationDestinationType: { /** * AWS Simple Notification Service */ readonly SNS: "SNS"; }; /** * @public */ export type NotificationDestinationType = (typeof NotificationDestinationType)[keyof typeof NotificationDestinationType]; /** * @public * @enum */ export declare const PermissionType: { /** * Customer Managed */ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED"; /** * Service Managed */ readonly SERVICE_MANAGED: "SERVICE_MANAGED"; }; /** * @public */ export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType]; /** * @public * @enum */ export declare const WorkspaceStatus: { /** * Workspace is active. */ readonly ACTIVE: "ACTIVE"; /** * Workspace is being created. */ readonly CREATING: "CREATING"; /** * Workspace creation failed. */ readonly CREATION_FAILED: "CREATION_FAILED"; /** * Workspace is being deleted. */ readonly DELETING: "DELETING"; /** * Workspace deletion failed. */ readonly DELETION_FAILED: "DELETION_FAILED"; /** * Workspace is in an invalid state, it can only and should be deleted. */ readonly FAILED: "FAILED"; /** * Failed to remove enterprise license from workspace. */ readonly LICENSE_REMOVAL_FAILED: "LICENSE_REMOVAL_FAILED"; /** * Workspace update failed. */ readonly UPDATE_FAILED: "UPDATE_FAILED"; /** * Workspace is being updated. */ readonly UPDATING: "UPDATING"; /** * Workspace upgrade failed. */ readonly UPGRADE_FAILED: "UPGRADE_FAILED"; /** * Workspace is being upgraded to enterprise. */ readonly UPGRADING: "UPGRADING"; /** * Workspace version update failed. */ readonly VERSION_UPDATE_FAILED: "VERSION_UPDATE_FAILED"; /** * Workspace version is being updated. */ readonly VERSION_UPDATING: "VERSION_UPDATING"; }; /** * @public */ export type WorkspaceStatus = (typeof WorkspaceStatus)[keyof typeof WorkspaceStatus]; /** * @public * @enum */ export declare const UserType: { /** * SSO group. */ readonly SSO_GROUP: "SSO_GROUP"; /** * SSO user. */ readonly SSO_USER: "SSO_USER"; }; /** * @public */ export type UserType = (typeof UserType)[keyof typeof UserType]; /** * @public * @enum */ export declare const Role: { /** * Role Admin. */ readonly ADMIN: "ADMIN"; /** * Role Editor. */ readonly EDITOR: "EDITOR"; /** * Role Viewer. */ readonly VIEWER: "VIEWER"; }; /** * @public */ export type Role = (typeof Role)[keyof typeof Role]; /** * @public * @enum */ export declare const UpdateAction: { /** * Add permissions. */ readonly ADD: "ADD"; /** * Revoke permissions. */ readonly REVOKE: "REVOKE"; }; /** * @public */ export type UpdateAction = (typeof UpdateAction)[keyof typeof UpdateAction];