@azure/arm-computefleet 1.0.1 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +13 -7
- package/dist/browser/api/azureFleetContext.d.ts +10 -1
- package/dist/browser/api/azureFleetContext.js +6 -5
- package/dist/browser/api/azureFleetContext.js.map +1 -1
- package/dist/browser/api/fleets/index.d.ts +2 -33
- package/dist/browser/api/fleets/index.js +1 -142
- package/dist/browser/api/fleets/index.js.map +1 -1
- package/dist/browser/api/fleets/operations.d.ts +48 -0
- package/dist/browser/api/fleets/operations.js +299 -0
- package/dist/browser/api/fleets/operations.js.map +1 -0
- package/dist/browser/api/{options.d.ts → fleets/options.d.ts} +20 -11
- package/dist/browser/api/fleets/options.js.map +1 -0
- package/dist/browser/api/index.d.ts +0 -3
- package/dist/browser/api/index.js +0 -2
- package/dist/browser/api/index.js.map +1 -1
- package/dist/browser/api/operations/index.d.ts +2 -8
- package/dist/browser/api/operations/index.js +1 -19
- package/dist/browser/api/operations/index.js.map +1 -1
- package/dist/browser/api/operations/operations.d.ts +10 -0
- package/dist/browser/api/operations/operations.js +34 -0
- package/dist/browser/api/operations/operations.js.map +1 -0
- package/dist/browser/api/operations/options.d.ts +5 -0
- package/dist/browser/api/operations/options.js.map +1 -0
- package/dist/browser/azureFleetClient.d.ts +6 -6
- package/dist/browser/azureFleetClient.js +9 -9
- package/dist/browser/azureFleetClient.js.map +1 -1
- package/dist/browser/classic/fleets/index.d.ts +24 -24
- package/dist/browser/classic/fleets/index.js +13 -11
- package/dist/browser/classic/fleets/index.js.map +1 -1
- package/dist/browser/classic/operations/index.d.ts +2 -5
- package/dist/browser/classic/operations/index.js +5 -5
- package/dist/browser/classic/operations/index.js.map +1 -1
- package/dist/browser/index.d.ts +6 -2
- package/dist/browser/index.js +3 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/models/index.d.ts +1 -1
- package/dist/browser/models/index.js +1 -1
- package/dist/browser/models/index.js.map +1 -1
- package/dist/browser/models/models.d.ts +342 -159
- package/dist/browser/models/models.js +392 -243
- package/dist/browser/models/models.js.map +1 -1
- package/dist/browser/restorePollerHelpers.js +8 -10
- package/dist/browser/restorePollerHelpers.js.map +1 -1
- package/dist/browser/static-helpers/cloudSettingHelpers.d.ts +13 -0
- package/dist/browser/static-helpers/cloudSettingHelpers.js +29 -0
- package/dist/browser/static-helpers/cloudSettingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/browser/static-helpers/urlTemplate.js +170 -0
- package/dist/browser/static-helpers/urlTemplate.js.map +1 -0
- package/dist/commonjs/api/azureFleetContext.d.ts +10 -1
- package/dist/commonjs/api/azureFleetContext.js +6 -5
- package/dist/commonjs/api/azureFleetContext.js.map +1 -1
- package/dist/commonjs/api/fleets/index.d.ts +2 -33
- package/dist/commonjs/api/fleets/index.js +11 -163
- package/dist/commonjs/api/fleets/index.js.map +1 -1
- package/dist/commonjs/api/fleets/operations.d.ts +48 -0
- package/dist/commonjs/api/fleets/operations.js +328 -0
- package/dist/commonjs/api/fleets/operations.js.map +1 -0
- package/dist/commonjs/api/{options.d.ts → fleets/options.d.ts} +20 -11
- package/dist/commonjs/api/fleets/options.js.map +1 -0
- package/dist/commonjs/api/index.d.ts +0 -3
- package/dist/commonjs/api/index.js +1 -11
- package/dist/commonjs/api/index.js.map +1 -1
- package/dist/commonjs/api/operations/index.d.ts +2 -8
- package/dist/commonjs/api/operations/index.js +3 -22
- package/dist/commonjs/api/operations/index.js.map +1 -1
- package/dist/commonjs/api/operations/operations.d.ts +10 -0
- package/dist/commonjs/api/operations/operations.js +39 -0
- package/dist/commonjs/api/operations/operations.js.map +1 -0
- package/dist/commonjs/api/operations/options.d.ts +5 -0
- package/dist/commonjs/api/operations/options.js +5 -0
- package/dist/commonjs/api/operations/options.js.map +1 -0
- package/dist/commonjs/azureFleetClient.d.ts +6 -6
- package/dist/commonjs/azureFleetClient.js +9 -9
- package/dist/commonjs/azureFleetClient.js.map +1 -1
- package/dist/commonjs/classic/fleets/index.d.ts +24 -24
- package/dist/commonjs/classic/fleets/index.js +14 -13
- package/dist/commonjs/classic/fleets/index.js.map +1 -1
- package/dist/commonjs/classic/operations/index.d.ts +2 -5
- package/dist/commonjs/classic/operations/index.js +6 -7
- package/dist/commonjs/classic/operations/index.js.map +1 -1
- package/dist/commonjs/index.d.ts +6 -2
- package/dist/commonjs/index.js +10 -3
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/models/index.d.ts +1 -1
- package/dist/commonjs/models/index.js +8 -3
- package/dist/commonjs/models/index.js.map +1 -1
- package/dist/commonjs/models/models.d.ts +342 -159
- package/dist/commonjs/models/models.js +453 -292
- package/dist/commonjs/models/models.js.map +1 -1
- package/dist/commonjs/restorePollerHelpers.js +8 -10
- package/dist/commonjs/restorePollerHelpers.js.map +1 -1
- package/dist/commonjs/static-helpers/cloudSettingHelpers.d.ts +13 -0
- package/dist/commonjs/static-helpers/cloudSettingHelpers.js +33 -0
- package/dist/commonjs/static-helpers/cloudSettingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/commonjs/static-helpers/urlTemplate.js +173 -0
- package/dist/commonjs/static-helpers/urlTemplate.js.map +1 -0
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/dist/esm/api/azureFleetContext.d.ts +10 -1
- package/dist/esm/api/azureFleetContext.js +6 -5
- package/dist/esm/api/azureFleetContext.js.map +1 -1
- package/dist/esm/api/fleets/index.d.ts +2 -33
- package/dist/esm/api/fleets/index.js +1 -142
- package/dist/esm/api/fleets/index.js.map +1 -1
- package/dist/esm/api/fleets/operations.d.ts +48 -0
- package/dist/esm/api/fleets/operations.js +299 -0
- package/dist/esm/api/fleets/operations.js.map +1 -0
- package/dist/{react-native/api → esm/api/fleets}/options.d.ts +20 -11
- package/dist/esm/api/fleets/options.js.map +1 -0
- package/dist/esm/api/index.d.ts +0 -3
- package/dist/esm/api/index.js +0 -2
- package/dist/esm/api/index.js.map +1 -1
- package/dist/esm/api/operations/index.d.ts +2 -8
- package/dist/esm/api/operations/index.js +1 -19
- package/dist/esm/api/operations/index.js.map +1 -1
- package/dist/esm/api/operations/operations.d.ts +10 -0
- package/dist/esm/api/operations/operations.js +34 -0
- package/dist/esm/api/operations/operations.js.map +1 -0
- package/dist/esm/api/operations/options.d.ts +5 -0
- package/dist/esm/api/operations/options.js +4 -0
- package/dist/esm/api/operations/options.js.map +1 -0
- package/dist/esm/azureFleetClient.d.ts +6 -6
- package/dist/esm/azureFleetClient.js +9 -9
- package/dist/esm/azureFleetClient.js.map +1 -1
- package/dist/esm/classic/fleets/index.d.ts +24 -24
- package/dist/esm/classic/fleets/index.js +13 -11
- package/dist/esm/classic/fleets/index.js.map +1 -1
- package/dist/esm/classic/operations/index.d.ts +2 -5
- package/dist/esm/classic/operations/index.js +5 -5
- package/dist/esm/classic/operations/index.js.map +1 -1
- package/dist/esm/index.d.ts +6 -2
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/models/index.d.ts +1 -1
- package/dist/esm/models/index.js +1 -1
- package/dist/esm/models/index.js.map +1 -1
- package/dist/esm/models/models.d.ts +342 -159
- package/dist/esm/models/models.js +392 -243
- package/dist/esm/models/models.js.map +1 -1
- package/dist/esm/restorePollerHelpers.js +8 -10
- package/dist/esm/restorePollerHelpers.js.map +1 -1
- package/dist/esm/static-helpers/cloudSettingHelpers.d.ts +13 -0
- package/dist/esm/static-helpers/cloudSettingHelpers.js +29 -0
- package/dist/esm/static-helpers/cloudSettingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/esm/static-helpers/urlTemplate.js +170 -0
- package/dist/esm/static-helpers/urlTemplate.js.map +1 -0
- package/dist/react-native/api/azureFleetContext.d.ts +10 -1
- package/dist/react-native/api/azureFleetContext.js +6 -5
- package/dist/react-native/api/azureFleetContext.js.map +1 -1
- package/dist/react-native/api/fleets/index.d.ts +2 -33
- package/dist/react-native/api/fleets/index.js +1 -142
- package/dist/react-native/api/fleets/index.js.map +1 -1
- package/dist/react-native/api/fleets/operations.d.ts +48 -0
- package/dist/react-native/api/fleets/operations.js +299 -0
- package/dist/react-native/api/fleets/operations.js.map +1 -0
- package/dist/{esm/api → react-native/api/fleets}/options.d.ts +20 -11
- package/dist/react-native/api/fleets/options.js +4 -0
- package/dist/react-native/api/fleets/options.js.map +1 -0
- package/dist/react-native/api/index.d.ts +0 -3
- package/dist/react-native/api/index.js +0 -2
- package/dist/react-native/api/index.js.map +1 -1
- package/dist/react-native/api/operations/index.d.ts +2 -8
- package/dist/react-native/api/operations/index.js +1 -19
- package/dist/react-native/api/operations/index.js.map +1 -1
- package/dist/react-native/api/operations/operations.d.ts +10 -0
- package/dist/react-native/api/operations/operations.js +34 -0
- package/dist/react-native/api/operations/operations.js.map +1 -0
- package/dist/react-native/api/operations/options.d.ts +5 -0
- package/dist/react-native/api/operations/options.js +4 -0
- package/dist/react-native/api/operations/options.js.map +1 -0
- package/dist/react-native/azureFleetClient.d.ts +6 -6
- package/dist/react-native/azureFleetClient.js +9 -9
- package/dist/react-native/azureFleetClient.js.map +1 -1
- package/dist/react-native/classic/fleets/index.d.ts +24 -24
- package/dist/react-native/classic/fleets/index.js +13 -11
- package/dist/react-native/classic/fleets/index.js.map +1 -1
- package/dist/react-native/classic/operations/index.d.ts +2 -5
- package/dist/react-native/classic/operations/index.js +5 -5
- package/dist/react-native/classic/operations/index.js.map +1 -1
- package/dist/react-native/index.d.ts +6 -2
- package/dist/react-native/index.js +3 -1
- package/dist/react-native/index.js.map +1 -1
- package/dist/react-native/models/index.d.ts +1 -1
- package/dist/react-native/models/index.js +1 -1
- package/dist/react-native/models/index.js.map +1 -1
- package/dist/react-native/models/models.d.ts +342 -159
- package/dist/react-native/models/models.js +392 -243
- package/dist/react-native/models/models.js.map +1 -1
- package/dist/react-native/restorePollerHelpers.js +8 -10
- package/dist/react-native/restorePollerHelpers.js.map +1 -1
- package/dist/react-native/static-helpers/cloudSettingHelpers.d.ts +13 -0
- package/dist/react-native/static-helpers/cloudSettingHelpers.js +29 -0
- package/dist/react-native/static-helpers/cloudSettingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/react-native/static-helpers/urlTemplate.js +170 -0
- package/dist/react-native/static-helpers/urlTemplate.js.map +1 -0
- package/package.json +101 -44
- package/CHANGELOG.md +0 -17
- package/dist/browser/api/azureFleetContext.d.ts.map +0 -1
- package/dist/browser/api/fleets/index.d.ts.map +0 -1
- package/dist/browser/api/index.d.ts.map +0 -1
- package/dist/browser/api/operations/index.d.ts.map +0 -1
- package/dist/browser/api/options.d.ts.map +0 -1
- package/dist/browser/api/options.js.map +0 -1
- package/dist/browser/azureFleetClient.d.ts.map +0 -1
- package/dist/browser/classic/fleets/index.d.ts.map +0 -1
- package/dist/browser/classic/index.d.ts.map +0 -1
- package/dist/browser/classic/operations/index.d.ts.map +0 -1
- package/dist/browser/helpers/serializerHelpers.d.ts +0 -3
- package/dist/browser/helpers/serializerHelpers.d.ts.map +0 -1
- package/dist/browser/helpers/serializerHelpers.js +0 -24
- package/dist/browser/helpers/serializerHelpers.js.map +0 -1
- package/dist/browser/index.d.ts.map +0 -1
- package/dist/browser/logger.d.ts.map +0 -1
- package/dist/browser/models/index.d.ts.map +0 -1
- package/dist/browser/models/models.d.ts.map +0 -1
- package/dist/browser/restorePollerHelpers.d.ts.map +0 -1
- package/dist/browser/static-helpers/pagingHelpers.d.ts.map +0 -1
- package/dist/browser/static-helpers/pollingHelpers.d.ts.map +0 -1
- package/dist/commonjs/api/azureFleetContext.d.ts.map +0 -1
- package/dist/commonjs/api/fleets/index.d.ts.map +0 -1
- package/dist/commonjs/api/index.d.ts.map +0 -1
- package/dist/commonjs/api/operations/index.d.ts.map +0 -1
- package/dist/commonjs/api/options.d.ts.map +0 -1
- package/dist/commonjs/api/options.js.map +0 -1
- package/dist/commonjs/azureFleetClient.d.ts.map +0 -1
- package/dist/commonjs/classic/fleets/index.d.ts.map +0 -1
- package/dist/commonjs/classic/index.d.ts.map +0 -1
- package/dist/commonjs/classic/operations/index.d.ts.map +0 -1
- package/dist/commonjs/helpers/serializerHelpers.d.ts +0 -3
- package/dist/commonjs/helpers/serializerHelpers.d.ts.map +0 -1
- package/dist/commonjs/helpers/serializerHelpers.js +0 -27
- package/dist/commonjs/helpers/serializerHelpers.js.map +0 -1
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/logger.d.ts.map +0 -1
- package/dist/commonjs/models/index.d.ts.map +0 -1
- package/dist/commonjs/models/models.d.ts.map +0 -1
- package/dist/commonjs/restorePollerHelpers.d.ts.map +0 -1
- package/dist/commonjs/static-helpers/pagingHelpers.d.ts.map +0 -1
- package/dist/commonjs/static-helpers/pollingHelpers.d.ts.map +0 -1
- package/dist/esm/api/azureFleetContext.d.ts.map +0 -1
- package/dist/esm/api/fleets/index.d.ts.map +0 -1
- package/dist/esm/api/index.d.ts.map +0 -1
- package/dist/esm/api/operations/index.d.ts.map +0 -1
- package/dist/esm/api/options.d.ts.map +0 -1
- package/dist/esm/api/options.js.map +0 -1
- package/dist/esm/azureFleetClient.d.ts.map +0 -1
- package/dist/esm/classic/fleets/index.d.ts.map +0 -1
- package/dist/esm/classic/index.d.ts.map +0 -1
- package/dist/esm/classic/operations/index.d.ts.map +0 -1
- package/dist/esm/helpers/serializerHelpers.d.ts +0 -3
- package/dist/esm/helpers/serializerHelpers.d.ts.map +0 -1
- package/dist/esm/helpers/serializerHelpers.js +0 -24
- package/dist/esm/helpers/serializerHelpers.js.map +0 -1
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/logger.d.ts.map +0 -1
- package/dist/esm/models/index.d.ts.map +0 -1
- package/dist/esm/models/models.d.ts.map +0 -1
- package/dist/esm/restorePollerHelpers.d.ts.map +0 -1
- package/dist/esm/static-helpers/pagingHelpers.d.ts.map +0 -1
- package/dist/esm/static-helpers/pollingHelpers.d.ts.map +0 -1
- package/dist/react-native/api/azureFleetContext.d.ts.map +0 -1
- package/dist/react-native/api/fleets/index.d.ts.map +0 -1
- package/dist/react-native/api/index.d.ts.map +0 -1
- package/dist/react-native/api/operations/index.d.ts.map +0 -1
- package/dist/react-native/api/options.d.ts.map +0 -1
- package/dist/react-native/api/options.js.map +0 -1
- package/dist/react-native/azureFleetClient.d.ts.map +0 -1
- package/dist/react-native/classic/fleets/index.d.ts.map +0 -1
- package/dist/react-native/classic/index.d.ts.map +0 -1
- package/dist/react-native/classic/operations/index.d.ts.map +0 -1
- package/dist/react-native/helpers/serializerHelpers.d.ts +0 -3
- package/dist/react-native/helpers/serializerHelpers.d.ts.map +0 -1
- package/dist/react-native/helpers/serializerHelpers.js +0 -24
- package/dist/react-native/helpers/serializerHelpers.js.map +0 -1
- package/dist/react-native/index.d.ts.map +0 -1
- package/dist/react-native/logger.d.ts.map +0 -1
- package/dist/react-native/models/index.d.ts.map +0 -1
- package/dist/react-native/models/models.d.ts.map +0 -1
- package/dist/react-native/restorePollerHelpers.d.ts.map +0 -1
- package/dist/react-native/static-helpers/pagingHelpers.d.ts.map +0 -1
- package/dist/react-native/static-helpers/pollingHelpers.d.ts.map +0 -1
- package/review/arm-computefleet-models-node.api.md +0 -1078
- package/review/arm-computefleet-node.api.md +0 -1178
- /package/dist/browser/api/{options.js → fleets/options.js} +0 -0
- /package/dist/{esm/api → browser/api/operations}/options.js +0 -0
- /package/dist/commonjs/api/{options.js → fleets/options.js} +0 -0
- /package/dist/{react-native/api → esm/api/fleets}/options.js +0 -0
package/dist/commonjs/index.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
import { AzureClouds, AzureSupportedClouds } from "./static-helpers/cloudSettingHelpers.js";
|
|
1
2
|
import { PageSettings, ContinuablePage, PagedAsyncIterableIterator } from "./static-helpers/pagingHelpers.js";
|
|
2
3
|
export { AzureFleetClient } from "./azureFleetClient.js";
|
|
3
4
|
export { restorePoller, RestorePollerOptions } from "./restorePollerHelpers.js";
|
|
4
|
-
export { Fleet, FleetProperties,
|
|
5
|
-
export { AzureFleetClientOptionalParams
|
|
5
|
+
export { Operation, OperationDisplay, KnownOrigin, Origin, KnownActionType, ActionType, ErrorResponse, ErrorDetail, ErrorAdditionalInfo, Fleet, FleetProperties, KnownProvisioningState, ProvisioningState, SpotPriorityProfile, KnownEvictionPolicy, EvictionPolicy, KnownSpotAllocationStrategy, SpotAllocationStrategy, RegularPriorityProfile, KnownRegularPriorityAllocationStrategy, RegularPriorityAllocationStrategy, VmSizeProfile, VMAttributes, VMAttributeMinMaxInteger, VMAttributeMinMaxDouble, KnownVMAttributeSupport, VMAttributeSupport, KnownLocalStorageDiskType, LocalStorageDiskType, KnownAcceleratorManufacturer, AcceleratorManufacturer, KnownAcceleratorType, AcceleratorType, KnownVMCategory, VMCategory, KnownArchitectureType, ArchitectureType, KnownCpuManufacturer, CpuManufacturer, AdditionalLocationsProfile, LocationProfile, BaseVirtualMachineProfile, VirtualMachineScaleSetOSProfile, WindowsConfiguration, AdditionalUnattendContent, KnownSettingNames, SettingNames, PatchSettings, KnownWindowsVMGuestPatchMode, WindowsVMGuestPatchMode, KnownWindowsPatchAssessmentMode, WindowsPatchAssessmentMode, WindowsVMGuestPatchAutomaticByPlatformSettings, KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting, WindowsVMGuestPatchAutomaticByPlatformRebootSetting, WinRMConfiguration, WinRMListener, KnownProtocolTypes, ProtocolTypes, LinuxConfiguration, SshConfiguration, SshPublicKey, LinuxPatchSettings, KnownLinuxVMGuestPatchMode, LinuxVMGuestPatchMode, KnownLinuxPatchAssessmentMode, LinuxPatchAssessmentMode, LinuxVMGuestPatchAutomaticByPlatformSettings, KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting, LinuxVMGuestPatchAutomaticByPlatformRebootSetting, VaultSecretGroup, SubResource, VaultCertificate, VirtualMachineScaleSetStorageProfile, ImageReference, VirtualMachineScaleSetOSDisk, KnownCachingTypes, CachingTypes, KnownDiskCreateOptionTypes, DiskCreateOptionTypes, DiffDiskSettings, KnownDiffDiskOptions, DiffDiskOptions, KnownDiffDiskPlacement, DiffDiskPlacement, KnownOperatingSystemTypes, OperatingSystemTypes, VirtualHardDisk, VirtualMachineScaleSetManagedDiskParameters, KnownStorageAccountTypes, StorageAccountTypes, DiskEncryptionSetParameters, VMDiskSecurityProfile, KnownSecurityEncryptionTypes, SecurityEncryptionTypes, KnownDiskDeleteOptionTypes, DiskDeleteOptionTypes, VirtualMachineScaleSetDataDisk, KnownDiskControllerTypes, DiskControllerTypes, VirtualMachineScaleSetNetworkProfile, ApiEntityReference, VirtualMachineScaleSetNetworkConfiguration, VirtualMachineScaleSetNetworkConfigurationProperties, VirtualMachineScaleSetNetworkConfigurationDnsSettings, VirtualMachineScaleSetIPConfiguration, VirtualMachineScaleSetIPConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfiguration, VirtualMachineScaleSetPublicIPAddressConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, KnownDomainNameLabelScopeTypes, DomainNameLabelScopeTypes, VirtualMachineScaleSetIpTag, KnownIPVersion, IPVersion, KnownDeleteOptions, DeleteOptions, PublicIPAddressSku, KnownPublicIPAddressSkuName, PublicIPAddressSkuName, KnownPublicIPAddressSkuTier, PublicIPAddressSkuTier, KnownNetworkInterfaceAuxiliaryMode, NetworkInterfaceAuxiliaryMode, KnownNetworkInterfaceAuxiliarySku, NetworkInterfaceAuxiliarySku, KnownNetworkApiVersion, NetworkApiVersion, SecurityProfile, UefiSettings, KnownSecurityTypes, SecurityTypes, EncryptionIdentity, ProxyAgentSettings, KnownMode, Mode, DiagnosticsProfile, BootDiagnostics, VirtualMachineScaleSetExtensionProfile, VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionProperties, KeyVaultSecretReference, ScheduledEventsProfile, TerminateNotificationProfile, OSImageNotificationProfile, CapacityReservationProfile, ApplicationProfile, VMGalleryApplication, VirtualMachineScaleSetHardwareProfile, VMSizeProperties, ServiceArtifactReference, SecurityPostureReference, ComputeProfile, AdditionalCapabilities, KnownFleetMode, FleetMode, KnownCapacityType, CapacityType, ZoneAllocationPolicy, KnownZoneDistributionStrategy, ZoneDistributionStrategy, ZonePreference, ManagedServiceIdentity, KnownManagedServiceIdentityType, ManagedServiceIdentityType, UserAssignedIdentity, Plan, TrackedResource, Resource, SystemData, KnownCreatedByType, CreatedByType, FleetUpdate, ManagedServiceIdentityUpdate, ResourcePlanUpdate, VirtualMachineScaleSet, ApiError, ApiErrorBase, InnerError, VirtualMachine, KnownVMOperationStatus, VMOperationStatus, KnownVersions, } from "./models/index.js";
|
|
6
|
+
export { AzureFleetClientOptionalParams } from "./api/index.js";
|
|
7
|
+
export { FleetsCancelOptionalParams, FleetsListVirtualMachinesOptionalParams, FleetsListVirtualMachineScaleSetsOptionalParams, FleetsListBySubscriptionOptionalParams, FleetsListByResourceGroupOptionalParams, FleetsDeleteOptionalParams, FleetsUpdateOptionalParams, FleetsCreateOrUpdateOptionalParams, FleetsGetOptionalParams, } from "./api/fleets/index.js";
|
|
8
|
+
export { OperationsListOptionalParams } from "./api/operations/index.js";
|
|
6
9
|
export { FleetsOperations, OperationsOperations } from "./classic/index.js";
|
|
7
10
|
export { PageSettings, ContinuablePage, PagedAsyncIterableIterator };
|
|
11
|
+
export { AzureClouds, AzureSupportedClouds };
|
|
8
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/commonjs/index.js
CHANGED
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
// Copyright (c) Microsoft Corporation.
|
|
3
3
|
// Licensed under the MIT License.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.AzureClouds = exports.KnownVersions = exports.KnownVMOperationStatus = exports.KnownCreatedByType = exports.KnownManagedServiceIdentityType = exports.KnownZoneDistributionStrategy = exports.KnownCapacityType = exports.KnownFleetMode = exports.KnownMode = exports.KnownSecurityTypes = exports.KnownNetworkApiVersion = exports.KnownNetworkInterfaceAuxiliarySku = exports.KnownNetworkInterfaceAuxiliaryMode = exports.KnownPublicIPAddressSkuTier = exports.KnownPublicIPAddressSkuName = exports.KnownDeleteOptions = exports.KnownIPVersion = exports.KnownDomainNameLabelScopeTypes = exports.KnownDiskControllerTypes = exports.KnownDiskDeleteOptionTypes = exports.KnownSecurityEncryptionTypes = exports.KnownStorageAccountTypes = exports.KnownOperatingSystemTypes = exports.KnownDiffDiskPlacement = exports.KnownDiffDiskOptions = exports.KnownDiskCreateOptionTypes = exports.KnownCachingTypes = exports.KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting = exports.KnownLinuxPatchAssessmentMode = exports.KnownLinuxVMGuestPatchMode = exports.KnownProtocolTypes = exports.KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting = exports.KnownWindowsPatchAssessmentMode = exports.KnownWindowsVMGuestPatchMode = exports.KnownSettingNames = exports.KnownCpuManufacturer = exports.KnownArchitectureType = exports.KnownVMCategory = exports.KnownAcceleratorType = exports.KnownAcceleratorManufacturer = exports.KnownLocalStorageDiskType = exports.KnownVMAttributeSupport = exports.KnownRegularPriorityAllocationStrategy = exports.KnownSpotAllocationStrategy = exports.KnownEvictionPolicy = exports.KnownProvisioningState = exports.KnownActionType = exports.KnownOrigin = exports.restorePoller = exports.AzureFleetClient = void 0;
|
|
6
|
+
const cloudSettingHelpers_js_1 = require("./static-helpers/cloudSettingHelpers.js");
|
|
7
|
+
Object.defineProperty(exports, "AzureClouds", { enumerable: true, get: function () { return cloudSettingHelpers_js_1.AzureClouds; } });
|
|
6
8
|
var azureFleetClient_js_1 = require("./azureFleetClient.js");
|
|
7
9
|
Object.defineProperty(exports, "AzureFleetClient", { enumerable: true, get: function () { return azureFleetClient_js_1.AzureFleetClient; } });
|
|
8
10
|
var restorePollerHelpers_js_1 = require("./restorePollerHelpers.js");
|
|
9
11
|
Object.defineProperty(exports, "restorePoller", { enumerable: true, get: function () { return restorePollerHelpers_js_1.restorePoller; } });
|
|
10
12
|
var index_js_1 = require("./models/index.js");
|
|
13
|
+
Object.defineProperty(exports, "KnownOrigin", { enumerable: true, get: function () { return index_js_1.KnownOrigin; } });
|
|
14
|
+
Object.defineProperty(exports, "KnownActionType", { enumerable: true, get: function () { return index_js_1.KnownActionType; } });
|
|
11
15
|
Object.defineProperty(exports, "KnownProvisioningState", { enumerable: true, get: function () { return index_js_1.KnownProvisioningState; } });
|
|
12
16
|
Object.defineProperty(exports, "KnownEvictionPolicy", { enumerable: true, get: function () { return index_js_1.KnownEvictionPolicy; } });
|
|
13
17
|
Object.defineProperty(exports, "KnownSpotAllocationStrategy", { enumerable: true, get: function () { return index_js_1.KnownSpotAllocationStrategy; } });
|
|
@@ -46,8 +50,11 @@ Object.defineProperty(exports, "KnownNetworkInterfaceAuxiliarySku", { enumerable
|
|
|
46
50
|
Object.defineProperty(exports, "KnownNetworkApiVersion", { enumerable: true, get: function () { return index_js_1.KnownNetworkApiVersion; } });
|
|
47
51
|
Object.defineProperty(exports, "KnownSecurityTypes", { enumerable: true, get: function () { return index_js_1.KnownSecurityTypes; } });
|
|
48
52
|
Object.defineProperty(exports, "KnownMode", { enumerable: true, get: function () { return index_js_1.KnownMode; } });
|
|
53
|
+
Object.defineProperty(exports, "KnownFleetMode", { enumerable: true, get: function () { return index_js_1.KnownFleetMode; } });
|
|
54
|
+
Object.defineProperty(exports, "KnownCapacityType", { enumerable: true, get: function () { return index_js_1.KnownCapacityType; } });
|
|
55
|
+
Object.defineProperty(exports, "KnownZoneDistributionStrategy", { enumerable: true, get: function () { return index_js_1.KnownZoneDistributionStrategy; } });
|
|
49
56
|
Object.defineProperty(exports, "KnownManagedServiceIdentityType", { enumerable: true, get: function () { return index_js_1.KnownManagedServiceIdentityType; } });
|
|
50
57
|
Object.defineProperty(exports, "KnownCreatedByType", { enumerable: true, get: function () { return index_js_1.KnownCreatedByType; } });
|
|
51
|
-
Object.defineProperty(exports, "
|
|
52
|
-
Object.defineProperty(exports, "
|
|
58
|
+
Object.defineProperty(exports, "KnownVMOperationStatus", { enumerable: true, get: function () { return index_js_1.KnownVMOperationStatus; } });
|
|
59
|
+
Object.defineProperty(exports, "KnownVersions", { enumerable: true, get: function () { return index_js_1.KnownVersions; } });
|
|
53
60
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,oFAA4F;AAiNnF,4FAjNA,oCAAW,OAiNA;AA1MpB,6DAAyD;AAAhD,uHAAA,gBAAgB,OAAA;AACzB,qEAAgF;AAAvE,wHAAA,aAAa,OAAA;AACtB,8CAwL2B;AArLzB,uGAAA,WAAW,OAAA;AAEX,2GAAA,eAAe,OAAA;AAOf,kHAAA,sBAAsB,OAAA;AAGtB,+GAAA,mBAAmB,OAAA;AAEnB,uHAAA,2BAA2B,OAAA;AAG3B,kIAAA,sCAAsC,OAAA;AAMtC,mHAAA,uBAAuB,OAAA;AAEvB,qHAAA,yBAAyB,OAAA;AAEzB,wHAAA,4BAA4B,OAAA;AAE5B,gHAAA,oBAAoB,OAAA;AAEpB,2GAAA,eAAe,OAAA;AAEf,iHAAA,qBAAqB,OAAA;AAErB,gHAAA,oBAAoB,OAAA;AAQpB,6GAAA,iBAAiB,OAAA;AAGjB,wHAAA,4BAA4B,OAAA;AAE5B,2HAAA,+BAA+B,OAAA;AAG/B,oJAAA,wDAAwD,OAAA;AAIxD,8GAAA,kBAAkB,OAAA;AAMlB,sHAAA,0BAA0B,OAAA;AAE1B,yHAAA,6BAA6B,OAAA;AAG7B,kJAAA,sDAAsD,OAAA;AAQtD,6GAAA,iBAAiB,OAAA;AAEjB,sHAAA,0BAA0B,OAAA;AAG1B,gHAAA,oBAAoB,OAAA;AAEpB,kHAAA,sBAAsB,OAAA;AAEtB,qHAAA,yBAAyB,OAAA;AAIzB,oHAAA,wBAAwB,OAAA;AAIxB,wHAAA,4BAA4B,OAAA;AAE5B,sHAAA,0BAA0B,OAAA;AAG1B,oHAAA,wBAAwB,OAAA;AAYxB,0HAAA,8BAA8B,OAAA;AAG9B,0GAAA,cAAc,OAAA;AAEd,8GAAA,kBAAkB,OAAA;AAGlB,uHAAA,2BAA2B,OAAA;AAE3B,uHAAA,2BAA2B,OAAA;AAE3B,8HAAA,kCAAkC,OAAA;AAElC,6HAAA,iCAAiC,OAAA;AAEjC,kHAAA,sBAAsB,OAAA;AAItB,8GAAA,kBAAkB,OAAA;AAIlB,qGAAA,SAAS,OAAA;AAoBT,0GAAA,cAAc,OAAA;AAEd,6GAAA,iBAAiB,OAAA;AAGjB,yHAAA,6BAA6B,OAAA;AAI7B,2HAAA,+BAA+B,OAAA;AAO/B,8GAAA,kBAAkB,OAAA;AAUlB,kHAAA,sBAAsB,OAAA;AAEtB,yGAAA,aAAa,OAAA","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport { AzureClouds, AzureSupportedClouds } from \"./static-helpers/cloudSettingHelpers.js\";\nimport {\n PageSettings,\n ContinuablePage,\n PagedAsyncIterableIterator,\n} from \"./static-helpers/pagingHelpers.js\";\n\nexport { AzureFleetClient } from \"./azureFleetClient.js\";\nexport { restorePoller, RestorePollerOptions } from \"./restorePollerHelpers.js\";\nexport {\n Operation,\n OperationDisplay,\n KnownOrigin,\n Origin,\n KnownActionType,\n ActionType,\n ErrorResponse,\n ErrorDetail,\n ErrorAdditionalInfo,\n Fleet,\n FleetProperties,\n KnownProvisioningState,\n ProvisioningState,\n SpotPriorityProfile,\n KnownEvictionPolicy,\n EvictionPolicy,\n KnownSpotAllocationStrategy,\n SpotAllocationStrategy,\n RegularPriorityProfile,\n KnownRegularPriorityAllocationStrategy,\n RegularPriorityAllocationStrategy,\n VmSizeProfile,\n VMAttributes,\n VMAttributeMinMaxInteger,\n VMAttributeMinMaxDouble,\n KnownVMAttributeSupport,\n VMAttributeSupport,\n KnownLocalStorageDiskType,\n LocalStorageDiskType,\n KnownAcceleratorManufacturer,\n AcceleratorManufacturer,\n KnownAcceleratorType,\n AcceleratorType,\n KnownVMCategory,\n VMCategory,\n KnownArchitectureType,\n ArchitectureType,\n KnownCpuManufacturer,\n CpuManufacturer,\n AdditionalLocationsProfile,\n LocationProfile,\n BaseVirtualMachineProfile,\n VirtualMachineScaleSetOSProfile,\n WindowsConfiguration,\n AdditionalUnattendContent,\n KnownSettingNames,\n SettingNames,\n PatchSettings,\n KnownWindowsVMGuestPatchMode,\n WindowsVMGuestPatchMode,\n KnownWindowsPatchAssessmentMode,\n WindowsPatchAssessmentMode,\n WindowsVMGuestPatchAutomaticByPlatformSettings,\n KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting,\n WindowsVMGuestPatchAutomaticByPlatformRebootSetting,\n WinRMConfiguration,\n WinRMListener,\n KnownProtocolTypes,\n ProtocolTypes,\n LinuxConfiguration,\n SshConfiguration,\n SshPublicKey,\n LinuxPatchSettings,\n KnownLinuxVMGuestPatchMode,\n LinuxVMGuestPatchMode,\n KnownLinuxPatchAssessmentMode,\n LinuxPatchAssessmentMode,\n LinuxVMGuestPatchAutomaticByPlatformSettings,\n KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting,\n LinuxVMGuestPatchAutomaticByPlatformRebootSetting,\n VaultSecretGroup,\n SubResource,\n VaultCertificate,\n VirtualMachineScaleSetStorageProfile,\n ImageReference,\n VirtualMachineScaleSetOSDisk,\n KnownCachingTypes,\n CachingTypes,\n KnownDiskCreateOptionTypes,\n DiskCreateOptionTypes,\n DiffDiskSettings,\n KnownDiffDiskOptions,\n DiffDiskOptions,\n KnownDiffDiskPlacement,\n DiffDiskPlacement,\n KnownOperatingSystemTypes,\n OperatingSystemTypes,\n VirtualHardDisk,\n VirtualMachineScaleSetManagedDiskParameters,\n KnownStorageAccountTypes,\n StorageAccountTypes,\n DiskEncryptionSetParameters,\n VMDiskSecurityProfile,\n KnownSecurityEncryptionTypes,\n SecurityEncryptionTypes,\n KnownDiskDeleteOptionTypes,\n DiskDeleteOptionTypes,\n VirtualMachineScaleSetDataDisk,\n KnownDiskControllerTypes,\n DiskControllerTypes,\n VirtualMachineScaleSetNetworkProfile,\n ApiEntityReference,\n VirtualMachineScaleSetNetworkConfiguration,\n VirtualMachineScaleSetNetworkConfigurationProperties,\n VirtualMachineScaleSetNetworkConfigurationDnsSettings,\n VirtualMachineScaleSetIPConfiguration,\n VirtualMachineScaleSetIPConfigurationProperties,\n VirtualMachineScaleSetPublicIPAddressConfiguration,\n VirtualMachineScaleSetPublicIPAddressConfigurationProperties,\n VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings,\n KnownDomainNameLabelScopeTypes,\n DomainNameLabelScopeTypes,\n VirtualMachineScaleSetIpTag,\n KnownIPVersion,\n IPVersion,\n KnownDeleteOptions,\n DeleteOptions,\n PublicIPAddressSku,\n KnownPublicIPAddressSkuName,\n PublicIPAddressSkuName,\n KnownPublicIPAddressSkuTier,\n PublicIPAddressSkuTier,\n KnownNetworkInterfaceAuxiliaryMode,\n NetworkInterfaceAuxiliaryMode,\n KnownNetworkInterfaceAuxiliarySku,\n NetworkInterfaceAuxiliarySku,\n KnownNetworkApiVersion,\n NetworkApiVersion,\n SecurityProfile,\n UefiSettings,\n KnownSecurityTypes,\n SecurityTypes,\n EncryptionIdentity,\n ProxyAgentSettings,\n KnownMode,\n Mode,\n DiagnosticsProfile,\n BootDiagnostics,\n VirtualMachineScaleSetExtensionProfile,\n VirtualMachineScaleSetExtension,\n VirtualMachineScaleSetExtensionProperties,\n KeyVaultSecretReference,\n ScheduledEventsProfile,\n TerminateNotificationProfile,\n OSImageNotificationProfile,\n CapacityReservationProfile,\n ApplicationProfile,\n VMGalleryApplication,\n VirtualMachineScaleSetHardwareProfile,\n VMSizeProperties,\n ServiceArtifactReference,\n SecurityPostureReference,\n ComputeProfile,\n AdditionalCapabilities,\n KnownFleetMode,\n FleetMode,\n KnownCapacityType,\n CapacityType,\n ZoneAllocationPolicy,\n KnownZoneDistributionStrategy,\n ZoneDistributionStrategy,\n ZonePreference,\n ManagedServiceIdentity,\n KnownManagedServiceIdentityType,\n ManagedServiceIdentityType,\n UserAssignedIdentity,\n Plan,\n TrackedResource,\n Resource,\n SystemData,\n KnownCreatedByType,\n CreatedByType,\n FleetUpdate,\n ManagedServiceIdentityUpdate,\n ResourcePlanUpdate,\n VirtualMachineScaleSet,\n ApiError,\n ApiErrorBase,\n InnerError,\n VirtualMachine,\n KnownVMOperationStatus,\n VMOperationStatus,\n KnownVersions,\n} from \"./models/index.js\";\nexport { AzureFleetClientOptionalParams } from \"./api/index.js\";\nexport {\n FleetsCancelOptionalParams,\n FleetsListVirtualMachinesOptionalParams,\n FleetsListVirtualMachineScaleSetsOptionalParams,\n FleetsListBySubscriptionOptionalParams,\n FleetsListByResourceGroupOptionalParams,\n FleetsDeleteOptionalParams,\n FleetsUpdateOptionalParams,\n FleetsCreateOrUpdateOptionalParams,\n FleetsGetOptionalParams,\n} from \"./api/fleets/index.js\";\nexport { OperationsListOptionalParams } from \"./api/operations/index.js\";\nexport { FleetsOperations, OperationsOperations } from \"./classic/index.js\";\nexport { PageSettings, ContinuablePage, PagedAsyncIterableIterator };\nexport { AzureClouds, AzureSupportedClouds };\n"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { Fleet, FleetProperties, KnownProvisioningState, ProvisioningState, SpotPriorityProfile, KnownEvictionPolicy, EvictionPolicy, KnownSpotAllocationStrategy, SpotAllocationStrategy, RegularPriorityProfile, KnownRegularPriorityAllocationStrategy, RegularPriorityAllocationStrategy, VmSizeProfile, VMAttributes, VMAttributeMinMaxInteger, VMAttributeMinMaxDouble, KnownVMAttributeSupport, VMAttributeSupport, KnownLocalStorageDiskType, LocalStorageDiskType, KnownAcceleratorManufacturer, AcceleratorManufacturer, KnownAcceleratorType, AcceleratorType, KnownVMCategory, VMCategory, KnownArchitectureType, ArchitectureType, KnownCpuManufacturer, CpuManufacturer, AdditionalLocationsProfile, LocationProfile, BaseVirtualMachineProfile, VirtualMachineScaleSetOSProfile, WindowsConfiguration, AdditionalUnattendContent, KnownSettingNames, SettingNames, PatchSettings, KnownWindowsVMGuestPatchMode, WindowsVMGuestPatchMode, KnownWindowsPatchAssessmentMode, WindowsPatchAssessmentMode, WindowsVMGuestPatchAutomaticByPlatformSettings, KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting, WindowsVMGuestPatchAutomaticByPlatformRebootSetting, WinRMConfiguration, WinRMListener, KnownProtocolTypes, ProtocolTypes, LinuxConfiguration, SshConfiguration, SshPublicKey, LinuxPatchSettings, KnownLinuxVMGuestPatchMode, LinuxVMGuestPatchMode, KnownLinuxPatchAssessmentMode, LinuxPatchAssessmentMode, LinuxVMGuestPatchAutomaticByPlatformSettings, KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting, LinuxVMGuestPatchAutomaticByPlatformRebootSetting, VaultSecretGroup, SubResource, VaultCertificate, VirtualMachineScaleSetStorageProfile, ImageReference, VirtualMachineScaleSetOSDisk, KnownCachingTypes, CachingTypes, KnownDiskCreateOptionTypes, DiskCreateOptionTypes, DiffDiskSettings, KnownDiffDiskOptions, DiffDiskOptions, KnownDiffDiskPlacement, DiffDiskPlacement, KnownOperatingSystemTypes, OperatingSystemTypes, VirtualHardDisk, VirtualMachineScaleSetManagedDiskParameters, KnownStorageAccountTypes, StorageAccountTypes, DiskEncryptionSetParameters, VMDiskSecurityProfile, KnownSecurityEncryptionTypes, SecurityEncryptionTypes, KnownDiskDeleteOptionTypes, DiskDeleteOptionTypes, VirtualMachineScaleSetDataDisk, KnownDiskControllerTypes, DiskControllerTypes, VirtualMachineScaleSetNetworkProfile, ApiEntityReference, VirtualMachineScaleSetNetworkConfiguration, VirtualMachineScaleSetNetworkConfigurationProperties, VirtualMachineScaleSetNetworkConfigurationDnsSettings, VirtualMachineScaleSetIPConfiguration, VirtualMachineScaleSetIPConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfiguration, VirtualMachineScaleSetPublicIPAddressConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, KnownDomainNameLabelScopeTypes, DomainNameLabelScopeTypes, VirtualMachineScaleSetIpTag, KnownIPVersion, IPVersion, KnownDeleteOptions, DeleteOptions, PublicIPAddressSku, KnownPublicIPAddressSkuName, PublicIPAddressSkuName, KnownPublicIPAddressSkuTier, PublicIPAddressSkuTier, KnownNetworkInterfaceAuxiliaryMode, NetworkInterfaceAuxiliaryMode, KnownNetworkInterfaceAuxiliarySku, NetworkInterfaceAuxiliarySku, KnownNetworkApiVersion, NetworkApiVersion, SecurityProfile, UefiSettings, KnownSecurityTypes, SecurityTypes, EncryptionIdentity, ProxyAgentSettings, KnownMode, Mode, DiagnosticsProfile, BootDiagnostics, VirtualMachineScaleSetExtensionProfile, VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionProperties, KeyVaultSecretReference, ScheduledEventsProfile, TerminateNotificationProfile, OSImageNotificationProfile, CapacityReservationProfile, ApplicationProfile, VMGalleryApplication, VirtualMachineScaleSetHardwareProfile, VMSizeProperties, ServiceArtifactReference, SecurityPostureReference, ComputeProfile, AdditionalCapabilities, ManagedServiceIdentity, KnownManagedServiceIdentityType, ManagedServiceIdentityType, UserAssignedIdentity, Plan, TrackedResource, Resource, SystemData, KnownCreatedByType, CreatedByType, FleetUpdate, ManagedServiceIdentityUpdate, ResourcePlanUpdate, VirtualMachineScaleSet, ApiError, ApiErrorBase, InnerError,
|
|
1
|
+
export { Operation, OperationDisplay, KnownOrigin, Origin, KnownActionType, ActionType, ErrorResponse, ErrorDetail, ErrorAdditionalInfo, Fleet, FleetProperties, KnownProvisioningState, ProvisioningState, SpotPriorityProfile, KnownEvictionPolicy, EvictionPolicy, KnownSpotAllocationStrategy, SpotAllocationStrategy, RegularPriorityProfile, KnownRegularPriorityAllocationStrategy, RegularPriorityAllocationStrategy, VmSizeProfile, VMAttributes, VMAttributeMinMaxInteger, VMAttributeMinMaxDouble, KnownVMAttributeSupport, VMAttributeSupport, KnownLocalStorageDiskType, LocalStorageDiskType, KnownAcceleratorManufacturer, AcceleratorManufacturer, KnownAcceleratorType, AcceleratorType, KnownVMCategory, VMCategory, KnownArchitectureType, ArchitectureType, KnownCpuManufacturer, CpuManufacturer, AdditionalLocationsProfile, LocationProfile, BaseVirtualMachineProfile, VirtualMachineScaleSetOSProfile, WindowsConfiguration, AdditionalUnattendContent, KnownSettingNames, SettingNames, PatchSettings, KnownWindowsVMGuestPatchMode, WindowsVMGuestPatchMode, KnownWindowsPatchAssessmentMode, WindowsPatchAssessmentMode, WindowsVMGuestPatchAutomaticByPlatformSettings, KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting, WindowsVMGuestPatchAutomaticByPlatformRebootSetting, WinRMConfiguration, WinRMListener, KnownProtocolTypes, ProtocolTypes, LinuxConfiguration, SshConfiguration, SshPublicKey, LinuxPatchSettings, KnownLinuxVMGuestPatchMode, LinuxVMGuestPatchMode, KnownLinuxPatchAssessmentMode, LinuxPatchAssessmentMode, LinuxVMGuestPatchAutomaticByPlatformSettings, KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting, LinuxVMGuestPatchAutomaticByPlatformRebootSetting, VaultSecretGroup, SubResource, VaultCertificate, VirtualMachineScaleSetStorageProfile, ImageReference, VirtualMachineScaleSetOSDisk, KnownCachingTypes, CachingTypes, KnownDiskCreateOptionTypes, DiskCreateOptionTypes, DiffDiskSettings, KnownDiffDiskOptions, DiffDiskOptions, KnownDiffDiskPlacement, DiffDiskPlacement, KnownOperatingSystemTypes, OperatingSystemTypes, VirtualHardDisk, VirtualMachineScaleSetManagedDiskParameters, KnownStorageAccountTypes, StorageAccountTypes, DiskEncryptionSetParameters, VMDiskSecurityProfile, KnownSecurityEncryptionTypes, SecurityEncryptionTypes, KnownDiskDeleteOptionTypes, DiskDeleteOptionTypes, VirtualMachineScaleSetDataDisk, KnownDiskControllerTypes, DiskControllerTypes, VirtualMachineScaleSetNetworkProfile, ApiEntityReference, VirtualMachineScaleSetNetworkConfiguration, VirtualMachineScaleSetNetworkConfigurationProperties, VirtualMachineScaleSetNetworkConfigurationDnsSettings, VirtualMachineScaleSetIPConfiguration, VirtualMachineScaleSetIPConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfiguration, VirtualMachineScaleSetPublicIPAddressConfigurationProperties, VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings, KnownDomainNameLabelScopeTypes, DomainNameLabelScopeTypes, VirtualMachineScaleSetIpTag, KnownIPVersion, IPVersion, KnownDeleteOptions, DeleteOptions, PublicIPAddressSku, KnownPublicIPAddressSkuName, PublicIPAddressSkuName, KnownPublicIPAddressSkuTier, PublicIPAddressSkuTier, KnownNetworkInterfaceAuxiliaryMode, NetworkInterfaceAuxiliaryMode, KnownNetworkInterfaceAuxiliarySku, NetworkInterfaceAuxiliarySku, KnownNetworkApiVersion, NetworkApiVersion, SecurityProfile, UefiSettings, KnownSecurityTypes, SecurityTypes, EncryptionIdentity, ProxyAgentSettings, KnownMode, Mode, DiagnosticsProfile, BootDiagnostics, VirtualMachineScaleSetExtensionProfile, VirtualMachineScaleSetExtension, VirtualMachineScaleSetExtensionProperties, KeyVaultSecretReference, ScheduledEventsProfile, TerminateNotificationProfile, OSImageNotificationProfile, CapacityReservationProfile, ApplicationProfile, VMGalleryApplication, VirtualMachineScaleSetHardwareProfile, VMSizeProperties, ServiceArtifactReference, SecurityPostureReference, ComputeProfile, AdditionalCapabilities, KnownFleetMode, FleetMode, KnownCapacityType, CapacityType, ZoneAllocationPolicy, KnownZoneDistributionStrategy, ZoneDistributionStrategy, ZonePreference, ManagedServiceIdentity, KnownManagedServiceIdentityType, ManagedServiceIdentityType, UserAssignedIdentity, Plan, TrackedResource, Resource, SystemData, KnownCreatedByType, CreatedByType, FleetUpdate, ManagedServiceIdentityUpdate, ResourcePlanUpdate, VirtualMachineScaleSet, ApiError, ApiErrorBase, InnerError, VirtualMachine, KnownVMOperationStatus, VMOperationStatus, KnownVersions, } from "./models.js";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
// Copyright (c) Microsoft Corporation.
|
|
3
3
|
// Licensed under the MIT License.
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.
|
|
5
|
+
exports.KnownVersions = exports.KnownVMOperationStatus = exports.KnownCreatedByType = exports.KnownManagedServiceIdentityType = exports.KnownZoneDistributionStrategy = exports.KnownCapacityType = exports.KnownFleetMode = exports.KnownMode = exports.KnownSecurityTypes = exports.KnownNetworkApiVersion = exports.KnownNetworkInterfaceAuxiliarySku = exports.KnownNetworkInterfaceAuxiliaryMode = exports.KnownPublicIPAddressSkuTier = exports.KnownPublicIPAddressSkuName = exports.KnownDeleteOptions = exports.KnownIPVersion = exports.KnownDomainNameLabelScopeTypes = exports.KnownDiskControllerTypes = exports.KnownDiskDeleteOptionTypes = exports.KnownSecurityEncryptionTypes = exports.KnownStorageAccountTypes = exports.KnownOperatingSystemTypes = exports.KnownDiffDiskPlacement = exports.KnownDiffDiskOptions = exports.KnownDiskCreateOptionTypes = exports.KnownCachingTypes = exports.KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting = exports.KnownLinuxPatchAssessmentMode = exports.KnownLinuxVMGuestPatchMode = exports.KnownProtocolTypes = exports.KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting = exports.KnownWindowsPatchAssessmentMode = exports.KnownWindowsVMGuestPatchMode = exports.KnownSettingNames = exports.KnownCpuManufacturer = exports.KnownArchitectureType = exports.KnownVMCategory = exports.KnownAcceleratorType = exports.KnownAcceleratorManufacturer = exports.KnownLocalStorageDiskType = exports.KnownVMAttributeSupport = exports.KnownRegularPriorityAllocationStrategy = exports.KnownSpotAllocationStrategy = exports.KnownEvictionPolicy = exports.KnownProvisioningState = exports.KnownActionType = exports.KnownOrigin = void 0;
|
|
6
6
|
var models_js_1 = require("./models.js");
|
|
7
|
+
Object.defineProperty(exports, "KnownOrigin", { enumerable: true, get: function () { return models_js_1.KnownOrigin; } });
|
|
8
|
+
Object.defineProperty(exports, "KnownActionType", { enumerable: true, get: function () { return models_js_1.KnownActionType; } });
|
|
7
9
|
Object.defineProperty(exports, "KnownProvisioningState", { enumerable: true, get: function () { return models_js_1.KnownProvisioningState; } });
|
|
8
10
|
Object.defineProperty(exports, "KnownEvictionPolicy", { enumerable: true, get: function () { return models_js_1.KnownEvictionPolicy; } });
|
|
9
11
|
Object.defineProperty(exports, "KnownSpotAllocationStrategy", { enumerable: true, get: function () { return models_js_1.KnownSpotAllocationStrategy; } });
|
|
@@ -42,8 +44,11 @@ Object.defineProperty(exports, "KnownNetworkInterfaceAuxiliarySku", { enumerable
|
|
|
42
44
|
Object.defineProperty(exports, "KnownNetworkApiVersion", { enumerable: true, get: function () { return models_js_1.KnownNetworkApiVersion; } });
|
|
43
45
|
Object.defineProperty(exports, "KnownSecurityTypes", { enumerable: true, get: function () { return models_js_1.KnownSecurityTypes; } });
|
|
44
46
|
Object.defineProperty(exports, "KnownMode", { enumerable: true, get: function () { return models_js_1.KnownMode; } });
|
|
47
|
+
Object.defineProperty(exports, "KnownFleetMode", { enumerable: true, get: function () { return models_js_1.KnownFleetMode; } });
|
|
48
|
+
Object.defineProperty(exports, "KnownCapacityType", { enumerable: true, get: function () { return models_js_1.KnownCapacityType; } });
|
|
49
|
+
Object.defineProperty(exports, "KnownZoneDistributionStrategy", { enumerable: true, get: function () { return models_js_1.KnownZoneDistributionStrategy; } });
|
|
45
50
|
Object.defineProperty(exports, "KnownManagedServiceIdentityType", { enumerable: true, get: function () { return models_js_1.KnownManagedServiceIdentityType; } });
|
|
46
51
|
Object.defineProperty(exports, "KnownCreatedByType", { enumerable: true, get: function () { return models_js_1.KnownCreatedByType; } });
|
|
47
|
-
Object.defineProperty(exports, "
|
|
48
|
-
Object.defineProperty(exports, "
|
|
52
|
+
Object.defineProperty(exports, "KnownVMOperationStatus", { enumerable: true, get: function () { return models_js_1.KnownVMOperationStatus; } });
|
|
53
|
+
Object.defineProperty(exports, "KnownVersions", { enumerable: true, get: function () { return models_js_1.KnownVersions; } });
|
|
49
54
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;;;AAElC,yCAwLqB;AArLnB,wGAAA,WAAW,OAAA;AAEX,4GAAA,eAAe,OAAA;AAOf,mHAAA,sBAAsB,OAAA;AAGtB,gHAAA,mBAAmB,OAAA;AAEnB,wHAAA,2BAA2B,OAAA;AAG3B,mIAAA,sCAAsC,OAAA;AAMtC,oHAAA,uBAAuB,OAAA;AAEvB,sHAAA,yBAAyB,OAAA;AAEzB,yHAAA,4BAA4B,OAAA;AAE5B,iHAAA,oBAAoB,OAAA;AAEpB,4GAAA,eAAe,OAAA;AAEf,kHAAA,qBAAqB,OAAA;AAErB,iHAAA,oBAAoB,OAAA;AAQpB,8GAAA,iBAAiB,OAAA;AAGjB,yHAAA,4BAA4B,OAAA;AAE5B,4HAAA,+BAA+B,OAAA;AAG/B,qJAAA,wDAAwD,OAAA;AAIxD,+GAAA,kBAAkB,OAAA;AAMlB,uHAAA,0BAA0B,OAAA;AAE1B,0HAAA,6BAA6B,OAAA;AAG7B,mJAAA,sDAAsD,OAAA;AAQtD,8GAAA,iBAAiB,OAAA;AAEjB,uHAAA,0BAA0B,OAAA;AAG1B,iHAAA,oBAAoB,OAAA;AAEpB,mHAAA,sBAAsB,OAAA;AAEtB,sHAAA,yBAAyB,OAAA;AAIzB,qHAAA,wBAAwB,OAAA;AAIxB,yHAAA,4BAA4B,OAAA;AAE5B,uHAAA,0BAA0B,OAAA;AAG1B,qHAAA,wBAAwB,OAAA;AAYxB,2HAAA,8BAA8B,OAAA;AAG9B,2GAAA,cAAc,OAAA;AAEd,+GAAA,kBAAkB,OAAA;AAGlB,wHAAA,2BAA2B,OAAA;AAE3B,wHAAA,2BAA2B,OAAA;AAE3B,+HAAA,kCAAkC,OAAA;AAElC,8HAAA,iCAAiC,OAAA;AAEjC,mHAAA,sBAAsB,OAAA;AAItB,+GAAA,kBAAkB,OAAA;AAIlB,sGAAA,SAAS,OAAA;AAoBT,2GAAA,cAAc,OAAA;AAEd,8GAAA,iBAAiB,OAAA;AAGjB,0HAAA,6BAA6B,OAAA;AAI7B,4HAAA,+BAA+B,OAAA;AAO/B,+GAAA,kBAAkB,OAAA;AAUlB,mHAAA,sBAAsB,OAAA;AAEtB,0GAAA,aAAa,OAAA","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nexport {\n Operation,\n OperationDisplay,\n KnownOrigin,\n Origin,\n KnownActionType,\n ActionType,\n ErrorResponse,\n ErrorDetail,\n ErrorAdditionalInfo,\n Fleet,\n FleetProperties,\n KnownProvisioningState,\n ProvisioningState,\n SpotPriorityProfile,\n KnownEvictionPolicy,\n EvictionPolicy,\n KnownSpotAllocationStrategy,\n SpotAllocationStrategy,\n RegularPriorityProfile,\n KnownRegularPriorityAllocationStrategy,\n RegularPriorityAllocationStrategy,\n VmSizeProfile,\n VMAttributes,\n VMAttributeMinMaxInteger,\n VMAttributeMinMaxDouble,\n KnownVMAttributeSupport,\n VMAttributeSupport,\n KnownLocalStorageDiskType,\n LocalStorageDiskType,\n KnownAcceleratorManufacturer,\n AcceleratorManufacturer,\n KnownAcceleratorType,\n AcceleratorType,\n KnownVMCategory,\n VMCategory,\n KnownArchitectureType,\n ArchitectureType,\n KnownCpuManufacturer,\n CpuManufacturer,\n AdditionalLocationsProfile,\n LocationProfile,\n BaseVirtualMachineProfile,\n VirtualMachineScaleSetOSProfile,\n WindowsConfiguration,\n AdditionalUnattendContent,\n KnownSettingNames,\n SettingNames,\n PatchSettings,\n KnownWindowsVMGuestPatchMode,\n WindowsVMGuestPatchMode,\n KnownWindowsPatchAssessmentMode,\n WindowsPatchAssessmentMode,\n WindowsVMGuestPatchAutomaticByPlatformSettings,\n KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting,\n WindowsVMGuestPatchAutomaticByPlatformRebootSetting,\n WinRMConfiguration,\n WinRMListener,\n KnownProtocolTypes,\n ProtocolTypes,\n LinuxConfiguration,\n SshConfiguration,\n SshPublicKey,\n LinuxPatchSettings,\n KnownLinuxVMGuestPatchMode,\n LinuxVMGuestPatchMode,\n KnownLinuxPatchAssessmentMode,\n LinuxPatchAssessmentMode,\n LinuxVMGuestPatchAutomaticByPlatformSettings,\n KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting,\n LinuxVMGuestPatchAutomaticByPlatformRebootSetting,\n VaultSecretGroup,\n SubResource,\n VaultCertificate,\n VirtualMachineScaleSetStorageProfile,\n ImageReference,\n VirtualMachineScaleSetOSDisk,\n KnownCachingTypes,\n CachingTypes,\n KnownDiskCreateOptionTypes,\n DiskCreateOptionTypes,\n DiffDiskSettings,\n KnownDiffDiskOptions,\n DiffDiskOptions,\n KnownDiffDiskPlacement,\n DiffDiskPlacement,\n KnownOperatingSystemTypes,\n OperatingSystemTypes,\n VirtualHardDisk,\n VirtualMachineScaleSetManagedDiskParameters,\n KnownStorageAccountTypes,\n StorageAccountTypes,\n DiskEncryptionSetParameters,\n VMDiskSecurityProfile,\n KnownSecurityEncryptionTypes,\n SecurityEncryptionTypes,\n KnownDiskDeleteOptionTypes,\n DiskDeleteOptionTypes,\n VirtualMachineScaleSetDataDisk,\n KnownDiskControllerTypes,\n DiskControllerTypes,\n VirtualMachineScaleSetNetworkProfile,\n ApiEntityReference,\n VirtualMachineScaleSetNetworkConfiguration,\n VirtualMachineScaleSetNetworkConfigurationProperties,\n VirtualMachineScaleSetNetworkConfigurationDnsSettings,\n VirtualMachineScaleSetIPConfiguration,\n VirtualMachineScaleSetIPConfigurationProperties,\n VirtualMachineScaleSetPublicIPAddressConfiguration,\n VirtualMachineScaleSetPublicIPAddressConfigurationProperties,\n VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings,\n KnownDomainNameLabelScopeTypes,\n DomainNameLabelScopeTypes,\n VirtualMachineScaleSetIpTag,\n KnownIPVersion,\n IPVersion,\n KnownDeleteOptions,\n DeleteOptions,\n PublicIPAddressSku,\n KnownPublicIPAddressSkuName,\n PublicIPAddressSkuName,\n KnownPublicIPAddressSkuTier,\n PublicIPAddressSkuTier,\n KnownNetworkInterfaceAuxiliaryMode,\n NetworkInterfaceAuxiliaryMode,\n KnownNetworkInterfaceAuxiliarySku,\n NetworkInterfaceAuxiliarySku,\n KnownNetworkApiVersion,\n NetworkApiVersion,\n SecurityProfile,\n UefiSettings,\n KnownSecurityTypes,\n SecurityTypes,\n EncryptionIdentity,\n ProxyAgentSettings,\n KnownMode,\n Mode,\n DiagnosticsProfile,\n BootDiagnostics,\n VirtualMachineScaleSetExtensionProfile,\n VirtualMachineScaleSetExtension,\n VirtualMachineScaleSetExtensionProperties,\n KeyVaultSecretReference,\n ScheduledEventsProfile,\n TerminateNotificationProfile,\n OSImageNotificationProfile,\n CapacityReservationProfile,\n ApplicationProfile,\n VMGalleryApplication,\n VirtualMachineScaleSetHardwareProfile,\n VMSizeProperties,\n ServiceArtifactReference,\n SecurityPostureReference,\n ComputeProfile,\n AdditionalCapabilities,\n KnownFleetMode,\n FleetMode,\n KnownCapacityType,\n CapacityType,\n ZoneAllocationPolicy,\n KnownZoneDistributionStrategy,\n ZoneDistributionStrategy,\n ZonePreference,\n ManagedServiceIdentity,\n KnownManagedServiceIdentityType,\n ManagedServiceIdentityType,\n UserAssignedIdentity,\n Plan,\n TrackedResource,\n Resource,\n SystemData,\n KnownCreatedByType,\n CreatedByType,\n FleetUpdate,\n ManagedServiceIdentityUpdate,\n ResourcePlanUpdate,\n VirtualMachineScaleSet,\n ApiError,\n ApiErrorBase,\n InnerError,\n VirtualMachine,\n KnownVMOperationStatus,\n VMOperationStatus,\n KnownVersions,\n} from \"./models.js\";\n"]}
|