@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
|
@@ -1,1078 +0,0 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-computefleet"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
// @public
|
|
8
|
-
export type AcceleratorManufacturer = string;
|
|
9
|
-
|
|
10
|
-
// @public
|
|
11
|
-
export type AcceleratorType = string;
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export type ActionType = string;
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export interface AdditionalCapabilities {
|
|
18
|
-
hibernationEnabled?: boolean;
|
|
19
|
-
ultraSSDEnabled?: boolean;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// @public
|
|
23
|
-
export interface AdditionalLocationsProfile {
|
|
24
|
-
locationProfiles: LocationProfile[];
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// @public
|
|
28
|
-
export interface AdditionalUnattendContent {
|
|
29
|
-
componentName?: "Microsoft-Windows-Shell-Setup";
|
|
30
|
-
content?: string;
|
|
31
|
-
passName?: "OobeSystem";
|
|
32
|
-
settingName?: SettingNames;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
// @public
|
|
36
|
-
export interface ApiEntityReference {
|
|
37
|
-
id?: string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
// @public
|
|
41
|
-
export interface ApiError {
|
|
42
|
-
code?: string;
|
|
43
|
-
details?: ApiErrorBase[];
|
|
44
|
-
innererror?: InnerError;
|
|
45
|
-
message?: string;
|
|
46
|
-
target?: string;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// @public
|
|
50
|
-
export interface ApiErrorBase {
|
|
51
|
-
code?: string;
|
|
52
|
-
message?: string;
|
|
53
|
-
target?: string;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export interface ApplicationProfile {
|
|
58
|
-
galleryApplications?: VMGalleryApplication[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// @public
|
|
62
|
-
export type ArchitectureType = string;
|
|
63
|
-
|
|
64
|
-
// @public
|
|
65
|
-
export interface BaseVirtualMachineProfile {
|
|
66
|
-
applicationProfile?: ApplicationProfile;
|
|
67
|
-
capacityReservation?: CapacityReservationProfile;
|
|
68
|
-
diagnosticsProfile?: DiagnosticsProfile;
|
|
69
|
-
extensionProfile?: VirtualMachineScaleSetExtensionProfile;
|
|
70
|
-
hardwareProfile?: VirtualMachineScaleSetHardwareProfile;
|
|
71
|
-
licenseType?: string;
|
|
72
|
-
networkProfile?: VirtualMachineScaleSetNetworkProfile;
|
|
73
|
-
osProfile?: VirtualMachineScaleSetOSProfile;
|
|
74
|
-
scheduledEventsProfile?: ScheduledEventsProfile;
|
|
75
|
-
securityPostureReference?: SecurityPostureReference;
|
|
76
|
-
securityProfile?: SecurityProfile;
|
|
77
|
-
serviceArtifactReference?: ServiceArtifactReference;
|
|
78
|
-
storageProfile?: VirtualMachineScaleSetStorageProfile;
|
|
79
|
-
readonly timeCreated?: Date;
|
|
80
|
-
userData?: string;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// @public
|
|
84
|
-
export interface BootDiagnostics {
|
|
85
|
-
enabled?: boolean;
|
|
86
|
-
storageUri?: string;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// @public
|
|
90
|
-
export type CachingTypes = string;
|
|
91
|
-
|
|
92
|
-
// @public
|
|
93
|
-
export interface CapacityReservationProfile {
|
|
94
|
-
capacityReservationGroup?: SubResource;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
// @public
|
|
98
|
-
export interface ComputeProfile {
|
|
99
|
-
additionalVirtualMachineCapabilities?: AdditionalCapabilities;
|
|
100
|
-
baseVirtualMachineProfile: BaseVirtualMachineProfile;
|
|
101
|
-
computeApiVersion?: string;
|
|
102
|
-
platformFaultDomainCount?: number;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// @public
|
|
106
|
-
export type CpuManufacturer = string;
|
|
107
|
-
|
|
108
|
-
// @public
|
|
109
|
-
export type CreatedByType = string;
|
|
110
|
-
|
|
111
|
-
// @public
|
|
112
|
-
export type DeleteOptions = string;
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface DiagnosticsProfile {
|
|
116
|
-
bootDiagnostics?: BootDiagnostics;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// @public
|
|
120
|
-
export type DiffDiskOptions = string;
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export type DiffDiskPlacement = string;
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export interface DiffDiskSettings {
|
|
127
|
-
option?: DiffDiskOptions;
|
|
128
|
-
placement?: DiffDiskPlacement;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
// @public
|
|
132
|
-
export type DiskControllerTypes = string;
|
|
133
|
-
|
|
134
|
-
// @public
|
|
135
|
-
export type DiskCreateOptionTypes = string;
|
|
136
|
-
|
|
137
|
-
// @public
|
|
138
|
-
export type DiskDeleteOptionTypes = string;
|
|
139
|
-
|
|
140
|
-
// @public
|
|
141
|
-
export interface DiskEncryptionSetParameters {
|
|
142
|
-
id?: string;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export type DomainNameLabelScopeTypes = string;
|
|
147
|
-
|
|
148
|
-
// @public
|
|
149
|
-
export interface EncryptionIdentity {
|
|
150
|
-
userAssignedIdentityResourceId?: string;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export type EvictionPolicy = string;
|
|
155
|
-
|
|
156
|
-
// @public
|
|
157
|
-
export interface Fleet extends TrackedResource {
|
|
158
|
-
identity?: ManagedServiceIdentity;
|
|
159
|
-
plan?: Plan;
|
|
160
|
-
properties?: FleetProperties;
|
|
161
|
-
zones?: string[];
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// @public
|
|
165
|
-
export interface FleetProperties {
|
|
166
|
-
additionalLocationsProfile?: AdditionalLocationsProfile;
|
|
167
|
-
computeProfile: ComputeProfile;
|
|
168
|
-
readonly provisioningState?: ProvisioningState;
|
|
169
|
-
regularPriorityProfile?: RegularPriorityProfile;
|
|
170
|
-
spotPriorityProfile?: SpotPriorityProfile;
|
|
171
|
-
readonly timeCreated?: Date;
|
|
172
|
-
readonly uniqueId?: string;
|
|
173
|
-
vmAttributes?: VMAttributes;
|
|
174
|
-
vmSizesProfile: VmSizeProfile[];
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// @public
|
|
178
|
-
export interface FleetUpdate {
|
|
179
|
-
identity?: ManagedServiceIdentityUpdate;
|
|
180
|
-
plan?: ResourcePlanUpdate;
|
|
181
|
-
properties?: FleetProperties;
|
|
182
|
-
tags?: Record<string, string>;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
// @public
|
|
186
|
-
export interface ImageReference {
|
|
187
|
-
communityGalleryImageId?: string;
|
|
188
|
-
readonly exactVersion?: string;
|
|
189
|
-
id?: string;
|
|
190
|
-
offer?: string;
|
|
191
|
-
publisher?: string;
|
|
192
|
-
sharedGalleryImageId?: string;
|
|
193
|
-
sku?: string;
|
|
194
|
-
version?: string;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
// @public
|
|
198
|
-
export interface InnerError {
|
|
199
|
-
errorDetail?: string;
|
|
200
|
-
exceptionType?: string;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
// @public
|
|
204
|
-
export type IPVersion = string;
|
|
205
|
-
|
|
206
|
-
// @public
|
|
207
|
-
export interface KeyVaultSecretReference {
|
|
208
|
-
secretUrl: string;
|
|
209
|
-
sourceVault: SubResource;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
// @public
|
|
213
|
-
export enum KnownAcceleratorManufacturer {
|
|
214
|
-
AMD = "AMD",
|
|
215
|
-
Nvidia = "Nvidia",
|
|
216
|
-
Xilinx = "Xilinx"
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// @public
|
|
220
|
-
export enum KnownAcceleratorType {
|
|
221
|
-
FPGA = "FPGA",
|
|
222
|
-
GPU = "GPU"
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
// @public
|
|
226
|
-
export enum KnownActionType {
|
|
227
|
-
Internal = "Internal"
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
// @public
|
|
231
|
-
export enum KnownArchitectureType {
|
|
232
|
-
ARM64 = "ARM64",
|
|
233
|
-
X64 = "X64"
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
// @public
|
|
237
|
-
export enum KnownCachingTypes {
|
|
238
|
-
None = "None",
|
|
239
|
-
ReadOnly = "ReadOnly",
|
|
240
|
-
ReadWrite = "ReadWrite"
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
// @public
|
|
244
|
-
export enum KnownCpuManufacturer {
|
|
245
|
-
AMD = "AMD",
|
|
246
|
-
Ampere = "Ampere",
|
|
247
|
-
Intel = "Intel",
|
|
248
|
-
Microsoft = "Microsoft"
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// @public
|
|
252
|
-
export enum KnownCreatedByType {
|
|
253
|
-
Application = "Application",
|
|
254
|
-
Key = "Key",
|
|
255
|
-
ManagedIdentity = "ManagedIdentity",
|
|
256
|
-
User = "User"
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
// @public
|
|
260
|
-
export enum KnownDeleteOptions {
|
|
261
|
-
Delete = "Delete",
|
|
262
|
-
Detach = "Detach"
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export enum KnownDiffDiskOptions {
|
|
267
|
-
Local = "Local"
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
// @public
|
|
271
|
-
export enum KnownDiffDiskPlacement {
|
|
272
|
-
CacheDisk = "CacheDisk",
|
|
273
|
-
NvmeDisk = "NvmeDisk",
|
|
274
|
-
ResourceDisk = "ResourceDisk"
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
// @public
|
|
278
|
-
export enum KnownDiskControllerTypes {
|
|
279
|
-
NVMe = "NVMe",
|
|
280
|
-
SCSI = "SCSI"
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
// @public
|
|
284
|
-
export enum KnownDiskCreateOptionTypes {
|
|
285
|
-
Attach = "Attach",
|
|
286
|
-
Copy = "Copy",
|
|
287
|
-
Empty = "Empty",
|
|
288
|
-
FromImage = "FromImage",
|
|
289
|
-
Restore = "Restore"
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// @public
|
|
293
|
-
export enum KnownDiskDeleteOptionTypes {
|
|
294
|
-
Delete = "Delete",
|
|
295
|
-
Detach = "Detach"
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export enum KnownDomainNameLabelScopeTypes {
|
|
300
|
-
NoReuse = "NoReuse",
|
|
301
|
-
ResourceGroupReuse = "ResourceGroupReuse",
|
|
302
|
-
SubscriptionReuse = "SubscriptionReuse",
|
|
303
|
-
TenantReuse = "TenantReuse"
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
// @public
|
|
307
|
-
export enum KnownEvictionPolicy {
|
|
308
|
-
Deallocate = "Deallocate",
|
|
309
|
-
Delete = "Delete"
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
// @public
|
|
313
|
-
export enum KnownIPVersion {
|
|
314
|
-
IPv4 = "IPv4",
|
|
315
|
-
IPv6 = "IPv6"
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
// @public
|
|
319
|
-
export enum KnownLinuxPatchAssessmentMode {
|
|
320
|
-
AutomaticByPlatform = "AutomaticByPlatform",
|
|
321
|
-
ImageDefault = "ImageDefault"
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
// @public
|
|
325
|
-
export enum KnownLinuxVMGuestPatchAutomaticByPlatformRebootSetting {
|
|
326
|
-
Always = "Always",
|
|
327
|
-
IfRequired = "IfRequired",
|
|
328
|
-
Never = "Never",
|
|
329
|
-
Unknown = "Unknown"
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
// @public
|
|
333
|
-
export enum KnownLinuxVMGuestPatchMode {
|
|
334
|
-
AutomaticByPlatform = "AutomaticByPlatform",
|
|
335
|
-
ImageDefault = "ImageDefault"
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
// @public
|
|
339
|
-
export enum KnownLocalStorageDiskType {
|
|
340
|
-
HDD = "HDD",
|
|
341
|
-
SSD = "SSD"
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
// @public
|
|
345
|
-
export enum KnownManagedServiceIdentityType {
|
|
346
|
-
None = "None",
|
|
347
|
-
SystemAssigned = "SystemAssigned",
|
|
348
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
349
|
-
UserAssigned = "UserAssigned"
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
// @public
|
|
353
|
-
export enum KnownMode {
|
|
354
|
-
Audit = "Audit",
|
|
355
|
-
Enforce = "Enforce"
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
// @public
|
|
359
|
-
export enum KnownNetworkApiVersion {
|
|
360
|
-
V20201101 = "2020-11-01"
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
// @public
|
|
364
|
-
export enum KnownNetworkInterfaceAuxiliaryMode {
|
|
365
|
-
AcceleratedConnections = "AcceleratedConnections",
|
|
366
|
-
Floating = "Floating",
|
|
367
|
-
None = "None"
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
// @public
|
|
371
|
-
export enum KnownNetworkInterfaceAuxiliarySku {
|
|
372
|
-
A1 = "A1",
|
|
373
|
-
A2 = "A2",
|
|
374
|
-
A4 = "A4",
|
|
375
|
-
A8 = "A8",
|
|
376
|
-
None = "None"
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
// @public
|
|
380
|
-
export enum KnownOperatingSystemTypes {
|
|
381
|
-
Linux = "Linux",
|
|
382
|
-
Windows = "Windows"
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
// @public
|
|
386
|
-
export enum KnownOrigin {
|
|
387
|
-
System = "system",
|
|
388
|
-
User = "user",
|
|
389
|
-
UserSystem = "user,system"
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
// @public
|
|
393
|
-
export enum KnownProtocolTypes {
|
|
394
|
-
Http = "Http",
|
|
395
|
-
Https = "Https"
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
// @public
|
|
399
|
-
export enum KnownProvisioningState {
|
|
400
|
-
Canceled = "Canceled",
|
|
401
|
-
Creating = "Creating",
|
|
402
|
-
Deleting = "Deleting",
|
|
403
|
-
Failed = "Failed",
|
|
404
|
-
Migrating = "Migrating",
|
|
405
|
-
Succeeded = "Succeeded",
|
|
406
|
-
Updating = "Updating"
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
// @public
|
|
410
|
-
export enum KnownPublicIPAddressSkuName {
|
|
411
|
-
Basic = "Basic",
|
|
412
|
-
Standard = "Standard"
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
// @public
|
|
416
|
-
export enum KnownPublicIPAddressSkuTier {
|
|
417
|
-
Global = "Global",
|
|
418
|
-
Regional = "Regional"
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
// @public
|
|
422
|
-
export enum KnownRegularPriorityAllocationStrategy {
|
|
423
|
-
LowestPrice = "LowestPrice",
|
|
424
|
-
Prioritized = "Prioritized"
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
// @public
|
|
428
|
-
export enum KnownSecurityEncryptionTypes {
|
|
429
|
-
DiskWithVMGuestState = "DiskWithVMGuestState",
|
|
430
|
-
NonPersistedTPM = "NonPersistedTPM",
|
|
431
|
-
VMGuestStateOnly = "VMGuestStateOnly"
|
|
432
|
-
}
|
|
433
|
-
|
|
434
|
-
// @public
|
|
435
|
-
export enum KnownSecurityTypes {
|
|
436
|
-
ConfidentialVM = "ConfidentialVM",
|
|
437
|
-
TrustedLaunch = "TrustedLaunch"
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
// @public
|
|
441
|
-
export enum KnownSettingNames {
|
|
442
|
-
AutoLogon = "AutoLogon",
|
|
443
|
-
FirstLogonCommands = "FirstLogonCommands"
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
// @public
|
|
447
|
-
export enum KnownSpotAllocationStrategy {
|
|
448
|
-
CapacityOptimized = "CapacityOptimized",
|
|
449
|
-
LowestPrice = "LowestPrice",
|
|
450
|
-
PriceCapacityOptimized = "PriceCapacityOptimized"
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
// @public
|
|
454
|
-
export enum KnownStorageAccountTypes {
|
|
455
|
-
PremiumLRS = "Premium_LRS",
|
|
456
|
-
PremiumV2LRS = "PremiumV2_LRS",
|
|
457
|
-
PremiumZRS = "Premium_ZRS",
|
|
458
|
-
StandardLRS = "Standard_LRS",
|
|
459
|
-
StandardSSDLRS = "StandardSSD_LRS",
|
|
460
|
-
StandardSSDZRS = "StandardSSD_ZRS",
|
|
461
|
-
UltraSSDLRS = "UltraSSD_LRS"
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
// @public
|
|
465
|
-
export enum KnownVMAttributeSupport {
|
|
466
|
-
Excluded = "Excluded",
|
|
467
|
-
Included = "Included",
|
|
468
|
-
Required = "Required"
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
// @public
|
|
472
|
-
export enum KnownVMCategory {
|
|
473
|
-
ComputeOptimized = "ComputeOptimized",
|
|
474
|
-
FpgaAccelerated = "FpgaAccelerated",
|
|
475
|
-
GeneralPurpose = "GeneralPurpose",
|
|
476
|
-
GpuAccelerated = "GpuAccelerated",
|
|
477
|
-
HighPerformanceCompute = "HighPerformanceCompute",
|
|
478
|
-
MemoryOptimized = "MemoryOptimized",
|
|
479
|
-
StorageOptimized = "StorageOptimized"
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
// @public
|
|
483
|
-
export enum KnownWindowsPatchAssessmentMode {
|
|
484
|
-
AutomaticByPlatform = "AutomaticByPlatform",
|
|
485
|
-
ImageDefault = "ImageDefault"
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
// @public
|
|
489
|
-
export enum KnownWindowsVMGuestPatchAutomaticByPlatformRebootSetting {
|
|
490
|
-
Always = "Always",
|
|
491
|
-
IfRequired = "IfRequired",
|
|
492
|
-
Never = "Never",
|
|
493
|
-
Unknown = "Unknown"
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
// @public
|
|
497
|
-
export enum KnownWindowsVMGuestPatchMode {
|
|
498
|
-
AutomaticByOS = "AutomaticByOS",
|
|
499
|
-
AutomaticByPlatform = "AutomaticByPlatform",
|
|
500
|
-
Manual = "Manual"
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
// @public
|
|
504
|
-
export interface LinuxConfiguration {
|
|
505
|
-
disablePasswordAuthentication?: boolean;
|
|
506
|
-
enableVMAgentPlatformUpdates?: boolean;
|
|
507
|
-
patchSettings?: LinuxPatchSettings;
|
|
508
|
-
provisionVMAgent?: boolean;
|
|
509
|
-
ssh?: SshConfiguration;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
// @public
|
|
513
|
-
export type LinuxPatchAssessmentMode = string;
|
|
514
|
-
|
|
515
|
-
// @public
|
|
516
|
-
export interface LinuxPatchSettings {
|
|
517
|
-
assessmentMode?: LinuxPatchAssessmentMode;
|
|
518
|
-
automaticByPlatformSettings?: LinuxVMGuestPatchAutomaticByPlatformSettings;
|
|
519
|
-
patchMode?: LinuxVMGuestPatchMode;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
// @public
|
|
523
|
-
export type LinuxVMGuestPatchAutomaticByPlatformRebootSetting = string;
|
|
524
|
-
|
|
525
|
-
// @public
|
|
526
|
-
export interface LinuxVMGuestPatchAutomaticByPlatformSettings {
|
|
527
|
-
bypassPlatformSafetyChecksOnUserSchedule?: boolean;
|
|
528
|
-
rebootSetting?: LinuxVMGuestPatchAutomaticByPlatformRebootSetting;
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
// @public
|
|
532
|
-
export type LinuxVMGuestPatchMode = string;
|
|
533
|
-
|
|
534
|
-
// @public
|
|
535
|
-
export type LocalStorageDiskType = string;
|
|
536
|
-
|
|
537
|
-
// @public
|
|
538
|
-
export interface LocationProfile {
|
|
539
|
-
location: string;
|
|
540
|
-
virtualMachineProfileOverride?: BaseVirtualMachineProfile;
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
// @public
|
|
544
|
-
export interface ManagedServiceIdentity {
|
|
545
|
-
readonly principalId?: string;
|
|
546
|
-
readonly tenantId?: string;
|
|
547
|
-
type: ManagedServiceIdentityType;
|
|
548
|
-
userAssignedIdentities?: Record<string, UserAssignedIdentity | null>;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
// @public
|
|
552
|
-
export type ManagedServiceIdentityType = string;
|
|
553
|
-
|
|
554
|
-
// @public
|
|
555
|
-
export interface ManagedServiceIdentityUpdate {
|
|
556
|
-
type?: ManagedServiceIdentityType;
|
|
557
|
-
userAssignedIdentities?: Record<string, UserAssignedIdentity | null>;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
// @public
|
|
561
|
-
export type Mode = string;
|
|
562
|
-
|
|
563
|
-
// @public
|
|
564
|
-
export type NetworkApiVersion = string;
|
|
565
|
-
|
|
566
|
-
// @public
|
|
567
|
-
export type NetworkInterfaceAuxiliaryMode = string;
|
|
568
|
-
|
|
569
|
-
// @public
|
|
570
|
-
export type NetworkInterfaceAuxiliarySku = string;
|
|
571
|
-
|
|
572
|
-
// @public
|
|
573
|
-
export type OperatingSystemTypes = string;
|
|
574
|
-
|
|
575
|
-
// @public
|
|
576
|
-
export interface Operation {
|
|
577
|
-
actionType?: ActionType;
|
|
578
|
-
readonly display?: OperationDisplay;
|
|
579
|
-
readonly isDataAction?: boolean;
|
|
580
|
-
readonly name?: string;
|
|
581
|
-
readonly origin?: Origin;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
// @public
|
|
585
|
-
export interface OperationDisplay {
|
|
586
|
-
readonly description?: string;
|
|
587
|
-
readonly operation?: string;
|
|
588
|
-
readonly provider?: string;
|
|
589
|
-
readonly resource?: string;
|
|
590
|
-
}
|
|
591
|
-
|
|
592
|
-
// @public
|
|
593
|
-
export type Origin = string;
|
|
594
|
-
|
|
595
|
-
// @public
|
|
596
|
-
export interface OSImageNotificationProfile {
|
|
597
|
-
enable?: boolean;
|
|
598
|
-
notBeforeTimeout?: string;
|
|
599
|
-
}
|
|
600
|
-
|
|
601
|
-
// @public
|
|
602
|
-
export interface PatchSettings {
|
|
603
|
-
assessmentMode?: WindowsPatchAssessmentMode;
|
|
604
|
-
automaticByPlatformSettings?: WindowsVMGuestPatchAutomaticByPlatformSettings;
|
|
605
|
-
enableHotpatching?: boolean;
|
|
606
|
-
patchMode?: WindowsVMGuestPatchMode;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
// @public
|
|
610
|
-
export interface Plan {
|
|
611
|
-
name: string;
|
|
612
|
-
product: string;
|
|
613
|
-
promotionCode?: string;
|
|
614
|
-
publisher: string;
|
|
615
|
-
version?: string;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
// @public
|
|
619
|
-
export type ProtocolTypes = string;
|
|
620
|
-
|
|
621
|
-
// @public
|
|
622
|
-
export type ProvisioningState = string;
|
|
623
|
-
|
|
624
|
-
// @public
|
|
625
|
-
export interface ProxyAgentSettings {
|
|
626
|
-
enabled?: boolean;
|
|
627
|
-
keyIncarnationId?: number;
|
|
628
|
-
mode?: Mode;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
// @public
|
|
632
|
-
export interface PublicIPAddressSku {
|
|
633
|
-
name?: PublicIPAddressSkuName;
|
|
634
|
-
tier?: PublicIPAddressSkuTier;
|
|
635
|
-
}
|
|
636
|
-
|
|
637
|
-
// @public
|
|
638
|
-
export type PublicIPAddressSkuName = string;
|
|
639
|
-
|
|
640
|
-
// @public
|
|
641
|
-
export type PublicIPAddressSkuTier = string;
|
|
642
|
-
|
|
643
|
-
// @public
|
|
644
|
-
export type RegularPriorityAllocationStrategy = string;
|
|
645
|
-
|
|
646
|
-
// @public
|
|
647
|
-
export interface RegularPriorityProfile {
|
|
648
|
-
allocationStrategy?: RegularPriorityAllocationStrategy;
|
|
649
|
-
capacity?: number;
|
|
650
|
-
minCapacity?: number;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
// @public
|
|
654
|
-
export interface Resource {
|
|
655
|
-
readonly id?: string;
|
|
656
|
-
readonly name?: string;
|
|
657
|
-
readonly systemData?: SystemData;
|
|
658
|
-
readonly type?: string;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
// @public
|
|
662
|
-
export interface ResourcePlanUpdate {
|
|
663
|
-
name?: string;
|
|
664
|
-
product?: string;
|
|
665
|
-
promotionCode?: string;
|
|
666
|
-
publisher?: string;
|
|
667
|
-
version?: string;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
// @public
|
|
671
|
-
export interface ScheduledEventsProfile {
|
|
672
|
-
osImageNotificationProfile?: OSImageNotificationProfile;
|
|
673
|
-
terminateNotificationProfile?: TerminateNotificationProfile;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
// @public
|
|
677
|
-
export type SecurityEncryptionTypes = string;
|
|
678
|
-
|
|
679
|
-
// @public
|
|
680
|
-
export interface SecurityPostureReference {
|
|
681
|
-
excludeExtensions?: string[];
|
|
682
|
-
id?: string;
|
|
683
|
-
isOverridable?: boolean;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
// @public
|
|
687
|
-
export interface SecurityProfile {
|
|
688
|
-
encryptionAtHost?: boolean;
|
|
689
|
-
encryptionIdentity?: EncryptionIdentity;
|
|
690
|
-
proxyAgentSettings?: ProxyAgentSettings;
|
|
691
|
-
securityType?: SecurityTypes;
|
|
692
|
-
uefiSettings?: UefiSettings;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
// @public
|
|
696
|
-
export type SecurityTypes = string;
|
|
697
|
-
|
|
698
|
-
// @public
|
|
699
|
-
export interface ServiceArtifactReference {
|
|
700
|
-
id?: string;
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
// @public
|
|
704
|
-
export type SettingNames = string;
|
|
705
|
-
|
|
706
|
-
// @public
|
|
707
|
-
export type SpotAllocationStrategy = string;
|
|
708
|
-
|
|
709
|
-
// @public
|
|
710
|
-
export interface SpotPriorityProfile {
|
|
711
|
-
allocationStrategy?: SpotAllocationStrategy;
|
|
712
|
-
capacity?: number;
|
|
713
|
-
evictionPolicy?: EvictionPolicy;
|
|
714
|
-
maintain?: boolean;
|
|
715
|
-
maxPricePerVM?: number;
|
|
716
|
-
minCapacity?: number;
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
// @public
|
|
720
|
-
export interface SshConfiguration {
|
|
721
|
-
publicKeys?: SshPublicKey[];
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
// @public
|
|
725
|
-
export interface SshPublicKey {
|
|
726
|
-
keyData?: string;
|
|
727
|
-
path?: string;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
// @public
|
|
731
|
-
export type StorageAccountTypes = string;
|
|
732
|
-
|
|
733
|
-
// @public
|
|
734
|
-
export interface SubResource {
|
|
735
|
-
id?: string;
|
|
736
|
-
}
|
|
737
|
-
|
|
738
|
-
// @public
|
|
739
|
-
export interface SystemData {
|
|
740
|
-
createdAt?: Date;
|
|
741
|
-
createdBy?: string;
|
|
742
|
-
createdByType?: CreatedByType;
|
|
743
|
-
lastModifiedAt?: Date;
|
|
744
|
-
lastModifiedBy?: string;
|
|
745
|
-
lastModifiedByType?: CreatedByType;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
// @public
|
|
749
|
-
export interface TerminateNotificationProfile {
|
|
750
|
-
enable?: boolean;
|
|
751
|
-
notBeforeTimeout?: string;
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
// @public
|
|
755
|
-
export interface TrackedResource extends Resource {
|
|
756
|
-
location: string;
|
|
757
|
-
tags?: Record<string, string>;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
// @public
|
|
761
|
-
export interface UefiSettings {
|
|
762
|
-
secureBootEnabled?: boolean;
|
|
763
|
-
vTpmEnabled?: boolean;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
// @public
|
|
767
|
-
export interface UserAssignedIdentity {
|
|
768
|
-
readonly clientId?: string;
|
|
769
|
-
readonly principalId?: string;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
// @public
|
|
773
|
-
export interface VaultCertificate {
|
|
774
|
-
certificateStore?: string;
|
|
775
|
-
certificateUrl?: string;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
// @public
|
|
779
|
-
export interface VaultSecretGroup {
|
|
780
|
-
sourceVault?: SubResource;
|
|
781
|
-
vaultCertificates?: VaultCertificate[];
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
// @public
|
|
785
|
-
export interface VirtualHardDisk {
|
|
786
|
-
uri?: string;
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
// @public
|
|
790
|
-
export interface VirtualMachineScaleSet {
|
|
791
|
-
readonly error?: ApiError;
|
|
792
|
-
readonly id: string;
|
|
793
|
-
readonly operationStatus: ProvisioningState;
|
|
794
|
-
readonly type?: string;
|
|
795
|
-
}
|
|
796
|
-
|
|
797
|
-
// @public
|
|
798
|
-
export interface VirtualMachineScaleSetDataDisk {
|
|
799
|
-
caching?: CachingTypes;
|
|
800
|
-
createOption: DiskCreateOptionTypes;
|
|
801
|
-
deleteOption?: DiskDeleteOptionTypes;
|
|
802
|
-
diskIOPSReadWrite?: number;
|
|
803
|
-
diskMBpsReadWrite?: number;
|
|
804
|
-
diskSizeGB?: number;
|
|
805
|
-
lun: number;
|
|
806
|
-
managedDisk?: VirtualMachineScaleSetManagedDiskParameters;
|
|
807
|
-
name?: string;
|
|
808
|
-
writeAcceleratorEnabled?: boolean;
|
|
809
|
-
}
|
|
810
|
-
|
|
811
|
-
// @public
|
|
812
|
-
export interface VirtualMachineScaleSetExtension {
|
|
813
|
-
readonly id?: string;
|
|
814
|
-
name?: string;
|
|
815
|
-
properties?: VirtualMachineScaleSetExtensionProperties;
|
|
816
|
-
readonly type?: string;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
// @public
|
|
820
|
-
export interface VirtualMachineScaleSetExtensionProfile {
|
|
821
|
-
extensions?: VirtualMachineScaleSetExtension[];
|
|
822
|
-
extensionsTimeBudget?: string;
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
// @public
|
|
826
|
-
export interface VirtualMachineScaleSetExtensionProperties {
|
|
827
|
-
autoUpgradeMinorVersion?: boolean;
|
|
828
|
-
enableAutomaticUpgrade?: boolean;
|
|
829
|
-
forceUpdateTag?: string;
|
|
830
|
-
protectedSettings?: Record<string, any>;
|
|
831
|
-
protectedSettingsFromKeyVault?: KeyVaultSecretReference;
|
|
832
|
-
provisionAfterExtensions?: string[];
|
|
833
|
-
readonly provisioningState?: string;
|
|
834
|
-
publisher?: string;
|
|
835
|
-
settings?: Record<string, any>;
|
|
836
|
-
suppressFailures?: boolean;
|
|
837
|
-
type?: string;
|
|
838
|
-
typeHandlerVersion?: string;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
// @public
|
|
842
|
-
export interface VirtualMachineScaleSetHardwareProfile {
|
|
843
|
-
vmSizeProperties?: VMSizeProperties;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
// @public
|
|
847
|
-
export interface VirtualMachineScaleSetIPConfiguration {
|
|
848
|
-
name: string;
|
|
849
|
-
properties?: VirtualMachineScaleSetIPConfigurationProperties;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
// @public
|
|
853
|
-
export interface VirtualMachineScaleSetIPConfigurationProperties {
|
|
854
|
-
applicationGatewayBackendAddressPools?: SubResource[];
|
|
855
|
-
applicationSecurityGroups?: SubResource[];
|
|
856
|
-
loadBalancerBackendAddressPools?: SubResource[];
|
|
857
|
-
loadBalancerInboundNatPools?: SubResource[];
|
|
858
|
-
primary?: boolean;
|
|
859
|
-
privateIPAddressVersion?: IPVersion;
|
|
860
|
-
publicIPAddressConfiguration?: VirtualMachineScaleSetPublicIPAddressConfiguration;
|
|
861
|
-
subnet?: ApiEntityReference;
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
// @public
|
|
865
|
-
export interface VirtualMachineScaleSetIpTag {
|
|
866
|
-
ipTagType?: string;
|
|
867
|
-
tag?: string;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
// @public
|
|
871
|
-
export interface VirtualMachineScaleSetManagedDiskParameters {
|
|
872
|
-
diskEncryptionSet?: DiskEncryptionSetParameters;
|
|
873
|
-
securityProfile?: VMDiskSecurityProfile;
|
|
874
|
-
storageAccountType?: StorageAccountTypes;
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
// @public
|
|
878
|
-
export interface VirtualMachineScaleSetNetworkConfiguration {
|
|
879
|
-
name: string;
|
|
880
|
-
properties?: VirtualMachineScaleSetNetworkConfigurationProperties;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
// @public
|
|
884
|
-
export interface VirtualMachineScaleSetNetworkConfigurationDnsSettings {
|
|
885
|
-
dnsServers?: string[];
|
|
886
|
-
}
|
|
887
|
-
|
|
888
|
-
// @public
|
|
889
|
-
export interface VirtualMachineScaleSetNetworkConfigurationProperties {
|
|
890
|
-
auxiliaryMode?: NetworkInterfaceAuxiliaryMode;
|
|
891
|
-
auxiliarySku?: NetworkInterfaceAuxiliarySku;
|
|
892
|
-
deleteOption?: DeleteOptions;
|
|
893
|
-
disableTcpStateTracking?: boolean;
|
|
894
|
-
dnsSettings?: VirtualMachineScaleSetNetworkConfigurationDnsSettings;
|
|
895
|
-
enableAcceleratedNetworking?: boolean;
|
|
896
|
-
enableFpga?: boolean;
|
|
897
|
-
enableIPForwarding?: boolean;
|
|
898
|
-
ipConfigurations: VirtualMachineScaleSetIPConfiguration[];
|
|
899
|
-
networkSecurityGroup?: SubResource;
|
|
900
|
-
primary?: boolean;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
// @public
|
|
904
|
-
export interface VirtualMachineScaleSetNetworkProfile {
|
|
905
|
-
healthProbe?: ApiEntityReference;
|
|
906
|
-
networkApiVersion?: NetworkApiVersion;
|
|
907
|
-
networkInterfaceConfigurations?: VirtualMachineScaleSetNetworkConfiguration[];
|
|
908
|
-
}
|
|
909
|
-
|
|
910
|
-
// @public
|
|
911
|
-
export interface VirtualMachineScaleSetOSDisk {
|
|
912
|
-
caching?: CachingTypes;
|
|
913
|
-
createOption: DiskCreateOptionTypes;
|
|
914
|
-
deleteOption?: DiskDeleteOptionTypes;
|
|
915
|
-
diffDiskSettings?: DiffDiskSettings;
|
|
916
|
-
diskSizeGB?: number;
|
|
917
|
-
image?: VirtualHardDisk;
|
|
918
|
-
managedDisk?: VirtualMachineScaleSetManagedDiskParameters;
|
|
919
|
-
name?: string;
|
|
920
|
-
osType?: OperatingSystemTypes;
|
|
921
|
-
vhdContainers?: string[];
|
|
922
|
-
writeAcceleratorEnabled?: boolean;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
// @public
|
|
926
|
-
export interface VirtualMachineScaleSetOSProfile {
|
|
927
|
-
adminPassword?: string;
|
|
928
|
-
adminUsername?: string;
|
|
929
|
-
allowExtensionOperations?: boolean;
|
|
930
|
-
computerNamePrefix?: string;
|
|
931
|
-
customData?: string;
|
|
932
|
-
linuxConfiguration?: LinuxConfiguration;
|
|
933
|
-
requireGuestProvisionSignal?: boolean;
|
|
934
|
-
secrets?: VaultSecretGroup[];
|
|
935
|
-
windowsConfiguration?: WindowsConfiguration;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
// @public
|
|
939
|
-
export interface VirtualMachineScaleSetPublicIPAddressConfiguration {
|
|
940
|
-
name: string;
|
|
941
|
-
properties?: VirtualMachineScaleSetPublicIPAddressConfigurationProperties;
|
|
942
|
-
sku?: PublicIPAddressSku;
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
// @public
|
|
946
|
-
export interface VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings {
|
|
947
|
-
domainNameLabel: string;
|
|
948
|
-
domainNameLabelScope?: DomainNameLabelScopeTypes;
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
// @public
|
|
952
|
-
export interface VirtualMachineScaleSetPublicIPAddressConfigurationProperties {
|
|
953
|
-
deleteOption?: DeleteOptions;
|
|
954
|
-
dnsSettings?: VirtualMachineScaleSetPublicIPAddressConfigurationDnsSettings;
|
|
955
|
-
idleTimeoutInMinutes?: number;
|
|
956
|
-
ipTags?: VirtualMachineScaleSetIpTag[];
|
|
957
|
-
publicIPAddressVersion?: IPVersion;
|
|
958
|
-
publicIPPrefix?: SubResource;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
// @public
|
|
962
|
-
export interface VirtualMachineScaleSetStorageProfile {
|
|
963
|
-
dataDisks?: VirtualMachineScaleSetDataDisk[];
|
|
964
|
-
diskControllerType?: DiskControllerTypes;
|
|
965
|
-
imageReference?: ImageReference;
|
|
966
|
-
osDisk?: VirtualMachineScaleSetOSDisk;
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
// @public
|
|
970
|
-
export interface VMAttributeMinMaxDouble {
|
|
971
|
-
max?: number;
|
|
972
|
-
min?: number;
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
// @public
|
|
976
|
-
export interface VMAttributeMinMaxInteger {
|
|
977
|
-
max?: number;
|
|
978
|
-
min?: number;
|
|
979
|
-
}
|
|
980
|
-
|
|
981
|
-
// @public
|
|
982
|
-
export interface VMAttributes {
|
|
983
|
-
acceleratorCount?: VMAttributeMinMaxInteger;
|
|
984
|
-
acceleratorManufacturers?: AcceleratorManufacturer[];
|
|
985
|
-
acceleratorSupport?: VMAttributeSupport;
|
|
986
|
-
acceleratorTypes?: AcceleratorType[];
|
|
987
|
-
architectureTypes?: ArchitectureType[];
|
|
988
|
-
burstableSupport?: VMAttributeSupport;
|
|
989
|
-
cpuManufacturers?: CpuManufacturer[];
|
|
990
|
-
dataDiskCount?: VMAttributeMinMaxInteger;
|
|
991
|
-
excludedVMSizes?: string[];
|
|
992
|
-
localStorageDiskTypes?: LocalStorageDiskType[];
|
|
993
|
-
localStorageInGiB?: VMAttributeMinMaxDouble;
|
|
994
|
-
localStorageSupport?: VMAttributeSupport;
|
|
995
|
-
memoryInGiB: VMAttributeMinMaxDouble;
|
|
996
|
-
memoryInGiBPerVCpu?: VMAttributeMinMaxDouble;
|
|
997
|
-
networkBandwidthInMbps?: VMAttributeMinMaxDouble;
|
|
998
|
-
networkInterfaceCount?: VMAttributeMinMaxInteger;
|
|
999
|
-
rdmaNetworkInterfaceCount?: VMAttributeMinMaxInteger;
|
|
1000
|
-
rdmaSupport?: VMAttributeSupport;
|
|
1001
|
-
vCpuCount: VMAttributeMinMaxInteger;
|
|
1002
|
-
vmCategories?: VMCategory[];
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
|
-
// @public
|
|
1006
|
-
export type VMAttributeSupport = string;
|
|
1007
|
-
|
|
1008
|
-
// @public
|
|
1009
|
-
export type VMCategory = string;
|
|
1010
|
-
|
|
1011
|
-
// @public
|
|
1012
|
-
export interface VMDiskSecurityProfile {
|
|
1013
|
-
diskEncryptionSet?: DiskEncryptionSetParameters;
|
|
1014
|
-
securityEncryptionType?: SecurityEncryptionTypes;
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
// @public
|
|
1018
|
-
export interface VMGalleryApplication {
|
|
1019
|
-
configurationReference?: string;
|
|
1020
|
-
enableAutomaticUpgrade?: boolean;
|
|
1021
|
-
order?: number;
|
|
1022
|
-
packageReferenceId: string;
|
|
1023
|
-
tags?: string;
|
|
1024
|
-
treatFailureAsDeploymentFailure?: boolean;
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
|
-
// @public
|
|
1028
|
-
export interface VmSizeProfile {
|
|
1029
|
-
name: string;
|
|
1030
|
-
rank?: number;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
// @public
|
|
1034
|
-
export interface VMSizeProperties {
|
|
1035
|
-
vCPUsAvailable?: number;
|
|
1036
|
-
vCPUsPerCore?: number;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
// @public
|
|
1040
|
-
export interface WindowsConfiguration {
|
|
1041
|
-
additionalUnattendContent?: AdditionalUnattendContent[];
|
|
1042
|
-
enableAutomaticUpdates?: boolean;
|
|
1043
|
-
enableVMAgentPlatformUpdates?: boolean;
|
|
1044
|
-
patchSettings?: PatchSettings;
|
|
1045
|
-
provisionVMAgent?: boolean;
|
|
1046
|
-
timeZone?: string;
|
|
1047
|
-
winRM?: WinRMConfiguration;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
// @public
|
|
1051
|
-
export type WindowsPatchAssessmentMode = string;
|
|
1052
|
-
|
|
1053
|
-
// @public
|
|
1054
|
-
export type WindowsVMGuestPatchAutomaticByPlatformRebootSetting = string;
|
|
1055
|
-
|
|
1056
|
-
// @public
|
|
1057
|
-
export interface WindowsVMGuestPatchAutomaticByPlatformSettings {
|
|
1058
|
-
bypassPlatformSafetyChecksOnUserSchedule?: boolean;
|
|
1059
|
-
rebootSetting?: WindowsVMGuestPatchAutomaticByPlatformRebootSetting;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
// @public
|
|
1063
|
-
export type WindowsVMGuestPatchMode = string;
|
|
1064
|
-
|
|
1065
|
-
// @public
|
|
1066
|
-
export interface WinRMConfiguration {
|
|
1067
|
-
listeners?: WinRMListener[];
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
// @public
|
|
1071
|
-
export interface WinRMListener {
|
|
1072
|
-
certificateUrl?: string;
|
|
1073
|
-
protocol?: ProtocolTypes;
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
// (No @packageDocumentation comment for this package)
|
|
1077
|
-
|
|
1078
|
-
```
|