@nutanix-scratch/monitoring-js-client 4.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +49 -0
- package/README.md +197 -0
- package/dist/Ntnx-Monitoring-js-client-prod.js +1 -0
- package/dist/Ntnx-Monitoring-js-client.js +1466 -0
- package/dist/es/ApiClient.d.ts +159 -0
- package/dist/es/ApiClient.js +1211 -0
- package/dist/es/Paginable.d.ts +95 -0
- package/dist/es/Paginable.js +287 -0
- package/dist/es/apis/alertemailconfiguration-endpoints.d.ts +41 -0
- package/dist/es/apis/alertemailconfiguration-endpoints.js +141 -0
- package/dist/es/apis/alerts-endpoints.d.ts +103 -0
- package/dist/es/apis/alerts-endpoints.js +201 -0
- package/dist/es/apis/audits-endpoints.d.ts +91 -0
- package/dist/es/apis/audits-endpoints.js +189 -0
- package/dist/es/apis/events-endpoints.d.ts +81 -0
- package/dist/es/apis/events-endpoints.js +179 -0
- package/dist/es/apis/managealerts-endpoints.d.ts +34 -0
- package/dist/es/apis/managealerts-endpoints.js +118 -0
- package/dist/es/apis/userdefinedpolicies-endpoints.d.ts +117 -0
- package/dist/es/apis/userdefinedpolicies-endpoints.js +345 -0
- package/dist/es/index.d.ts +198 -0
- package/dist/es/index.js +788 -0
- package/dist/es/models/common/v1/config/FQDN.d.ts +48 -0
- package/dist/es/models/common/v1/config/FQDN.js +242 -0
- package/dist/es/models/common/v1/config/Flag.d.ts +58 -0
- package/dist/es/models/common/v1/config/Flag.js +275 -0
- package/dist/es/models/common/v1/config/IPAddressOrFQDN.d.ts +72 -0
- package/dist/es/models/common/v1/config/IPAddressOrFQDN.js +332 -0
- package/dist/es/models/common/v1/config/IPv4Address.d.ts +62 -0
- package/dist/es/models/common/v1/config/IPv4Address.js +288 -0
- package/dist/es/models/common/v1/config/IPv6Address.d.ts +62 -0
- package/dist/es/models/common/v1/config/IPv6Address.js +288 -0
- package/dist/es/models/common/v1/config/KVPair.d.ts +62 -0
- package/dist/es/models/common/v1/config/KVPair.js +332 -0
- package/dist/es/models/common/v1/config/KVStringPair.d.ts +62 -0
- package/dist/es/models/common/v1/config/KVStringPair.js +280 -0
- package/dist/es/models/common/v1/config/Message.d.ts +84 -0
- package/dist/es/models/common/v1/config/Message.js +354 -0
- package/dist/es/models/common/v1/config/MessageSeverity.d.ts +19 -0
- package/dist/es/models/common/v1/config/MessageSeverity.js +91 -0
- package/dist/es/models/common/v1/config/TenantAwareModel.d.ts +50 -0
- package/dist/es/models/common/v1/config/TenantAwareModel.js +243 -0
- package/dist/es/models/common/v1/response/ApiLink.d.ts +62 -0
- package/dist/es/models/common/v1/response/ApiLink.js +280 -0
- package/dist/es/models/common/v1/response/ApiResponseMetadata.d.ts +98 -0
- package/dist/es/models/common/v1/response/ApiResponseMetadata.js +438 -0
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.d.ts +42 -0
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.js +270 -0
- package/dist/es/models/monitoring/v4/common/AlertEntityReference.d.ts +74 -0
- package/dist/es/models/monitoring/v4/common/AlertEntityReference.js +320 -0
- package/dist/es/models/monitoring/v4/common/BoolValue.d.ts +57 -0
- package/dist/es/models/monitoring/v4/common/BoolValue.js +246 -0
- package/dist/es/models/monitoring/v4/common/CauseAndResolution.d.ts +62 -0
- package/dist/es/models/monitoring/v4/common/CauseAndResolution.js +280 -0
- package/dist/es/models/monitoring/v4/common/ComparisonOperator.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/ComparisonOperator.js +103 -0
- package/dist/es/models/monitoring/v4/common/ConditionType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/ConditionType.js +79 -0
- package/dist/es/models/monitoring/v4/common/DataType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/DataType.js +97 -0
- package/dist/es/models/monitoring/v4/common/DoubleValue.d.ts +57 -0
- package/dist/es/models/monitoring/v4/common/DoubleValue.js +246 -0
- package/dist/es/models/monitoring/v4/common/EntityReference.d.ts +74 -0
- package/dist/es/models/monitoring/v4/common/EntityReference.js +321 -0
- package/dist/es/models/monitoring/v4/common/ImpactType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/ImpactType.js +121 -0
- package/dist/es/models/monitoring/v4/common/IntValue.d.ts +57 -0
- package/dist/es/models/monitoring/v4/common/IntValue.js +247 -0
- package/dist/es/models/monitoring/v4/common/MetricDetail.d.ts +164 -0
- package/dist/es/models/monitoring/v4/common/MetricDetail.js +668 -0
- package/dist/es/models/monitoring/v4/common/OperationType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/OperationType.js +307 -0
- package/dist/es/models/monitoring/v4/common/Parameter.d.ts +62 -0
- package/dist/es/models/monitoring/v4/common/Parameter.js +304 -0
- package/dist/es/models/monitoring/v4/common/Severity.d.ts +19 -0
- package/dist/es/models/monitoring/v4/common/Severity.js +91 -0
- package/dist/es/models/monitoring/v4/common/StringValue.d.ts +57 -0
- package/dist/es/models/monitoring/v4/common/StringValue.js +246 -0
- package/dist/es/models/monitoring/v4/error/AppMessage.d.ts +108 -0
- package/dist/es/models/monitoring/v4/error/AppMessage.js +432 -0
- package/dist/es/models/monitoring/v4/error/ErrorResponse.d.ts +48 -0
- package/dist/es/models/monitoring/v4/error/ErrorResponse.js +300 -0
- package/dist/es/models/monitoring/v4/error/SchemaValidationError.d.ts +98 -0
- package/dist/es/models/monitoring/v4/error/SchemaValidationError.js +407 -0
- package/dist/es/models/monitoring/v4/error/SchemaValidationErrorMessage.d.ts +74 -0
- package/dist/es/models/monitoring/v4/error/SchemaValidationErrorMessage.js +318 -0
- package/dist/es/models/monitoring/v4/serviceability/ActionType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/ActionType.js +85 -0
- package/dist/es/models/monitoring/v4/serviceability/Alert.d.ts +316 -0
- package/dist/es/models/monitoring/v4/serviceability/Alert.js +1232 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertActionSpec.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertActionSpec.js +245 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertConfigExceptionGroup.d.ts +72 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertConfigExceptionGroup.js +337 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertDb.d.ts +210 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertDb.js +882 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertDbProjection.d.ts +49 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertDbProjection.js +300 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertEmailConfiguration.d.ts +153 -0
- package/dist/es/models/monitoring/v4/serviceability/AlertEmailConfiguration.js +632 -0
- package/dist/es/models/monitoring/v4/serviceability/Audit.d.ts +166 -0
- package/dist/es/models/monitoring/v4/serviceability/Audit.js +702 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditDb.d.ts +148 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditDb.js +598 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditDbProjection.d.ts +9 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditDbProjection.js +133 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditEntityReference.d.ts +74 -0
- package/dist/es/models/monitoring/v4/serviceability/AuditEntityReference.js +320 -0
- package/dist/es/models/monitoring/v4/serviceability/AutoResolve.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/AutoResolve.js +91 -0
- package/dist/es/models/monitoring/v4/serviceability/CommunicationStatus.d.ts +94 -0
- package/dist/es/models/monitoring/v4/serviceability/CommunicationStatus.js +390 -0
- package/dist/es/models/monitoring/v4/serviceability/Condition.d.ts +92 -0
- package/dist/es/models/monitoring/v4/serviceability/Condition.js +357 -0
- package/dist/es/models/monitoring/v4/serviceability/ConflictingPolicy.d.ts +60 -0
- package/dist/es/models/monitoring/v4/serviceability/ConflictingPolicy.js +250 -0
- package/dist/es/models/monitoring/v4/serviceability/ConnectionStatus.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/ConnectionStatus.js +97 -0
- package/dist/es/models/monitoring/v4/serviceability/CreateUdaPolicyApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/CreateUdaPolicyApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/DeleteUdaPolicyApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/DeleteUdaPolicyApiResponse.js +313 -0
- package/dist/es/models/monitoring/v4/serviceability/EmailConfigurationRule.d.ts +116 -0
- package/dist/es/models/monitoring/v4/serviceability/EmailConfigurationRule.js +507 -0
- package/dist/es/models/monitoring/v4/serviceability/EmailTemplate.d.ts +62 -0
- package/dist/es/models/monitoring/v4/serviceability/EmailTemplate.js +283 -0
- package/dist/es/models/monitoring/v4/serviceability/EntityFilter.d.ts +60 -0
- package/dist/es/models/monitoring/v4/serviceability/EntityFilter.js +250 -0
- package/dist/es/models/monitoring/v4/serviceability/Event.d.ts +150 -0
- package/dist/es/models/monitoring/v4/serviceability/Event.js +663 -0
- package/dist/es/models/monitoring/v4/serviceability/EventDb.d.ts +108 -0
- package/dist/es/models/monitoring/v4/serviceability/EventDb.js +463 -0
- package/dist/es/models/monitoring/v4/serviceability/EventDbProjection.d.ts +9 -0
- package/dist/es/models/monitoring/v4/serviceability/EventDbProjection.js +130 -0
- package/dist/es/models/monitoring/v4/serviceability/EventEntityReference.d.ts +74 -0
- package/dist/es/models/monitoring/v4/serviceability/EventEntityReference.js +320 -0
- package/dist/es/models/monitoring/v4/serviceability/FindConflictingUdaPoliciesApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/FindConflictingUdaPoliciesApiResponse.js +333 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAlertApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAlertApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAlertEmailConfigurationApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAlertEmailConfigurationApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAuditApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/GetAuditApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/GetEventApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/GetEventApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/GetUdaPolicyApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/GetUdaPolicyApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/GroupEntityType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/GroupEntityType.js +85 -0
- package/dist/es/models/monitoring/v4/serviceability/GroupFilter.d.ts +75 -0
- package/dist/es/models/monitoring/v4/serviceability/GroupFilter.js +291 -0
- package/dist/es/models/monitoring/v4/serviceability/HttpProxy.d.ts +110 -0
- package/dist/es/models/monitoring/v4/serviceability/HttpProxy.js +445 -0
- package/dist/es/models/monitoring/v4/serviceability/ListAlertsApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ListAlertsApiResponse.js +333 -0
- package/dist/es/models/monitoring/v4/serviceability/ListAuditsApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ListAuditsApiResponse.js +333 -0
- package/dist/es/models/monitoring/v4/serviceability/ListEventsApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ListEventsApiResponse.js +333 -0
- package/dist/es/models/monitoring/v4/serviceability/ListUdaPoliciesApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ListUdaPoliciesApiResponse.js +333 -0
- package/dist/es/models/monitoring/v4/serviceability/ManageAlertApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ManageAlertApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/ManageAlertsApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/ManageAlertsApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/ParameterizedMessage.d.ts +58 -0
- package/dist/es/models/monitoring/v4/serviceability/ParameterizedMessage.js +285 -0
- package/dist/es/models/monitoring/v4/serviceability/PolicySeverityLevel.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/PolicySeverityLevel.js +85 -0
- package/dist/es/models/monitoring/v4/serviceability/ProxyType.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/ProxyType.js +91 -0
- package/dist/es/models/monitoring/v4/serviceability/RelatedPolicy.d.ts +76 -0
- package/dist/es/models/monitoring/v4/serviceability/RelatedPolicy.js +298 -0
- package/dist/es/models/monitoring/v4/serviceability/RemoteTunnelDetails.d.ts +78 -0
- package/dist/es/models/monitoring/v4/serviceability/RemoteTunnelDetails.js +347 -0
- package/dist/es/models/monitoring/v4/serviceability/RootCauseAnalysis.d.ts +56 -0
- package/dist/es/models/monitoring/v4/serviceability/RootCauseAnalysis.js +300 -0
- package/dist/es/models/monitoring/v4/serviceability/RootCauseAnalysisProjection.d.ts +9 -0
- package/dist/es/models/monitoring/v4/serviceability/RootCauseAnalysisProjection.js +129 -0
- package/dist/es/models/monitoring/v4/serviceability/ServiceCenter.d.ts +88 -0
- package/dist/es/models/monitoring/v4/serviceability/ServiceCenter.js +367 -0
- package/dist/es/models/monitoring/v4/serviceability/SeverityThresholdInfo.d.ts +60 -0
- package/dist/es/models/monitoring/v4/serviceability/SeverityThresholdInfo.js +278 -0
- package/dist/es/models/monitoring/v4/serviceability/SeverityTrail.d.ts +60 -0
- package/dist/es/models/monitoring/v4/serviceability/SeverityTrail.js +278 -0
- package/dist/es/models/monitoring/v4/serviceability/Status.d.ts +19 -0
- package/dist/es/models/monitoring/v4/serviceability/Status.js +91 -0
- package/dist/es/models/monitoring/v4/serviceability/TriggerCondition.d.ts +88 -0
- package/dist/es/models/monitoring/v4/serviceability/TriggerCondition.js +326 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateAlertEmailConfigurationApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateAlertEmailConfigurationApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateSdaPolicyApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateSdaPolicyApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateUdaPolicyApiResponse.d.ts +59 -0
- package/dist/es/models/monitoring/v4/serviceability/UpdateUdaPolicyApiResponse.js +311 -0
- package/dist/es/models/monitoring/v4/serviceability/UserDefinedPolicy.d.ts +207 -0
- package/dist/es/models/monitoring/v4/serviceability/UserDefinedPolicy.js +843 -0
- package/dist/es/models/monitoring/v4/serviceability/UserReference.d.ts +74 -0
- package/dist/es/models/monitoring/v4/serviceability/UserReference.js +324 -0
- package/dist/es/models/prism/v4/config/TaskReference.d.ts +50 -0
- package/dist/es/models/prism/v4/config/TaskReference.js +249 -0
- package/dist/es/models/validation/ValidationError.d.ts +13 -0
- package/dist/es/models/validation/ValidationError.js +60 -0
- package/dist/es/models/validation/ValidationScopes.d.ts +9 -0
- package/dist/es/models/validation/ValidationScopes.js +38 -0
- package/dist/es/utils/ValidationUtils.d.ts +13 -0
- package/dist/es/utils/ValidationUtils.js +85 -0
- package/dist/lib/ApiClient.d.ts +159 -0
- package/dist/lib/ApiClient.js +1211 -0
- package/dist/lib/Paginable.d.ts +95 -0
- package/dist/lib/Paginable.js +287 -0
- package/dist/lib/apis/alertemailconfiguration-endpoints.d.ts +41 -0
- package/dist/lib/apis/alertemailconfiguration-endpoints.js +141 -0
- package/dist/lib/apis/alerts-endpoints.d.ts +103 -0
- package/dist/lib/apis/alerts-endpoints.js +201 -0
- package/dist/lib/apis/audits-endpoints.d.ts +91 -0
- package/dist/lib/apis/audits-endpoints.js +189 -0
- package/dist/lib/apis/events-endpoints.d.ts +81 -0
- package/dist/lib/apis/events-endpoints.js +179 -0
- package/dist/lib/apis/managealerts-endpoints.d.ts +34 -0
- package/dist/lib/apis/managealerts-endpoints.js +118 -0
- package/dist/lib/apis/userdefinedpolicies-endpoints.d.ts +117 -0
- package/dist/lib/apis/userdefinedpolicies-endpoints.js +345 -0
- package/dist/lib/index.d.ts +198 -0
- package/dist/lib/index.js +788 -0
- package/dist/lib/models/common/v1/config/FQDN.d.ts +48 -0
- package/dist/lib/models/common/v1/config/FQDN.js +242 -0
- package/dist/lib/models/common/v1/config/Flag.d.ts +58 -0
- package/dist/lib/models/common/v1/config/Flag.js +275 -0
- package/dist/lib/models/common/v1/config/IPAddressOrFQDN.d.ts +72 -0
- package/dist/lib/models/common/v1/config/IPAddressOrFQDN.js +332 -0
- package/dist/lib/models/common/v1/config/IPv4Address.d.ts +62 -0
- package/dist/lib/models/common/v1/config/IPv4Address.js +288 -0
- package/dist/lib/models/common/v1/config/IPv6Address.d.ts +62 -0
- package/dist/lib/models/common/v1/config/IPv6Address.js +288 -0
- package/dist/lib/models/common/v1/config/KVPair.d.ts +62 -0
- package/dist/lib/models/common/v1/config/KVPair.js +332 -0
- package/dist/lib/models/common/v1/config/KVStringPair.d.ts +62 -0
- package/dist/lib/models/common/v1/config/KVStringPair.js +280 -0
- package/dist/lib/models/common/v1/config/Message.d.ts +84 -0
- package/dist/lib/models/common/v1/config/Message.js +354 -0
- package/dist/lib/models/common/v1/config/MessageSeverity.d.ts +19 -0
- package/dist/lib/models/common/v1/config/MessageSeverity.js +91 -0
- package/dist/lib/models/common/v1/config/TenantAwareModel.d.ts +50 -0
- package/dist/lib/models/common/v1/config/TenantAwareModel.js +243 -0
- package/dist/lib/models/common/v1/response/ApiLink.d.ts +62 -0
- package/dist/lib/models/common/v1/response/ApiLink.js +280 -0
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.d.ts +98 -0
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.js +438 -0
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.d.ts +42 -0
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.js +270 -0
- package/dist/lib/models/monitoring/v4/common/AlertEntityReference.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/common/AlertEntityReference.js +320 -0
- package/dist/lib/models/monitoring/v4/common/BoolValue.d.ts +57 -0
- package/dist/lib/models/monitoring/v4/common/BoolValue.js +246 -0
- package/dist/lib/models/monitoring/v4/common/CauseAndResolution.d.ts +62 -0
- package/dist/lib/models/monitoring/v4/common/CauseAndResolution.js +280 -0
- package/dist/lib/models/monitoring/v4/common/ComparisonOperator.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/ComparisonOperator.js +103 -0
- package/dist/lib/models/monitoring/v4/common/ConditionType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/ConditionType.js +79 -0
- package/dist/lib/models/monitoring/v4/common/DataType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/DataType.js +97 -0
- package/dist/lib/models/monitoring/v4/common/DoubleValue.d.ts +57 -0
- package/dist/lib/models/monitoring/v4/common/DoubleValue.js +246 -0
- package/dist/lib/models/monitoring/v4/common/EntityReference.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/common/EntityReference.js +321 -0
- package/dist/lib/models/monitoring/v4/common/ImpactType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/ImpactType.js +121 -0
- package/dist/lib/models/monitoring/v4/common/IntValue.d.ts +57 -0
- package/dist/lib/models/monitoring/v4/common/IntValue.js +247 -0
- package/dist/lib/models/monitoring/v4/common/MetricDetail.d.ts +164 -0
- package/dist/lib/models/monitoring/v4/common/MetricDetail.js +668 -0
- package/dist/lib/models/monitoring/v4/common/OperationType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/OperationType.js +307 -0
- package/dist/lib/models/monitoring/v4/common/Parameter.d.ts +62 -0
- package/dist/lib/models/monitoring/v4/common/Parameter.js +304 -0
- package/dist/lib/models/monitoring/v4/common/Severity.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/common/Severity.js +91 -0
- package/dist/lib/models/monitoring/v4/common/StringValue.d.ts +57 -0
- package/dist/lib/models/monitoring/v4/common/StringValue.js +246 -0
- package/dist/lib/models/monitoring/v4/error/AppMessage.d.ts +108 -0
- package/dist/lib/models/monitoring/v4/error/AppMessage.js +432 -0
- package/dist/lib/models/monitoring/v4/error/ErrorResponse.d.ts +48 -0
- package/dist/lib/models/monitoring/v4/error/ErrorResponse.js +300 -0
- package/dist/lib/models/monitoring/v4/error/SchemaValidationError.d.ts +98 -0
- package/dist/lib/models/monitoring/v4/error/SchemaValidationError.js +407 -0
- package/dist/lib/models/monitoring/v4/error/SchemaValidationErrorMessage.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/error/SchemaValidationErrorMessage.js +318 -0
- package/dist/lib/models/monitoring/v4/serviceability/ActionType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/ActionType.js +85 -0
- package/dist/lib/models/monitoring/v4/serviceability/Alert.d.ts +316 -0
- package/dist/lib/models/monitoring/v4/serviceability/Alert.js +1232 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertActionSpec.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertActionSpec.js +245 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertConfigExceptionGroup.d.ts +72 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertConfigExceptionGroup.js +337 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertDb.d.ts +210 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertDb.js +882 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertDbProjection.d.ts +49 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertDbProjection.js +300 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertEmailConfiguration.d.ts +153 -0
- package/dist/lib/models/monitoring/v4/serviceability/AlertEmailConfiguration.js +632 -0
- package/dist/lib/models/monitoring/v4/serviceability/Audit.d.ts +166 -0
- package/dist/lib/models/monitoring/v4/serviceability/Audit.js +702 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditDb.d.ts +148 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditDb.js +598 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditDbProjection.d.ts +9 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditDbProjection.js +133 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditEntityReference.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/serviceability/AuditEntityReference.js +320 -0
- package/dist/lib/models/monitoring/v4/serviceability/AutoResolve.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/AutoResolve.js +91 -0
- package/dist/lib/models/monitoring/v4/serviceability/CommunicationStatus.d.ts +94 -0
- package/dist/lib/models/monitoring/v4/serviceability/CommunicationStatus.js +390 -0
- package/dist/lib/models/monitoring/v4/serviceability/Condition.d.ts +92 -0
- package/dist/lib/models/monitoring/v4/serviceability/Condition.js +357 -0
- package/dist/lib/models/monitoring/v4/serviceability/ConflictingPolicy.d.ts +60 -0
- package/dist/lib/models/monitoring/v4/serviceability/ConflictingPolicy.js +250 -0
- package/dist/lib/models/monitoring/v4/serviceability/ConnectionStatus.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/ConnectionStatus.js +97 -0
- package/dist/lib/models/monitoring/v4/serviceability/CreateUdaPolicyApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/CreateUdaPolicyApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/DeleteUdaPolicyApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/DeleteUdaPolicyApiResponse.js +313 -0
- package/dist/lib/models/monitoring/v4/serviceability/EmailConfigurationRule.d.ts +116 -0
- package/dist/lib/models/monitoring/v4/serviceability/EmailConfigurationRule.js +507 -0
- package/dist/lib/models/monitoring/v4/serviceability/EmailTemplate.d.ts +62 -0
- package/dist/lib/models/monitoring/v4/serviceability/EmailTemplate.js +283 -0
- package/dist/lib/models/monitoring/v4/serviceability/EntityFilter.d.ts +60 -0
- package/dist/lib/models/monitoring/v4/serviceability/EntityFilter.js +250 -0
- package/dist/lib/models/monitoring/v4/serviceability/Event.d.ts +150 -0
- package/dist/lib/models/monitoring/v4/serviceability/Event.js +663 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventDb.d.ts +108 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventDb.js +463 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventDbProjection.d.ts +9 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventDbProjection.js +130 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventEntityReference.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/serviceability/EventEntityReference.js +320 -0
- package/dist/lib/models/monitoring/v4/serviceability/FindConflictingUdaPoliciesApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/FindConflictingUdaPoliciesApiResponse.js +333 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAlertApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAlertApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAlertEmailConfigurationApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAlertEmailConfigurationApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAuditApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetAuditApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetEventApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetEventApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetUdaPolicyApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/GetUdaPolicyApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/GroupEntityType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/GroupEntityType.js +85 -0
- package/dist/lib/models/monitoring/v4/serviceability/GroupFilter.d.ts +75 -0
- package/dist/lib/models/monitoring/v4/serviceability/GroupFilter.js +291 -0
- package/dist/lib/models/monitoring/v4/serviceability/HttpProxy.d.ts +110 -0
- package/dist/lib/models/monitoring/v4/serviceability/HttpProxy.js +445 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListAlertsApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListAlertsApiResponse.js +333 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListAuditsApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListAuditsApiResponse.js +333 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListEventsApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListEventsApiResponse.js +333 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListUdaPoliciesApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ListUdaPoliciesApiResponse.js +333 -0
- package/dist/lib/models/monitoring/v4/serviceability/ManageAlertApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ManageAlertApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/ManageAlertsApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/ManageAlertsApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/ParameterizedMessage.d.ts +58 -0
- package/dist/lib/models/monitoring/v4/serviceability/ParameterizedMessage.js +285 -0
- package/dist/lib/models/monitoring/v4/serviceability/PolicySeverityLevel.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/PolicySeverityLevel.js +85 -0
- package/dist/lib/models/monitoring/v4/serviceability/ProxyType.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/ProxyType.js +91 -0
- package/dist/lib/models/monitoring/v4/serviceability/RelatedPolicy.d.ts +76 -0
- package/dist/lib/models/monitoring/v4/serviceability/RelatedPolicy.js +298 -0
- package/dist/lib/models/monitoring/v4/serviceability/RemoteTunnelDetails.d.ts +78 -0
- package/dist/lib/models/monitoring/v4/serviceability/RemoteTunnelDetails.js +347 -0
- package/dist/lib/models/monitoring/v4/serviceability/RootCauseAnalysis.d.ts +56 -0
- package/dist/lib/models/monitoring/v4/serviceability/RootCauseAnalysis.js +300 -0
- package/dist/lib/models/monitoring/v4/serviceability/RootCauseAnalysisProjection.d.ts +9 -0
- package/dist/lib/models/monitoring/v4/serviceability/RootCauseAnalysisProjection.js +129 -0
- package/dist/lib/models/monitoring/v4/serviceability/ServiceCenter.d.ts +88 -0
- package/dist/lib/models/monitoring/v4/serviceability/ServiceCenter.js +367 -0
- package/dist/lib/models/monitoring/v4/serviceability/SeverityThresholdInfo.d.ts +60 -0
- package/dist/lib/models/monitoring/v4/serviceability/SeverityThresholdInfo.js +278 -0
- package/dist/lib/models/monitoring/v4/serviceability/SeverityTrail.d.ts +60 -0
- package/dist/lib/models/monitoring/v4/serviceability/SeverityTrail.js +278 -0
- package/dist/lib/models/monitoring/v4/serviceability/Status.d.ts +19 -0
- package/dist/lib/models/monitoring/v4/serviceability/Status.js +91 -0
- package/dist/lib/models/monitoring/v4/serviceability/TriggerCondition.d.ts +88 -0
- package/dist/lib/models/monitoring/v4/serviceability/TriggerCondition.js +326 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateAlertEmailConfigurationApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateAlertEmailConfigurationApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateSdaPolicyApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateSdaPolicyApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateUdaPolicyApiResponse.d.ts +59 -0
- package/dist/lib/models/monitoring/v4/serviceability/UpdateUdaPolicyApiResponse.js +311 -0
- package/dist/lib/models/monitoring/v4/serviceability/UserDefinedPolicy.d.ts +207 -0
- package/dist/lib/models/monitoring/v4/serviceability/UserDefinedPolicy.js +843 -0
- package/dist/lib/models/monitoring/v4/serviceability/UserReference.d.ts +74 -0
- package/dist/lib/models/monitoring/v4/serviceability/UserReference.js +324 -0
- package/dist/lib/models/prism/v4/config/TaskReference.d.ts +50 -0
- package/dist/lib/models/prism/v4/config/TaskReference.js +249 -0
- package/dist/lib/models/validation/ValidationError.d.ts +13 -0
- package/dist/lib/models/validation/ValidationError.js +60 -0
- package/dist/lib/models/validation/ValidationScopes.d.ts +9 -0
- package/dist/lib/models/validation/ValidationScopes.js +38 -0
- package/dist/lib/utils/ValidationUtils.d.ts +13 -0
- package/dist/lib/utils/ValidationUtils.js +85 -0
- package/package.json +53 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The EntityReference model module.
|
|
3
|
+
* @module Ntnx/EntityReference
|
|
4
|
+
* @version 4.0.1-beta-1
|
|
5
|
+
* @class EntityReference
|
|
6
|
+
*/
|
|
7
|
+
export default class EntityReference {
|
|
8
|
+
/**
|
|
9
|
+
* Constructs a <code>EntityReference</code> from a plain JavaScript object, optionally creating a new instance.
|
|
10
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
11
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
12
|
+
* @param {module:Ntnx/EntityReference} obj Optional instance to populate.
|
|
13
|
+
* @param callFromChild {Boolean} Flag to recognise calling instance
|
|
14
|
+
* @return {module:Ntnx/EntityReference} The populated <code>EntityReference</code> instance.
|
|
15
|
+
*/
|
|
16
|
+
static constructFromObject(data: any, obj: any, callFromChild?: boolean): any;
|
|
17
|
+
$objectType: string;
|
|
18
|
+
$reserved: {
|
|
19
|
+
$fv: string;
|
|
20
|
+
};
|
|
21
|
+
$unknownFields: {};
|
|
22
|
+
/**
|
|
23
|
+
* Returns The type of entity. For example, VM, node, or cluster.
|
|
24
|
+
* @return {}
|
|
25
|
+
*/
|
|
26
|
+
getType(): any;
|
|
27
|
+
/**
|
|
28
|
+
* Sets The type of entity. For example, VM, node, or cluster.
|
|
29
|
+
* @param {} type The type of entity. For example, VM, node, or cluster.
|
|
30
|
+
*/
|
|
31
|
+
setType(type: any): void;
|
|
32
|
+
type: any;
|
|
33
|
+
/**
|
|
34
|
+
* Returns The name of the entity.
|
|
35
|
+
* @return {}
|
|
36
|
+
*/
|
|
37
|
+
getName(): any;
|
|
38
|
+
/**
|
|
39
|
+
* Sets The name of the entity.
|
|
40
|
+
* @param {} name The name of the entity.
|
|
41
|
+
*/
|
|
42
|
+
setName(name: any): void;
|
|
43
|
+
name: any;
|
|
44
|
+
/**
|
|
45
|
+
* Returns Unique UUID of the entity.
|
|
46
|
+
* @return {}
|
|
47
|
+
*/
|
|
48
|
+
getExtId(): any;
|
|
49
|
+
/**
|
|
50
|
+
* Sets Unique UUID of the entity.
|
|
51
|
+
* @param {} extId Unique UUID of the entity.
|
|
52
|
+
*/
|
|
53
|
+
setExtId(extId: any): void;
|
|
54
|
+
extId: any;
|
|
55
|
+
get$Reserved(): {
|
|
56
|
+
$fv: string;
|
|
57
|
+
};
|
|
58
|
+
get$ObjectType(): string;
|
|
59
|
+
get$UnknownFields(): {};
|
|
60
|
+
toJson(forMutation: any): {
|
|
61
|
+
$reserved: {
|
|
62
|
+
$fv: string;
|
|
63
|
+
};
|
|
64
|
+
$objectType: string;
|
|
65
|
+
$unknownFields: {};
|
|
66
|
+
extId?: any;
|
|
67
|
+
name?: any;
|
|
68
|
+
type?: any;
|
|
69
|
+
};
|
|
70
|
+
validate(scope: any, properties: any, ...args: any[]): Promise<any>;
|
|
71
|
+
validateProperty(scope: any, property: any): ValidationError;
|
|
72
|
+
#private;
|
|
73
|
+
}
|
|
74
|
+
import ValidationError from "../../../validation/ValidationError";
|
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
|
|
8
|
+
var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
|
|
9
|
+
var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
12
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
13
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
14
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
15
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
16
|
+
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
|
|
17
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
18
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
19
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
20
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
21
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
22
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
23
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
24
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
25
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
26
|
+
function _classPrivateMethodInitSpec(obj, privateSet) { _checkPrivateRedeclaration(obj, privateSet); privateSet.add(obj); }
|
|
27
|
+
function _checkPrivateRedeclaration(obj, privateCollection) { if (privateCollection.has(obj)) { throw new TypeError("Cannot initialize the same private elements twice on an object"); } } /*
|
|
28
|
+
* Nutanix Monitoring Versioned APIs
|
|
29
|
+
*
|
|
30
|
+
* OpenAPI spec version: 4.0.1-beta-1
|
|
31
|
+
*
|
|
32
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
33
|
+
*
|
|
34
|
+
* Open API Dev Platform Codegen version: 16.8.0.7344-RELEASE
|
|
35
|
+
*
|
|
36
|
+
* Do not edit the class manually.
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
/**
|
|
40
|
+
* The EntityReference model module.
|
|
41
|
+
* @module Ntnx/EntityReference
|
|
42
|
+
* @version 4.0.1-beta-1
|
|
43
|
+
* @class EntityReference
|
|
44
|
+
*/
|
|
45
|
+
var _EntityReference_brand = /*#__PURE__*/new WeakSet();
|
|
46
|
+
var EntityReference = exports["default"] = /*#__PURE__*/function () {
|
|
47
|
+
/**
|
|
48
|
+
* Constructs a new <code>EntityReference</code>.
|
|
49
|
+
* The source entity associated with the alert, event, or audit.
|
|
50
|
+
* @alias module:Ntnx/EntityReference
|
|
51
|
+
*/
|
|
52
|
+
function EntityReference() {
|
|
53
|
+
_classCallCheck(this, EntityReference);
|
|
54
|
+
/*
|
|
55
|
+
* toJson method for a map type which supports map with primitive keys and values of object types
|
|
56
|
+
* @param {Object} obj
|
|
57
|
+
* @returns {Object|Map} Returns a new transofrmed Map by calling toJson on the values if applicable.
|
|
58
|
+
* Otherwise, just returns the input object.
|
|
59
|
+
*/
|
|
60
|
+
_classPrivateMethodInitSpec(this, _EntityReference_brand);
|
|
61
|
+
this.$objectType = "monitoring.v4.common.EntityReference";
|
|
62
|
+
this.$reserved = {
|
|
63
|
+
'$fv': "v4.r0.b1"
|
|
64
|
+
};
|
|
65
|
+
this.$unknownFields = {};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Constructs a <code>EntityReference</code> from a plain JavaScript object, optionally creating a new instance.
|
|
70
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
71
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
72
|
+
* @param {module:Ntnx/EntityReference} obj Optional instance to populate.
|
|
73
|
+
* @param callFromChild {Boolean} Flag to recognise calling instance
|
|
74
|
+
* @return {module:Ntnx/EntityReference} The populated <code>EntityReference</code> instance.
|
|
75
|
+
*/
|
|
76
|
+
return _createClass(EntityReference, [{
|
|
77
|
+
key: "getType",
|
|
78
|
+
value:
|
|
79
|
+
/**
|
|
80
|
+
* Returns The type of entity. For example, VM, node, or cluster.
|
|
81
|
+
* @return {}
|
|
82
|
+
*/
|
|
83
|
+
function getType() {
|
|
84
|
+
return this.type;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Sets The type of entity. For example, VM, node, or cluster.
|
|
89
|
+
* @param {} type The type of entity. For example, VM, node, or cluster.
|
|
90
|
+
*/
|
|
91
|
+
}, {
|
|
92
|
+
key: "setType",
|
|
93
|
+
value: function setType(type) {
|
|
94
|
+
this.type = type;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Returns The name of the entity.
|
|
99
|
+
* @return {}
|
|
100
|
+
*/
|
|
101
|
+
}, {
|
|
102
|
+
key: "getName",
|
|
103
|
+
value: function getName() {
|
|
104
|
+
return this.name;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Sets The name of the entity.
|
|
109
|
+
* @param {} name The name of the entity.
|
|
110
|
+
*/
|
|
111
|
+
}, {
|
|
112
|
+
key: "setName",
|
|
113
|
+
value: function setName(name) {
|
|
114
|
+
this.name = name;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Returns Unique UUID of the entity.
|
|
119
|
+
* @return {}
|
|
120
|
+
*/
|
|
121
|
+
}, {
|
|
122
|
+
key: "getExtId",
|
|
123
|
+
value: function getExtId() {
|
|
124
|
+
return this.extId;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Sets Unique UUID of the entity.
|
|
129
|
+
* @param {} extId Unique UUID of the entity.
|
|
130
|
+
*/
|
|
131
|
+
}, {
|
|
132
|
+
key: "setExtId",
|
|
133
|
+
value: function setExtId(extId) {
|
|
134
|
+
this.extId = extId;
|
|
135
|
+
}
|
|
136
|
+
}, {
|
|
137
|
+
key: "get$Reserved",
|
|
138
|
+
value: function get$Reserved() {
|
|
139
|
+
return this.$reserved;
|
|
140
|
+
}
|
|
141
|
+
}, {
|
|
142
|
+
key: "get$ObjectType",
|
|
143
|
+
value: function get$ObjectType() {
|
|
144
|
+
return this.$objectType;
|
|
145
|
+
}
|
|
146
|
+
}, {
|
|
147
|
+
key: "get$UnknownFields",
|
|
148
|
+
value: function get$UnknownFields() {
|
|
149
|
+
return this.$unknownFields;
|
|
150
|
+
}
|
|
151
|
+
}, {
|
|
152
|
+
key: "toJson",
|
|
153
|
+
value: function toJson(forMutation) {
|
|
154
|
+
if (forMutation === false) {
|
|
155
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getType() !== 'undefined' && this.getType() !== null ? {
|
|
156
|
+
'type': this.getType()
|
|
157
|
+
} : {}), typeof this.getName() !== 'undefined' && this.getName() !== null ? {
|
|
158
|
+
'name': this.getName()
|
|
159
|
+
} : {}), typeof this.getExtId() !== 'undefined' && this.getExtId() !== null ? {
|
|
160
|
+
'extId': this.getExtId()
|
|
161
|
+
} : {}), {}, {
|
|
162
|
+
'$reserved': this.get$Reserved(),
|
|
163
|
+
'$objectType': this.get$ObjectType(),
|
|
164
|
+
'$unknownFields': this.get$UnknownFields()
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getType() !== 'undefined' && this.getType() !== null ? {
|
|
168
|
+
'type': this.getType()
|
|
169
|
+
} : {}), typeof this.getName() !== 'undefined' && this.getName() !== null ? {
|
|
170
|
+
'name': this.getName()
|
|
171
|
+
} : {}), typeof this.getExtId() !== 'undefined' && this.getExtId() !== null ? {
|
|
172
|
+
'extId': this.getExtId()
|
|
173
|
+
} : {}), {}, {
|
|
174
|
+
'$reserved': this.get$Reserved(),
|
|
175
|
+
'$objectType': this.get$ObjectType(),
|
|
176
|
+
'$unknownFields': this.get$UnknownFields()
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
}, {
|
|
180
|
+
key: "validate",
|
|
181
|
+
value: function validate(scope, properties) {
|
|
182
|
+
var _this = this;
|
|
183
|
+
var propList = [];
|
|
184
|
+
if (arguments.length === 0 || arguments.length === 1 && arguments[0] instanceof _ValidationScopes["default"]) {
|
|
185
|
+
//cases validate() and validate(scope)
|
|
186
|
+
propList = [];
|
|
187
|
+
} else if (arguments.length === 1) {
|
|
188
|
+
//case validate(properties)
|
|
189
|
+
propList = arguments[0];
|
|
190
|
+
scope = null;
|
|
191
|
+
} else {
|
|
192
|
+
//case validate(scope, properties)
|
|
193
|
+
propList = arguments[1];
|
|
194
|
+
}
|
|
195
|
+
var res = [];
|
|
196
|
+
var err = null;
|
|
197
|
+
propList.forEach(function (property) {
|
|
198
|
+
err = _this.validateProperty(property, scope);
|
|
199
|
+
if (err) {
|
|
200
|
+
res.push(err);
|
|
201
|
+
}
|
|
202
|
+
});
|
|
203
|
+
return new Promise(function (resolve, reject) {
|
|
204
|
+
if (res.length !== 0) {
|
|
205
|
+
reject(err);
|
|
206
|
+
} else {
|
|
207
|
+
resolve();
|
|
208
|
+
}
|
|
209
|
+
});
|
|
210
|
+
}
|
|
211
|
+
}, {
|
|
212
|
+
key: "validateProperty",
|
|
213
|
+
value: function validateProperty(scope, property) {
|
|
214
|
+
if (property === "type") {
|
|
215
|
+
if (typeof this.type === 'undefined' || this.type === null) {
|
|
216
|
+
return new _ValidationError["default"]("type", "undefined or null");
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
if (property === "name") {
|
|
220
|
+
if (typeof this.name === 'undefined' || this.name === null) {
|
|
221
|
+
return new _ValidationError["default"]("name", "undefined or null");
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
if (property === "extId") {
|
|
225
|
+
if (typeof this.extId === 'undefined' || this.extId === null) {
|
|
226
|
+
return new _ValidationError["default"]("extId", "undefined or null");
|
|
227
|
+
}
|
|
228
|
+
if (!_ValidationUtils["default"].validatePattern(this.extId, /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/)) {
|
|
229
|
+
return new _ValidationError["default"]("extId", "does not satisfy required pattern: /^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/");
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
if (property === "$reserved") {
|
|
233
|
+
if (typeof this.$reserved === 'undefined' || this.$reserved === null) {
|
|
234
|
+
return new _ValidationError["default"]("$reserved", "undefined or null");
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
if (property === "$objectType") {
|
|
238
|
+
if (typeof this.$objectType === 'undefined' || this.$objectType === null) {
|
|
239
|
+
return new _ValidationError["default"]("$objectType", "undefined or null");
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
if (property === "$unknownFields") {
|
|
243
|
+
if (typeof this.$unknownFields === 'undefined' || this.$unknownFields === null) {
|
|
244
|
+
return new _ValidationError["default"]("$unknownFields", "undefined or null");
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
return new _ValidationError["default"](property, "no such property exists");
|
|
248
|
+
}
|
|
249
|
+
}], [{
|
|
250
|
+
key: "constructFromObject",
|
|
251
|
+
value: function constructFromObject(data, obj) {
|
|
252
|
+
var callFromChild = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
253
|
+
var items, item, i, itemArr, discriminator;
|
|
254
|
+
if (data) {
|
|
255
|
+
obj = obj || new EntityReference();
|
|
256
|
+
if (data.hasOwnProperty('type') && data.type !== null && data.type !== undefined) {
|
|
257
|
+
obj.setType(data['type']);
|
|
258
|
+
}
|
|
259
|
+
if (data.hasOwnProperty('name') && data.name !== null && data.name !== undefined) {
|
|
260
|
+
obj.setName(data['name']);
|
|
261
|
+
}
|
|
262
|
+
if (data.hasOwnProperty('extId') && data.extId !== null && data.extId !== undefined) {
|
|
263
|
+
obj.setExtId(data['extId']);
|
|
264
|
+
}
|
|
265
|
+
if (data.hasOwnProperty('$reserved')) {
|
|
266
|
+
obj.$reserved = data['$reserved'];
|
|
267
|
+
}
|
|
268
|
+
if (data.hasOwnProperty('$objectType')) {
|
|
269
|
+
obj.$objectType = data['$objectType'];
|
|
270
|
+
}
|
|
271
|
+
if (data.hasOwnProperty('$unknownFields')) {
|
|
272
|
+
obj.$unknownFields = data['$unknownFields'];
|
|
273
|
+
}
|
|
274
|
+
if (!callFromChild) {
|
|
275
|
+
obj.$unknownFields = _objectSpread({}, data.$unknownFields);
|
|
276
|
+
for (var property in data) {
|
|
277
|
+
if (!Object.keys(obj).includes(property) && !(property[0] === "$" && property.endsWith("ItemDiscriminator"))) {
|
|
278
|
+
obj.$unknownFields[property] = data[property];
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
return obj;
|
|
284
|
+
}
|
|
285
|
+
}]);
|
|
286
|
+
}();
|
|
287
|
+
/**
|
|
288
|
+
* The type of entity. For example, VM, node, or cluster.
|
|
289
|
+
* @memberof EntityReference
|
|
290
|
+
*/
|
|
291
|
+
function _toJsonMapType(obj, forMutation) {
|
|
292
|
+
if (obj instanceof Map) {
|
|
293
|
+
return Object.fromEntries(Array.from(obj, function (_ref) {
|
|
294
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
|
295
|
+
k = _ref2[0],
|
|
296
|
+
v = _ref2[1];
|
|
297
|
+
return [k, typeof v.toJson !== "undefined" ? v.toJson(forMutation) : v];
|
|
298
|
+
}));
|
|
299
|
+
} else if (_typeof(obj) === 'object' && obj != null && obj.constructor === Object) {
|
|
300
|
+
return Object.fromEntries(Array.from(Object.entries(obj), function (entry) {
|
|
301
|
+
return [entry[0], typeof entry[1].toJson !== "undefined" ? entry[1].toJson(forMutation) : entry[1]];
|
|
302
|
+
}));
|
|
303
|
+
}
|
|
304
|
+
return obj;
|
|
305
|
+
}
|
|
306
|
+
EntityReference.prototype.type = undefined;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* The name of the entity.
|
|
310
|
+
* @memberof EntityReference
|
|
311
|
+
*/
|
|
312
|
+
EntityReference.prototype.name = undefined;
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* Unique UUID of the entity.
|
|
316
|
+
* @memberof EntityReference
|
|
317
|
+
*/
|
|
318
|
+
EntityReference.prototype.extId = undefined;
|
|
319
|
+
EntityReference.prototype.$reserved = undefined;
|
|
320
|
+
EntityReference.prototype.$objectType = undefined;
|
|
321
|
+
EntityReference.prototype.$unknownFields = undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export default ImpactType;
|
|
2
|
+
/**
|
|
3
|
+
* *
|
|
4
|
+
*/
|
|
5
|
+
type ImpactType = string;
|
|
6
|
+
declare namespace ImpactType {
|
|
7
|
+
/**
|
|
8
|
+
* Returns a <code>ImpactType</code> enum value from a JavaScript object name.
|
|
9
|
+
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
|
|
10
|
+
* @return {ImpactType} The enum <code>ImpactType</code> value.
|
|
11
|
+
*/
|
|
12
|
+
function constructFromObject(obj: any): string;
|
|
13
|
+
/**
|
|
14
|
+
* Validates <code>ImpactType</code> enum value.
|
|
15
|
+
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
|
|
16
|
+
* @return {null} Throws error for invalid value.
|
|
17
|
+
*/
|
|
18
|
+
function validate(obj: any): null;
|
|
19
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
|
|
8
|
+
var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
|
|
9
|
+
var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
/*
|
|
12
|
+
* Nutanix Monitoring Versioned APIs
|
|
13
|
+
*
|
|
14
|
+
* OpenAPI spec version: 4.0.1-beta-1
|
|
15
|
+
*
|
|
16
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
17
|
+
*
|
|
18
|
+
* Open API Dev Platform Codegen version: 16.8.0.7344-RELEASE
|
|
19
|
+
*
|
|
20
|
+
* Do not edit the class manually.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Enum class ImpactType.
|
|
26
|
+
* @enum {string}
|
|
27
|
+
* @readonly
|
|
28
|
+
*/
|
|
29
|
+
var ImpactType = {
|
|
30
|
+
/**
|
|
31
|
+
* value: "$UNKNOWN"
|
|
32
|
+
* @const
|
|
33
|
+
*/
|
|
34
|
+
$UNKNOWN: "$UNKNOWN",
|
|
35
|
+
/**
|
|
36
|
+
* value: "$REDACTED"
|
|
37
|
+
* @const
|
|
38
|
+
*/
|
|
39
|
+
$REDACTED: "$REDACTED",
|
|
40
|
+
/**
|
|
41
|
+
* Impacts availability of certain services, data, or functionality in the system.
|
|
42
|
+
* @const
|
|
43
|
+
*/
|
|
44
|
+
AVAILABILITY: "AVAILABILITY",
|
|
45
|
+
/**
|
|
46
|
+
* Indicates there might be storage or memory issues in the system.
|
|
47
|
+
* @const
|
|
48
|
+
*/
|
|
49
|
+
CAPACITY: "CAPACITY",
|
|
50
|
+
/**
|
|
51
|
+
* Indicates that there might be connectivity issues between different entities due to incorrect configurations.
|
|
52
|
+
* @const
|
|
53
|
+
*/
|
|
54
|
+
CONFIGURATION: "CONFIGURATION",
|
|
55
|
+
/**
|
|
56
|
+
* Indicates that there might be performance issues in the system.
|
|
57
|
+
* @const
|
|
58
|
+
*/
|
|
59
|
+
PERFORMANCE: "PERFORMANCE",
|
|
60
|
+
/**
|
|
61
|
+
* Indicates that certain operations in the system might fail or might be interrupted.
|
|
62
|
+
* @const
|
|
63
|
+
*/
|
|
64
|
+
SYSTEM_INDICATOR: "SYSTEM_INDICATOR",
|
|
65
|
+
/**
|
|
66
|
+
* Indicates that there might be issues with CPU capacity.
|
|
67
|
+
* @const
|
|
68
|
+
*/
|
|
69
|
+
CPU_CAPACITY: "CPU_CAPACITY",
|
|
70
|
+
/**
|
|
71
|
+
* Indicates that there might be memory issues in the system.
|
|
72
|
+
* @const
|
|
73
|
+
*/
|
|
74
|
+
MEMORY_CAPACITY: "MEMORY_CAPACITY",
|
|
75
|
+
/**
|
|
76
|
+
* Indicates that there might be storage issues in the system.
|
|
77
|
+
* @const
|
|
78
|
+
*/
|
|
79
|
+
STORAGE_CAPACITY: "STORAGE_CAPACITY"
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Returns a <code>ImpactType</code> enum value from a JavaScript object name.
|
|
84
|
+
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
|
|
85
|
+
* @return {ImpactType} The enum <code>ImpactType</code> value.
|
|
86
|
+
*/
|
|
87
|
+
ImpactType.constructFromObject = function (obj) {
|
|
88
|
+
if (typeof obj === 'string' || obj instanceof String) {
|
|
89
|
+
var enumVal = Object.keys(ImpactType).find(function (key) {
|
|
90
|
+
return ImpactType[key] === obj;
|
|
91
|
+
});
|
|
92
|
+
return enumVal === undefined || enumVal === null ? ImpactType.$UNKNOWN : ImpactType[enumVal];
|
|
93
|
+
} else {
|
|
94
|
+
throw new Error("Received object name is not an instance of String");
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Validates <code>ImpactType</code> enum value.
|
|
100
|
+
* @param {Object} obj The plain JavaScript object containing the name of the enum value.
|
|
101
|
+
* @return {null} Throws error for invalid value.
|
|
102
|
+
*/
|
|
103
|
+
ImpactType.validate = function (obj) {
|
|
104
|
+
switch (obj) {
|
|
105
|
+
case ImpactType.$UNKNOWN:
|
|
106
|
+
case ImpactType.$REDACTED:
|
|
107
|
+
case ImpactType.AVAILABILITY:
|
|
108
|
+
case ImpactType.CAPACITY:
|
|
109
|
+
case ImpactType.CONFIGURATION:
|
|
110
|
+
case ImpactType.PERFORMANCE:
|
|
111
|
+
case ImpactType.SYSTEM_INDICATOR:
|
|
112
|
+
case ImpactType.CPU_CAPACITY:
|
|
113
|
+
case ImpactType.MEMORY_CAPACITY:
|
|
114
|
+
case ImpactType.STORAGE_CAPACITY:
|
|
115
|
+
return;
|
|
116
|
+
default:
|
|
117
|
+
throw new Error("Invalid : must be ImpactType.{ $UNKNOWN|$REDACTED|AVAILABILITY|CAPACITY|CONFIGURATION|PERFORMANCE|SYSTEM_INDICATOR|CPU_CAPACITY|MEMORY_CAPACITY|STORAGE_CAPACITY }");
|
|
118
|
+
}
|
|
119
|
+
};
|
|
120
|
+
Object.freeze(ImpactType);
|
|
121
|
+
var _default = exports["default"] = ImpactType;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The IntValue model module.
|
|
3
|
+
* @module Ntnx/IntValue
|
|
4
|
+
* @version 4.0.1-beta-1
|
|
5
|
+
* @class IntValue
|
|
6
|
+
*
|
|
7
|
+
* @param { Number } intValue
|
|
8
|
+
*/
|
|
9
|
+
export default class IntValue {
|
|
10
|
+
/**
|
|
11
|
+
* Constructs a <code>IntValue</code> from a plain JavaScript object, optionally creating a new instance.
|
|
12
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
13
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
14
|
+
* @param {module:Ntnx/IntValue} obj Optional instance to populate.
|
|
15
|
+
* @param callFromChild {Boolean} Flag to recognise calling instance
|
|
16
|
+
* @return {module:Ntnx/IntValue} The populated <code>IntValue</code> instance.
|
|
17
|
+
*/
|
|
18
|
+
static constructFromObject(data: any, obj: any, callFromChild?: boolean): any;
|
|
19
|
+
/**
|
|
20
|
+
* Constructs a new <code>IntValue</code>.
|
|
21
|
+
* @alias module:Ntnx/IntValue
|
|
22
|
+
*
|
|
23
|
+
* @param { Number } intValue
|
|
24
|
+
*/
|
|
25
|
+
constructor(intValue: number);
|
|
26
|
+
intValue: number;
|
|
27
|
+
$objectType: string;
|
|
28
|
+
$reserved: {
|
|
29
|
+
$fv: string;
|
|
30
|
+
};
|
|
31
|
+
$unknownFields: {};
|
|
32
|
+
/**
|
|
33
|
+
* @return {}
|
|
34
|
+
*/
|
|
35
|
+
getIntValue(): any;
|
|
36
|
+
/**
|
|
37
|
+
* @param {} intValue
|
|
38
|
+
*/
|
|
39
|
+
setIntValue(intValue: any): void;
|
|
40
|
+
get$Reserved(): {
|
|
41
|
+
$fv: string;
|
|
42
|
+
};
|
|
43
|
+
get$ObjectType(): string;
|
|
44
|
+
get$UnknownFields(): {};
|
|
45
|
+
toJson(forMutation: any): {
|
|
46
|
+
$reserved: {
|
|
47
|
+
$fv: string;
|
|
48
|
+
};
|
|
49
|
+
$objectType: string;
|
|
50
|
+
$unknownFields: {};
|
|
51
|
+
intValue?: any;
|
|
52
|
+
};
|
|
53
|
+
validate(scope: any, properties: any, ...args: any[]): Promise<any>;
|
|
54
|
+
validateProperty(scope: any, property: any): ValidationError;
|
|
55
|
+
#private;
|
|
56
|
+
}
|
|
57
|
+
import ValidationError from "../../../validation/ValidationError";
|