@pulumi/azure 5.82.0-alpha.1719911645 → 5.82.0-alpha.1720003311
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/analysisservices/server.d.ts +10 -1
- package/analysisservices/server.js +2 -0
- package/analysisservices/server.js.map +1 -1
- package/appservice/certificate.d.ts +3 -3
- package/backup/policyVM.d.ts +12 -0
- package/backup/policyVM.js +2 -0
- package/backup/policyVM.js.map +1 -1
- package/containerapp/environment.d.ts +4 -4
- package/dataprotection/backupPolicyPostgresqlFlexibleServer.d.ts +75 -0
- package/dataprotection/backupPolicyPostgresqlFlexibleServer.js +75 -0
- package/dataprotection/backupPolicyPostgresqlFlexibleServer.js.map +1 -1
- package/desktopvirtualization/index.d.ts +3 -0
- package/desktopvirtualization/index.js +6 -1
- package/desktopvirtualization/index.js.map +1 -1
- package/desktopvirtualization/scalingPlan.d.ts +1 -1
- package/desktopvirtualization/scalingPlanHostPoolAssociation.d.ts +155 -0
- package/desktopvirtualization/scalingPlanHostPoolAssociation.js +145 -0
- package/desktopvirtualization/scalingPlanHostPoolAssociation.js.map +1 -0
- package/expressroute/getCircuitPeering.d.ts +24 -2
- package/expressroute/getCircuitPeering.js +24 -2
- package/expressroute/getCircuitPeering.js.map +1 -1
- package/loadtest/get.d.ts +99 -0
- package/loadtest/get.js +52 -0
- package/loadtest/get.js.map +1 -0
- package/loadtest/index.d.ts +3 -0
- package/loadtest/index.js +4 -1
- package/loadtest/index.js.map +1 -1
- package/monitoring/dataCollectionEndpoint.d.ts +8 -0
- package/monitoring/dataCollectionEndpoint.js +2 -0
- package/monitoring/dataCollectionEndpoint.js.map +1 -1
- package/monitoring/getDataCollectionEndpoint.d.ts +4 -0
- package/monitoring/getDataCollectionEndpoint.js.map +1 -1
- package/mssql/managedInstance.d.ts +3 -3
- package/mssql/managedInstanceTransparentDataEncryption.d.ts +0 -12
- package/mssql/managedInstanceTransparentDataEncryption.js.map +1 -1
- package/mssql/serverTransparentDataEncryption.d.ts +3 -0
- package/mssql/serverTransparentDataEncryption.js +2 -0
- package/mssql/serverTransparentDataEncryption.js.map +1 -1
- package/network/networkInterface.d.ts +1 -1
- package/nginx/getCertificate.d.ts +20 -0
- package/nginx/getCertificate.js.map +1 -1
- package/package.json +2 -2
- package/redis/cacheAccessPolicy.d.ts +3 -3
- package/securitycenter/automation.d.ts +3 -3
- package/types/input.d.ts +31 -3
- package/types/output.d.ts +72 -6
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ScalingPlanHostPoolAssociation = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a Virtual Desktop Scaling Plan Host Pool Association.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
* import * as azuread from "@pulumi/azuread";
|
|
17
|
+
*
|
|
18
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("example", {
|
|
19
|
+
* name: "rg-example-virtualdesktop",
|
|
20
|
+
* location: "West Europe",
|
|
21
|
+
* });
|
|
22
|
+
* const example = azuread.getServicePrincipal({
|
|
23
|
+
* displayName: "Windows Virtual Desktop",
|
|
24
|
+
* });
|
|
25
|
+
* const exampleAssignment = new azure.authorization.Assignment("example", {
|
|
26
|
+
* scope: exampleResourceGroup.id,
|
|
27
|
+
* roleDefinitionName: "Desktop Virtualization Power On Off Contributor",
|
|
28
|
+
* principalId: example.then(example => example.objectId),
|
|
29
|
+
* });
|
|
30
|
+
* const exampleHostPool = new azure.desktopvirtualization.HostPool("example", {
|
|
31
|
+
* name: "example-hostpool",
|
|
32
|
+
* location: exampleResourceGroup.location,
|
|
33
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
34
|
+
* type: "Pooled",
|
|
35
|
+
* validateEnvironment: true,
|
|
36
|
+
* loadBalancerType: "BreadthFirst",
|
|
37
|
+
* });
|
|
38
|
+
* const exampleScalingPlan = new azure.desktopvirtualization.ScalingPlan("example", {
|
|
39
|
+
* name: "example-scaling-plan",
|
|
40
|
+
* location: exampleResourceGroup.location,
|
|
41
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
42
|
+
* friendlyName: "Scaling Plan Test",
|
|
43
|
+
* description: "Test Scaling Plan",
|
|
44
|
+
* timeZone: "GMT Standard Time",
|
|
45
|
+
* schedules: [{
|
|
46
|
+
* name: "Weekdays",
|
|
47
|
+
* daysOfWeeks: [
|
|
48
|
+
* "Monday",
|
|
49
|
+
* "Tuesday",
|
|
50
|
+
* "Wednesday",
|
|
51
|
+
* "Thursday",
|
|
52
|
+
* "Friday",
|
|
53
|
+
* ],
|
|
54
|
+
* rampUpStartTime: "06:00",
|
|
55
|
+
* rampUpLoadBalancingAlgorithm: "BreadthFirst",
|
|
56
|
+
* rampUpMinimumHostsPercent: 20,
|
|
57
|
+
* rampUpCapacityThresholdPercent: 10,
|
|
58
|
+
* peakStartTime: "09:00",
|
|
59
|
+
* peakLoadBalancingAlgorithm: "BreadthFirst",
|
|
60
|
+
* rampDownStartTime: "18:00",
|
|
61
|
+
* rampDownLoadBalancingAlgorithm: "BreadthFirst",
|
|
62
|
+
* rampDownMinimumHostsPercent: 10,
|
|
63
|
+
* rampDownForceLogoffUsers: false,
|
|
64
|
+
* rampDownWaitTimeMinutes: 45,
|
|
65
|
+
* rampDownNotificationMessage: "Please log of in the next 45 minutes...",
|
|
66
|
+
* rampDownCapacityThresholdPercent: 5,
|
|
67
|
+
* rampDownStopHostsWhen: "ZeroSessions",
|
|
68
|
+
* offPeakStartTime: "22:00",
|
|
69
|
+
* offPeakLoadBalancingAlgorithm: "BreadthFirst",
|
|
70
|
+
* }],
|
|
71
|
+
* }, {
|
|
72
|
+
* dependsOn: [exampleAssignment],
|
|
73
|
+
* });
|
|
74
|
+
* const exampleScalingPlanHostPoolAssociation = new azure.desktopvirtualization.ScalingPlanHostPoolAssociation("example", {
|
|
75
|
+
* hostPoolId: exampleHostPool.id,
|
|
76
|
+
* scalingPlanId: exampleScalingPlan.id,
|
|
77
|
+
* enabled: true,
|
|
78
|
+
* }, {
|
|
79
|
+
* dependsOn: [exampleAssignment],
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
82
|
+
*
|
|
83
|
+
* ## Import
|
|
84
|
+
*
|
|
85
|
+
* Associations between Virtual Desktop Scaling Plans and Virtual Desktop Host Pools can be imported using the `resource id`, e.g.
|
|
86
|
+
*
|
|
87
|
+
* ```sh
|
|
88
|
+
* $ pulumi import azure:desktopvirtualization/scalingPlanHostPoolAssociation:ScalingPlanHostPoolAssociation example "/subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.DesktopVirtualization/scalingPlans/plan1|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myGroup1/providers/Microsoft.DesktopVirtualization/hostPools/myhostpool"
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
class ScalingPlanHostPoolAssociation extends pulumi.CustomResource {
|
|
92
|
+
constructor(name, argsOrState, opts) {
|
|
93
|
+
let resourceInputs = {};
|
|
94
|
+
opts = opts || {};
|
|
95
|
+
if (opts.id) {
|
|
96
|
+
const state = argsOrState;
|
|
97
|
+
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
98
|
+
resourceInputs["hostPoolId"] = state ? state.hostPoolId : undefined;
|
|
99
|
+
resourceInputs["scalingPlanId"] = state ? state.scalingPlanId : undefined;
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
const args = argsOrState;
|
|
103
|
+
if ((!args || args.enabled === undefined) && !opts.urn) {
|
|
104
|
+
throw new Error("Missing required property 'enabled'");
|
|
105
|
+
}
|
|
106
|
+
if ((!args || args.hostPoolId === undefined) && !opts.urn) {
|
|
107
|
+
throw new Error("Missing required property 'hostPoolId'");
|
|
108
|
+
}
|
|
109
|
+
if ((!args || args.scalingPlanId === undefined) && !opts.urn) {
|
|
110
|
+
throw new Error("Missing required property 'scalingPlanId'");
|
|
111
|
+
}
|
|
112
|
+
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
113
|
+
resourceInputs["hostPoolId"] = args ? args.hostPoolId : undefined;
|
|
114
|
+
resourceInputs["scalingPlanId"] = args ? args.scalingPlanId : undefined;
|
|
115
|
+
}
|
|
116
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
117
|
+
super(ScalingPlanHostPoolAssociation.__pulumiType, name, resourceInputs, opts);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Get an existing ScalingPlanHostPoolAssociation resource's state with the given name, ID, and optional extra
|
|
121
|
+
* properties used to qualify the lookup.
|
|
122
|
+
*
|
|
123
|
+
* @param name The _unique_ name of the resulting resource.
|
|
124
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
125
|
+
* @param state Any extra arguments used during the lookup.
|
|
126
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
127
|
+
*/
|
|
128
|
+
static get(name, id, state, opts) {
|
|
129
|
+
return new ScalingPlanHostPoolAssociation(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Returns true if the given object is an instance of ScalingPlanHostPoolAssociation. This is designed to work even
|
|
133
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
134
|
+
*/
|
|
135
|
+
static isInstance(obj) {
|
|
136
|
+
if (obj === undefined || obj === null) {
|
|
137
|
+
return false;
|
|
138
|
+
}
|
|
139
|
+
return obj['__pulumiType'] === ScalingPlanHostPoolAssociation.__pulumiType;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
exports.ScalingPlanHostPoolAssociation = ScalingPlanHostPoolAssociation;
|
|
143
|
+
/** @internal */
|
|
144
|
+
ScalingPlanHostPoolAssociation.__pulumiType = 'azure:desktopvirtualization/scalingPlanHostPoolAssociation:ScalingPlanHostPoolAssociation';
|
|
145
|
+
//# sourceMappingURL=scalingPlanHostPoolAssociation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scalingPlanHostPoolAssociation.js","sourceRoot":"","sources":["../../desktopvirtualization/scalingPlanHostPoolAssociation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkFG;AACH,MAAa,8BAA+B,SAAQ,MAAM,CAAC,cAAc;IAiDrE,YAAY,IAAY,EAAE,WAAsF,EAAE,IAAmC;QACjJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8D,CAAC;YAC7E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;aAAM;YACH,MAAM,IAAI,GAAG,WAA6D,CAAC;YAC3E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,8BAA8B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnF,CAAC;IAzED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2C,EAAE,IAAmC;QACzI,OAAO,IAAI,8BAA8B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,8BAA8B,CAAC,YAAY,CAAC;IAC/E,CAAC;;AA1BL,wEA2EC;AA7DG,gBAAgB;AACO,2CAAY,GAAG,2FAA2F,CAAC"}
|
|
@@ -1,8 +1,19 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Use this data source to access information about an existing ExpressRoute Circuit Peering.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
*
|
|
11
|
+
* const example = azure.expressroute.getCircuitPeering({
|
|
12
|
+
* peeringType: "example-peering",
|
|
13
|
+
* expressRouteCircuitName: "example-expressroute",
|
|
14
|
+
* resourceGroupName: "example-resources",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
6
17
|
*/
|
|
7
18
|
export declare function getCircuitPeering(args: GetCircuitPeeringArgs, opts?: pulumi.InvokeOptions): Promise<GetCircuitPeeringResult>;
|
|
8
19
|
/**
|
|
@@ -70,9 +81,20 @@ export interface GetCircuitPeeringResult {
|
|
|
70
81
|
readonly vlanId: number;
|
|
71
82
|
}
|
|
72
83
|
/**
|
|
73
|
-
*
|
|
84
|
+
* Use this data source to access information about an existing ExpressRoute Circuit Peering.
|
|
74
85
|
*
|
|
75
86
|
* ## Example Usage
|
|
87
|
+
*
|
|
88
|
+
* ```typescript
|
|
89
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
90
|
+
* import * as azure from "@pulumi/azure";
|
|
91
|
+
*
|
|
92
|
+
* const example = azure.expressroute.getCircuitPeering({
|
|
93
|
+
* peeringType: "example-peering",
|
|
94
|
+
* expressRouteCircuitName: "example-expressroute",
|
|
95
|
+
* resourceGroupName: "example-resources",
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
76
98
|
*/
|
|
77
99
|
export declare function getCircuitPeeringOutput(args: GetCircuitPeeringOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCircuitPeeringResult>;
|
|
78
100
|
/**
|
|
@@ -6,9 +6,20 @@ exports.getCircuitPeeringOutput = exports.getCircuitPeering = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Use this data source to access information about an existing ExpressRoute Circuit Peering.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = azure.expressroute.getCircuitPeering({
|
|
18
|
+
* peeringType: "example-peering",
|
|
19
|
+
* expressRouteCircuitName: "example-expressroute",
|
|
20
|
+
* resourceGroupName: "example-resources",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
12
23
|
*/
|
|
13
24
|
function getCircuitPeering(args, opts) {
|
|
14
25
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -20,9 +31,20 @@ function getCircuitPeering(args, opts) {
|
|
|
20
31
|
}
|
|
21
32
|
exports.getCircuitPeering = getCircuitPeering;
|
|
22
33
|
/**
|
|
23
|
-
*
|
|
34
|
+
* Use this data source to access information about an existing ExpressRoute Circuit Peering.
|
|
24
35
|
*
|
|
25
36
|
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as azure from "@pulumi/azure";
|
|
41
|
+
*
|
|
42
|
+
* const example = azure.expressroute.getCircuitPeering({
|
|
43
|
+
* peeringType: "example-peering",
|
|
44
|
+
* expressRouteCircuitName: "example-expressroute",
|
|
45
|
+
* resourceGroupName: "example-resources",
|
|
46
|
+
* });
|
|
47
|
+
* ```
|
|
26
48
|
*/
|
|
27
49
|
function getCircuitPeeringOutput(args, opts) {
|
|
28
50
|
return pulumi.output(args).apply((a) => getCircuitPeering(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCircuitPeering.js","sourceRoot":"","sources":["../../expressroute/getCircuitPeering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getCircuitPeering.js","sourceRoot":"","sources":["../../expressroute/getCircuitPeering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8CAQC;AAmED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to access information about a Load Test Service.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as azure from "@pulumi/azure";
|
|
11
|
+
*
|
|
12
|
+
* const example = azure.loadtest.get({
|
|
13
|
+
* resourceGroupName: "example-resources",
|
|
14
|
+
* name: "example-load-test",
|
|
15
|
+
* });
|
|
16
|
+
* export const loadTestId = example.then(example => example.id);
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function get(args: GetArgs, opts?: pulumi.InvokeOptions): Promise<GetResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking get.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetArgs {
|
|
24
|
+
/**
|
|
25
|
+
* The name of the Load Test Service.
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
/**
|
|
29
|
+
* The name of the Resource Group in which the Load Test Service exists.
|
|
30
|
+
*/
|
|
31
|
+
resourceGroupName: string;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* A collection of values returned by get.
|
|
35
|
+
*/
|
|
36
|
+
export interface GetResult {
|
|
37
|
+
/**
|
|
38
|
+
* Resource data plane URI.
|
|
39
|
+
*/
|
|
40
|
+
readonly dataPlaneUri: string;
|
|
41
|
+
/**
|
|
42
|
+
* Description of the resource.
|
|
43
|
+
*/
|
|
44
|
+
readonly description: string;
|
|
45
|
+
/**
|
|
46
|
+
* An `encryption` block as defined below.
|
|
47
|
+
*/
|
|
48
|
+
readonly encryptions: outputs.loadtest.GetEncryption[];
|
|
49
|
+
/**
|
|
50
|
+
* The provider-assigned unique ID for this managed resource.
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
/**
|
|
54
|
+
* An `identity` block as defined below.
|
|
55
|
+
*/
|
|
56
|
+
readonly identities: outputs.loadtest.GetIdentity[];
|
|
57
|
+
/**
|
|
58
|
+
* The Azure Region where the Load Test exists.
|
|
59
|
+
*/
|
|
60
|
+
readonly location: string;
|
|
61
|
+
readonly name: string;
|
|
62
|
+
readonly resourceGroupName: string;
|
|
63
|
+
/**
|
|
64
|
+
* A mapping of tags assigned to the Load Test Service.
|
|
65
|
+
*/
|
|
66
|
+
readonly tags: {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Use this data source to access information about a Load Test Service.
|
|
72
|
+
*
|
|
73
|
+
* ## Example Usage
|
|
74
|
+
*
|
|
75
|
+
* ```typescript
|
|
76
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
77
|
+
* import * as azure from "@pulumi/azure";
|
|
78
|
+
*
|
|
79
|
+
* const example = azure.loadtest.get({
|
|
80
|
+
* resourceGroupName: "example-resources",
|
|
81
|
+
* name: "example-load-test",
|
|
82
|
+
* });
|
|
83
|
+
* export const loadTestId = example.then(example => example.id);
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
export declare function getOutput(args: GetOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetResult>;
|
|
87
|
+
/**
|
|
88
|
+
* A collection of arguments for invoking get.
|
|
89
|
+
*/
|
|
90
|
+
export interface GetOutputArgs {
|
|
91
|
+
/**
|
|
92
|
+
* The name of the Load Test Service.
|
|
93
|
+
*/
|
|
94
|
+
name: pulumi.Input<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The name of the Resource Group in which the Load Test Service exists.
|
|
97
|
+
*/
|
|
98
|
+
resourceGroupName: pulumi.Input<string>;
|
|
99
|
+
}
|
package/loadtest/get.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getOutput = exports.get = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about a Load Test Service.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
*
|
|
17
|
+
* const example = azure.loadtest.get({
|
|
18
|
+
* resourceGroupName: "example-resources",
|
|
19
|
+
* name: "example-load-test",
|
|
20
|
+
* });
|
|
21
|
+
* export const loadTestId = example.then(example => example.id);
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function get(args, opts) {
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("azure:loadtest/get:get", {
|
|
27
|
+
"name": args.name,
|
|
28
|
+
"resourceGroupName": args.resourceGroupName,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.get = get;
|
|
32
|
+
/**
|
|
33
|
+
* Use this data source to access information about a Load Test Service.
|
|
34
|
+
*
|
|
35
|
+
* ## Example Usage
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as azure from "@pulumi/azure";
|
|
40
|
+
*
|
|
41
|
+
* const example = azure.loadtest.get({
|
|
42
|
+
* resourceGroupName: "example-resources",
|
|
43
|
+
* name: "example-load-test",
|
|
44
|
+
* });
|
|
45
|
+
* export const loadTestId = example.then(example => example.id);
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getOutput(args, opts) {
|
|
49
|
+
return pulumi.output(args).apply((a) => get(a, opts));
|
|
50
|
+
}
|
|
51
|
+
exports.getOutput = getOutput;
|
|
52
|
+
//# sourceMappingURL=get.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get.js","sourceRoot":"","sources":["../../loadtest/get.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,GAAG,CAAC,IAAa,EAAE,IAA2B;IAE1D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wBAAwB,EAAE;QACnD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kBAOC;AAmDD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9D,CAAC;AAFD,8BAEC"}
|
package/loadtest/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { GetArgs, GetResult, GetOutputArgs } from "./get";
|
|
2
|
+
export declare const get: typeof import("./get").get;
|
|
3
|
+
export declare const getOutput: typeof import("./get").getOutput;
|
|
1
4
|
export { LoadTestArgs, LoadTestState } from "./loadTest";
|
|
2
5
|
export declare type LoadTest = import("./loadTest").LoadTest;
|
|
3
6
|
export declare const LoadTest: typeof import("./loadTest").LoadTest;
|
package/loadtest/index.js
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.LoadTest = void 0;
|
|
5
|
+
exports.LoadTest = exports.getOutput = exports.get = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.get = null;
|
|
9
|
+
exports.getOutput = null;
|
|
10
|
+
utilities.lazyLoad(exports, ["get", "getOutput"], () => require("./get"));
|
|
8
11
|
exports.LoadTest = null;
|
|
9
12
|
utilities.lazyLoad(exports, ["LoadTest"], () => require("./loadTest"));
|
|
10
13
|
const _module = {
|
package/loadtest/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadtest/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadtest/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC9C,QAAA,SAAS,GAAqC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,EAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAI5D,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,kCAAkC;gBACnC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,OAAO,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -57,6 +57,10 @@ export declare class DataCollectionEndpoint extends pulumi.CustomResource {
|
|
|
57
57
|
* Specifies a description for the Data Collection Endpoint.
|
|
58
58
|
*/
|
|
59
59
|
readonly description: pulumi.Output<string | undefined>;
|
|
60
|
+
/**
|
|
61
|
+
* The immutable ID of the Data Collection Endpoint.
|
|
62
|
+
*/
|
|
63
|
+
readonly immutableId: pulumi.Output<string>;
|
|
60
64
|
/**
|
|
61
65
|
* The kind of the Data Collection Endpoint. Possible values are `Linux` and `Windows`.
|
|
62
66
|
*/
|
|
@@ -108,6 +112,10 @@ export interface DataCollectionEndpointState {
|
|
|
108
112
|
* Specifies a description for the Data Collection Endpoint.
|
|
109
113
|
*/
|
|
110
114
|
description?: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* The immutable ID of the Data Collection Endpoint.
|
|
117
|
+
*/
|
|
118
|
+
immutableId?: pulumi.Input<string>;
|
|
111
119
|
/**
|
|
112
120
|
* The kind of the Data Collection Endpoint. Possible values are `Linux` and `Windows`.
|
|
113
121
|
*/
|
|
@@ -47,6 +47,7 @@ class DataCollectionEndpoint extends pulumi.CustomResource {
|
|
|
47
47
|
const state = argsOrState;
|
|
48
48
|
resourceInputs["configurationAccessEndpoint"] = state ? state.configurationAccessEndpoint : undefined;
|
|
49
49
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
50
|
+
resourceInputs["immutableId"] = state ? state.immutableId : undefined;
|
|
50
51
|
resourceInputs["kind"] = state ? state.kind : undefined;
|
|
51
52
|
resourceInputs["location"] = state ? state.location : undefined;
|
|
52
53
|
resourceInputs["logsIngestionEndpoint"] = state ? state.logsIngestionEndpoint : undefined;
|
|
@@ -68,6 +69,7 @@ class DataCollectionEndpoint extends pulumi.CustomResource {
|
|
|
68
69
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
69
70
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
70
71
|
resourceInputs["configurationAccessEndpoint"] = undefined /*out*/;
|
|
72
|
+
resourceInputs["immutableId"] = undefined /*out*/;
|
|
71
73
|
resourceInputs["logsIngestionEndpoint"] = undefined /*out*/;
|
|
72
74
|
}
|
|
73
75
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataCollectionEndpoint.js","sourceRoot":"","sources":["../../monitoring/dataCollectionEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"dataCollectionEndpoint.js","sourceRoot":"","sources":["../../monitoring/dataCollectionEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IA6E7D,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,6BAA6B,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,uBAAuB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;IA7GD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;;AA1BL,wDA+GC;AAjGG,gBAAgB;AACO,mCAAY,GAAG,gEAAgE,CAAC"}
|
|
@@ -45,6 +45,10 @@ export interface GetDataCollectionEndpointResult {
|
|
|
45
45
|
* The provider-assigned unique ID for this managed resource.
|
|
46
46
|
*/
|
|
47
47
|
readonly id: string;
|
|
48
|
+
/**
|
|
49
|
+
* The immutable ID of the Data Collection Endpoint.
|
|
50
|
+
*/
|
|
51
|
+
readonly immutableId: string;
|
|
48
52
|
/**
|
|
49
53
|
* The kind of the Data Collection Endpoint. Possible values are `Linux` and `Windows`.
|
|
50
54
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDataCollectionEndpoint.js","sourceRoot":"","sources":["../../monitoring/getDataCollectionEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IAEtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8DAOC;
|
|
1
|
+
{"version":3,"file":"getDataCollectionEndpoint.js","sourceRoot":"","sources":["../../monitoring/getDataCollectionEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IAEtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8DAOC;AA2DD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAClH,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,yBAAyB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpF,CAAC;AAFD,0EAEC"}
|
|
@@ -282,7 +282,7 @@ export declare class ManagedInstance extends pulumi.CustomResource {
|
|
|
282
282
|
*/
|
|
283
283
|
readonly skuName: pulumi.Output<string>;
|
|
284
284
|
/**
|
|
285
|
-
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `LRS
|
|
285
|
+
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `GZRS`, `LRS`, and `ZRS`. Defaults to `GRS`.
|
|
286
286
|
*/
|
|
287
287
|
readonly storageAccountType: pulumi.Output<string | undefined>;
|
|
288
288
|
/**
|
|
@@ -389,7 +389,7 @@ export interface ManagedInstanceState {
|
|
|
389
389
|
*/
|
|
390
390
|
skuName?: pulumi.Input<string>;
|
|
391
391
|
/**
|
|
392
|
-
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `LRS
|
|
392
|
+
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `GZRS`, `LRS`, and `ZRS`. Defaults to `GRS`.
|
|
393
393
|
*/
|
|
394
394
|
storageAccountType?: pulumi.Input<string>;
|
|
395
395
|
/**
|
|
@@ -480,7 +480,7 @@ export interface ManagedInstanceArgs {
|
|
|
480
480
|
*/
|
|
481
481
|
skuName: pulumi.Input<string>;
|
|
482
482
|
/**
|
|
483
|
-
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `LRS
|
|
483
|
+
* Specifies the storage account type used to store backups for this database. Changing this forces a new resource to be created. Possible values are `GRS`, `GZRS`, `LRS`, and `ZRS`. Defaults to `GRS`.
|
|
484
484
|
*/
|
|
485
485
|
storageAccountType?: pulumi.Input<string>;
|
|
486
486
|
/**
|
|
@@ -192,10 +192,6 @@ export declare class ManagedInstanceTransparentDataEncryption extends pulumi.Cus
|
|
|
192
192
|
readonly autoRotationEnabled: pulumi.Output<boolean | undefined>;
|
|
193
193
|
/**
|
|
194
194
|
* To use customer managed keys from Azure Key Vault, provide the AKV Key ID. To use service managed keys, omit this field.
|
|
195
|
-
*
|
|
196
|
-
* > **NOTE:** In order to use customer managed keys, the identity of the MSSQL Managed Instance must have the following permissions on the key vault: 'get', 'wrapKey' and 'unwrapKey'
|
|
197
|
-
*
|
|
198
|
-
* > **NOTE:** If `managedInstanceId` denotes a secondary instance deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary instance's transparent data encryption. Both primary and secondary instances should be encrypted with same key material.
|
|
199
195
|
*/
|
|
200
196
|
readonly keyVaultKeyId: pulumi.Output<string | undefined>;
|
|
201
197
|
/**
|
|
@@ -221,10 +217,6 @@ export interface ManagedInstanceTransparentDataEncryptionState {
|
|
|
221
217
|
autoRotationEnabled?: pulumi.Input<boolean>;
|
|
222
218
|
/**
|
|
223
219
|
* To use customer managed keys from Azure Key Vault, provide the AKV Key ID. To use service managed keys, omit this field.
|
|
224
|
-
*
|
|
225
|
-
* > **NOTE:** In order to use customer managed keys, the identity of the MSSQL Managed Instance must have the following permissions on the key vault: 'get', 'wrapKey' and 'unwrapKey'
|
|
226
|
-
*
|
|
227
|
-
* > **NOTE:** If `managedInstanceId` denotes a secondary instance deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary instance's transparent data encryption. Both primary and secondary instances should be encrypted with same key material.
|
|
228
220
|
*/
|
|
229
221
|
keyVaultKeyId?: pulumi.Input<string>;
|
|
230
222
|
/**
|
|
@@ -242,10 +234,6 @@ export interface ManagedInstanceTransparentDataEncryptionArgs {
|
|
|
242
234
|
autoRotationEnabled?: pulumi.Input<boolean>;
|
|
243
235
|
/**
|
|
244
236
|
* To use customer managed keys from Azure Key Vault, provide the AKV Key ID. To use service managed keys, omit this field.
|
|
245
|
-
*
|
|
246
|
-
* > **NOTE:** In order to use customer managed keys, the identity of the MSSQL Managed Instance must have the following permissions on the key vault: 'get', 'wrapKey' and 'unwrapKey'
|
|
247
|
-
*
|
|
248
|
-
* > **NOTE:** If `managedInstanceId` denotes a secondary instance deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary instance's transparent data encryption. Both primary and secondary instances should be encrypted with same key material.
|
|
249
237
|
*/
|
|
250
238
|
keyVaultKeyId?: pulumi.Input<string>;
|
|
251
239
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"managedInstanceTransparentDataEncryption.js","sourceRoot":"","sources":["../../mssql/managedInstanceTransparentDataEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0KG;AACH,MAAa,wCAAyC,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"managedInstanceTransparentDataEncryption.js","sourceRoot":"","sources":["../../mssql/managedInstanceTransparentDataEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0KG;AACH,MAAa,wCAAyC,SAAQ,MAAM,CAAC,cAAc;IAiD/E,YAAY,IAAY,EAAE,WAA0G,EAAE,IAAmC;QACrK,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwE,CAAC;YACvF,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAAuE,CAAC;YACrF,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wCAAwC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7F,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqD,EAAE,IAAmC;QACnJ,OAAO,IAAI,wCAAwC,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/F,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,wCAAwC,CAAC,YAAY,CAAC;IACzF,CAAC;;AA1BL,4FAqEC;AAvDG,gBAAgB;AACO,qDAAY,GAAG,+FAA+F,CAAC"}
|
|
@@ -159,6 +159,7 @@ export declare class ServerTransparentDataEncryption extends pulumi.CustomResour
|
|
|
159
159
|
* > **NOTE:** If `serverId` denotes a secondary server deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary server's transparent data encryption. Both primary and secondary servers should be encrypted with same key material.
|
|
160
160
|
*/
|
|
161
161
|
readonly keyVaultKeyId: pulumi.Output<string | undefined>;
|
|
162
|
+
readonly managedHsmKeyId: pulumi.Output<string | undefined>;
|
|
162
163
|
/**
|
|
163
164
|
* Specifies the name of the MS SQL Server. Changing this forces a new resource to be created.
|
|
164
165
|
*/
|
|
@@ -188,6 +189,7 @@ export interface ServerTransparentDataEncryptionState {
|
|
|
188
189
|
* > **NOTE:** If `serverId` denotes a secondary server deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary server's transparent data encryption. Both primary and secondary servers should be encrypted with same key material.
|
|
189
190
|
*/
|
|
190
191
|
keyVaultKeyId?: pulumi.Input<string>;
|
|
192
|
+
managedHsmKeyId?: pulumi.Input<string>;
|
|
191
193
|
/**
|
|
192
194
|
* Specifies the name of the MS SQL Server. Changing this forces a new resource to be created.
|
|
193
195
|
*/
|
|
@@ -209,6 +211,7 @@ export interface ServerTransparentDataEncryptionArgs {
|
|
|
209
211
|
* > **NOTE:** If `serverId` denotes a secondary server deployed for disaster recovery purposes, then the `keyVaultKeyId` should be the same key used for the primary server's transparent data encryption. Both primary and secondary servers should be encrypted with same key material.
|
|
210
212
|
*/
|
|
211
213
|
keyVaultKeyId?: pulumi.Input<string>;
|
|
214
|
+
managedHsmKeyId?: pulumi.Input<string>;
|
|
212
215
|
/**
|
|
213
216
|
* Specifies the name of the MS SQL Server. Changing this forces a new resource to be created.
|
|
214
217
|
*/
|
|
@@ -145,6 +145,7 @@ class ServerTransparentDataEncryption extends pulumi.CustomResource {
|
|
|
145
145
|
const state = argsOrState;
|
|
146
146
|
resourceInputs["autoRotationEnabled"] = state ? state.autoRotationEnabled : undefined;
|
|
147
147
|
resourceInputs["keyVaultKeyId"] = state ? state.keyVaultKeyId : undefined;
|
|
148
|
+
resourceInputs["managedHsmKeyId"] = state ? state.managedHsmKeyId : undefined;
|
|
148
149
|
resourceInputs["serverId"] = state ? state.serverId : undefined;
|
|
149
150
|
}
|
|
150
151
|
else {
|
|
@@ -154,6 +155,7 @@ class ServerTransparentDataEncryption extends pulumi.CustomResource {
|
|
|
154
155
|
}
|
|
155
156
|
resourceInputs["autoRotationEnabled"] = args ? args.autoRotationEnabled : undefined;
|
|
156
157
|
resourceInputs["keyVaultKeyId"] = args ? args.keyVaultKeyId : undefined;
|
|
158
|
+
resourceInputs["managedHsmKeyId"] = args ? args.managedHsmKeyId : undefined;
|
|
157
159
|
resourceInputs["serverId"] = args ? args.serverId : undefined;
|
|
158
160
|
}
|
|
159
161
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serverTransparentDataEncryption.js","sourceRoot":"","sources":["../../mssql/serverTransparentDataEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmIG;AACH,MAAa,+BAAgC,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"serverTransparentDataEncryption.js","sourceRoot":"","sources":["../../mssql/serverTransparentDataEncryption.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmIG;AACH,MAAa,+BAAgC,SAAQ,MAAM,CAAC,cAAc;IAsDtE,YAAY,IAAY,EAAE,WAAwF,EAAE,IAAmC;QACnJ,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+D,CAAC;YAC9E,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8D,CAAC;YAC5E,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,+BAA+B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpF,CAAC;IA1ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4C,EAAE,IAAmC;QAC1I,OAAO,IAAI,+BAA+B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,+BAA+B,CAAC,YAAY,CAAC;IAChF,CAAC;;AA1BL,0EA4EC;AA9DG,gBAAgB;AACO,4CAAY,GAAG,6EAA6E,CAAC"}
|
|
@@ -107,7 +107,7 @@ export declare class NetworkInterface extends pulumi.CustomResource {
|
|
|
107
107
|
/**
|
|
108
108
|
* The (relative) DNS Name used for internal communications between Virtual Machines in the same Virtual Network.
|
|
109
109
|
*/
|
|
110
|
-
readonly internalDnsNameLabel: pulumi.Output<string>;
|
|
110
|
+
readonly internalDnsNameLabel: pulumi.Output<string | undefined>;
|
|
111
111
|
/**
|
|
112
112
|
* Even if `internalDnsNameLabel` is not specified, a DNS entry is created for the primary NIC of the VM. This DNS name can be constructed by concatenating the VM name with the value of `internalDomainNameSuffix`.
|
|
113
113
|
*/
|