@azure/arm-workloadssapvirtualinstance 1.0.0-alpha.20260304.1 → 1.0.0-alpha.20260306.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/dist/commonjs/api/index.js +4 -0
- package/dist/commonjs/api/operations/index.js +4 -0
- package/dist/commonjs/api/operations/operations.js +6 -0
- package/dist/commonjs/api/sapApplicationServerInstances/index.js +10 -0
- package/dist/commonjs/api/sapApplicationServerInstances/operations.js +24 -0
- package/dist/commonjs/api/sapCentralServerInstances/index.js +10 -0
- package/dist/commonjs/api/sapCentralServerInstances/operations.js +24 -0
- package/dist/commonjs/api/sapDatabaseInstances/index.js +10 -0
- package/dist/commonjs/api/sapDatabaseInstances/operations.js +24 -0
- package/dist/commonjs/api/sapVirtualInstances/index.js +15 -0
- package/dist/commonjs/api/sapVirtualInstances/operations.js +39 -0
- package/dist/commonjs/api/workloadsContext.js +4 -0
- package/dist/commonjs/classic/operations/index.js +4 -0
- package/dist/commonjs/classic/sapApplicationServerInstances/index.js +4 -0
- package/dist/commonjs/classic/sapCentralServerInstances/index.js +4 -0
- package/dist/commonjs/classic/sapDatabaseInstances/index.js +4 -0
- package/dist/commonjs/classic/sapVirtualInstances/index.js +4 -0
- package/dist/commonjs/index.js +30 -0
- package/dist/commonjs/logger.js +4 -0
- package/dist/commonjs/models/index.js +28 -0
- package/dist/commonjs/models/models.js +241 -0
- package/dist/commonjs/restorePollerHelpers.js +4 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js +4 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js +4 -0
- package/dist/commonjs/static-helpers/urlTemplate.js +4 -0
- package/dist/commonjs/workloadsClient.js +4 -0
- package/package.json +3 -3
|
@@ -62,3 +62,9 @@ function list(context, options = { requestOptions: {} }) {
|
|
|
62
62
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
63
63
|
);
|
|
64
64
|
}
|
|
65
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
66
|
+
0 && (module.exports = {
|
|
67
|
+
_listDeserialize,
|
|
68
|
+
_listSend,
|
|
69
|
+
list
|
|
70
|
+
});
|
|
@@ -27,3 +27,13 @@ __export(sapApplicationServerInstances_exports, {
|
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(sapApplicationServerInstances_exports);
|
|
29
29
|
var import_operations = require("./operations.js");
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
$delete,
|
|
33
|
+
create,
|
|
34
|
+
get,
|
|
35
|
+
list,
|
|
36
|
+
start,
|
|
37
|
+
stop,
|
|
38
|
+
update
|
|
39
|
+
});
|
|
@@ -384,3 +384,27 @@ async function get(context, resourceGroupName, sapVirtualInstanceName, applicati
|
|
|
384
384
|
);
|
|
385
385
|
return _getDeserialize(result);
|
|
386
386
|
}
|
|
387
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
388
|
+
0 && (module.exports = {
|
|
389
|
+
$delete,
|
|
390
|
+
_$deleteDeserialize,
|
|
391
|
+
_$deleteSend,
|
|
392
|
+
_createDeserialize,
|
|
393
|
+
_createSend,
|
|
394
|
+
_getDeserialize,
|
|
395
|
+
_getSend,
|
|
396
|
+
_listDeserialize,
|
|
397
|
+
_listSend,
|
|
398
|
+
_startDeserialize,
|
|
399
|
+
_startSend,
|
|
400
|
+
_stopDeserialize,
|
|
401
|
+
_stopSend,
|
|
402
|
+
_updateDeserialize,
|
|
403
|
+
_updateSend,
|
|
404
|
+
create,
|
|
405
|
+
get,
|
|
406
|
+
list,
|
|
407
|
+
start,
|
|
408
|
+
stop,
|
|
409
|
+
update
|
|
410
|
+
});
|
|
@@ -27,3 +27,13 @@ __export(sapCentralServerInstances_exports, {
|
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(sapCentralServerInstances_exports);
|
|
29
29
|
var import_operations = require("./operations.js");
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
$delete,
|
|
33
|
+
create,
|
|
34
|
+
get,
|
|
35
|
+
list,
|
|
36
|
+
start,
|
|
37
|
+
stop,
|
|
38
|
+
update
|
|
39
|
+
});
|
|
@@ -360,3 +360,27 @@ async function get(context, resourceGroupName, sapVirtualInstanceName, centralIn
|
|
|
360
360
|
);
|
|
361
361
|
return _getDeserialize(result);
|
|
362
362
|
}
|
|
363
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
364
|
+
0 && (module.exports = {
|
|
365
|
+
$delete,
|
|
366
|
+
_$deleteDeserialize,
|
|
367
|
+
_$deleteSend,
|
|
368
|
+
_createDeserialize,
|
|
369
|
+
_createSend,
|
|
370
|
+
_getDeserialize,
|
|
371
|
+
_getSend,
|
|
372
|
+
_listDeserialize,
|
|
373
|
+
_listSend,
|
|
374
|
+
_startDeserialize,
|
|
375
|
+
_startSend,
|
|
376
|
+
_stopDeserialize,
|
|
377
|
+
_stopSend,
|
|
378
|
+
_updateDeserialize,
|
|
379
|
+
_updateSend,
|
|
380
|
+
create,
|
|
381
|
+
get,
|
|
382
|
+
list,
|
|
383
|
+
start,
|
|
384
|
+
stop,
|
|
385
|
+
update
|
|
386
|
+
});
|
|
@@ -27,3 +27,13 @@ __export(sapDatabaseInstances_exports, {
|
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(sapDatabaseInstances_exports);
|
|
29
29
|
var import_operations = require("./operations.js");
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
$delete,
|
|
33
|
+
create,
|
|
34
|
+
get,
|
|
35
|
+
list,
|
|
36
|
+
start,
|
|
37
|
+
stop,
|
|
38
|
+
update
|
|
39
|
+
});
|
|
@@ -344,3 +344,27 @@ async function get(context, resourceGroupName, sapVirtualInstanceName, databaseI
|
|
|
344
344
|
);
|
|
345
345
|
return _getDeserialize(result);
|
|
346
346
|
}
|
|
347
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
348
|
+
0 && (module.exports = {
|
|
349
|
+
$delete,
|
|
350
|
+
_$deleteDeserialize,
|
|
351
|
+
_$deleteSend,
|
|
352
|
+
_createDeserialize,
|
|
353
|
+
_createSend,
|
|
354
|
+
_getDeserialize,
|
|
355
|
+
_getSend,
|
|
356
|
+
_listDeserialize,
|
|
357
|
+
_listSend,
|
|
358
|
+
_startDeserialize,
|
|
359
|
+
_startSend,
|
|
360
|
+
_stopDeserialize,
|
|
361
|
+
_stopSend,
|
|
362
|
+
_updateDeserialize,
|
|
363
|
+
_updateSend,
|
|
364
|
+
create,
|
|
365
|
+
get,
|
|
366
|
+
list,
|
|
367
|
+
start,
|
|
368
|
+
stop,
|
|
369
|
+
update
|
|
370
|
+
});
|
|
@@ -32,3 +32,18 @@ __export(sapVirtualInstances_exports, {
|
|
|
32
32
|
});
|
|
33
33
|
module.exports = __toCommonJS(sapVirtualInstances_exports);
|
|
34
34
|
var import_operations = require("./operations.js");
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
$delete,
|
|
38
|
+
create,
|
|
39
|
+
get,
|
|
40
|
+
getAvailabilityZoneDetails,
|
|
41
|
+
getDiskConfigurations,
|
|
42
|
+
getSapSupportedSku,
|
|
43
|
+
getSizingRecommendations,
|
|
44
|
+
listByResourceGroup,
|
|
45
|
+
listBySubscription,
|
|
46
|
+
start,
|
|
47
|
+
stop,
|
|
48
|
+
update
|
|
49
|
+
});
|
|
@@ -531,3 +531,42 @@ async function get(context, resourceGroupName, sapVirtualInstanceName, options =
|
|
|
531
531
|
const result = await _getSend(context, resourceGroupName, sapVirtualInstanceName, options);
|
|
532
532
|
return _getDeserialize(result);
|
|
533
533
|
}
|
|
534
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
535
|
+
0 && (module.exports = {
|
|
536
|
+
$delete,
|
|
537
|
+
_$deleteDeserialize,
|
|
538
|
+
_$deleteSend,
|
|
539
|
+
_createDeserialize,
|
|
540
|
+
_createSend,
|
|
541
|
+
_getAvailabilityZoneDetailsDeserialize,
|
|
542
|
+
_getAvailabilityZoneDetailsSend,
|
|
543
|
+
_getDeserialize,
|
|
544
|
+
_getDiskConfigurationsDeserialize,
|
|
545
|
+
_getDiskConfigurationsSend,
|
|
546
|
+
_getSapSupportedSkuDeserialize,
|
|
547
|
+
_getSapSupportedSkuSend,
|
|
548
|
+
_getSend,
|
|
549
|
+
_getSizingRecommendationsDeserialize,
|
|
550
|
+
_getSizingRecommendationsSend,
|
|
551
|
+
_listByResourceGroupDeserialize,
|
|
552
|
+
_listByResourceGroupSend,
|
|
553
|
+
_listBySubscriptionDeserialize,
|
|
554
|
+
_listBySubscriptionSend,
|
|
555
|
+
_startDeserialize,
|
|
556
|
+
_startSend,
|
|
557
|
+
_stopDeserialize,
|
|
558
|
+
_stopSend,
|
|
559
|
+
_updateDeserialize,
|
|
560
|
+
_updateSend,
|
|
561
|
+
create,
|
|
562
|
+
get,
|
|
563
|
+
getAvailabilityZoneDetails,
|
|
564
|
+
getDiskConfigurations,
|
|
565
|
+
getSapSupportedSku,
|
|
566
|
+
getSizingRecommendations,
|
|
567
|
+
listByResourceGroup,
|
|
568
|
+
listBySubscription,
|
|
569
|
+
start,
|
|
570
|
+
stop,
|
|
571
|
+
update
|
|
572
|
+
});
|
|
@@ -51,3 +51,7 @@ function _getSAPApplicationServerInstancesOperations(context) {
|
|
|
51
51
|
..._getSAPApplicationServerInstances(context)
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
55
|
+
0 && (module.exports = {
|
|
56
|
+
_getSAPApplicationServerInstancesOperations
|
|
57
|
+
});
|
package/dist/commonjs/index.js
CHANGED
|
@@ -49,3 +49,33 @@ module.exports = __toCommonJS(src_exports);
|
|
|
49
49
|
var import_workloadsClient = require("./workloadsClient.js");
|
|
50
50
|
var import_restorePollerHelpers = require("./restorePollerHelpers.js");
|
|
51
51
|
var import_models = require("./models/index.js");
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
KnownActionType,
|
|
55
|
+
KnownApplicationServerVirtualMachineType,
|
|
56
|
+
KnownCentralServerVirtualMachineType,
|
|
57
|
+
KnownCreatedByType,
|
|
58
|
+
KnownDiskSkuName,
|
|
59
|
+
KnownEnqueueReplicationServerType,
|
|
60
|
+
KnownFileShareConfigurationType,
|
|
61
|
+
KnownManagedResourcesNetworkAccessType,
|
|
62
|
+
KnownNamingPatternType,
|
|
63
|
+
KnownOSType,
|
|
64
|
+
KnownOrigin,
|
|
65
|
+
KnownSAPConfigurationType,
|
|
66
|
+
KnownSAPDatabaseScaleMethod,
|
|
67
|
+
KnownSAPDatabaseType,
|
|
68
|
+
KnownSAPDeploymentType,
|
|
69
|
+
KnownSAPEnvironmentType,
|
|
70
|
+
KnownSAPHealthState,
|
|
71
|
+
KnownSAPHighAvailabilityType,
|
|
72
|
+
KnownSAPProductType,
|
|
73
|
+
KnownSAPSoftwareInstallationType,
|
|
74
|
+
KnownSAPVirtualInstanceIdentityType,
|
|
75
|
+
KnownSAPVirtualInstanceState,
|
|
76
|
+
KnownSAPVirtualInstanceStatus,
|
|
77
|
+
KnownSapVirtualInstanceProvisioningState,
|
|
78
|
+
KnownVersions,
|
|
79
|
+
WorkloadsClient,
|
|
80
|
+
restorePoller
|
|
81
|
+
});
|
package/dist/commonjs/logger.js
CHANGED
|
@@ -22,3 +22,7 @@ __export(logger_exports, {
|
|
|
22
22
|
module.exports = __toCommonJS(logger_exports);
|
|
23
23
|
var import_logger = require("@azure/logger");
|
|
24
24
|
const logger = (0, import_logger.createClientLogger)("arm-workloadssapvirtualinstance");
|
|
25
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
26
|
+
0 && (module.exports = {
|
|
27
|
+
logger
|
|
28
|
+
});
|
|
@@ -45,3 +45,31 @@ __export(models_exports, {
|
|
|
45
45
|
});
|
|
46
46
|
module.exports = __toCommonJS(models_exports);
|
|
47
47
|
var import_models = require("./models.js");
|
|
48
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
49
|
+
0 && (module.exports = {
|
|
50
|
+
KnownActionType,
|
|
51
|
+
KnownApplicationServerVirtualMachineType,
|
|
52
|
+
KnownCentralServerVirtualMachineType,
|
|
53
|
+
KnownCreatedByType,
|
|
54
|
+
KnownDiskSkuName,
|
|
55
|
+
KnownEnqueueReplicationServerType,
|
|
56
|
+
KnownFileShareConfigurationType,
|
|
57
|
+
KnownManagedResourcesNetworkAccessType,
|
|
58
|
+
KnownNamingPatternType,
|
|
59
|
+
KnownOSType,
|
|
60
|
+
KnownOrigin,
|
|
61
|
+
KnownSAPConfigurationType,
|
|
62
|
+
KnownSAPDatabaseScaleMethod,
|
|
63
|
+
KnownSAPDatabaseType,
|
|
64
|
+
KnownSAPDeploymentType,
|
|
65
|
+
KnownSAPEnvironmentType,
|
|
66
|
+
KnownSAPHealthState,
|
|
67
|
+
KnownSAPHighAvailabilityType,
|
|
68
|
+
KnownSAPProductType,
|
|
69
|
+
KnownSAPSoftwareInstallationType,
|
|
70
|
+
KnownSAPVirtualInstanceIdentityType,
|
|
71
|
+
KnownSAPVirtualInstanceState,
|
|
72
|
+
KnownSAPVirtualInstanceStatus,
|
|
73
|
+
KnownSapVirtualInstanceProvisioningState,
|
|
74
|
+
KnownVersions
|
|
75
|
+
});
|
|
@@ -1916,3 +1916,244 @@ var KnownVersions = /* @__PURE__ */ ((KnownVersions2) => {
|
|
|
1916
1916
|
KnownVersions2["V20240901"] = "2024-09-01";
|
|
1917
1917
|
return KnownVersions2;
|
|
1918
1918
|
})(KnownVersions || {});
|
|
1919
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
1920
|
+
0 && (module.exports = {
|
|
1921
|
+
KnownActionType,
|
|
1922
|
+
KnownApplicationServerVirtualMachineType,
|
|
1923
|
+
KnownCentralServerVirtualMachineType,
|
|
1924
|
+
KnownCreatedByType,
|
|
1925
|
+
KnownDiskSkuName,
|
|
1926
|
+
KnownEnqueueReplicationServerType,
|
|
1927
|
+
KnownFileShareConfigurationType,
|
|
1928
|
+
KnownManagedResourcesNetworkAccessType,
|
|
1929
|
+
KnownNamingPatternType,
|
|
1930
|
+
KnownOSType,
|
|
1931
|
+
KnownOrigin,
|
|
1932
|
+
KnownSAPConfigurationType,
|
|
1933
|
+
KnownSAPDatabaseScaleMethod,
|
|
1934
|
+
KnownSAPDatabaseType,
|
|
1935
|
+
KnownSAPDeploymentType,
|
|
1936
|
+
KnownSAPEnvironmentType,
|
|
1937
|
+
KnownSAPHealthState,
|
|
1938
|
+
KnownSAPHighAvailabilityType,
|
|
1939
|
+
KnownSAPProductType,
|
|
1940
|
+
KnownSAPSoftwareInstallationType,
|
|
1941
|
+
KnownSAPVirtualInstanceIdentityType,
|
|
1942
|
+
KnownSAPVirtualInstanceState,
|
|
1943
|
+
KnownSAPVirtualInstanceStatus,
|
|
1944
|
+
KnownSapVirtualInstanceProvisioningState,
|
|
1945
|
+
KnownVersions,
|
|
1946
|
+
_errorAdditionalInfoInfoDeserializer,
|
|
1947
|
+
_operationListResultDeserializer,
|
|
1948
|
+
_sapApplicationServerInstanceListResultDeserializer,
|
|
1949
|
+
_sapCentralServerInstanceListResultDeserializer,
|
|
1950
|
+
_sapDatabaseInstanceListResultDeserializer,
|
|
1951
|
+
_sapVirtualInstanceListResultDeserializer,
|
|
1952
|
+
applicationServerConfigurationDeserializer,
|
|
1953
|
+
applicationServerConfigurationSerializer,
|
|
1954
|
+
applicationServerFullResourceNamesDeserializer,
|
|
1955
|
+
applicationServerFullResourceNamesSerializer,
|
|
1956
|
+
applicationServerVmDetailsArrayDeserializer,
|
|
1957
|
+
applicationServerVmDetailsDeserializer,
|
|
1958
|
+
centralServerConfigurationDeserializer,
|
|
1959
|
+
centralServerConfigurationSerializer,
|
|
1960
|
+
centralServerFullResourceNamesDeserializer,
|
|
1961
|
+
centralServerFullResourceNamesSerializer,
|
|
1962
|
+
centralServerVmDetailsArrayDeserializer,
|
|
1963
|
+
centralServerVmDetailsDeserializer,
|
|
1964
|
+
createAndMountFileShareConfigurationDeserializer,
|
|
1965
|
+
createAndMountFileShareConfigurationSerializer,
|
|
1966
|
+
databaseConfigurationDeserializer,
|
|
1967
|
+
databaseConfigurationSerializer,
|
|
1968
|
+
databaseServerFullResourceNamesDeserializer,
|
|
1969
|
+
databaseServerFullResourceNamesSerializer,
|
|
1970
|
+
databaseVmDetailsArrayDeserializer,
|
|
1971
|
+
databaseVmDetailsDeserializer,
|
|
1972
|
+
deployerVmPackagesDeserializer,
|
|
1973
|
+
deployerVmPackagesSerializer,
|
|
1974
|
+
deploymentConfigurationDeserializer,
|
|
1975
|
+
deploymentConfigurationSerializer,
|
|
1976
|
+
deploymentWithOSConfigurationDeserializer,
|
|
1977
|
+
deploymentWithOSConfigurationSerializer,
|
|
1978
|
+
discoveryConfigurationDeserializer,
|
|
1979
|
+
discoveryConfigurationSerializer,
|
|
1980
|
+
diskConfigurationDeserializer,
|
|
1981
|
+
diskConfigurationSerializer,
|
|
1982
|
+
diskDetailsArrayDeserializer,
|
|
1983
|
+
diskDetailsDeserializer,
|
|
1984
|
+
diskSkuDeserializer,
|
|
1985
|
+
diskSkuSerializer,
|
|
1986
|
+
diskVolumeConfigurationDeserializer,
|
|
1987
|
+
diskVolumeConfigurationRecordDeserializer,
|
|
1988
|
+
diskVolumeConfigurationRecordSerializer,
|
|
1989
|
+
diskVolumeConfigurationSerializer,
|
|
1990
|
+
enqueueReplicationServerPropertiesDeserializer,
|
|
1991
|
+
enqueueReplicationServerPropertiesSerializer,
|
|
1992
|
+
enqueueServerPropertiesDeserializer,
|
|
1993
|
+
enqueueServerPropertiesSerializer,
|
|
1994
|
+
errorAdditionalInfoArrayDeserializer,
|
|
1995
|
+
errorAdditionalInfoDeserializer,
|
|
1996
|
+
errorDefinitionArrayDeserializer,
|
|
1997
|
+
errorDefinitionDeserializer,
|
|
1998
|
+
errorDetailArrayDeserializer,
|
|
1999
|
+
errorDetailDeserializer,
|
|
2000
|
+
errorResponseDeserializer,
|
|
2001
|
+
externalInstallationSoftwareConfigurationDeserializer,
|
|
2002
|
+
externalInstallationSoftwareConfigurationSerializer,
|
|
2003
|
+
fileShareConfigurationDeserializer,
|
|
2004
|
+
fileShareConfigurationSerializer,
|
|
2005
|
+
fileShareConfigurationUnionDeserializer,
|
|
2006
|
+
fileShareConfigurationUnionSerializer,
|
|
2007
|
+
gatewayServerPropertiesDeserializer,
|
|
2008
|
+
gatewayServerPropertiesSerializer,
|
|
2009
|
+
highAvailabilityConfigurationDeserializer,
|
|
2010
|
+
highAvailabilityConfigurationSerializer,
|
|
2011
|
+
highAvailabilitySoftwareConfigurationDeserializer,
|
|
2012
|
+
highAvailabilitySoftwareConfigurationSerializer,
|
|
2013
|
+
imageReferenceDeserializer,
|
|
2014
|
+
imageReferenceSerializer,
|
|
2015
|
+
infrastructureConfigurationDeserializer,
|
|
2016
|
+
infrastructureConfigurationSerializer,
|
|
2017
|
+
infrastructureConfigurationUnionDeserializer,
|
|
2018
|
+
infrastructureConfigurationUnionSerializer,
|
|
2019
|
+
linuxConfigurationDeserializer,
|
|
2020
|
+
linuxConfigurationSerializer,
|
|
2021
|
+
loadBalancerDetailsDeserializer,
|
|
2022
|
+
loadBalancerResourceNamesDeserializer,
|
|
2023
|
+
loadBalancerResourceNamesSerializer,
|
|
2024
|
+
managedRGConfigurationDeserializer,
|
|
2025
|
+
managedRGConfigurationSerializer,
|
|
2026
|
+
messageServerPropertiesDeserializer,
|
|
2027
|
+
messageServerPropertiesSerializer,
|
|
2028
|
+
mountFileShareConfigurationDeserializer,
|
|
2029
|
+
mountFileShareConfigurationSerializer,
|
|
2030
|
+
networkConfigurationDeserializer,
|
|
2031
|
+
networkConfigurationSerializer,
|
|
2032
|
+
networkInterfaceResourceNamesArrayDeserializer,
|
|
2033
|
+
networkInterfaceResourceNamesArraySerializer,
|
|
2034
|
+
networkInterfaceResourceNamesDeserializer,
|
|
2035
|
+
networkInterfaceResourceNamesSerializer,
|
|
2036
|
+
operationArrayDeserializer,
|
|
2037
|
+
operationDeserializer,
|
|
2038
|
+
operationDisplayDeserializer,
|
|
2039
|
+
operationStatusResultArrayDeserializer,
|
|
2040
|
+
operationStatusResultDeserializer,
|
|
2041
|
+
osConfigurationDeserializer,
|
|
2042
|
+
osConfigurationSerializer,
|
|
2043
|
+
osConfigurationUnionDeserializer,
|
|
2044
|
+
osConfigurationUnionSerializer,
|
|
2045
|
+
osProfileDeserializer,
|
|
2046
|
+
osProfileSerializer,
|
|
2047
|
+
osSapConfigurationDeserializer,
|
|
2048
|
+
osSapConfigurationSerializer,
|
|
2049
|
+
resourceDeserializer,
|
|
2050
|
+
resourceSerializer,
|
|
2051
|
+
sapApplicationServerInstanceArrayDeserializer,
|
|
2052
|
+
sapApplicationServerInstanceArraySerializer,
|
|
2053
|
+
sapApplicationServerInstanceDeserializer,
|
|
2054
|
+
sapApplicationServerInstanceSerializer,
|
|
2055
|
+
sapApplicationServerPropertiesDeserializer,
|
|
2056
|
+
sapApplicationServerPropertiesSerializer,
|
|
2057
|
+
sapAvailabilityZoneDetailsRequestSerializer,
|
|
2058
|
+
sapAvailabilityZoneDetailsResultDeserializer,
|
|
2059
|
+
sapAvailabilityZonePairArrayDeserializer,
|
|
2060
|
+
sapAvailabilityZonePairDeserializer,
|
|
2061
|
+
sapCentralServerInstanceArrayDeserializer,
|
|
2062
|
+
sapCentralServerInstanceArraySerializer,
|
|
2063
|
+
sapCentralServerInstanceDeserializer,
|
|
2064
|
+
sapCentralServerInstanceSerializer,
|
|
2065
|
+
sapCentralServerPropertiesDeserializer,
|
|
2066
|
+
sapCentralServerPropertiesSerializer,
|
|
2067
|
+
sapConfigurationDeserializer,
|
|
2068
|
+
sapConfigurationSerializer,
|
|
2069
|
+
sapConfigurationUnionDeserializer,
|
|
2070
|
+
sapConfigurationUnionSerializer,
|
|
2071
|
+
sapDatabaseInstanceArrayDeserializer,
|
|
2072
|
+
sapDatabaseInstanceArraySerializer,
|
|
2073
|
+
sapDatabaseInstanceDeserializer,
|
|
2074
|
+
sapDatabaseInstanceSerializer,
|
|
2075
|
+
sapDatabasePropertiesDeserializer,
|
|
2076
|
+
sapDatabasePropertiesSerializer,
|
|
2077
|
+
sapDiskConfigurationDeserializer,
|
|
2078
|
+
sapDiskConfigurationRecordDeserializer,
|
|
2079
|
+
sapDiskConfigurationsRequestSerializer,
|
|
2080
|
+
sapDiskConfigurationsResultDeserializer,
|
|
2081
|
+
sapInstallWithoutOSConfigSoftwareConfigurationDeserializer,
|
|
2082
|
+
sapInstallWithoutOSConfigSoftwareConfigurationSerializer,
|
|
2083
|
+
sapSizingRecommendationRequestSerializer,
|
|
2084
|
+
sapSizingRecommendationResultDeserializer,
|
|
2085
|
+
sapSizingRecommendationResultUnionDeserializer,
|
|
2086
|
+
sapSupportedResourceSkusResultDeserializer,
|
|
2087
|
+
sapSupportedSkuArrayDeserializer,
|
|
2088
|
+
sapSupportedSkuDeserializer,
|
|
2089
|
+
sapSupportedSkusRequestSerializer,
|
|
2090
|
+
sapVirtualInstanceArrayDeserializer,
|
|
2091
|
+
sapVirtualInstanceArraySerializer,
|
|
2092
|
+
sapVirtualInstanceDeserializer,
|
|
2093
|
+
sapVirtualInstanceErrorDeserializer,
|
|
2094
|
+
sapVirtualInstanceIdentityDeserializer,
|
|
2095
|
+
sapVirtualInstanceIdentitySerializer,
|
|
2096
|
+
sapVirtualInstancePropertiesDeserializer,
|
|
2097
|
+
sapVirtualInstancePropertiesSerializer,
|
|
2098
|
+
sapVirtualInstanceSerializer,
|
|
2099
|
+
serviceInitiatedSoftwareConfigurationDeserializer,
|
|
2100
|
+
serviceInitiatedSoftwareConfigurationSerializer,
|
|
2101
|
+
sharedStorageResourceNamesDeserializer,
|
|
2102
|
+
sharedStorageResourceNamesSerializer,
|
|
2103
|
+
singleServerConfigurationDeserializer,
|
|
2104
|
+
singleServerConfigurationSerializer,
|
|
2105
|
+
singleServerCustomResourceNamesDeserializer,
|
|
2106
|
+
singleServerCustomResourceNamesSerializer,
|
|
2107
|
+
singleServerCustomResourceNamesUnionDeserializer,
|
|
2108
|
+
singleServerCustomResourceNamesUnionSerializer,
|
|
2109
|
+
singleServerFullResourceNamesDeserializer,
|
|
2110
|
+
singleServerFullResourceNamesSerializer,
|
|
2111
|
+
singleServerRecommendationResultDeserializer,
|
|
2112
|
+
skipFileShareConfigurationDeserializer,
|
|
2113
|
+
skipFileShareConfigurationSerializer,
|
|
2114
|
+
softwareConfigurationDeserializer,
|
|
2115
|
+
softwareConfigurationSerializer,
|
|
2116
|
+
softwareConfigurationUnionDeserializer,
|
|
2117
|
+
softwareConfigurationUnionSerializer,
|
|
2118
|
+
sshConfigurationDeserializer,
|
|
2119
|
+
sshConfigurationSerializer,
|
|
2120
|
+
sshKeyPairDeserializer,
|
|
2121
|
+
sshKeyPairSerializer,
|
|
2122
|
+
sshPublicKeyArrayDeserializer,
|
|
2123
|
+
sshPublicKeyArraySerializer,
|
|
2124
|
+
sshPublicKeyDeserializer,
|
|
2125
|
+
sshPublicKeySerializer,
|
|
2126
|
+
startRequestSerializer,
|
|
2127
|
+
stopRequestSerializer,
|
|
2128
|
+
storageConfigurationDeserializer,
|
|
2129
|
+
storageConfigurationSerializer,
|
|
2130
|
+
storageInformationArrayDeserializer,
|
|
2131
|
+
storageInformationDeserializer,
|
|
2132
|
+
systemDataDeserializer,
|
|
2133
|
+
threeTierConfigurationDeserializer,
|
|
2134
|
+
threeTierConfigurationSerializer,
|
|
2135
|
+
threeTierCustomResourceNamesDeserializer,
|
|
2136
|
+
threeTierCustomResourceNamesSerializer,
|
|
2137
|
+
threeTierCustomResourceNamesUnionDeserializer,
|
|
2138
|
+
threeTierCustomResourceNamesUnionSerializer,
|
|
2139
|
+
threeTierFullResourceNamesDeserializer,
|
|
2140
|
+
threeTierFullResourceNamesSerializer,
|
|
2141
|
+
threeTierRecommendationResultDeserializer,
|
|
2142
|
+
trackedResourceDeserializer,
|
|
2143
|
+
trackedResourceSerializer,
|
|
2144
|
+
updateSAPApplicationInstanceRequestSerializer,
|
|
2145
|
+
updateSAPCentralInstanceRequestSerializer,
|
|
2146
|
+
updateSAPDatabaseInstanceRequestSerializer,
|
|
2147
|
+
updateSAPVirtualInstancePropertiesSerializer,
|
|
2148
|
+
updateSAPVirtualInstanceRequestSerializer,
|
|
2149
|
+
userAssignedIdentityDeserializer,
|
|
2150
|
+
userAssignedIdentitySerializer,
|
|
2151
|
+
virtualMachineConfigurationDeserializer,
|
|
2152
|
+
virtualMachineConfigurationSerializer,
|
|
2153
|
+
virtualMachineResourceNamesArrayDeserializer,
|
|
2154
|
+
virtualMachineResourceNamesArraySerializer,
|
|
2155
|
+
virtualMachineResourceNamesDeserializer,
|
|
2156
|
+
virtualMachineResourceNamesSerializer,
|
|
2157
|
+
windowsConfigurationDeserializer,
|
|
2158
|
+
windowsConfigurationSerializer
|
|
2159
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/arm-workloadssapvirtualinstance",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20260306.1",
|
|
4
4
|
"description": "A generated SDK for WorkloadsClient.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@azure/abort-controller": ">=2.1.3-alpha <2.1.3-alphb",
|
|
46
46
|
"@azure/core-auth": ">=1.10.2-alpha <1.10.2-alphb",
|
|
47
47
|
"@azure/core-lro": ">=3.3.2-alpha <3.3.2-alphb",
|
|
48
|
-
"@azure/core-rest-pipeline": ">=1.23.
|
|
48
|
+
"@azure/core-rest-pipeline": ">=1.23.1-alpha <1.23.1-alphb",
|
|
49
49
|
"@azure/core-util": ">=1.13.2-alpha <1.13.2-alphb",
|
|
50
50
|
"@azure/logger": ">=1.3.1-alpha <1.3.1-alphb",
|
|
51
51
|
"tslib": "^2.8.1"
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"vitest": "^4.0.8",
|
|
66
66
|
"@azure-tools/test-credential": "^2.1.2",
|
|
67
67
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
68
|
-
"@azure/dev-tool": "^1.0.0",
|
|
69
68
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
69
|
+
"@azure/dev-tool": "^1.0.0",
|
|
70
70
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
71
71
|
},
|
|
72
72
|
"//sampleConfiguration": {
|