@distilled.cloud/azure 0.13.1 → 0.14.0
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/lib/services/analysisservices.d.ts +2 -2
- package/lib/services/analysisservices.js +1 -1
- package/lib/services/analysisservices.js.map +1 -1
- package/lib/services/azurearcdata.d.ts +4 -4
- package/lib/services/azurearcdata.d.ts.map +1 -1
- package/lib/services/azurearcdata.js +2 -2
- package/lib/services/azurearcdata.js.map +1 -1
- package/lib/services/marketplacecatalog.d.ts +2 -2
- package/lib/services/marketplacecatalog.d.ts.map +1 -1
- package/lib/services/marketplacecatalog.js +1 -13
- package/lib/services/marketplacecatalog.js.map +1 -1
- package/lib/services/monitor.d.ts +10 -10
- package/lib/services/monitor.d.ts.map +1 -1
- package/lib/services/monitor.js +5 -5
- package/lib/services/monitor.js.map +1 -1
- package/lib/services/network.d.ts +6 -6
- package/lib/services/network.d.ts.map +1 -1
- package/lib/services/network.js +3 -3
- package/lib/services/network.js.map +1 -1
- package/package.json +2 -2
- package/src/services/analysisservices.ts +1 -1
- package/src/services/azurearcdata.ts +2 -6
- package/src/services/marketplacecatalog.ts +1 -13
- package/src/services/monitor.ts +5 -9
- package/src/services/network.ts +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/azure",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"specs:update": "git -C specs/azure-rest-api-specs fetch && git -C specs/azure-rest-api-specs checkout main && git -C specs/azure-rest-api-specs pull"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@distilled.cloud/core": "0.
|
|
76
|
+
"@distilled.cloud/core": "0.14.0",
|
|
77
77
|
"effect": "4.0.0-beta.58"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
@@ -354,7 +354,7 @@ export type ServersListGatewayStatusInput =
|
|
|
354
354
|
// Output Schema
|
|
355
355
|
export const ServersListGatewayStatusOutput =
|
|
356
356
|
/*@__PURE__*/ /*#__PURE__*/ Schema.Struct({
|
|
357
|
-
status: Schema.optional(Schema.Literals([
|
|
357
|
+
status: Schema.optional(Schema.Literals([0])),
|
|
358
358
|
});
|
|
359
359
|
export type ServersListGatewayStatusOutput =
|
|
360
360
|
typeof ServersListGatewayStatusOutput.Type;
|
|
@@ -2290,9 +2290,7 @@ export const SqlServerInstancesCreateInput =
|
|
|
2290
2290
|
Schema.Struct({
|
|
2291
2291
|
retentionPeriodDays: Schema.optional(Schema.Number),
|
|
2292
2292
|
fullBackupDays: Schema.optional(Schema.Number),
|
|
2293
|
-
differentialBackupHours: Schema.optional(
|
|
2294
|
-
Schema.Literals(["12", "24"]),
|
|
2295
|
-
),
|
|
2293
|
+
differentialBackupHours: Schema.optional(Schema.Literals([12, 24])),
|
|
2296
2294
|
transactionLogBackupMinutes: Schema.optional(Schema.Number),
|
|
2297
2295
|
}),
|
|
2298
2296
|
),
|
|
@@ -3556,9 +3554,7 @@ export const SqlServerInstancesUpdateInput =
|
|
|
3556
3554
|
Schema.Struct({
|
|
3557
3555
|
retentionPeriodDays: Schema.optional(Schema.Number),
|
|
3558
3556
|
fullBackupDays: Schema.optional(Schema.Number),
|
|
3559
|
-
differentialBackupHours: Schema.optional(
|
|
3560
|
-
Schema.Literals(["12", "24"]),
|
|
3561
|
-
),
|
|
3557
|
+
differentialBackupHours: Schema.optional(Schema.Literals([12, 24])),
|
|
3562
3558
|
transactionLogBackupMinutes: Schema.optional(Schema.Number),
|
|
3563
3559
|
}),
|
|
3564
3560
|
),
|
|
@@ -1106,19 +1106,7 @@ export const EdgeZonesProductsListOutput =
|
|
|
1106
1106
|
capabilities: Schema.optional(
|
|
1107
1107
|
Schema.NullOr(
|
|
1108
1108
|
Schema.Array(
|
|
1109
|
-
Schema.Literals([
|
|
1110
|
-
"1",
|
|
1111
|
-
"2",
|
|
1112
|
-
"3",
|
|
1113
|
-
"4",
|
|
1114
|
-
"5",
|
|
1115
|
-
"6",
|
|
1116
|
-
"7",
|
|
1117
|
-
"8",
|
|
1118
|
-
"9",
|
|
1119
|
-
"10",
|
|
1120
|
-
"11",
|
|
1121
|
-
]),
|
|
1109
|
+
Schema.Literals([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]),
|
|
1122
1110
|
),
|
|
1123
1111
|
),
|
|
1124
1112
|
),
|
package/src/services/monitor.ts
CHANGED
|
@@ -345,7 +345,7 @@ export const ScheduledQueryRulesCreateOrUpdateOutput =
|
|
|
345
345
|
isLegacyLogAnalyticsRule: Schema.optional(Schema.Boolean),
|
|
346
346
|
description: Schema.optional(Schema.String),
|
|
347
347
|
displayName: Schema.optional(Schema.String),
|
|
348
|
-
severity: Schema.optional(Schema.Literals([
|
|
348
|
+
severity: Schema.optional(Schema.Literals([0, 1, 2, 3, 4])),
|
|
349
349
|
enabled: Schema.optional(Schema.Boolean),
|
|
350
350
|
scopes: Schema.optional(Schema.Array(Schema.String)),
|
|
351
351
|
evaluationFrequency: Schema.optional(Schema.String),
|
|
@@ -547,7 +547,7 @@ export const ScheduledQueryRulesGetOutput =
|
|
|
547
547
|
isLegacyLogAnalyticsRule: Schema.optional(Schema.Boolean),
|
|
548
548
|
description: Schema.optional(Schema.String),
|
|
549
549
|
displayName: Schema.optional(Schema.String),
|
|
550
|
-
severity: Schema.optional(Schema.Literals([
|
|
550
|
+
severity: Schema.optional(Schema.Literals([0, 1, 2, 3, 4])),
|
|
551
551
|
enabled: Schema.optional(Schema.Boolean),
|
|
552
552
|
scopes: Schema.optional(Schema.Array(Schema.String)),
|
|
553
553
|
evaluationFrequency: Schema.optional(Schema.String),
|
|
@@ -728,9 +728,7 @@ export const ScheduledQueryRulesListByResourceGroupOutput =
|
|
|
728
728
|
isLegacyLogAnalyticsRule: Schema.optional(Schema.Boolean),
|
|
729
729
|
description: Schema.optional(Schema.String),
|
|
730
730
|
displayName: Schema.optional(Schema.String),
|
|
731
|
-
severity: Schema.optional(
|
|
732
|
-
Schema.Literals(["0", "1", "2", "3", "4"]),
|
|
733
|
-
),
|
|
731
|
+
severity: Schema.optional(Schema.Literals([0, 1, 2, 3, 4])),
|
|
734
732
|
enabled: Schema.optional(Schema.Boolean),
|
|
735
733
|
scopes: Schema.optional(Schema.Array(Schema.String)),
|
|
736
734
|
evaluationFrequency: Schema.optional(Schema.String),
|
|
@@ -919,9 +917,7 @@ export const ScheduledQueryRulesListBySubscriptionOutput =
|
|
|
919
917
|
isLegacyLogAnalyticsRule: Schema.optional(Schema.Boolean),
|
|
920
918
|
description: Schema.optional(Schema.String),
|
|
921
919
|
displayName: Schema.optional(Schema.String),
|
|
922
|
-
severity: Schema.optional(
|
|
923
|
-
Schema.Literals(["0", "1", "2", "3", "4"]),
|
|
924
|
-
),
|
|
920
|
+
severity: Schema.optional(Schema.Literals([0, 1, 2, 3, 4])),
|
|
925
921
|
enabled: Schema.optional(Schema.Boolean),
|
|
926
922
|
scopes: Schema.optional(Schema.Array(Schema.String)),
|
|
927
923
|
evaluationFrequency: Schema.optional(Schema.String),
|
|
@@ -1097,7 +1093,7 @@ export const ScheduledQueryRulesUpdateOutput =
|
|
|
1097
1093
|
isLegacyLogAnalyticsRule: Schema.optional(Schema.Boolean),
|
|
1098
1094
|
description: Schema.optional(Schema.String),
|
|
1099
1095
|
displayName: Schema.optional(Schema.String),
|
|
1100
|
-
severity: Schema.optional(Schema.Literals([
|
|
1096
|
+
severity: Schema.optional(Schema.Literals([0, 1, 2, 3, 4])),
|
|
1101
1097
|
enabled: Schema.optional(Schema.Boolean),
|
|
1102
1098
|
scopes: Schema.optional(Schema.Array(Schema.String)),
|
|
1103
1099
|
evaluationFrequency: Schema.optional(Schema.String),
|
package/src/services/network.ts
CHANGED
|
@@ -7575,11 +7575,9 @@ export const FirewallPolicyIdpsSignaturesListOutput =
|
|
|
7575
7575
|
Schema.Array(
|
|
7576
7576
|
Schema.Struct({
|
|
7577
7577
|
signatureId: Schema.optional(Schema.Number),
|
|
7578
|
-
mode: Schema.optional(Schema.Literals([
|
|
7579
|
-
severity: Schema.optional(Schema.Literals([
|
|
7580
|
-
direction: Schema.optional(
|
|
7581
|
-
Schema.Literals(["0", "1", "2", "3", "4", "5"]),
|
|
7582
|
-
),
|
|
7578
|
+
mode: Schema.optional(Schema.Literals([0, 1, 2])),
|
|
7579
|
+
severity: Schema.optional(Schema.Literals([1, 2, 3])),
|
|
7580
|
+
direction: Schema.optional(Schema.Literals([0, 1, 2, 3, 4, 5])),
|
|
7583
7581
|
group: Schema.optional(Schema.String),
|
|
7584
7582
|
description: Schema.optional(Schema.String),
|
|
7585
7583
|
protocol: Schema.optional(Schema.String),
|