@nutanix-scratch/dataprotection-js-client 4.0.1-alpha.4 → 4.0.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 +202 -49
- package/README.md +64 -41
- package/dist/Ntnx-Dataprotection-js-client-prod.js +1 -11
- package/dist/Ntnx-Dataprotection-js-client.js +669 -1486
- package/dist/es/ApiClient.d.ts +9 -1
- package/dist/es/ApiClient.js +476 -261
- package/dist/es/Paginable.d.ts +1 -1
- package/dist/es/Paginable.js +23 -25
- package/dist/es/apis/protectedresources-endpoints.d.ts +52 -0
- package/dist/es/apis/protectedresources-endpoints.js +192 -0
- package/dist/es/apis/recoverypoints-endpoints.d.ts +186 -0
- package/dist/es/apis/recoverypoints-endpoints.js +655 -0
- package/dist/es/index.d.ts +95 -99
- package/dist/es/index.js +268 -285
- package/dist/es/models/common/v1/config/Flag.d.ts +33 -27
- package/dist/es/models/common/v1/config/Flag.js +86 -44
- package/dist/es/models/common/v1/config/IPAddress.d.ts +77 -0
- package/dist/es/models/common/v1/config/IPAddress.js +323 -0
- package/dist/es/models/common/v1/config/IPv4Address.d.ts +41 -27
- package/dist/es/models/common/v1/config/IPv4Address.js +85 -46
- package/dist/es/models/common/v1/config/IPv6Address.d.ts +76 -0
- package/dist/es/models/common/v1/config/IPv6Address.js +329 -0
- package/dist/es/models/common/v1/config/KVPair.d.ts +36 -27
- package/dist/es/models/common/v1/config/KVPair.js +94 -50
- package/dist/es/models/common/v1/config/MapOfStringWrapper.d.ts +58 -0
- package/dist/es/models/common/v1/config/MapOfStringWrapper.js +275 -0
- package/dist/es/models/common/v1/config/Message.d.ts +42 -39
- package/dist/es/models/common/v1/config/Message.js +78 -48
- package/dist/es/models/common/v1/config/MessageSeverity.js +15 -16
- package/dist/es/models/common/v1/config/TenantAwareModel.d.ts +25 -23
- package/dist/es/models/common/v1/config/TenantAwareModel.js +75 -45
- package/dist/es/models/common/v1/response/ApiLink.d.ts +29 -27
- package/dist/es/models/common/v1/response/ApiLink.js +75 -45
- package/dist/es/models/common/v1/response/ApiResponseMetadata.d.ts +82 -47
- package/dist/es/models/common/v1/response/ApiResponseMetadata.js +95 -53
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.d.ts +26 -20
- package/dist/es/models/common/v1/response/ExternalizableAbstractModel.js +100 -63
- package/dist/{lib/models/dataprotection/v4/config/PowerState.d.ts → es/models/dataprotection/v4/common/BackupType.d.ts} +6 -6
- package/dist/es/models/dataprotection/v4/common/BackupType.js +85 -0
- package/dist/es/models/dataprotection/v4/common/BaseRecoveryPoint.d.ts +49 -54
- package/dist/es/models/dataprotection/v4/common/BaseRecoveryPoint.js +113 -112
- package/dist/es/models/dataprotection/v4/common/BaseVmRecoveryPoint.d.ts +97 -0
- package/dist/es/models/dataprotection/v4/common/BaseVmRecoveryPoint.js +513 -0
- package/dist/es/models/dataprotection/v4/common/ClusterInfo.d.ts +81 -0
- package/dist/es/models/dataprotection/v4/common/ClusterInfo.js +312 -0
- package/dist/es/models/dataprotection/v4/common/DiskRecoveryPoint.d.ts +64 -0
- package/dist/es/models/dataprotection/v4/common/DiskRecoveryPoint.js +314 -0
- package/dist/es/models/dataprotection/v4/common/RecoveryPointStatus.js +11 -24
- package/dist/es/models/dataprotection/v4/common/RecoveryPointType.js +9 -10
- package/dist/es/models/dataprotection/v4/common/VssProperties.d.ts +97 -0
- package/dist/es/models/dataprotection/v4/common/VssProperties.js +407 -0
- package/dist/es/models/dataprotection/v4/config/AhvVmOverrideSpec.d.ts +23 -21
- package/dist/es/models/dataprotection/v4/config/AhvVmOverrideSpec.js +75 -45
- package/dist/es/models/dataprotection/v4/config/AmazonS3Bucket.d.ts +64 -0
- package/dist/es/models/dataprotection/v4/config/AmazonS3Bucket.js +321 -0
- package/dist/es/models/dataprotection/v4/config/AzureBlobStorageContainer.d.ts +64 -0
- package/dist/es/models/dataprotection/v4/config/AzureBlobStorageContainer.js +321 -0
- package/dist/es/models/dataprotection/v4/config/ClusterInfoApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/ClusterInfoApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroup.d.ts +76 -33
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroup.js +201 -73
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMember.d.ts +43 -45
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMember.js +107 -110
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMemberType.js +11 -12
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMigrationSpec.d.ts +32 -37
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMigrationSpec.js +119 -91
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupProjection.d.ts +6 -1
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupProjection.js +71 -44
- package/dist/es/models/dataprotection/v4/config/CreateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/CreateConsistencyGroupApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/CreateRecoveryPointApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/CreateRecoveryPointApiResponse.js +87 -62
- package/dist/es/models/dataprotection/v4/config/DataProtectionSiteReference.d.ts +39 -27
- package/dist/es/models/dataprotection/v4/config/DataProtectionSiteReference.js +100 -64
- package/dist/es/models/dataprotection/v4/config/DeleteConsistencyGroupApiResponse.d.ts +65 -26
- package/dist/es/models/dataprotection/v4/config/DeleteConsistencyGroupApiResponse.js +87 -58
- package/dist/es/models/dataprotection/v4/config/DeleteRecoveryPointApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/DeleteRecoveryPointApiResponse.js +87 -62
- package/dist/es/models/dataprotection/v4/config/EsxiVmOverrideSpec.d.ts +23 -21
- package/dist/es/models/dataprotection/v4/config/EsxiVmOverrideSpec.js +75 -45
- package/dist/es/models/dataprotection/v4/config/ExpirationTimeSpec.d.ts +62 -0
- package/dist/es/models/dataprotection/v4/config/ExpirationTimeSpec.js +280 -0
- package/dist/es/models/dataprotection/v4/config/GetProtectedResourceApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/GetProtectedResourceApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/GetRecoveryPointApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/GetRecoveryPointApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/GetVmRecoveryPointApiResponse.d.ts +101 -0
- package/dist/es/models/dataprotection/v4/config/GetVmRecoveryPointApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/HostReference.d.ts +26 -20
- package/dist/es/models/dataprotection/v4/config/HostReference.js +106 -58
- package/dist/es/models/dataprotection/v4/config/HostType.js +10 -11
- package/dist/es/models/dataprotection/v4/config/IpAddress.d.ts +29 -24
- package/dist/es/models/dataprotection/v4/config/IpAddress.js +76 -43
- package/dist/es/models/dataprotection/v4/config/ListRecoveryPointsApiResponse.d.ts +100 -0
- package/dist/es/models/dataprotection/v4/config/ListRecoveryPointsApiResponse.js +370 -0
- package/dist/es/models/dataprotection/v4/config/LocationReference.d.ts +25 -23
- package/dist/es/models/dataprotection/v4/config/LocationReference.js +76 -46
- package/dist/es/models/dataprotection/v4/config/MigrateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/MigrateConsistencyGroupApiResponse.js +343 -0
- package/dist/es/models/dataprotection/v4/config/NutanixObjectsBucket.d.ts +52 -0
- package/dist/es/models/dataprotection/v4/config/NutanixObjectsBucket.js +277 -0
- package/dist/es/models/dataprotection/v4/config/ObjectStorageType.d.ts +19 -0
- package/dist/es/models/dataprotection/v4/config/ObjectStorageType.js +91 -0
- package/dist/es/models/dataprotection/v4/config/{ValidationSeverity.d.ts → ProtectedEntityType.d.ts} +6 -6
- package/dist/es/models/dataprotection/v4/config/ProtectedEntityType.js +85 -0
- package/dist/es/models/dataprotection/v4/config/ProtectedResource.d.ts +120 -40
- package/dist/es/models/dataprotection/v4/config/ProtectedResource.js +226 -89
- package/dist/es/models/dataprotection/v4/config/ProtectedResourcePromoteApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/ProtectedResourcePromoteApiResponse.js +87 -58
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceReplicationStatus.js +17 -30
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceRestoreApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceRestoreApiResponse.js +87 -58
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceRestoreSpec.d.ts +34 -29
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceRestoreSpec.js +81 -47
- package/dist/es/models/dataprotection/v4/config/RecoveryInfo.d.ts +30 -21
- package/dist/es/models/dataprotection/v4/config/RecoveryInfo.js +75 -42
- package/dist/es/models/dataprotection/v4/config/RecoveryPoint.d.ts +111 -74
- package/dist/es/models/dataprotection/v4/config/RecoveryPoint.js +165 -190
- package/dist/es/models/dataprotection/v4/config/RecoveryPointProjection.d.ts +10 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointProjection.js +156 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointReplicateApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/RecoveryPointReplicateApiResponse.js +87 -62
- package/dist/es/models/dataprotection/v4/config/RecoveryPointReplicationSpec.d.ts +46 -25
- package/dist/es/models/dataprotection/v4/config/RecoveryPointReplicationSpec.js +161 -106
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRepository.d.ts +63 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRepository.js +374 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRepositoryProjection.d.ts +10 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRepositoryProjection.js +152 -0
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRestorationSpec.d.ts +59 -39
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRestorationSpec.js +90 -60
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRestoreApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/RecoveryPointRestoreApiResponse.js +87 -62
- package/dist/es/models/dataprotection/v4/config/ReplicationState.d.ts +53 -41
- package/dist/es/models/dataprotection/v4/config/ReplicationState.js +123 -85
- package/dist/es/models/dataprotection/v4/config/RestorableTimeRange.d.ts +27 -25
- package/dist/es/models/dataprotection/v4/config/RestorableTimeRange.js +79 -48
- package/dist/es/models/dataprotection/v4/config/SiteProtectionInfo.d.ts +90 -0
- package/dist/es/models/dataprotection/v4/config/SiteProtectionInfo.js +344 -0
- package/dist/es/models/dataprotection/v4/config/SiteReference.d.ts +29 -27
- package/dist/es/models/dataprotection/v4/config/SiteReference.js +74 -44
- package/dist/es/models/dataprotection/v4/config/SynchronousReplicaPromoteApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/SynchronousReplicaPromoteApiResponse.js +87 -58
- package/dist/es/models/dataprotection/v4/config/SynchronousReplicationRole.d.ts +19 -0
- package/dist/es/models/dataprotection/v4/config/SynchronousReplicationRole.js +97 -0
- package/dist/es/models/dataprotection/v4/config/UpdateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/config/UpdateConsistencyGroupApiResponse.js +365 -0
- package/dist/es/models/dataprotection/v4/config/UpdateRecoveryPointExpirationTimeApiResponse.d.ts +66 -26
- package/dist/es/models/dataprotection/v4/config/UpdateRecoveryPointExpirationTimeApiResponse.js +87 -58
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPoint.d.ts +10 -0
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPoint.js +154 -0
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestoreOverride.d.ts +24 -48
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestoreOverride.js +95 -139
- package/dist/es/models/dataprotection/v4/config/VolumeGroupOverrideSpec.d.ts +23 -21
- package/dist/es/models/dataprotection/v4/config/VolumeGroupOverrideSpec.js +73 -43
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPoint.d.ts +83 -31
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPoint.js +269 -110
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreOverride.d.ts +36 -34
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreOverride.js +97 -69
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSyncContext.d.ts +40 -40
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSyncContext.js +122 -95
- package/dist/es/models/dataprotection/v4/config/Witness.d.ts +56 -34
- package/dist/es/models/dataprotection/v4/config/Witness.js +123 -65
- package/dist/es/models/dataprotection/v4/config/WitnessAvailabilityStatus.js +11 -12
- package/dist/es/models/dataprotection/v4/content/BaseRecoveryPointSpec.d.ts +64 -0
- package/dist/es/models/dataprotection/v4/content/BaseRecoveryPointSpec.js +317 -0
- package/dist/es/models/dataprotection/v4/content/ChangedRegion.d.ts +93 -0
- package/dist/es/models/dataprotection/v4/content/ChangedRegion.js +363 -0
- package/dist/es/models/dataprotection/v4/content/ChangedVmRegionsApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/content/ChangedVmRegionsApiResponse.js +365 -0
- package/dist/es/models/dataprotection/v4/content/ChangedVolumeGroupRegionsApiResponse.d.ts +99 -0
- package/dist/es/models/dataprotection/v4/content/ChangedVolumeGroupRegionsApiResponse.js +365 -0
- package/dist/es/models/dataprotection/v4/content/ClusterDiscoverOperation.d.ts +19 -0
- package/dist/es/models/dataprotection/v4/content/ClusterDiscoverOperation.js +85 -0
- package/dist/es/models/dataprotection/v4/content/ClusterDiscoverSpec.d.ts +79 -0
- package/dist/es/models/dataprotection/v4/content/ClusterDiscoverSpec.js +341 -0
- package/dist/es/models/dataprotection/v4/content/ComputeChangedRegionsClusterDiscoverSpec.d.ts +76 -0
- package/dist/es/models/dataprotection/v4/content/ComputeChangedRegionsClusterDiscoverSpec.js +358 -0
- package/dist/es/models/dataprotection/v4/content/DiskRecoveryPointReference.d.ts +64 -0
- package/dist/es/models/dataprotection/v4/content/DiskRecoveryPointReference.js +318 -0
- package/dist/es/models/dataprotection/v4/content/GetVssMetadataApiResponse.d.ts +98 -0
- package/dist/es/models/dataprotection/v4/content/GetVssMetadataApiResponse.js +342 -0
- package/dist/es/models/dataprotection/v4/content/GetVssMetadataClusterDiscoverSpec.d.ts +62 -0
- package/dist/es/models/dataprotection/v4/content/GetVssMetadataClusterDiscoverSpec.js +284 -0
- package/dist/es/models/dataprotection/v4/{config/PowerState.d.ts → content/RegionType.d.ts} +6 -6
- package/dist/es/models/dataprotection/v4/content/RegionType.js +85 -0
- package/dist/es/models/dataprotection/v4/content/VmDiskRecoveryPointClusterDiscoverSpec.d.ts +30 -0
- package/dist/es/models/dataprotection/v4/content/VmDiskRecoveryPointClusterDiscoverSpec.js +269 -0
- package/dist/es/models/dataprotection/v4/content/VmDiskRecoveryPointReference.d.ts +30 -0
- package/dist/es/models/dataprotection/v4/content/VmDiskRecoveryPointReference.js +270 -0
- package/dist/es/models/dataprotection/v4/content/VmRecoveryPointChangedRegionsComputeSpec.d.ts +57 -0
- package/dist/es/models/dataprotection/v4/content/VmRecoveryPointChangedRegionsComputeSpec.js +360 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointClusterDiscoverSpec.d.ts +30 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointClusterDiscoverSpec.js +269 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointReference.d.ts +30 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointReference.js +270 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupRecoveryPointChangedRegionsComputeSpec.d.ts +57 -0
- package/dist/es/models/dataprotection/v4/content/VolumeGroupRecoveryPointChangedRegionsComputeSpec.js +360 -0
- package/dist/es/models/dataprotection/v4/error/AppMessage.d.ts +68 -51
- package/dist/es/models/dataprotection/v4/error/AppMessage.js +101 -59
- package/dist/es/models/dataprotection/v4/error/ErrorResponse.d.ts +24 -20
- package/dist/es/models/dataprotection/v4/error/ErrorResponse.js +88 -66
- package/dist/es/models/dataprotection/v4/error/SchemaValidationError.d.ts +64 -44
- package/dist/es/models/dataprotection/v4/error/SchemaValidationError.js +98 -52
- package/dist/es/models/dataprotection/v4/error/SchemaValidationErrorMessage.d.ts +41 -33
- package/dist/es/models/dataprotection/v4/error/SchemaValidationErrorMessage.js +85 -46
- package/dist/es/models/prism/v4/config/TaskReference.d.ts +23 -21
- package/dist/es/models/prism/v4/config/TaskReference.js +74 -47
- package/dist/es/models/validation/ValidationError.js +12 -14
- package/dist/es/models/validation/ValidationScopes.js +1 -2
- package/dist/es/utils/ValidationUtils.js +12 -14
- package/dist/lib/ApiClient.d.ts +9 -1
- package/dist/lib/ApiClient.js +476 -261
- package/dist/lib/Paginable.d.ts +1 -1
- package/dist/lib/Paginable.js +23 -25
- package/dist/lib/apis/protectedresources-endpoints.d.ts +52 -0
- package/dist/lib/apis/protectedresources-endpoints.js +192 -0
- package/dist/lib/apis/recoverypoints-endpoints.d.ts +186 -0
- package/dist/lib/apis/recoverypoints-endpoints.js +655 -0
- package/dist/lib/index.d.ts +95 -99
- package/dist/lib/index.js +268 -285
- package/dist/lib/models/common/v1/config/Flag.d.ts +33 -27
- package/dist/lib/models/common/v1/config/Flag.js +86 -44
- package/dist/lib/models/common/v1/config/IPAddress.d.ts +77 -0
- package/dist/lib/models/common/v1/config/IPAddress.js +323 -0
- package/dist/lib/models/common/v1/config/IPv4Address.d.ts +41 -27
- package/dist/lib/models/common/v1/config/IPv4Address.js +85 -46
- package/dist/lib/models/common/v1/config/IPv6Address.d.ts +76 -0
- package/dist/lib/models/common/v1/config/IPv6Address.js +329 -0
- package/dist/lib/models/common/v1/config/KVPair.d.ts +36 -27
- package/dist/lib/models/common/v1/config/KVPair.js +94 -50
- package/dist/lib/models/common/v1/config/MapOfStringWrapper.d.ts +58 -0
- package/dist/lib/models/common/v1/config/MapOfStringWrapper.js +275 -0
- package/dist/lib/models/common/v1/config/Message.d.ts +42 -39
- package/dist/lib/models/common/v1/config/Message.js +78 -48
- package/dist/lib/models/common/v1/config/MessageSeverity.js +15 -16
- package/dist/lib/models/common/v1/config/TenantAwareModel.d.ts +25 -23
- package/dist/lib/models/common/v1/config/TenantAwareModel.js +75 -45
- package/dist/lib/models/common/v1/response/ApiLink.d.ts +29 -27
- package/dist/lib/models/common/v1/response/ApiLink.js +75 -45
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.d.ts +82 -47
- package/dist/lib/models/common/v1/response/ApiResponseMetadata.js +95 -53
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.d.ts +26 -20
- package/dist/lib/models/common/v1/response/ExternalizableAbstractModel.js +100 -63
- package/dist/lib/models/dataprotection/v4/{config/HypervisorType.d.ts → common/BackupType.d.ts} +6 -6
- package/dist/lib/models/dataprotection/v4/common/BackupType.js +85 -0
- package/dist/lib/models/dataprotection/v4/common/BaseRecoveryPoint.d.ts +49 -54
- package/dist/lib/models/dataprotection/v4/common/BaseRecoveryPoint.js +113 -112
- package/dist/lib/models/dataprotection/v4/common/BaseVmRecoveryPoint.d.ts +97 -0
- package/dist/lib/models/dataprotection/v4/common/BaseVmRecoveryPoint.js +513 -0
- package/dist/lib/models/dataprotection/v4/common/ClusterInfo.d.ts +81 -0
- package/dist/lib/models/dataprotection/v4/common/ClusterInfo.js +312 -0
- package/dist/lib/models/dataprotection/v4/common/DiskRecoveryPoint.d.ts +64 -0
- package/dist/lib/models/dataprotection/v4/common/DiskRecoveryPoint.js +314 -0
- package/dist/lib/models/dataprotection/v4/common/RecoveryPointStatus.js +11 -24
- package/dist/lib/models/dataprotection/v4/common/RecoveryPointType.js +9 -10
- package/dist/lib/models/dataprotection/v4/common/VssProperties.d.ts +97 -0
- package/dist/lib/models/dataprotection/v4/common/VssProperties.js +407 -0
- package/dist/lib/models/dataprotection/v4/config/AhvVmOverrideSpec.d.ts +23 -21
- package/dist/lib/models/dataprotection/v4/config/AhvVmOverrideSpec.js +75 -45
- package/dist/lib/models/dataprotection/v4/config/AmazonS3Bucket.d.ts +64 -0
- package/dist/lib/models/dataprotection/v4/config/AmazonS3Bucket.js +321 -0
- package/dist/lib/models/dataprotection/v4/config/AzureBlobStorageContainer.d.ts +64 -0
- package/dist/lib/models/dataprotection/v4/config/AzureBlobStorageContainer.js +321 -0
- package/dist/lib/models/dataprotection/v4/config/ClusterInfoApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/ClusterInfoApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroup.d.ts +76 -33
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroup.js +201 -73
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMember.d.ts +43 -45
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMember.js +107 -110
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMemberType.js +11 -12
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMigrationSpec.d.ts +32 -37
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMigrationSpec.js +119 -91
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupProjection.d.ts +6 -1
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupProjection.js +71 -44
- package/dist/lib/models/dataprotection/v4/config/CreateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/CreateConsistencyGroupApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/CreateRecoveryPointApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/CreateRecoveryPointApiResponse.js +87 -62
- package/dist/lib/models/dataprotection/v4/config/DataProtectionSiteReference.d.ts +39 -27
- package/dist/lib/models/dataprotection/v4/config/DataProtectionSiteReference.js +100 -64
- package/dist/lib/models/dataprotection/v4/config/DeleteConsistencyGroupApiResponse.d.ts +65 -26
- package/dist/lib/models/dataprotection/v4/config/DeleteConsistencyGroupApiResponse.js +87 -58
- package/dist/lib/models/dataprotection/v4/config/DeleteRecoveryPointApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/DeleteRecoveryPointApiResponse.js +87 -62
- package/dist/lib/models/dataprotection/v4/config/EsxiVmOverrideSpec.d.ts +23 -21
- package/dist/lib/models/dataprotection/v4/config/EsxiVmOverrideSpec.js +75 -45
- package/dist/lib/models/dataprotection/v4/config/ExpirationTimeSpec.d.ts +62 -0
- package/dist/lib/models/dataprotection/v4/config/ExpirationTimeSpec.js +280 -0
- package/dist/lib/models/dataprotection/v4/config/GetProtectedResourceApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/GetProtectedResourceApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/GetRecoveryPointApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/GetRecoveryPointApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/GetVmRecoveryPointApiResponse.d.ts +101 -0
- package/dist/lib/models/dataprotection/v4/config/GetVmRecoveryPointApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/HostReference.d.ts +26 -20
- package/dist/lib/models/dataprotection/v4/config/HostReference.js +106 -58
- package/dist/lib/models/dataprotection/v4/config/HostType.js +10 -11
- package/dist/lib/models/dataprotection/v4/config/IpAddress.d.ts +29 -24
- package/dist/lib/models/dataprotection/v4/config/IpAddress.js +76 -43
- package/dist/lib/models/dataprotection/v4/config/ListRecoveryPointsApiResponse.d.ts +100 -0
- package/dist/lib/models/dataprotection/v4/config/ListRecoveryPointsApiResponse.js +370 -0
- package/dist/lib/models/dataprotection/v4/config/LocationReference.d.ts +25 -23
- package/dist/lib/models/dataprotection/v4/config/LocationReference.js +76 -46
- package/dist/lib/models/dataprotection/v4/config/MigrateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/MigrateConsistencyGroupApiResponse.js +343 -0
- package/dist/lib/models/dataprotection/v4/config/NutanixObjectsBucket.d.ts +52 -0
- package/dist/lib/models/dataprotection/v4/config/NutanixObjectsBucket.js +277 -0
- package/dist/lib/models/dataprotection/v4/config/ObjectStorageType.d.ts +19 -0
- package/dist/lib/models/dataprotection/v4/config/ObjectStorageType.js +91 -0
- package/dist/lib/models/dataprotection/v4/config/ProtectedEntityType.d.ts +19 -0
- package/dist/lib/models/dataprotection/v4/config/ProtectedEntityType.js +85 -0
- package/dist/lib/models/dataprotection/v4/config/ProtectedResource.d.ts +120 -40
- package/dist/lib/models/dataprotection/v4/config/ProtectedResource.js +226 -89
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourcePromoteApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourcePromoteApiResponse.js +87 -58
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceReplicationStatus.js +17 -30
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceRestoreApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceRestoreApiResponse.js +87 -58
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceRestoreSpec.d.ts +34 -29
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceRestoreSpec.js +81 -47
- package/dist/lib/models/dataprotection/v4/config/RecoveryInfo.d.ts +30 -21
- package/dist/lib/models/dataprotection/v4/config/RecoveryInfo.js +75 -42
- package/dist/lib/models/dataprotection/v4/config/RecoveryPoint.d.ts +111 -74
- package/dist/lib/models/dataprotection/v4/config/RecoveryPoint.js +165 -190
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointProjection.d.ts +10 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointProjection.js +156 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointReplicateApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointReplicateApiResponse.js +87 -62
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointReplicationSpec.d.ts +46 -25
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointReplicationSpec.js +161 -106
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRepository.d.ts +63 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRepository.js +374 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRepositoryProjection.d.ts +10 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRepositoryProjection.js +152 -0
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRestorationSpec.d.ts +59 -39
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRestorationSpec.js +90 -60
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRestoreApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointRestoreApiResponse.js +87 -62
- package/dist/lib/models/dataprotection/v4/config/ReplicationState.d.ts +53 -41
- package/dist/lib/models/dataprotection/v4/config/ReplicationState.js +123 -85
- package/dist/lib/models/dataprotection/v4/config/RestorableTimeRange.d.ts +27 -25
- package/dist/lib/models/dataprotection/v4/config/RestorableTimeRange.js +79 -48
- package/dist/lib/models/dataprotection/v4/config/SiteProtectionInfo.d.ts +90 -0
- package/dist/lib/models/dataprotection/v4/config/SiteProtectionInfo.js +344 -0
- package/dist/lib/models/dataprotection/v4/config/SiteReference.d.ts +29 -27
- package/dist/lib/models/dataprotection/v4/config/SiteReference.js +74 -44
- package/dist/lib/models/dataprotection/v4/config/SynchronousReplicaPromoteApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/SynchronousReplicaPromoteApiResponse.js +87 -58
- package/dist/lib/models/dataprotection/v4/config/SynchronousReplicationRole.d.ts +19 -0
- package/dist/lib/models/dataprotection/v4/config/SynchronousReplicationRole.js +97 -0
- package/dist/lib/models/dataprotection/v4/config/UpdateConsistencyGroupApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/config/UpdateConsistencyGroupApiResponse.js +365 -0
- package/dist/lib/models/dataprotection/v4/config/UpdateRecoveryPointExpirationTimeApiResponse.d.ts +66 -26
- package/dist/lib/models/dataprotection/v4/config/UpdateRecoveryPointExpirationTimeApiResponse.js +87 -58
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPoint.d.ts +10 -0
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPoint.js +154 -0
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestoreOverride.d.ts +24 -48
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestoreOverride.js +95 -139
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupOverrideSpec.d.ts +23 -21
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupOverrideSpec.js +73 -43
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPoint.d.ts +83 -31
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPoint.js +269 -110
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreOverride.d.ts +36 -34
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreOverride.js +97 -69
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSyncContext.d.ts +40 -40
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSyncContext.js +122 -95
- package/dist/lib/models/dataprotection/v4/config/Witness.d.ts +56 -34
- package/dist/lib/models/dataprotection/v4/config/Witness.js +123 -65
- package/dist/lib/models/dataprotection/v4/config/WitnessAvailabilityStatus.js +11 -12
- package/dist/lib/models/dataprotection/v4/content/BaseRecoveryPointSpec.d.ts +64 -0
- package/dist/lib/models/dataprotection/v4/content/BaseRecoveryPointSpec.js +317 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedRegion.d.ts +93 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedRegion.js +363 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedVmRegionsApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedVmRegionsApiResponse.js +365 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedVolumeGroupRegionsApiResponse.d.ts +99 -0
- package/dist/lib/models/dataprotection/v4/content/ChangedVolumeGroupRegionsApiResponse.js +365 -0
- package/dist/lib/models/dataprotection/v4/content/ClusterDiscoverOperation.d.ts +19 -0
- package/dist/lib/models/dataprotection/v4/content/ClusterDiscoverOperation.js +85 -0
- package/dist/lib/models/dataprotection/v4/content/ClusterDiscoverSpec.d.ts +79 -0
- package/dist/lib/models/dataprotection/v4/content/ClusterDiscoverSpec.js +341 -0
- package/dist/lib/models/dataprotection/v4/content/ComputeChangedRegionsClusterDiscoverSpec.d.ts +76 -0
- package/dist/lib/models/dataprotection/v4/content/ComputeChangedRegionsClusterDiscoverSpec.js +358 -0
- package/dist/lib/models/dataprotection/v4/content/DiskRecoveryPointReference.d.ts +64 -0
- package/dist/lib/models/dataprotection/v4/content/DiskRecoveryPointReference.js +318 -0
- package/dist/lib/models/dataprotection/v4/content/GetVssMetadataApiResponse.d.ts +98 -0
- package/dist/lib/models/dataprotection/v4/content/GetVssMetadataApiResponse.js +342 -0
- package/dist/lib/models/dataprotection/v4/content/GetVssMetadataClusterDiscoverSpec.d.ts +62 -0
- package/dist/lib/models/dataprotection/v4/content/GetVssMetadataClusterDiscoverSpec.js +284 -0
- package/dist/{es/models/dataprotection/v4/config/HypervisorType.d.ts → lib/models/dataprotection/v4/content/RegionType.d.ts} +6 -6
- package/dist/lib/models/dataprotection/v4/content/RegionType.js +85 -0
- package/dist/lib/models/dataprotection/v4/content/VmDiskRecoveryPointClusterDiscoverSpec.d.ts +30 -0
- package/dist/lib/models/dataprotection/v4/content/VmDiskRecoveryPointClusterDiscoverSpec.js +269 -0
- package/dist/lib/models/dataprotection/v4/content/VmDiskRecoveryPointReference.d.ts +30 -0
- package/dist/lib/models/dataprotection/v4/content/VmDiskRecoveryPointReference.js +270 -0
- package/dist/lib/models/dataprotection/v4/content/VmRecoveryPointChangedRegionsComputeSpec.d.ts +57 -0
- package/dist/lib/models/dataprotection/v4/content/VmRecoveryPointChangedRegionsComputeSpec.js +360 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointClusterDiscoverSpec.d.ts +30 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointClusterDiscoverSpec.js +269 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointReference.d.ts +30 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointReference.js +270 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupRecoveryPointChangedRegionsComputeSpec.d.ts +57 -0
- package/dist/lib/models/dataprotection/v4/content/VolumeGroupRecoveryPointChangedRegionsComputeSpec.js +360 -0
- package/dist/lib/models/dataprotection/v4/error/AppMessage.d.ts +68 -51
- package/dist/lib/models/dataprotection/v4/error/AppMessage.js +101 -59
- package/dist/lib/models/dataprotection/v4/error/ErrorResponse.d.ts +24 -20
- package/dist/lib/models/dataprotection/v4/error/ErrorResponse.js +88 -66
- package/dist/lib/models/dataprotection/v4/error/SchemaValidationError.d.ts +64 -44
- package/dist/lib/models/dataprotection/v4/error/SchemaValidationError.js +98 -52
- package/dist/lib/models/dataprotection/v4/error/SchemaValidationErrorMessage.d.ts +41 -33
- package/dist/lib/models/dataprotection/v4/error/SchemaValidationErrorMessage.js +85 -46
- package/dist/lib/models/prism/v4/config/TaskReference.d.ts +23 -21
- package/dist/lib/models/prism/v4/config/TaskReference.js +74 -47
- package/dist/lib/models/validation/ValidationError.js +12 -14
- package/dist/lib/models/validation/ValidationScopes.js +1 -2
- package/dist/lib/utils/ValidationUtils.js +12 -14
- package/package.json +5 -4
- package/dist/es/apis/consistencygroup-endpoints.d.ts +0 -98
- package/dist/es/apis/consistencygroup-endpoints.js +0 -304
- package/dist/es/models/dataprotection/v4/common/VendorSpecificProperty.d.ts +0 -70
- package/dist/es/models/dataprotection/v4/common/VendorSpecificProperty.js +0 -286
- package/dist/es/models/dataprotection/v4/config/Category.d.ts +0 -70
- package/dist/es/models/dataprotection/v4/config/Category.js +0 -286
- package/dist/es/models/dataprotection/v4/config/ChangedRegions.d.ts +0 -62
- package/dist/es/models/dataprotection/v4/config/ChangedRegions.js +0 -295
- package/dist/es/models/dataprotection/v4/config/ChangedRegionsListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ChangedRegionsListApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/ClusterReference.d.ts +0 -69
- package/dist/es/models/dataprotection/v4/config/ClusterReference.js +0 -285
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupListApiResponse.js +0 -341
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMigrateApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupMigrateApiResponse.js +0 -318
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupRecoveryPointSpec.d.ts +0 -67
- package/dist/es/models/dataprotection/v4/config/ConsistencyGroupRecoveryPointSpec.js +0 -285
- package/dist/es/models/dataprotection/v4/config/CreateConsistencyGroupRecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/CreateConsistencyGroupRecoveryPointApiResponse.js +0 -318
- package/dist/es/models/dataprotection/v4/config/DataProtectionInfo.d.ts +0 -58
- package/dist/es/models/dataprotection/v4/config/DataProtectionInfo.js +0 -278
- package/dist/es/models/dataprotection/v4/config/DisasterRecoveryLocation.d.ts +0 -68
- package/dist/es/models/dataprotection/v4/config/DisasterRecoveryLocation.js +0 -297
- package/dist/es/models/dataprotection/v4/config/Disk.d.ts +0 -62
- package/dist/es/models/dataprotection/v4/config/Disk.js +0 -285
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPoint.d.ts +0 -37
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPoint.js +0 -254
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPointApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/DiskRecoveryPointListApiResponse.js +0 -336
- package/dist/es/models/dataprotection/v4/config/HardwareArchitecture.d.ts +0 -19
- package/dist/es/models/dataprotection/v4/config/HardwareArchitecture.js +0 -86
- package/dist/es/models/dataprotection/v4/config/HypervisorType.js +0 -92
- package/dist/es/models/dataprotection/v4/config/PowerState.js +0 -86
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceEntityType.d.ts +0 -19
- package/dist/es/models/dataprotection/v4/config/ProtectedResourceEntityType.js +0 -86
- package/dist/es/models/dataprotection/v4/config/RecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/RecoveryPointApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/RecoveryPointListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/RecoveryPointListApiResponse.js +0 -336
- package/dist/es/models/dataprotection/v4/config/Regions.d.ts +0 -62
- package/dist/es/models/dataprotection/v4/config/Regions.js +0 -282
- package/dist/es/models/dataprotection/v4/config/SetExpirationTimeSpec.d.ts +0 -57
- package/dist/es/models/dataprotection/v4/config/SetExpirationTimeSpec.js +0 -246
- package/dist/es/models/dataprotection/v4/config/Subnet.d.ts +0 -48
- package/dist/es/models/dataprotection/v4/config/Subnet.js +0 -242
- package/dist/es/models/dataprotection/v4/config/SyncedVolumeGroupByIdApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/SyncedVolumeGroupByIdApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPoint.d.ts +0 -49
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPoint.js +0 -295
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPointApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VMRecoveryPointListApiResponse.js +0 -336
- package/dist/es/models/dataprotection/v4/config/ValidateRecoveryPointResult.d.ts +0 -79
- package/dist/es/models/dataprotection/v4/config/ValidateRecoveryPointResult.js +0 -320
- package/dist/es/models/dataprotection/v4/config/ValidateRestoreVmRecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/ValidateRestoreVmRecoveryPointApiResponse.js +0 -336
- package/dist/es/models/dataprotection/v4/config/ValidationSeverity.js +0 -86
- package/dist/es/models/dataprotection/v4/config/Vm.d.ts +0 -140
- package/dist/es/models/dataprotection/v4/config/Vm.js +0 -545
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestorationSpec.d.ts +0 -70
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestorationSpec.js +0 -319
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestoreApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VmRecoveryPointRestoreApiResponse.js +0 -318
- package/dist/es/models/dataprotection/v4/config/VmSubRecoveryPoint.d.ts +0 -98
- package/dist/es/models/dataprotection/v4/config/VmSubRecoveryPoint.js +0 -405
- package/dist/es/models/dataprotection/v4/config/VmSubRecoveryPointProjection.d.ts +0 -9
- package/dist/es/models/dataprotection/v4/config/VmSubRecoveryPointProjection.js +0 -132
- package/dist/es/models/dataprotection/v4/config/VolumeGroup.d.ts +0 -62
- package/dist/es/models/dataprotection/v4/config/VolumeGroup.js +0 -285
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointApiResponse.js +0 -314
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointListApiResponse.js +0 -336
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestorationSpec.d.ts +0 -62
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestorationSpec.js +0 -288
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreApiResponse.js +0 -318
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSubRecoveryPoint.d.ts +0 -98
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSubRecoveryPoint.js +0 -407
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSubRecoveryPointProjection.d.ts +0 -9
- package/dist/es/models/dataprotection/v4/config/VolumeGroupSubRecoveryPointProjection.js +0 -132
- package/dist/es/models/dataprotection/v4/config/VpcReference.d.ts +0 -69
- package/dist/es/models/dataprotection/v4/config/VpcReference.js +0 -285
- package/dist/es/models/dataprotection/v4/config/WitnessApiResponse.d.ts +0 -59
- package/dist/es/models/dataprotection/v4/config/WitnessApiResponse.js +0 -314
- package/dist/es/models/storage/v4/config/Task.d.ts +0 -50
- package/dist/es/models/storage/v4/config/Task.js +0 -254
- package/dist/lib/apis/consistencygroup-endpoints.d.ts +0 -98
- package/dist/lib/apis/consistencygroup-endpoints.js +0 -304
- package/dist/lib/models/dataprotection/v4/common/VendorSpecificProperty.d.ts +0 -70
- package/dist/lib/models/dataprotection/v4/common/VendorSpecificProperty.js +0 -286
- package/dist/lib/models/dataprotection/v4/config/Category.d.ts +0 -70
- package/dist/lib/models/dataprotection/v4/config/Category.js +0 -286
- package/dist/lib/models/dataprotection/v4/config/ChangedRegions.d.ts +0 -62
- package/dist/lib/models/dataprotection/v4/config/ChangedRegions.js +0 -295
- package/dist/lib/models/dataprotection/v4/config/ChangedRegionsListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ChangedRegionsListApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/ClusterReference.d.ts +0 -69
- package/dist/lib/models/dataprotection/v4/config/ClusterReference.js +0 -285
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupListApiResponse.js +0 -341
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMigrateApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupMigrateApiResponse.js +0 -318
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupRecoveryPointSpec.d.ts +0 -67
- package/dist/lib/models/dataprotection/v4/config/ConsistencyGroupRecoveryPointSpec.js +0 -285
- package/dist/lib/models/dataprotection/v4/config/CreateConsistencyGroupRecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/CreateConsistencyGroupRecoveryPointApiResponse.js +0 -318
- package/dist/lib/models/dataprotection/v4/config/DataProtectionInfo.d.ts +0 -58
- package/dist/lib/models/dataprotection/v4/config/DataProtectionInfo.js +0 -278
- package/dist/lib/models/dataprotection/v4/config/DisasterRecoveryLocation.d.ts +0 -68
- package/dist/lib/models/dataprotection/v4/config/DisasterRecoveryLocation.js +0 -297
- package/dist/lib/models/dataprotection/v4/config/Disk.d.ts +0 -62
- package/dist/lib/models/dataprotection/v4/config/Disk.js +0 -285
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPoint.d.ts +0 -37
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPoint.js +0 -254
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPointApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/DiskRecoveryPointListApiResponse.js +0 -336
- package/dist/lib/models/dataprotection/v4/config/HardwareArchitecture.d.ts +0 -19
- package/dist/lib/models/dataprotection/v4/config/HardwareArchitecture.js +0 -86
- package/dist/lib/models/dataprotection/v4/config/HypervisorType.js +0 -92
- package/dist/lib/models/dataprotection/v4/config/PowerState.js +0 -86
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceEntityType.d.ts +0 -19
- package/dist/lib/models/dataprotection/v4/config/ProtectedResourceEntityType.js +0 -86
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/RecoveryPointListApiResponse.js +0 -336
- package/dist/lib/models/dataprotection/v4/config/Regions.d.ts +0 -62
- package/dist/lib/models/dataprotection/v4/config/Regions.js +0 -282
- package/dist/lib/models/dataprotection/v4/config/SetExpirationTimeSpec.d.ts +0 -57
- package/dist/lib/models/dataprotection/v4/config/SetExpirationTimeSpec.js +0 -246
- package/dist/lib/models/dataprotection/v4/config/Subnet.d.ts +0 -48
- package/dist/lib/models/dataprotection/v4/config/Subnet.js +0 -242
- package/dist/lib/models/dataprotection/v4/config/SyncedVolumeGroupByIdApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/SyncedVolumeGroupByIdApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPoint.d.ts +0 -49
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPoint.js +0 -295
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPointApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VMRecoveryPointListApiResponse.js +0 -336
- package/dist/lib/models/dataprotection/v4/config/ValidateRecoveryPointResult.d.ts +0 -79
- package/dist/lib/models/dataprotection/v4/config/ValidateRecoveryPointResult.js +0 -320
- package/dist/lib/models/dataprotection/v4/config/ValidateRestoreVmRecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/ValidateRestoreVmRecoveryPointApiResponse.js +0 -336
- package/dist/lib/models/dataprotection/v4/config/ValidationSeverity.d.ts +0 -19
- package/dist/lib/models/dataprotection/v4/config/ValidationSeverity.js +0 -86
- package/dist/lib/models/dataprotection/v4/config/Vm.d.ts +0 -140
- package/dist/lib/models/dataprotection/v4/config/Vm.js +0 -545
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestorationSpec.d.ts +0 -70
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestorationSpec.js +0 -319
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestoreApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VmRecoveryPointRestoreApiResponse.js +0 -318
- package/dist/lib/models/dataprotection/v4/config/VmSubRecoveryPoint.d.ts +0 -98
- package/dist/lib/models/dataprotection/v4/config/VmSubRecoveryPoint.js +0 -405
- package/dist/lib/models/dataprotection/v4/config/VmSubRecoveryPointProjection.d.ts +0 -9
- package/dist/lib/models/dataprotection/v4/config/VmSubRecoveryPointProjection.js +0 -132
- package/dist/lib/models/dataprotection/v4/config/VolumeGroup.d.ts +0 -62
- package/dist/lib/models/dataprotection/v4/config/VolumeGroup.js +0 -285
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointApiResponse.js +0 -314
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointListApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointListApiResponse.js +0 -336
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestorationSpec.d.ts +0 -62
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestorationSpec.js +0 -288
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupRecoveryPointRestoreApiResponse.js +0 -318
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSubRecoveryPoint.d.ts +0 -98
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSubRecoveryPoint.js +0 -407
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSubRecoveryPointProjection.d.ts +0 -9
- package/dist/lib/models/dataprotection/v4/config/VolumeGroupSubRecoveryPointProjection.js +0 -132
- package/dist/lib/models/dataprotection/v4/config/VpcReference.d.ts +0 -69
- package/dist/lib/models/dataprotection/v4/config/VpcReference.js +0 -285
- package/dist/lib/models/dataprotection/v4/config/WitnessApiResponse.d.ts +0 -59
- package/dist/lib/models/dataprotection/v4/config/WitnessApiResponse.js +0 -314
- package/dist/lib/models/storage/v4/config/Task.d.ts +0 -50
- package/dist/lib/models/storage/v4/config/Task.js +0 -254
package/dist/es/models/dataprotection/v4/content/VolumeGroupDiskRecoveryPointClusterDiscoverSpec.js
ADDED
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _BaseRecoveryPointSpec = _interopRequireDefault(require("./BaseRecoveryPointSpec"));
|
|
8
|
+
var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
|
|
9
|
+
var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
|
|
10
|
+
var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
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); }
|
|
13
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
14
|
+
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."); }
|
|
15
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
16
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
17
|
+
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; } }
|
|
18
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
19
|
+
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; }
|
|
20
|
+
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; }
|
|
21
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
22
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
23
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
24
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
25
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
26
|
+
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); }
|
|
27
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
28
|
+
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
|
|
29
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
30
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
31
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
32
|
+
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
|
|
33
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
34
|
+
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
35
|
+
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); } /*
|
|
36
|
+
* Nutanix Data Protection APIs
|
|
37
|
+
*
|
|
38
|
+
* OpenAPI spec version: 4.0.1
|
|
39
|
+
*
|
|
40
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
41
|
+
*
|
|
42
|
+
* Open API Dev Platform Codegen version: 16.9.0.8546-RELEASE
|
|
43
|
+
*
|
|
44
|
+
* Do not edit the class manually.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
/**
|
|
48
|
+
* The VolumeGroupDiskRecoveryPointClusterDiscoverSpec model module.
|
|
49
|
+
* @module Ntnx/VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
50
|
+
* @version 4.0.1
|
|
51
|
+
* @class VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
52
|
+
* @extends BaseRecoveryPointSpec
|
|
53
|
+
*/
|
|
54
|
+
var _VolumeGroupDiskRecoveryPointClusterDiscoverSpec_brand = /*#__PURE__*/new WeakSet();
|
|
55
|
+
var VolumeGroupDiskRecoveryPointClusterDiscoverSpec = exports["default"] = /*#__PURE__*/function (_BaseRecoveryPointSpe) {
|
|
56
|
+
/**
|
|
57
|
+
* Constructs a new <code>VolumeGroupDiskRecoveryPointClusterDiscoverSpec</code>.
|
|
58
|
+
* Pass all required IDs to generate a token and discover the cluster. All parameters are optional. However, if a reference disk recovery point needs to be set, the following three parameters must be specified: recoveryPointExtId,volumeGroupRecoveryPointExtId, and extId.
|
|
59
|
+
* @alias module:Ntnx/VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
60
|
+
* @extends module:Ntnx/BaseRecoveryPointSpec
|
|
61
|
+
*/
|
|
62
|
+
function VolumeGroupDiskRecoveryPointClusterDiscoverSpec() {
|
|
63
|
+
var _this;
|
|
64
|
+
_classCallCheck(this, VolumeGroupDiskRecoveryPointClusterDiscoverSpec);
|
|
65
|
+
_this = _callSuper(this, VolumeGroupDiskRecoveryPointClusterDiscoverSpec);
|
|
66
|
+
/*
|
|
67
|
+
* toJson method for a map type which supports map with primitive keys and values of object types
|
|
68
|
+
* @param {Object} obj
|
|
69
|
+
* @returns {Object|Map} Returns a new transofrmed Map by calling toJson on the values if applicable.
|
|
70
|
+
* Otherwise, just returns the input object.
|
|
71
|
+
*/
|
|
72
|
+
_classPrivateMethodInitSpec(_this, _VolumeGroupDiskRecoveryPointClusterDiscoverSpec_brand);
|
|
73
|
+
_this.$objectType = "dataprotection.v4.content.VolumeGroupDiskRecoveryPointClusterDiscoverSpec";
|
|
74
|
+
/** @type {object<string, any>} */
|
|
75
|
+
_this.$reserved = {
|
|
76
|
+
'$fv': "v4.r0"
|
|
77
|
+
};
|
|
78
|
+
/** @type {object<string, any>} */
|
|
79
|
+
_this.$unknownFields = {};
|
|
80
|
+
return _this;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Constructs a <code>VolumeGroupDiskRecoveryPointClusterDiscoverSpec</code> from a plain JavaScript object, optionally creating a new instance.
|
|
85
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
86
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
87
|
+
* @param {module:Ntnx/VolumeGroupDiskRecoveryPointClusterDiscoverSpec} obj Optional instance to populate.
|
|
88
|
+
* @param callFromChild {Boolean} Flag to recognise calling instance
|
|
89
|
+
* @return {module:Ntnx/VolumeGroupDiskRecoveryPointClusterDiscoverSpec} The populated <code>VolumeGroupDiskRecoveryPointClusterDiscoverSpec</code> instance.
|
|
90
|
+
*/
|
|
91
|
+
_inherits(VolumeGroupDiskRecoveryPointClusterDiscoverSpec, _BaseRecoveryPointSpe);
|
|
92
|
+
return _createClass(VolumeGroupDiskRecoveryPointClusterDiscoverSpec, [{
|
|
93
|
+
key: "getReferenceVolumeGroupRecoveryPointExtId",
|
|
94
|
+
value:
|
|
95
|
+
/**
|
|
96
|
+
* Returns The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
97
|
+
* @return {string}
|
|
98
|
+
*/
|
|
99
|
+
function getReferenceVolumeGroupRecoveryPointExtId() {
|
|
100
|
+
return this.referenceVolumeGroupRecoveryPointExtId;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Sets The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
105
|
+
* @param {string} referenceVolumeGroupRecoveryPointExtId The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
106
|
+
*/
|
|
107
|
+
}, {
|
|
108
|
+
key: "setReferenceVolumeGroupRecoveryPointExtId",
|
|
109
|
+
value: function setReferenceVolumeGroupRecoveryPointExtId(referenceVolumeGroupRecoveryPointExtId) {
|
|
110
|
+
this.referenceVolumeGroupRecoveryPointExtId = referenceVolumeGroupRecoveryPointExtId;
|
|
111
|
+
}
|
|
112
|
+
}, {
|
|
113
|
+
key: "toJson",
|
|
114
|
+
value: function toJson(forMutation) {
|
|
115
|
+
if (forMutation === false) {
|
|
116
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getReferenceVolumeGroupRecoveryPointExtId() !== 'undefined' && this.getReferenceVolumeGroupRecoveryPointExtId() !== null ? {
|
|
117
|
+
'referenceVolumeGroupRecoveryPointExtId': this.getReferenceVolumeGroupRecoveryPointExtId()
|
|
118
|
+
} : {}), typeof this.getReferenceRecoveryPointExtId() !== 'undefined' && this.getReferenceRecoveryPointExtId() !== null ? {
|
|
119
|
+
'referenceRecoveryPointExtId': this.getReferenceRecoveryPointExtId()
|
|
120
|
+
} : {}), typeof this.getReferenceDiskRecoveryPointExtId() !== 'undefined' && this.getReferenceDiskRecoveryPointExtId() !== null ? {
|
|
121
|
+
'referenceDiskRecoveryPointExtId': this.getReferenceDiskRecoveryPointExtId()
|
|
122
|
+
} : {}), {}, {
|
|
123
|
+
'$reserved': this.get$Reserved(),
|
|
124
|
+
'$objectType': this.get$ObjectType(),
|
|
125
|
+
'$unknownFields': this.get$UnknownFields()
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getReferenceVolumeGroupRecoveryPointExtId() !== 'undefined' && this.getReferenceVolumeGroupRecoveryPointExtId() !== null ? {
|
|
129
|
+
'referenceVolumeGroupRecoveryPointExtId': this.getReferenceVolumeGroupRecoveryPointExtId()
|
|
130
|
+
} : {}), typeof this.getReferenceRecoveryPointExtId() !== 'undefined' && this.getReferenceRecoveryPointExtId() !== null ? {
|
|
131
|
+
'referenceRecoveryPointExtId': this.getReferenceRecoveryPointExtId()
|
|
132
|
+
} : {}), typeof this.getReferenceDiskRecoveryPointExtId() !== 'undefined' && this.getReferenceDiskRecoveryPointExtId() !== null ? {
|
|
133
|
+
'referenceDiskRecoveryPointExtId': this.getReferenceDiskRecoveryPointExtId()
|
|
134
|
+
} : {}), {}, {
|
|
135
|
+
'$reserved': this.get$Reserved(),
|
|
136
|
+
'$objectType': this.get$ObjectType(),
|
|
137
|
+
'$unknownFields': this.get$UnknownFields()
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}, {
|
|
141
|
+
key: "validate",
|
|
142
|
+
value: function validate(scope, properties) {
|
|
143
|
+
var _this2 = this;
|
|
144
|
+
var propList = [];
|
|
145
|
+
if (arguments.length === 0 || arguments.length === 1 && arguments[0] instanceof _ValidationScopes["default"]) {
|
|
146
|
+
//cases validate() and validate(scope)
|
|
147
|
+
propList = [];
|
|
148
|
+
} else if (arguments.length === 1) {
|
|
149
|
+
//case validate(properties)
|
|
150
|
+
propList = arguments[0];
|
|
151
|
+
scope = null;
|
|
152
|
+
} else {
|
|
153
|
+
//case validate(scope, properties)
|
|
154
|
+
propList = arguments[1];
|
|
155
|
+
}
|
|
156
|
+
var res = [];
|
|
157
|
+
var err = null;
|
|
158
|
+
propList.forEach(function (property) {
|
|
159
|
+
err = _this2.validateProperty(property, scope);
|
|
160
|
+
if (err) {
|
|
161
|
+
res.push(err);
|
|
162
|
+
}
|
|
163
|
+
});
|
|
164
|
+
return new Promise(function (resolve, reject) {
|
|
165
|
+
if (res.length !== 0) {
|
|
166
|
+
reject(err);
|
|
167
|
+
} else {
|
|
168
|
+
resolve();
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
}, {
|
|
173
|
+
key: "validateProperty",
|
|
174
|
+
value: function validateProperty(scope, property) {
|
|
175
|
+
if (property === "referenceVolumeGroupRecoveryPointExtId") {
|
|
176
|
+
if (typeof this.referenceVolumeGroupRecoveryPointExtId === 'undefined' || this.referenceVolumeGroupRecoveryPointExtId === null) {
|
|
177
|
+
return new _ValidationError["default"]("referenceVolumeGroupRecoveryPointExtId", "undefined or null");
|
|
178
|
+
}
|
|
179
|
+
if (!_ValidationUtils["default"].validatePattern(this.referenceVolumeGroupRecoveryPointExtId, /^[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}$/)) {
|
|
180
|
+
return new _ValidationError["default"]("referenceVolumeGroupRecoveryPointExtId", "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}$/");
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
return new _ValidationError["default"](property, "no such property exists");
|
|
184
|
+
}
|
|
185
|
+
}], [{
|
|
186
|
+
key: "constructFromObject",
|
|
187
|
+
value: function constructFromObject(data) {
|
|
188
|
+
var obj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
189
|
+
var callFromChild = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
190
|
+
var items, item, i, itemArr, discriminator;
|
|
191
|
+
if (data) {
|
|
192
|
+
obj = obj || new VolumeGroupDiskRecoveryPointClusterDiscoverSpec();
|
|
193
|
+
_BaseRecoveryPointSpec["default"].constructFromObject(data, obj, true);
|
|
194
|
+
if (data.hasOwnProperty('referenceVolumeGroupRecoveryPointExtId') && data.referenceVolumeGroupRecoveryPointExtId !== null && data.referenceVolumeGroupRecoveryPointExtId !== undefined) {
|
|
195
|
+
obj.setReferenceVolumeGroupRecoveryPointExtId(data['referenceVolumeGroupRecoveryPointExtId']);
|
|
196
|
+
}
|
|
197
|
+
if (!callFromChild) {
|
|
198
|
+
obj.$unknownFields = _objectSpread({}, data.$unknownFields);
|
|
199
|
+
for (var property in data) {
|
|
200
|
+
// Check if the `property` is not already present in `obj` keys, either in snake_case or camelCase,
|
|
201
|
+
// as the model's fields are generated in camelCase, but the server might return snake_case (e.g., due to standards like OIDC).
|
|
202
|
+
// Also, ensure the `property` does not start with '$' and end with 'ItemDiscriminator'.
|
|
203
|
+
// If all conditions are true, add the `property` from `data` to `obj.$unknownFields` as an unknown field.
|
|
204
|
+
if (!Object.keys(obj).includes(property) && !Object.keys(obj).includes(this.snakeToCamel(property)) && !(property[0] === "$" && property.endsWith("ItemDiscriminator"))) {
|
|
205
|
+
obj.$unknownFields[property] = data[property];
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return obj;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Converts a given snake_case string to camelCase.
|
|
215
|
+
* @param {string} snakeStr - The input string in snake_case format.
|
|
216
|
+
* @returns {string} - The converted string in camelCase format.
|
|
217
|
+
*/
|
|
218
|
+
}, {
|
|
219
|
+
key: "snakeToCamel",
|
|
220
|
+
value: function snakeToCamel(snakeStr) {
|
|
221
|
+
return snakeStr.replace(/(_\w)/g, function (match) {
|
|
222
|
+
return match[1].toUpperCase();
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
}]);
|
|
226
|
+
}(_BaseRecoveryPointSpec["default"]);
|
|
227
|
+
/**
|
|
228
|
+
* The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
229
|
+
* @memberof VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
230
|
+
*/
|
|
231
|
+
function _toJsonMapType(obj, forMutation) {
|
|
232
|
+
if (obj instanceof Map) {
|
|
233
|
+
return Object.fromEntries(Array.from(obj, function (_ref) {
|
|
234
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
|
235
|
+
k = _ref2[0],
|
|
236
|
+
v = _ref2[1];
|
|
237
|
+
return [k, typeof v.toJson !== "undefined" ? v.toJson(forMutation) : v];
|
|
238
|
+
}));
|
|
239
|
+
} else if (_typeof(obj) === 'object' && obj != null && obj.constructor === Object) {
|
|
240
|
+
return Object.fromEntries(Array.from(Object.entries(obj), function (entry) {
|
|
241
|
+
return [entry[0], typeof entry[1].toJson !== "undefined" ? entry[1].toJson(forMutation) : entry[1]];
|
|
242
|
+
}));
|
|
243
|
+
}
|
|
244
|
+
return obj;
|
|
245
|
+
}
|
|
246
|
+
/*
|
|
247
|
+
* toJson method for a date type which serializes a Date object to proper Date or DateTime formatting
|
|
248
|
+
* @param {Object} obj Object to serialize
|
|
249
|
+
* @param {boolean} isDateOnly Boolean variable to identify Date or DateTime format for serialization
|
|
250
|
+
* @returns {Object|string} Returns serialized date object or original input object
|
|
251
|
+
*/
|
|
252
|
+
function _handleDateType(obj, isDateOnly) {
|
|
253
|
+
if (obj instanceof Date && isDateOnly !== undefined) {
|
|
254
|
+
return isDateOnly ? obj.toISOString().slice(0, 10) : obj.toISOString();
|
|
255
|
+
}
|
|
256
|
+
return obj;
|
|
257
|
+
}
|
|
258
|
+
VolumeGroupDiskRecoveryPointClusterDiscoverSpec.prototype.referenceVolumeGroupRecoveryPointExtId = undefined;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* The external identifier that can be used to retrieve the recovery point using its URL.
|
|
262
|
+
* @memberof VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
263
|
+
*/
|
|
264
|
+
_BaseRecoveryPointSpec["default"].prototype.referenceRecoveryPointExtId = undefined;
|
|
265
|
+
/**
|
|
266
|
+
* Disk recovery point external identifier.
|
|
267
|
+
* @memberof VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
268
|
+
*/
|
|
269
|
+
_BaseRecoveryPointSpec["default"].prototype.referenceDiskRecoveryPointExtId = undefined;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The VolumeGroupDiskRecoveryPointReference model module.
|
|
3
|
+
* @module Ntnx/VolumeGroupDiskRecoveryPointReference
|
|
4
|
+
* @version 4.0.1
|
|
5
|
+
* @class VolumeGroupDiskRecoveryPointReference
|
|
6
|
+
* @extends DiskRecoveryPointReference
|
|
7
|
+
*/
|
|
8
|
+
export default class VolumeGroupDiskRecoveryPointReference extends DiskRecoveryPointReference {
|
|
9
|
+
/**
|
|
10
|
+
* Returns The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
11
|
+
* @return {string}
|
|
12
|
+
*/
|
|
13
|
+
getVolumeGroupRecoveryPointExtId(): string;
|
|
14
|
+
/**
|
|
15
|
+
* Sets The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
16
|
+
* @param {string} volumeGroupRecoveryPointExtId The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
17
|
+
*/
|
|
18
|
+
setVolumeGroupRecoveryPointExtId(volumeGroupRecoveryPointExtId: string): void;
|
|
19
|
+
volumeGroupRecoveryPointExtId: string;
|
|
20
|
+
toJson(forMutation: any): {
|
|
21
|
+
$reserved: any;
|
|
22
|
+
$objectType: string;
|
|
23
|
+
$unknownFields: any;
|
|
24
|
+
diskRecoveryPointExtId?: string;
|
|
25
|
+
recoveryPointExtId?: string;
|
|
26
|
+
volumeGroupRecoveryPointExtId?: string;
|
|
27
|
+
};
|
|
28
|
+
#private;
|
|
29
|
+
}
|
|
30
|
+
import DiskRecoveryPointReference from "./DiskRecoveryPointReference";
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _DiskRecoveryPointReference = _interopRequireDefault(require("./DiskRecoveryPointReference"));
|
|
8
|
+
var _ValidationScopes = _interopRequireDefault(require("../../../validation/ValidationScopes"));
|
|
9
|
+
var _ValidationUtils = _interopRequireDefault(require("../../../../utils/ValidationUtils"));
|
|
10
|
+
var _ValidationError = _interopRequireDefault(require("../../../validation/ValidationError"));
|
|
11
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
+
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); }
|
|
13
|
+
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
|
|
14
|
+
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."); }
|
|
15
|
+
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
16
|
+
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
17
|
+
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; } }
|
|
18
|
+
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
|
|
19
|
+
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; }
|
|
20
|
+
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; }
|
|
21
|
+
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
22
|
+
function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
|
23
|
+
function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
|
|
24
|
+
function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
|
25
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
|
|
26
|
+
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); }
|
|
27
|
+
function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
|
28
|
+
function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
|
|
29
|
+
function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
|
30
|
+
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
|
31
|
+
function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
|
|
32
|
+
function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
|
|
33
|
+
function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
|
|
34
|
+
function _classPrivateMethodInitSpec(e, a) { _checkPrivateRedeclaration(e, a), a.add(e); }
|
|
35
|
+
function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); } /*
|
|
36
|
+
* Nutanix Data Protection APIs
|
|
37
|
+
*
|
|
38
|
+
* OpenAPI spec version: 4.0.1
|
|
39
|
+
*
|
|
40
|
+
* NOTE: This class is auto generated by the Open API Dev Platform.
|
|
41
|
+
*
|
|
42
|
+
* Open API Dev Platform Codegen version: 16.9.0.8546-RELEASE
|
|
43
|
+
*
|
|
44
|
+
* Do not edit the class manually.
|
|
45
|
+
*
|
|
46
|
+
*/
|
|
47
|
+
/**
|
|
48
|
+
* The VolumeGroupDiskRecoveryPointReference model module.
|
|
49
|
+
* @module Ntnx/VolumeGroupDiskRecoveryPointReference
|
|
50
|
+
* @version 4.0.1
|
|
51
|
+
* @class VolumeGroupDiskRecoveryPointReference
|
|
52
|
+
* @extends DiskRecoveryPointReference
|
|
53
|
+
*/
|
|
54
|
+
var _VolumeGroupDiskRecoveryPointReference_brand = /*#__PURE__*/new WeakSet();
|
|
55
|
+
var VolumeGroupDiskRecoveryPointReference = exports["default"] = /*#__PURE__*/function (_DiskRecoveryPointRef) {
|
|
56
|
+
/**
|
|
57
|
+
* Constructs a new <code>VolumeGroupDiskRecoveryPointReference</code>.
|
|
58
|
+
* Specs containing vm disk recovery point information used to discover the cluster.
|
|
59
|
+
* @alias module:Ntnx/VolumeGroupDiskRecoveryPointReference
|
|
60
|
+
* @extends module:Ntnx/DiskRecoveryPointReference
|
|
61
|
+
*/
|
|
62
|
+
function VolumeGroupDiskRecoveryPointReference() {
|
|
63
|
+
var _this;
|
|
64
|
+
_classCallCheck(this, VolumeGroupDiskRecoveryPointReference);
|
|
65
|
+
_this = _callSuper(this, VolumeGroupDiskRecoveryPointReference);
|
|
66
|
+
/*
|
|
67
|
+
* toJson method for a map type which supports map with primitive keys and values of object types
|
|
68
|
+
* @param {Object} obj
|
|
69
|
+
* @returns {Object|Map} Returns a new transofrmed Map by calling toJson on the values if applicable.
|
|
70
|
+
* Otherwise, just returns the input object.
|
|
71
|
+
*/
|
|
72
|
+
_classPrivateMethodInitSpec(_this, _VolumeGroupDiskRecoveryPointReference_brand);
|
|
73
|
+
_this.$objectType = "dataprotection.v4.content.VolumeGroupDiskRecoveryPointReference";
|
|
74
|
+
/** @type {object<string, any>} */
|
|
75
|
+
_this.$reserved = {
|
|
76
|
+
'$fv': "v4.r0"
|
|
77
|
+
};
|
|
78
|
+
/** @type {object<string, any>} */
|
|
79
|
+
_this.$unknownFields = {};
|
|
80
|
+
return _this;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Constructs a <code>VolumeGroupDiskRecoveryPointReference</code> from a plain JavaScript object, optionally creating a new instance.
|
|
85
|
+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
|
|
86
|
+
* @param {Object} data The plain JavaScript object bearing properties of interest.
|
|
87
|
+
* @param {module:Ntnx/VolumeGroupDiskRecoveryPointReference} obj Optional instance to populate.
|
|
88
|
+
* @param callFromChild {Boolean} Flag to recognise calling instance
|
|
89
|
+
* @return {module:Ntnx/VolumeGroupDiskRecoveryPointReference} The populated <code>VolumeGroupDiskRecoveryPointReference</code> instance.
|
|
90
|
+
*/
|
|
91
|
+
_inherits(VolumeGroupDiskRecoveryPointReference, _DiskRecoveryPointRef);
|
|
92
|
+
return _createClass(VolumeGroupDiskRecoveryPointReference, [{
|
|
93
|
+
key: "getVolumeGroupRecoveryPointExtId",
|
|
94
|
+
value:
|
|
95
|
+
/**
|
|
96
|
+
* Returns The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
97
|
+
* @return {string}
|
|
98
|
+
*/
|
|
99
|
+
function getVolumeGroupRecoveryPointExtId() {
|
|
100
|
+
return this.volumeGroupRecoveryPointExtId;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Sets The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
105
|
+
* @param {string} volumeGroupRecoveryPointExtId The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
106
|
+
*/
|
|
107
|
+
}, {
|
|
108
|
+
key: "setVolumeGroupRecoveryPointExtId",
|
|
109
|
+
value: function setVolumeGroupRecoveryPointExtId(volumeGroupRecoveryPointExtId) {
|
|
110
|
+
this.volumeGroupRecoveryPointExtId = volumeGroupRecoveryPointExtId;
|
|
111
|
+
}
|
|
112
|
+
}, {
|
|
113
|
+
key: "toJson",
|
|
114
|
+
value: function toJson(forMutation) {
|
|
115
|
+
if (forMutation === false) {
|
|
116
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getVolumeGroupRecoveryPointExtId() !== 'undefined' && this.getVolumeGroupRecoveryPointExtId() !== null ? {
|
|
117
|
+
'volumeGroupRecoveryPointExtId': this.getVolumeGroupRecoveryPointExtId()
|
|
118
|
+
} : {}), typeof this.getRecoveryPointExtId() !== 'undefined' && this.getRecoveryPointExtId() !== null ? {
|
|
119
|
+
'recoveryPointExtId': this.getRecoveryPointExtId()
|
|
120
|
+
} : {}), typeof this.getDiskRecoveryPointExtId() !== 'undefined' && this.getDiskRecoveryPointExtId() !== null ? {
|
|
121
|
+
'diskRecoveryPointExtId': this.getDiskRecoveryPointExtId()
|
|
122
|
+
} : {}), {}, {
|
|
123
|
+
'$reserved': this.get$Reserved(),
|
|
124
|
+
'$objectType': this.get$ObjectType(),
|
|
125
|
+
'$unknownFields': this.get$UnknownFields()
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
return _objectSpread(_objectSpread(_objectSpread(_objectSpread({}, typeof this.getVolumeGroupRecoveryPointExtId() !== 'undefined' && this.getVolumeGroupRecoveryPointExtId() !== null ? {
|
|
129
|
+
'volumeGroupRecoveryPointExtId': this.getVolumeGroupRecoveryPointExtId()
|
|
130
|
+
} : {}), typeof this.getRecoveryPointExtId() !== 'undefined' && this.getRecoveryPointExtId() !== null ? {
|
|
131
|
+
'recoveryPointExtId': this.getRecoveryPointExtId()
|
|
132
|
+
} : {}), typeof this.getDiskRecoveryPointExtId() !== 'undefined' && this.getDiskRecoveryPointExtId() !== null ? {
|
|
133
|
+
'diskRecoveryPointExtId': this.getDiskRecoveryPointExtId()
|
|
134
|
+
} : {}), {}, {
|
|
135
|
+
'$reserved': this.get$Reserved(),
|
|
136
|
+
'$objectType': this.get$ObjectType(),
|
|
137
|
+
'$unknownFields': this.get$UnknownFields()
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
}, {
|
|
141
|
+
key: "validate",
|
|
142
|
+
value: function validate(scope, properties) {
|
|
143
|
+
var _this2 = this;
|
|
144
|
+
var propList = [];
|
|
145
|
+
if (arguments.length === 0 || arguments.length === 1 && arguments[0] instanceof _ValidationScopes["default"]) {
|
|
146
|
+
//cases validate() and validate(scope)
|
|
147
|
+
propList = [];
|
|
148
|
+
} else if (arguments.length === 1) {
|
|
149
|
+
//case validate(properties)
|
|
150
|
+
propList = arguments[0];
|
|
151
|
+
scope = null;
|
|
152
|
+
} else {
|
|
153
|
+
//case validate(scope, properties)
|
|
154
|
+
propList = arguments[1];
|
|
155
|
+
}
|
|
156
|
+
var res = [];
|
|
157
|
+
var err = null;
|
|
158
|
+
propList.forEach(function (property) {
|
|
159
|
+
err = _this2.validateProperty(property, scope);
|
|
160
|
+
if (err) {
|
|
161
|
+
res.push(err);
|
|
162
|
+
}
|
|
163
|
+
});
|
|
164
|
+
return new Promise(function (resolve, reject) {
|
|
165
|
+
if (res.length !== 0) {
|
|
166
|
+
reject(err);
|
|
167
|
+
} else {
|
|
168
|
+
resolve();
|
|
169
|
+
}
|
|
170
|
+
});
|
|
171
|
+
}
|
|
172
|
+
}, {
|
|
173
|
+
key: "validateProperty",
|
|
174
|
+
value: function validateProperty(scope, property) {
|
|
175
|
+
if (property === "volumeGroupRecoveryPointExtId") {
|
|
176
|
+
if (typeof this.volumeGroupRecoveryPointExtId === 'undefined' || this.volumeGroupRecoveryPointExtId === null) {
|
|
177
|
+
return new _ValidationError["default"]("volumeGroupRecoveryPointExtId", "undefined or null");
|
|
178
|
+
}
|
|
179
|
+
if (!_ValidationUtils["default"].validatePattern(this.volumeGroupRecoveryPointExtId, /^[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}$/)) {
|
|
180
|
+
return new _ValidationError["default"]("volumeGroupRecoveryPointExtId", "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}$/");
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
return new _ValidationError["default"](property, "no such property exists");
|
|
184
|
+
}
|
|
185
|
+
}], [{
|
|
186
|
+
key: "constructFromObject",
|
|
187
|
+
value: function constructFromObject(data) {
|
|
188
|
+
var obj = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
189
|
+
var callFromChild = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
190
|
+
var items, item, i, itemArr, discriminator;
|
|
191
|
+
if (data) {
|
|
192
|
+
obj = obj || new VolumeGroupDiskRecoveryPointReference();
|
|
193
|
+
_DiskRecoveryPointReference["default"].constructFromObject(data, obj, true);
|
|
194
|
+
if (data.hasOwnProperty('volumeGroupRecoveryPointExtId') && data.volumeGroupRecoveryPointExtId !== null && data.volumeGroupRecoveryPointExtId !== undefined) {
|
|
195
|
+
obj.setVolumeGroupRecoveryPointExtId(data['volumeGroupRecoveryPointExtId']);
|
|
196
|
+
}
|
|
197
|
+
if (!callFromChild) {
|
|
198
|
+
obj.$unknownFields = _objectSpread({}, data.$unknownFields);
|
|
199
|
+
for (var property in data) {
|
|
200
|
+
// Check if the `property` is not already present in `obj` keys, either in snake_case or camelCase,
|
|
201
|
+
// as the model's fields are generated in camelCase, but the server might return snake_case (e.g., due to standards like OIDC).
|
|
202
|
+
// Also, ensure the `property` does not start with '$' and end with 'ItemDiscriminator'.
|
|
203
|
+
// If all conditions are true, add the `property` from `data` to `obj.$unknownFields` as an unknown field.
|
|
204
|
+
if (!Object.keys(obj).includes(property) && !Object.keys(obj).includes(this.snakeToCamel(property)) && !(property[0] === "$" && property.endsWith("ItemDiscriminator"))) {
|
|
205
|
+
obj.$unknownFields[property] = data[property];
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
return obj;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Converts a given snake_case string to camelCase.
|
|
215
|
+
* @param {string} snakeStr - The input string in snake_case format.
|
|
216
|
+
* @returns {string} - The converted string in camelCase format.
|
|
217
|
+
*/
|
|
218
|
+
}, {
|
|
219
|
+
key: "snakeToCamel",
|
|
220
|
+
value: function snakeToCamel(snakeStr) {
|
|
221
|
+
return snakeStr.replace(/(_\w)/g, function (match) {
|
|
222
|
+
return match[1].toUpperCase();
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
}]);
|
|
226
|
+
}(_DiskRecoveryPointReference["default"]);
|
|
227
|
+
/**
|
|
228
|
+
* The external identifier that can be used to retrieve the volume group recovery point using its URL (Note: This attribute will be removed in future releases; therefore use the volume group recovery point external identifier instead).
|
|
229
|
+
* @memberof VolumeGroupDiskRecoveryPointReference
|
|
230
|
+
*/
|
|
231
|
+
function _toJsonMapType(obj, forMutation) {
|
|
232
|
+
if (obj instanceof Map) {
|
|
233
|
+
return Object.fromEntries(Array.from(obj, function (_ref) {
|
|
234
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
|
235
|
+
k = _ref2[0],
|
|
236
|
+
v = _ref2[1];
|
|
237
|
+
return [k, typeof v.toJson !== "undefined" ? v.toJson(forMutation) : v];
|
|
238
|
+
}));
|
|
239
|
+
} else if (_typeof(obj) === 'object' && obj != null && obj.constructor === Object) {
|
|
240
|
+
return Object.fromEntries(Array.from(Object.entries(obj), function (entry) {
|
|
241
|
+
return [entry[0], typeof entry[1].toJson !== "undefined" ? entry[1].toJson(forMutation) : entry[1]];
|
|
242
|
+
}));
|
|
243
|
+
}
|
|
244
|
+
return obj;
|
|
245
|
+
}
|
|
246
|
+
/*
|
|
247
|
+
* toJson method for a date type which serializes a Date object to proper Date or DateTime formatting
|
|
248
|
+
* @param {Object} obj Object to serialize
|
|
249
|
+
* @param {boolean} isDateOnly Boolean variable to identify Date or DateTime format for serialization
|
|
250
|
+
* @returns {Object|string} Returns serialized date object or original input object
|
|
251
|
+
*/
|
|
252
|
+
function _handleDateType(obj, isDateOnly) {
|
|
253
|
+
if (obj instanceof Date && isDateOnly !== undefined) {
|
|
254
|
+
return isDateOnly ? obj.toISOString().slice(0, 10) : obj.toISOString();
|
|
255
|
+
}
|
|
256
|
+
return obj;
|
|
257
|
+
}
|
|
258
|
+
VolumeGroupDiskRecoveryPointReference.prototype.volumeGroupRecoveryPointExtId = undefined;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* The external identifier that can be used to retrieve the recovery point using its URL.
|
|
262
|
+
* @memberof VolumeGroupDiskRecoveryPointReference
|
|
263
|
+
*/
|
|
264
|
+
_DiskRecoveryPointReference["default"].prototype.recoveryPointExtId = undefined;
|
|
265
|
+
/**
|
|
266
|
+
* Disk recovery point external identifier.
|
|
267
|
+
* @memberof VolumeGroupDiskRecoveryPointReference
|
|
268
|
+
*/
|
|
269
|
+
_DiskRecoveryPointReference["default"].prototype.diskRecoveryPointExtId = undefined;
|
|
270
|
+
// Implement OneOfdataprotection.v4.content.ComputeChangedRegionsClusterDiscoverSpecreferenceDiskRecoveryPoint interface:
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The VolumeGroupRecoveryPointChangedRegionsComputeSpec model module.
|
|
3
|
+
* @module Ntnx/VolumeGroupRecoveryPointChangedRegionsComputeSpec
|
|
4
|
+
* @version 4.0.1
|
|
5
|
+
* @class VolumeGroupRecoveryPointChangedRegionsComputeSpec
|
|
6
|
+
* @extends VolumeGroupDiskRecoveryPointClusterDiscoverSpec
|
|
7
|
+
*/
|
|
8
|
+
export default class VolumeGroupRecoveryPointChangedRegionsComputeSpec extends VolumeGroupDiskRecoveryPointClusterDiscoverSpec {
|
|
9
|
+
/**
|
|
10
|
+
* Returns The start offset value to compute the changed region. If the value is not provided, the difference is executed from the offset of 0. Note: the start offset might automatically align to a system-defined block boundary.
|
|
11
|
+
* @return {Number}
|
|
12
|
+
*/
|
|
13
|
+
getOffset(): number;
|
|
14
|
+
/**
|
|
15
|
+
* Sets The start offset value to compute the changed region. If the value is not provided, the difference is executed from the offset of 0. Note: the start offset might automatically align to a system-defined block boundary.
|
|
16
|
+
* @param {Number} offset The start offset value to compute the changed region. If the value is not provided, the difference is executed from the offset of 0. Note: the start offset might automatically align to a system-defined block boundary.
|
|
17
|
+
*/
|
|
18
|
+
setOffset(offset: number): void;
|
|
19
|
+
offset: number;
|
|
20
|
+
/**
|
|
21
|
+
* Returns The length to compute the changed region. If the value is not provided, the difference is performed from the start offset to the end of the disk. Note: the end offset might automatically align to a system-defined block boundary.
|
|
22
|
+
* @return {Number}
|
|
23
|
+
*/
|
|
24
|
+
getLength(): number;
|
|
25
|
+
/**
|
|
26
|
+
* Sets The length to compute the changed region. If the value is not provided, the difference is performed from the start offset to the end of the disk. Note: the end offset might automatically align to a system-defined block boundary.
|
|
27
|
+
* @param {Number} length The length to compute the changed region. If the value is not provided, the difference is performed from the start offset to the end of the disk. Note: the end offset might automatically align to a system-defined block boundary.
|
|
28
|
+
*/
|
|
29
|
+
setLength(length: number): void;
|
|
30
|
+
length: number;
|
|
31
|
+
/**
|
|
32
|
+
* Returns When blockSizeByte is set, all returned ranges will start and end at blockSize addresses, and the changed blocks will match the block size. Supported values of blockSizeByte are [32768, 65536, 131072, 262144]. Example: if blockSizeByte is set to 32768 (i.e 32KB), all ranges will start at multiple of 32KB and end at multiple of 32KB value. Default blockSizeByte is set to 32KB
|
|
33
|
+
* minimum: 32768
|
|
34
|
+
* maximum: 262144
|
|
35
|
+
* @return {Number}
|
|
36
|
+
*/
|
|
37
|
+
getBlockSizeByte(): number;
|
|
38
|
+
/**
|
|
39
|
+
* Sets When blockSizeByte is set, all returned ranges will start and end at blockSize addresses, and the changed blocks will match the block size. Supported values of blockSizeByte are [32768, 65536, 131072, 262144]. Example: if blockSizeByte is set to 32768 (i.e 32KB), all ranges will start at multiple of 32KB and end at multiple of 32KB value. Default blockSizeByte is set to 32KB
|
|
40
|
+
* @param {Number} blockSizeByte When blockSizeByte is set, all returned ranges will start and end at blockSize addresses, and the changed blocks will match the block size. Supported values of blockSizeByte are [32768, 65536, 131072, 262144]. Example: if blockSizeByte is set to 32768 (i.e 32KB), all ranges will start at multiple of 32KB and end at multiple of 32KB value. Default blockSizeByte is set to 32KB
|
|
41
|
+
*/
|
|
42
|
+
setBlockSizeByte(blockSizeByte: number): void;
|
|
43
|
+
blockSizeByte: number;
|
|
44
|
+
toJson(forMutation: any): {
|
|
45
|
+
$reserved: any;
|
|
46
|
+
$objectType: string;
|
|
47
|
+
$unknownFields: any;
|
|
48
|
+
referenceDiskRecoveryPointExtId?: string;
|
|
49
|
+
referenceRecoveryPointExtId?: string;
|
|
50
|
+
referenceVolumeGroupRecoveryPointExtId?: string;
|
|
51
|
+
blockSizeByte?: number;
|
|
52
|
+
length?: number;
|
|
53
|
+
offset?: number;
|
|
54
|
+
};
|
|
55
|
+
#private;
|
|
56
|
+
}
|
|
57
|
+
import VolumeGroupDiskRecoveryPointClusterDiscoverSpec from "./VolumeGroupDiskRecoveryPointClusterDiscoverSpec";
|