@azure/arm-devopsinfrastructure 1.0.0-alpha.20260303.2 → 1.0.0-alpha.20260305.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/devOpsInfrastructureContext.js +4 -0
- package/dist/commonjs/api/imageVersions/index.js +6 -0
- package/dist/commonjs/api/index.js +15 -0
- package/dist/commonjs/api/operations/index.js +6 -0
- package/dist/commonjs/api/pools/index.js +21 -0
- package/dist/commonjs/api/resourceDetails/index.js +6 -0
- package/dist/commonjs/api/sku/index.js +6 -0
- package/dist/commonjs/api/subscriptionUsages/index.js +6 -0
- package/dist/commonjs/classic/imageVersions/index.js +5 -0
- package/dist/commonjs/classic/operations/index.js +5 -0
- package/dist/commonjs/classic/pools/index.js +5 -0
- package/dist/commonjs/classic/resourceDetails/index.js +5 -0
- package/dist/commonjs/classic/sku/index.js +5 -0
- package/dist/commonjs/classic/subscriptionUsages/index.js +5 -0
- package/dist/commonjs/devOpsInfrastructureClient.js +4 -0
- package/dist/commonjs/helpers/serializerHelpers.js +4 -0
- package/dist/commonjs/index.js +21 -0
- package/dist/commonjs/logger.js +4 -0
- package/dist/commonjs/models/index.js +19 -0
- package/dist/commonjs/models/models.js +127 -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/package.json +5 -5
|
@@ -49,3 +49,9 @@ function imageVersionsListByImage(context, subscriptionId, resourceGroupName, im
|
|
|
49
49
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
50
50
|
);
|
|
51
51
|
}
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
_imageVersionsListByImageDeserialize,
|
|
55
|
+
_imageVersionsListByImageSend,
|
|
56
|
+
imageVersionsListByImage
|
|
57
|
+
});
|
|
@@ -38,3 +38,18 @@ var import_pools = require("./pools/index.js");
|
|
|
38
38
|
var import_resourceDetails = require("./resourceDetails/index.js");
|
|
39
39
|
var import_sku = require("./sku/index.js");
|
|
40
40
|
var import_subscriptionUsages = require("./subscriptionUsages/index.js");
|
|
41
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
42
|
+
0 && (module.exports = {
|
|
43
|
+
createDevOpsInfrastructure,
|
|
44
|
+
imageVersionsListByImage,
|
|
45
|
+
operationsList,
|
|
46
|
+
poolsCreateOrUpdate,
|
|
47
|
+
poolsDelete,
|
|
48
|
+
poolsGet,
|
|
49
|
+
poolsListByResourceGroup,
|
|
50
|
+
poolsListBySubscription,
|
|
51
|
+
poolsUpdate,
|
|
52
|
+
resourceDetailsListByPool,
|
|
53
|
+
skuListByLocation,
|
|
54
|
+
subscriptionUsagesUsages
|
|
55
|
+
});
|
|
@@ -44,3 +44,9 @@ function operationsList(context, options = { requestOptions: {} }) {
|
|
|
44
44
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
45
45
|
);
|
|
46
46
|
}
|
|
47
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
+
0 && (module.exports = {
|
|
49
|
+
_operationsListDeserialize,
|
|
50
|
+
_operationsListSend,
|
|
51
|
+
operationsList
|
|
52
|
+
});
|
|
@@ -187,3 +187,24 @@ function poolsListBySubscription(context, subscriptionId, options = { requestOpt
|
|
|
187
187
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
188
188
|
);
|
|
189
189
|
}
|
|
190
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
191
|
+
0 && (module.exports = {
|
|
192
|
+
_poolsCreateOrUpdateDeserialize,
|
|
193
|
+
_poolsCreateOrUpdateSend,
|
|
194
|
+
_poolsDeleteDeserialize,
|
|
195
|
+
_poolsDeleteSend,
|
|
196
|
+
_poolsGetDeserialize,
|
|
197
|
+
_poolsGetSend,
|
|
198
|
+
_poolsListByResourceGroupDeserialize,
|
|
199
|
+
_poolsListByResourceGroupSend,
|
|
200
|
+
_poolsListBySubscriptionDeserialize,
|
|
201
|
+
_poolsListBySubscriptionSend,
|
|
202
|
+
_poolsUpdateDeserialize,
|
|
203
|
+
_poolsUpdateSend,
|
|
204
|
+
poolsCreateOrUpdate,
|
|
205
|
+
poolsDelete,
|
|
206
|
+
poolsGet,
|
|
207
|
+
poolsListByResourceGroup,
|
|
208
|
+
poolsListBySubscription,
|
|
209
|
+
poolsUpdate
|
|
210
|
+
});
|
|
@@ -49,3 +49,9 @@ function resourceDetailsListByPool(context, subscriptionId, resourceGroupName, p
|
|
|
49
49
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
50
50
|
);
|
|
51
51
|
}
|
|
52
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
53
|
+
0 && (module.exports = {
|
|
54
|
+
_resourceDetailsListByPoolDeserialize,
|
|
55
|
+
_resourceDetailsListByPoolSend,
|
|
56
|
+
resourceDetailsListByPool
|
|
57
|
+
});
|
|
@@ -48,3 +48,9 @@ function skuListByLocation(context, subscriptionId, locationName, options = { re
|
|
|
48
48
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
49
49
|
);
|
|
50
50
|
}
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
_skuListByLocationDeserialize,
|
|
54
|
+
_skuListByLocationSend,
|
|
55
|
+
skuListByLocation
|
|
56
|
+
});
|
|
@@ -48,3 +48,9 @@ function subscriptionUsagesUsages(context, subscriptionId, location, options = {
|
|
|
48
48
|
{ itemName: "value", nextLinkName: "nextLink" }
|
|
49
49
|
);
|
|
50
50
|
}
|
|
51
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
52
|
+
0 && (module.exports = {
|
|
53
|
+
_subscriptionUsagesUsagesDeserialize,
|
|
54
|
+
_subscriptionUsagesUsagesSend,
|
|
55
|
+
subscriptionUsagesUsages
|
|
56
|
+
});
|
|
@@ -32,3 +32,8 @@ function getImageVersionsOperations(context, subscriptionId) {
|
|
|
32
32
|
...getImageVersions(context, subscriptionId)
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
getImageVersions,
|
|
38
|
+
getImageVersionsOperations
|
|
39
|
+
});
|
|
@@ -32,3 +32,8 @@ function getResourceDetailsOperations(context, subscriptionId) {
|
|
|
32
32
|
...getResourceDetails(context, subscriptionId)
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
getResourceDetails,
|
|
38
|
+
getResourceDetailsOperations
|
|
39
|
+
});
|
|
@@ -32,3 +32,8 @@ function getSubscriptionUsagesOperations(context, subscriptionId) {
|
|
|
32
32
|
...getSubscriptionUsages(context, subscriptionId)
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
getSubscriptionUsages,
|
|
38
|
+
getSubscriptionUsagesOperations
|
|
39
|
+
});
|
|
@@ -42,3 +42,7 @@ function serializeRecord(item, serializer) {
|
|
|
42
42
|
function isSupportedRecordType(t) {
|
|
43
43
|
return ["number", "string", "boolean", "null"].includes(typeof t) || t instanceof Date;
|
|
44
44
|
}
|
|
45
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
46
|
+
0 && (module.exports = {
|
|
47
|
+
serializeRecord
|
|
48
|
+
});
|
package/dist/commonjs/index.js
CHANGED
|
@@ -40,3 +40,24 @@ module.exports = __toCommonJS(src_exports);
|
|
|
40
40
|
var import_devOpsInfrastructureClient = require("./devOpsInfrastructureClient.js");
|
|
41
41
|
var import_restorePollerHelpers = require("./restorePollerHelpers.js");
|
|
42
42
|
var import_models = require("./models/index.js");
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
DevOpsInfrastructureClient,
|
|
46
|
+
KnownActionType,
|
|
47
|
+
KnownAzureDevOpsPermissionType,
|
|
48
|
+
KnownCachingType,
|
|
49
|
+
KnownCreatedByType,
|
|
50
|
+
KnownLogonType,
|
|
51
|
+
KnownManagedServiceIdentityType,
|
|
52
|
+
KnownOrigin,
|
|
53
|
+
KnownOsDiskStorageAccountType,
|
|
54
|
+
KnownPredictionPreference,
|
|
55
|
+
KnownProvisioningState,
|
|
56
|
+
KnownResourcePredictionsProfileType,
|
|
57
|
+
KnownResourceSkuRestrictionsReasonCode,
|
|
58
|
+
KnownResourceSkuRestrictionsType,
|
|
59
|
+
KnownResourceStatus,
|
|
60
|
+
KnownStorageAccountType,
|
|
61
|
+
KnownVersions,
|
|
62
|
+
restorePoller
|
|
63
|
+
});
|
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-devopsinfrastructure");
|
|
25
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
26
|
+
0 && (module.exports = {
|
|
27
|
+
logger
|
|
28
|
+
});
|
|
@@ -36,3 +36,22 @@ __export(models_exports, {
|
|
|
36
36
|
});
|
|
37
37
|
module.exports = __toCommonJS(models_exports);
|
|
38
38
|
var import_models = require("./models.js");
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
KnownActionType,
|
|
42
|
+
KnownAzureDevOpsPermissionType,
|
|
43
|
+
KnownCachingType,
|
|
44
|
+
KnownCreatedByType,
|
|
45
|
+
KnownLogonType,
|
|
46
|
+
KnownManagedServiceIdentityType,
|
|
47
|
+
KnownOrigin,
|
|
48
|
+
KnownOsDiskStorageAccountType,
|
|
49
|
+
KnownPredictionPreference,
|
|
50
|
+
KnownProvisioningState,
|
|
51
|
+
KnownResourcePredictionsProfileType,
|
|
52
|
+
KnownResourceSkuRestrictionsReasonCode,
|
|
53
|
+
KnownResourceSkuRestrictionsType,
|
|
54
|
+
KnownResourceStatus,
|
|
55
|
+
KnownStorageAccountType,
|
|
56
|
+
KnownVersions
|
|
57
|
+
});
|
|
@@ -1002,3 +1002,130 @@ var KnownVersions = /* @__PURE__ */ ((KnownVersions2) => {
|
|
|
1002
1002
|
KnownVersions2["V2024-10-19"] = "2024-10-19";
|
|
1003
1003
|
return KnownVersions2;
|
|
1004
1004
|
})(KnownVersions || {});
|
|
1005
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
1006
|
+
0 && (module.exports = {
|
|
1007
|
+
KnownActionType,
|
|
1008
|
+
KnownAzureDevOpsPermissionType,
|
|
1009
|
+
KnownCachingType,
|
|
1010
|
+
KnownCreatedByType,
|
|
1011
|
+
KnownLogonType,
|
|
1012
|
+
KnownManagedServiceIdentityType,
|
|
1013
|
+
KnownOrigin,
|
|
1014
|
+
KnownOsDiskStorageAccountType,
|
|
1015
|
+
KnownPredictionPreference,
|
|
1016
|
+
KnownProvisioningState,
|
|
1017
|
+
KnownResourcePredictionsProfileType,
|
|
1018
|
+
KnownResourceSkuRestrictionsReasonCode,
|
|
1019
|
+
KnownResourceSkuRestrictionsType,
|
|
1020
|
+
KnownResourceStatus,
|
|
1021
|
+
KnownStorageAccountType,
|
|
1022
|
+
KnownVersions,
|
|
1023
|
+
_imageVersionListResultDeserializer,
|
|
1024
|
+
_operationListResultDeserializer,
|
|
1025
|
+
_pagedQuotaDeserializer,
|
|
1026
|
+
_poolListResultDeserializer,
|
|
1027
|
+
_resourceDetailsObjectListResultDeserializer,
|
|
1028
|
+
_resourceSkuListResultDeserializer,
|
|
1029
|
+
agentProfileDeserializer,
|
|
1030
|
+
agentProfileSerializer,
|
|
1031
|
+
agentProfileUnionDeserializer,
|
|
1032
|
+
agentProfileUnionSerializer,
|
|
1033
|
+
automaticResourcePredictionsProfileDeserializer,
|
|
1034
|
+
automaticResourcePredictionsProfileSerializer,
|
|
1035
|
+
azureDevOpsOrganizationProfileDeserializer,
|
|
1036
|
+
azureDevOpsOrganizationProfileSerializer,
|
|
1037
|
+
azureDevOpsPermissionProfileDeserializer,
|
|
1038
|
+
azureDevOpsPermissionProfileSerializer,
|
|
1039
|
+
dataDiskArrayDeserializer,
|
|
1040
|
+
dataDiskArraySerializer,
|
|
1041
|
+
dataDiskDeserializer,
|
|
1042
|
+
dataDiskSerializer,
|
|
1043
|
+
devOpsAzureSkuDeserializer,
|
|
1044
|
+
devOpsAzureSkuSerializer,
|
|
1045
|
+
fabricProfileDeserializer,
|
|
1046
|
+
fabricProfileSerializer,
|
|
1047
|
+
fabricProfileUnionDeserializer,
|
|
1048
|
+
fabricProfileUnionSerializer,
|
|
1049
|
+
gitHubOrganizationArrayDeserializer,
|
|
1050
|
+
gitHubOrganizationArraySerializer,
|
|
1051
|
+
gitHubOrganizationDeserializer,
|
|
1052
|
+
gitHubOrganizationProfileDeserializer,
|
|
1053
|
+
gitHubOrganizationProfileSerializer,
|
|
1054
|
+
gitHubOrganizationSerializer,
|
|
1055
|
+
imageVersionArrayDeserializer,
|
|
1056
|
+
imageVersionDeserializer,
|
|
1057
|
+
imageVersionPropertiesDeserializer,
|
|
1058
|
+
managedServiceIdentityDeserializer,
|
|
1059
|
+
managedServiceIdentitySerializer,
|
|
1060
|
+
manualResourcePredictionsProfileDeserializer,
|
|
1061
|
+
manualResourcePredictionsProfileSerializer,
|
|
1062
|
+
networkProfileDeserializer,
|
|
1063
|
+
networkProfileSerializer,
|
|
1064
|
+
operationArrayDeserializer,
|
|
1065
|
+
operationDeserializer,
|
|
1066
|
+
operationDisplayDeserializer,
|
|
1067
|
+
organizationArrayDeserializer,
|
|
1068
|
+
organizationArraySerializer,
|
|
1069
|
+
organizationDeserializer,
|
|
1070
|
+
organizationProfileDeserializer,
|
|
1071
|
+
organizationProfileSerializer,
|
|
1072
|
+
organizationProfileUnionDeserializer,
|
|
1073
|
+
organizationProfileUnionSerializer,
|
|
1074
|
+
organizationSerializer,
|
|
1075
|
+
osProfileDeserializer,
|
|
1076
|
+
osProfileSerializer,
|
|
1077
|
+
poolArrayDeserializer,
|
|
1078
|
+
poolArraySerializer,
|
|
1079
|
+
poolDeserializer,
|
|
1080
|
+
poolImageArrayDeserializer,
|
|
1081
|
+
poolImageArraySerializer,
|
|
1082
|
+
poolImageDeserializer,
|
|
1083
|
+
poolImageSerializer,
|
|
1084
|
+
poolPropertiesDeserializer,
|
|
1085
|
+
poolPropertiesSerializer,
|
|
1086
|
+
poolSerializer,
|
|
1087
|
+
poolUpdatePropertiesSerializer,
|
|
1088
|
+
poolUpdateSerializer,
|
|
1089
|
+
proxyResourceDeserializer,
|
|
1090
|
+
quotaArrayDeserializer,
|
|
1091
|
+
quotaDeserializer,
|
|
1092
|
+
quotaNameDeserializer,
|
|
1093
|
+
resourceDeserializer,
|
|
1094
|
+
resourceDetailsObjectArrayDeserializer,
|
|
1095
|
+
resourceDetailsObjectDeserializer,
|
|
1096
|
+
resourceDetailsObjectPropertiesDeserializer,
|
|
1097
|
+
resourcePredictionsDeserializer,
|
|
1098
|
+
resourcePredictionsProfileDeserializer,
|
|
1099
|
+
resourcePredictionsProfileSerializer,
|
|
1100
|
+
resourcePredictionsProfileUnionDeserializer,
|
|
1101
|
+
resourcePredictionsProfileUnionSerializer,
|
|
1102
|
+
resourcePredictionsSerializer,
|
|
1103
|
+
resourceSerializer,
|
|
1104
|
+
resourceSkuArrayDeserializer,
|
|
1105
|
+
resourceSkuCapabilitiesArrayDeserializer,
|
|
1106
|
+
resourceSkuCapabilitiesDeserializer,
|
|
1107
|
+
resourceSkuDeserializer,
|
|
1108
|
+
resourceSkuLocationInfoArrayDeserializer,
|
|
1109
|
+
resourceSkuLocationInfoDeserializer,
|
|
1110
|
+
resourceSkuPropertiesDeserializer,
|
|
1111
|
+
resourceSkuRestrictionInfoDeserializer,
|
|
1112
|
+
resourceSkuRestrictionsArrayDeserializer,
|
|
1113
|
+
resourceSkuRestrictionsDeserializer,
|
|
1114
|
+
resourceSkuZoneDetailsArrayDeserializer,
|
|
1115
|
+
resourceSkuZoneDetailsDeserializer,
|
|
1116
|
+
secretsManagementSettingsDeserializer,
|
|
1117
|
+
secretsManagementSettingsSerializer,
|
|
1118
|
+
statefulDeserializer,
|
|
1119
|
+
statefulSerializer,
|
|
1120
|
+
statelessAgentProfileDeserializer,
|
|
1121
|
+
statelessAgentProfileSerializer,
|
|
1122
|
+
storageProfileDeserializer,
|
|
1123
|
+
storageProfileSerializer,
|
|
1124
|
+
systemDataDeserializer,
|
|
1125
|
+
trackedResourceDeserializer,
|
|
1126
|
+
trackedResourceSerializer,
|
|
1127
|
+
userAssignedIdentityDeserializer,
|
|
1128
|
+
userAssignedIdentitySerializer,
|
|
1129
|
+
vmssFabricProfileDeserializer,
|
|
1130
|
+
vmssFabricProfileSerializer
|
|
1131
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/arm-devopsinfrastructure",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20260305.1",
|
|
4
4
|
"description": "A generated SDK for DevOpsInfrastructureClient.",
|
|
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"
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"rimraf": "^6.1.0",
|
|
64
64
|
"typescript": "~5.9.3",
|
|
65
65
|
"vitest": "^4.0.8",
|
|
66
|
-
"@azure-tools/test-credential": "^2.1.2",
|
|
67
66
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
68
|
-
"@azure-tools/test-
|
|
67
|
+
"@azure-tools/test-credential": "^2.1.2",
|
|
69
68
|
"@azure/dev-tool": "^1.0.0",
|
|
70
|
-
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
69
|
+
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
70
|
+
"@azure-tools/test-utils-vitest": "^2.0.1"
|
|
71
71
|
},
|
|
72
72
|
"//sampleConfiguration": {
|
|
73
73
|
"productName": "@azure/arm-devopsinfrastructure",
|