@pulumi/azure 5.74.0-alpha.1714366468 → 5.74.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/compute/availabilitySet.d.ts +6 -6
- package/compute/orchestratedVirtualMachineScaleSet.d.ts +3 -3
- package/containerapp/customDomain.d.ts +29 -7
- package/containerapp/customDomain.js +16 -6
- package/containerapp/customDomain.js.map +1 -1
- package/desktopvirtualization/hostPool.d.ts +12 -0
- package/desktopvirtualization/hostPool.js +2 -0
- package/desktopvirtualization/hostPool.js.map +1 -1
- package/nginx/certificate.d.ts +8 -8
- package/nginx/certificate.js +2 -2
- package/nginx/deployment.d.ts +34 -34
- package/nginx/deployment.js +2 -2
- package/nginx/getCertificate.d.ts +9 -9
- package/nginx/getCertificate.js +2 -2
- package/nginx/getDeployment.d.ts +14 -14
- package/nginx/getDeployment.js +2 -2
- package/package.json +1 -1
- package/securitycenter/automation.d.ts +1 -1
- package/securitycenter/automation.js +1 -1
- package/types/input.d.ts +18 -16
- package/types/output.d.ts +28 -26
|
@@ -61,13 +61,13 @@ export declare class AvailabilitySet extends pulumi.CustomResource {
|
|
|
61
61
|
/**
|
|
62
62
|
* Specifies the number of fault domains that are used. Defaults to `3`. Changing this forces a new resource to be created.
|
|
63
63
|
*
|
|
64
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
64
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
65
65
|
*/
|
|
66
66
|
readonly platformFaultDomainCount: pulumi.Output<number | undefined>;
|
|
67
67
|
/**
|
|
68
68
|
* Specifies the number of update domains that are used. Defaults to `5`. Changing this forces a new resource to be created.
|
|
69
69
|
*
|
|
70
|
-
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using
|
|
70
|
+
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
71
71
|
*/
|
|
72
72
|
readonly platformUpdateDomainCount: pulumi.Output<number | undefined>;
|
|
73
73
|
/**
|
|
@@ -112,13 +112,13 @@ export interface AvailabilitySetState {
|
|
|
112
112
|
/**
|
|
113
113
|
* Specifies the number of fault domains that are used. Defaults to `3`. Changing this forces a new resource to be created.
|
|
114
114
|
*
|
|
115
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
115
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
116
116
|
*/
|
|
117
117
|
platformFaultDomainCount?: pulumi.Input<number>;
|
|
118
118
|
/**
|
|
119
119
|
* Specifies the number of update domains that are used. Defaults to `5`. Changing this forces a new resource to be created.
|
|
120
120
|
*
|
|
121
|
-
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using
|
|
121
|
+
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
122
122
|
*/
|
|
123
123
|
platformUpdateDomainCount?: pulumi.Input<number>;
|
|
124
124
|
/**
|
|
@@ -155,13 +155,13 @@ export interface AvailabilitySetArgs {
|
|
|
155
155
|
/**
|
|
156
156
|
* Specifies the number of fault domains that are used. Defaults to `3`. Changing this forces a new resource to be created.
|
|
157
157
|
*
|
|
158
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
158
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
159
159
|
*/
|
|
160
160
|
platformFaultDomainCount?: pulumi.Input<number>;
|
|
161
161
|
/**
|
|
162
162
|
* Specifies the number of update domains that are used. Defaults to `5`. Changing this forces a new resource to be created.
|
|
163
163
|
*
|
|
164
|
-
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using
|
|
164
|
+
* > **NOTE:** The number of Update Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
165
165
|
*/
|
|
166
166
|
platformUpdateDomainCount?: pulumi.Input<number>;
|
|
167
167
|
/**
|
|
@@ -144,7 +144,7 @@ export declare class OrchestratedVirtualMachineScaleSet extends pulumi.CustomRes
|
|
|
144
144
|
/**
|
|
145
145
|
* Specifies the number of fault domains that are used by this Virtual Machine Scale Set. Changing this forces a new resource to be created.
|
|
146
146
|
*
|
|
147
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
147
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
148
148
|
*/
|
|
149
149
|
readonly platformFaultDomainCount: pulumi.Output<number>;
|
|
150
150
|
/**
|
|
@@ -315,7 +315,7 @@ export interface OrchestratedVirtualMachineScaleSetState {
|
|
|
315
315
|
/**
|
|
316
316
|
* Specifies the number of fault domains that are used by this Virtual Machine Scale Set. Changing this forces a new resource to be created.
|
|
317
317
|
*
|
|
318
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
318
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
319
319
|
*/
|
|
320
320
|
platformFaultDomainCount?: pulumi.Input<number>;
|
|
321
321
|
/**
|
|
@@ -478,7 +478,7 @@ export interface OrchestratedVirtualMachineScaleSetArgs {
|
|
|
478
478
|
/**
|
|
479
479
|
* Specifies the number of fault domains that are used by this Virtual Machine Scale Set. Changing this forces a new resource to be created.
|
|
480
480
|
*
|
|
481
|
-
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using
|
|
481
|
+
* > **NOTE:** The number of Fault Domains varies depending on which Azure Region you're using. More information about update and fault domains and how they work can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/availability-set-overview).
|
|
482
482
|
*/
|
|
483
483
|
platformFaultDomainCount: pulumi.Input<number>;
|
|
484
484
|
/**
|
|
@@ -2,6 +2,22 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Manages a Container App Custom Domain.
|
|
4
4
|
*
|
|
5
|
+
* ### Managed Certificate
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azure from "@pulumi/azure";
|
|
10
|
+
* import * as std from "@pulumi/std";
|
|
11
|
+
*
|
|
12
|
+
* const example = new azure.containerapp.CustomDomain("example", {
|
|
13
|
+
* name: std.trimprefix({
|
|
14
|
+
* input: exampleAzurermDnsTxtRecord.fqdn,
|
|
15
|
+
* prefix: "asuid.",
|
|
16
|
+
* }).then(invoke => invoke.result),
|
|
17
|
+
* containerAppId: exampleAzurermContainerApp.id,
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
5
21
|
* ## Import
|
|
6
22
|
*
|
|
7
23
|
* A Container App Custom Domain can be imported using the `resource id`, e.g.
|
|
@@ -27,13 +43,15 @@ export declare class CustomDomain extends pulumi.CustomResource {
|
|
|
27
43
|
*/
|
|
28
44
|
static isInstance(obj: any): obj is CustomDomain;
|
|
29
45
|
/**
|
|
30
|
-
* The
|
|
46
|
+
* The Binding type. Possible values include `Disabled` and `SniEnabled`.
|
|
31
47
|
*/
|
|
32
|
-
readonly certificateBindingType: pulumi.Output<string>;
|
|
48
|
+
readonly certificateBindingType: pulumi.Output<string | undefined>;
|
|
33
49
|
/**
|
|
34
50
|
* The ID of the Container App Environment Certificate to use. Changing this forces a new resource to be created.
|
|
51
|
+
*
|
|
52
|
+
* > **NOTE:** Omit this value if you wish to use an Azure Managed certificate. You must create the relevant DNS verification steps before this process will be successful.
|
|
35
53
|
*/
|
|
36
|
-
readonly containerAppEnvironmentCertificateId: pulumi.Output<string>;
|
|
54
|
+
readonly containerAppEnvironmentCertificateId: pulumi.Output<string | undefined>;
|
|
37
55
|
/**
|
|
38
56
|
* The ID of the Container App to which this Custom Domain should be bound. Changing this forces a new resource to be created.
|
|
39
57
|
*/
|
|
@@ -58,11 +76,13 @@ export declare class CustomDomain extends pulumi.CustomResource {
|
|
|
58
76
|
*/
|
|
59
77
|
export interface CustomDomainState {
|
|
60
78
|
/**
|
|
61
|
-
* The
|
|
79
|
+
* The Binding type. Possible values include `Disabled` and `SniEnabled`.
|
|
62
80
|
*/
|
|
63
81
|
certificateBindingType?: pulumi.Input<string>;
|
|
64
82
|
/**
|
|
65
83
|
* The ID of the Container App Environment Certificate to use. Changing this forces a new resource to be created.
|
|
84
|
+
*
|
|
85
|
+
* > **NOTE:** Omit this value if you wish to use an Azure Managed certificate. You must create the relevant DNS verification steps before this process will be successful.
|
|
66
86
|
*/
|
|
67
87
|
containerAppEnvironmentCertificateId?: pulumi.Input<string>;
|
|
68
88
|
/**
|
|
@@ -81,13 +101,15 @@ export interface CustomDomainState {
|
|
|
81
101
|
*/
|
|
82
102
|
export interface CustomDomainArgs {
|
|
83
103
|
/**
|
|
84
|
-
* The
|
|
104
|
+
* The Binding type. Possible values include `Disabled` and `SniEnabled`.
|
|
85
105
|
*/
|
|
86
|
-
certificateBindingType
|
|
106
|
+
certificateBindingType?: pulumi.Input<string>;
|
|
87
107
|
/**
|
|
88
108
|
* The ID of the Container App Environment Certificate to use. Changing this forces a new resource to be created.
|
|
109
|
+
*
|
|
110
|
+
* > **NOTE:** Omit this value if you wish to use an Azure Managed certificate. You must create the relevant DNS verification steps before this process will be successful.
|
|
89
111
|
*/
|
|
90
|
-
containerAppEnvironmentCertificateId
|
|
112
|
+
containerAppEnvironmentCertificateId?: pulumi.Input<string>;
|
|
91
113
|
/**
|
|
92
114
|
* The ID of the Container App to which this Custom Domain should be bound. Changing this forces a new resource to be created.
|
|
93
115
|
*/
|
|
@@ -8,6 +8,22 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages a Container App Custom Domain.
|
|
10
10
|
*
|
|
11
|
+
* ### Managed Certificate
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azure from "@pulumi/azure";
|
|
16
|
+
* import * as std from "@pulumi/std";
|
|
17
|
+
*
|
|
18
|
+
* const example = new azure.containerapp.CustomDomain("example", {
|
|
19
|
+
* name: std.trimprefix({
|
|
20
|
+
* input: exampleAzurermDnsTxtRecord.fqdn,
|
|
21
|
+
* prefix: "asuid.",
|
|
22
|
+
* }).then(invoke => invoke.result),
|
|
23
|
+
* containerAppId: exampleAzurermContainerApp.id,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
11
27
|
* ## Import
|
|
12
28
|
*
|
|
13
29
|
* A Container App Custom Domain can be imported using the `resource id`, e.g.
|
|
@@ -29,12 +45,6 @@ class CustomDomain extends pulumi.CustomResource {
|
|
|
29
45
|
}
|
|
30
46
|
else {
|
|
31
47
|
const args = argsOrState;
|
|
32
|
-
if ((!args || args.certificateBindingType === undefined) && !opts.urn) {
|
|
33
|
-
throw new Error("Missing required property 'certificateBindingType'");
|
|
34
|
-
}
|
|
35
|
-
if ((!args || args.containerAppEnvironmentCertificateId === undefined) && !opts.urn) {
|
|
36
|
-
throw new Error("Missing required property 'containerAppEnvironmentCertificateId'");
|
|
37
|
-
}
|
|
38
48
|
if ((!args || args.containerAppId === undefined) && !opts.urn) {
|
|
39
49
|
throw new Error("Missing required property 'containerAppId'");
|
|
40
50
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customDomain.js","sourceRoot":"","sources":["../../containerapp/customDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"customDomain.js","sourceRoot":"","sources":["../../containerapp/customDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IAyDnD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,sCAAsC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oCAAoC,CAAC,CAAC,CAAC,SAAS,CAAC;YACxH,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,sCAAsC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oCAAoC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtH,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;IA7ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;;AA1BL,oCA+EC;AAjEG,gBAAgB;AACO,yBAAY,GAAG,8CAA8C,CAAC"}
|
|
@@ -103,6 +103,10 @@ export declare class HostPool extends pulumi.CustomResource {
|
|
|
103
103
|
* Option to specify the preferred Application Group type for the Virtual Desktop Host Pool. Valid options are `None`, `Desktop` or `RailApplications`. Default is `Desktop`. Changing this forces a new resource to be created.
|
|
104
104
|
*/
|
|
105
105
|
readonly preferredAppGroupType: pulumi.Output<string | undefined>;
|
|
106
|
+
/**
|
|
107
|
+
* Whether public network access is allowed for the Virtual Desktop Host Pool. Possible values are `Enabled`, `Disabled`, `EnabledForClientsOnly` and `EnabledForSessionHostsOnly`. Defaults to `Enabled`.
|
|
108
|
+
*/
|
|
109
|
+
readonly publicNetworkAccess: pulumi.Output<string | undefined>;
|
|
106
110
|
/**
|
|
107
111
|
* The name of the resource group in which to create the Virtual Desktop Host Pool. Changing this forces a new resource to be created.
|
|
108
112
|
*/
|
|
@@ -187,6 +191,10 @@ export interface HostPoolState {
|
|
|
187
191
|
* Option to specify the preferred Application Group type for the Virtual Desktop Host Pool. Valid options are `None`, `Desktop` or `RailApplications`. Default is `Desktop`. Changing this forces a new resource to be created.
|
|
188
192
|
*/
|
|
189
193
|
preferredAppGroupType?: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* Whether public network access is allowed for the Virtual Desktop Host Pool. Possible values are `Enabled`, `Disabled`, `EnabledForClientsOnly` and `EnabledForSessionHostsOnly`. Defaults to `Enabled`.
|
|
196
|
+
*/
|
|
197
|
+
publicNetworkAccess?: pulumi.Input<string>;
|
|
190
198
|
/**
|
|
191
199
|
* The name of the resource group in which to create the Virtual Desktop Host Pool. Changing this forces a new resource to be created.
|
|
192
200
|
*/
|
|
@@ -263,6 +271,10 @@ export interface HostPoolArgs {
|
|
|
263
271
|
* Option to specify the preferred Application Group type for the Virtual Desktop Host Pool. Valid options are `None`, `Desktop` or `RailApplications`. Default is `Desktop`. Changing this forces a new resource to be created.
|
|
264
272
|
*/
|
|
265
273
|
preferredAppGroupType?: pulumi.Input<string>;
|
|
274
|
+
/**
|
|
275
|
+
* Whether public network access is allowed for the Virtual Desktop Host Pool. Possible values are `Enabled`, `Disabled`, `EnabledForClientsOnly` and `EnabledForSessionHostsOnly`. Defaults to `Enabled`.
|
|
276
|
+
*/
|
|
277
|
+
publicNetworkAccess?: pulumi.Input<string>;
|
|
266
278
|
/**
|
|
267
279
|
* The name of the resource group in which to create the Virtual Desktop Host Pool. Changing this forces a new resource to be created.
|
|
268
280
|
*/
|
|
@@ -65,6 +65,7 @@ class HostPool extends pulumi.CustomResource {
|
|
|
65
65
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
66
66
|
resourceInputs["personalDesktopAssignmentType"] = state ? state.personalDesktopAssignmentType : undefined;
|
|
67
67
|
resourceInputs["preferredAppGroupType"] = state ? state.preferredAppGroupType : undefined;
|
|
68
|
+
resourceInputs["publicNetworkAccess"] = state ? state.publicNetworkAccess : undefined;
|
|
68
69
|
resourceInputs["resourceGroupName"] = state ? state.resourceGroupName : undefined;
|
|
69
70
|
resourceInputs["scheduledAgentUpdates"] = state ? state.scheduledAgentUpdates : undefined;
|
|
70
71
|
resourceInputs["startVmOnConnect"] = state ? state.startVmOnConnect : undefined;
|
|
@@ -93,6 +94,7 @@ class HostPool extends pulumi.CustomResource {
|
|
|
93
94
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
94
95
|
resourceInputs["personalDesktopAssignmentType"] = args ? args.personalDesktopAssignmentType : undefined;
|
|
95
96
|
resourceInputs["preferredAppGroupType"] = args ? args.preferredAppGroupType : undefined;
|
|
97
|
+
resourceInputs["publicNetworkAccess"] = args ? args.publicNetworkAccess : undefined;
|
|
96
98
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
|
97
99
|
resourceInputs["scheduledAgentUpdates"] = args ? args.scheduledAgentUpdates : undefined;
|
|
98
100
|
resourceInputs["startVmOnConnect"] = args ? args.startVmOnConnect : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hostPool.js","sourceRoot":"","sources":["../../desktopvirtualization/hostPool.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"hostPool.js","sourceRoot":"","sources":["../../desktopvirtualization/hostPool.ts"],"names":[],"mappings":"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"}
|
package/nginx/certificate.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Manages a Certificate for an
|
|
3
|
+
* Manages a Certificate for an NGINX Deployment.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -103,7 +103,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
103
103
|
*
|
|
104
104
|
* ## Import
|
|
105
105
|
*
|
|
106
|
-
* An
|
|
106
|
+
* An NGINX Certificate can be imported using the `resource id`, e.g.
|
|
107
107
|
*
|
|
108
108
|
* ```sh
|
|
109
109
|
* $ pulumi import azure:nginx/certificate:Certificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Nginx.NginxPlus/nginxDeployments/deploy1/certificates/cer1
|
|
@@ -138,11 +138,11 @@ export declare class Certificate extends pulumi.CustomResource {
|
|
|
138
138
|
*/
|
|
139
139
|
readonly keyVirtualPath: pulumi.Output<string>;
|
|
140
140
|
/**
|
|
141
|
-
* The name which should be used for this
|
|
141
|
+
* The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
|
|
142
142
|
*/
|
|
143
143
|
readonly name: pulumi.Output<string>;
|
|
144
144
|
/**
|
|
145
|
-
* The ID of the
|
|
145
|
+
* The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
|
|
146
146
|
*/
|
|
147
147
|
readonly nginxDeploymentId: pulumi.Output<string>;
|
|
148
148
|
/**
|
|
@@ -171,11 +171,11 @@ export interface CertificateState {
|
|
|
171
171
|
*/
|
|
172
172
|
keyVirtualPath?: pulumi.Input<string>;
|
|
173
173
|
/**
|
|
174
|
-
* The name which should be used for this
|
|
174
|
+
* The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
|
|
175
175
|
*/
|
|
176
176
|
name?: pulumi.Input<string>;
|
|
177
177
|
/**
|
|
178
|
-
* The ID of the
|
|
178
|
+
* The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
|
|
179
179
|
*/
|
|
180
180
|
nginxDeploymentId?: pulumi.Input<string>;
|
|
181
181
|
}
|
|
@@ -196,11 +196,11 @@ export interface CertificateArgs {
|
|
|
196
196
|
*/
|
|
197
197
|
keyVirtualPath: pulumi.Input<string>;
|
|
198
198
|
/**
|
|
199
|
-
* The name which should be used for this
|
|
199
|
+
* The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
|
|
200
200
|
*/
|
|
201
201
|
name?: pulumi.Input<string>;
|
|
202
202
|
/**
|
|
203
|
-
* The ID of the
|
|
203
|
+
* The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
|
|
204
204
|
*/
|
|
205
205
|
nginxDeploymentId: pulumi.Input<string>;
|
|
206
206
|
}
|
package/nginx/certificate.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Certificate = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Manages a Certificate for an
|
|
9
|
+
* Manages a Certificate for an NGINX Deployment.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -109,7 +109,7 @@ const utilities = require("../utilities");
|
|
|
109
109
|
*
|
|
110
110
|
* ## Import
|
|
111
111
|
*
|
|
112
|
-
* An
|
|
112
|
+
* An NGINX Certificate can be imported using the `resource id`, e.g.
|
|
113
113
|
*
|
|
114
114
|
* ```sh
|
|
115
115
|
* $ pulumi import azure:nginx/certificate:Certificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Nginx.NginxPlus/nginxDeployments/deploy1/certificates/cer1
|
package/nginx/deployment.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Manages
|
|
5
|
+
* Manages an NGINX Deployment.
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -109,7 +109,7 @@ import * as outputs from "../types/output";
|
|
|
109
109
|
*
|
|
110
110
|
* ## Import
|
|
111
111
|
*
|
|
112
|
-
*
|
|
112
|
+
* NGINX Deployments can be imported using the `resource id`, e.g.
|
|
113
113
|
*
|
|
114
114
|
* ```sh
|
|
115
115
|
* $ pulumi import azure:nginx/deployment:Deployment example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Nginx.NginxPlus/nginxDeployments/dep1
|
|
@@ -154,15 +154,15 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
154
154
|
*/
|
|
155
155
|
readonly diagnoseSupportEnabled: pulumi.Output<boolean | undefined>;
|
|
156
156
|
/**
|
|
157
|
-
* Specify the preferred support contact email address
|
|
157
|
+
* Specify the preferred support contact email address for receiving alerts and notifications.
|
|
158
158
|
*/
|
|
159
159
|
readonly email: pulumi.Output<string | undefined>;
|
|
160
160
|
/**
|
|
161
|
-
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new
|
|
161
|
+
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
162
162
|
*/
|
|
163
163
|
readonly frontendPrivates: pulumi.Output<outputs.nginx.DeploymentFrontendPrivate[] | undefined>;
|
|
164
164
|
/**
|
|
165
|
-
* A `frontendPublic` block as defined below. Changing this forces a new
|
|
165
|
+
* A `frontendPublic` block as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
166
166
|
*/
|
|
167
167
|
readonly frontendPublic: pulumi.Output<outputs.nginx.DeploymentFrontendPublic | undefined>;
|
|
168
168
|
/**
|
|
@@ -174,7 +174,7 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
174
174
|
*/
|
|
175
175
|
readonly ipAddress: pulumi.Output<string>;
|
|
176
176
|
/**
|
|
177
|
-
* The Azure Region where the
|
|
177
|
+
* The Azure Region where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
178
178
|
*/
|
|
179
179
|
readonly location: pulumi.Output<string>;
|
|
180
180
|
/**
|
|
@@ -182,31 +182,31 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
182
182
|
*/
|
|
183
183
|
readonly loggingStorageAccounts: pulumi.Output<outputs.nginx.DeploymentLoggingStorageAccount[] | undefined>;
|
|
184
184
|
/**
|
|
185
|
-
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new
|
|
185
|
+
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new NGINX Deployment to be created.
|
|
186
186
|
*/
|
|
187
187
|
readonly managedResourceGroup: pulumi.Output<string>;
|
|
188
188
|
/**
|
|
189
|
-
* The name which should be used for this
|
|
189
|
+
* The name which should be used for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
|
|
190
190
|
*/
|
|
191
191
|
readonly name: pulumi.Output<string>;
|
|
192
192
|
/**
|
|
193
|
-
* One or more `networkInterface` blocks as defined below. Changing this forces a new
|
|
193
|
+
* One or more `networkInterface` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
194
194
|
*/
|
|
195
195
|
readonly networkInterfaces: pulumi.Output<outputs.nginx.DeploymentNetworkInterface[] | undefined>;
|
|
196
196
|
/**
|
|
197
|
-
* The version of deployed
|
|
197
|
+
* The version of deployed NGINX.
|
|
198
198
|
*/
|
|
199
199
|
readonly nginxVersion: pulumi.Output<string>;
|
|
200
200
|
/**
|
|
201
|
-
* The name of the Resource Group where the
|
|
201
|
+
* The name of the Resource Group where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
202
202
|
*/
|
|
203
203
|
readonly resourceGroupName: pulumi.Output<string>;
|
|
204
204
|
/**
|
|
205
|
-
* Specifies the
|
|
205
|
+
* Specifies the NGINX Deployment SKU. Possible values include `standard_Monthly`. Changing this forces a new resource to be created.
|
|
206
206
|
*/
|
|
207
207
|
readonly sku: pulumi.Output<string>;
|
|
208
208
|
/**
|
|
209
|
-
* A mapping of tags which should be assigned to the
|
|
209
|
+
* A mapping of tags which should be assigned to the NGINX Deployment.
|
|
210
210
|
*/
|
|
211
211
|
readonly tags: pulumi.Output<{
|
|
212
212
|
[key: string]: string;
|
|
@@ -247,15 +247,15 @@ export interface DeploymentState {
|
|
|
247
247
|
*/
|
|
248
248
|
diagnoseSupportEnabled?: pulumi.Input<boolean>;
|
|
249
249
|
/**
|
|
250
|
-
* Specify the preferred support contact email address
|
|
250
|
+
* Specify the preferred support contact email address for receiving alerts and notifications.
|
|
251
251
|
*/
|
|
252
252
|
email?: pulumi.Input<string>;
|
|
253
253
|
/**
|
|
254
|
-
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new
|
|
254
|
+
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
255
255
|
*/
|
|
256
256
|
frontendPrivates?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentFrontendPrivate>[]>;
|
|
257
257
|
/**
|
|
258
|
-
* A `frontendPublic` block as defined below. Changing this forces a new
|
|
258
|
+
* A `frontendPublic` block as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
259
259
|
*/
|
|
260
260
|
frontendPublic?: pulumi.Input<inputs.nginx.DeploymentFrontendPublic>;
|
|
261
261
|
/**
|
|
@@ -267,7 +267,7 @@ export interface DeploymentState {
|
|
|
267
267
|
*/
|
|
268
268
|
ipAddress?: pulumi.Input<string>;
|
|
269
269
|
/**
|
|
270
|
-
* The Azure Region where the
|
|
270
|
+
* The Azure Region where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
271
271
|
*/
|
|
272
272
|
location?: pulumi.Input<string>;
|
|
273
273
|
/**
|
|
@@ -275,31 +275,31 @@ export interface DeploymentState {
|
|
|
275
275
|
*/
|
|
276
276
|
loggingStorageAccounts?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentLoggingStorageAccount>[]>;
|
|
277
277
|
/**
|
|
278
|
-
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new
|
|
278
|
+
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new NGINX Deployment to be created.
|
|
279
279
|
*/
|
|
280
280
|
managedResourceGroup?: pulumi.Input<string>;
|
|
281
281
|
/**
|
|
282
|
-
* The name which should be used for this
|
|
282
|
+
* The name which should be used for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
|
|
283
283
|
*/
|
|
284
284
|
name?: pulumi.Input<string>;
|
|
285
285
|
/**
|
|
286
|
-
* One or more `networkInterface` blocks as defined below. Changing this forces a new
|
|
286
|
+
* One or more `networkInterface` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
287
287
|
*/
|
|
288
288
|
networkInterfaces?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentNetworkInterface>[]>;
|
|
289
289
|
/**
|
|
290
|
-
* The version of deployed
|
|
290
|
+
* The version of deployed NGINX.
|
|
291
291
|
*/
|
|
292
292
|
nginxVersion?: pulumi.Input<string>;
|
|
293
293
|
/**
|
|
294
|
-
* The name of the Resource Group where the
|
|
294
|
+
* The name of the Resource Group where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
295
295
|
*/
|
|
296
296
|
resourceGroupName?: pulumi.Input<string>;
|
|
297
297
|
/**
|
|
298
|
-
* Specifies the
|
|
298
|
+
* Specifies the NGINX Deployment SKU. Possible values include `standard_Monthly`. Changing this forces a new resource to be created.
|
|
299
299
|
*/
|
|
300
300
|
sku?: pulumi.Input<string>;
|
|
301
301
|
/**
|
|
302
|
-
* A mapping of tags which should be assigned to the
|
|
302
|
+
* A mapping of tags which should be assigned to the NGINX Deployment.
|
|
303
303
|
*/
|
|
304
304
|
tags?: pulumi.Input<{
|
|
305
305
|
[key: string]: pulumi.Input<string>;
|
|
@@ -332,15 +332,15 @@ export interface DeploymentArgs {
|
|
|
332
332
|
*/
|
|
333
333
|
diagnoseSupportEnabled?: pulumi.Input<boolean>;
|
|
334
334
|
/**
|
|
335
|
-
* Specify the preferred support contact email address
|
|
335
|
+
* Specify the preferred support contact email address for receiving alerts and notifications.
|
|
336
336
|
*/
|
|
337
337
|
email?: pulumi.Input<string>;
|
|
338
338
|
/**
|
|
339
|
-
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new
|
|
339
|
+
* One or more `frontendPrivate` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
340
340
|
*/
|
|
341
341
|
frontendPrivates?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentFrontendPrivate>[]>;
|
|
342
342
|
/**
|
|
343
|
-
* A `frontendPublic` block as defined below. Changing this forces a new
|
|
343
|
+
* A `frontendPublic` block as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
344
344
|
*/
|
|
345
345
|
frontendPublic?: pulumi.Input<inputs.nginx.DeploymentFrontendPublic>;
|
|
346
346
|
/**
|
|
@@ -348,7 +348,7 @@ export interface DeploymentArgs {
|
|
|
348
348
|
*/
|
|
349
349
|
identity?: pulumi.Input<inputs.nginx.DeploymentIdentity>;
|
|
350
350
|
/**
|
|
351
|
-
* The Azure Region where the
|
|
351
|
+
* The Azure Region where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
352
352
|
*/
|
|
353
353
|
location?: pulumi.Input<string>;
|
|
354
354
|
/**
|
|
@@ -356,27 +356,27 @@ export interface DeploymentArgs {
|
|
|
356
356
|
*/
|
|
357
357
|
loggingStorageAccounts?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentLoggingStorageAccount>[]>;
|
|
358
358
|
/**
|
|
359
|
-
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new
|
|
359
|
+
* Specify the managed resource group to deploy VNet injection related network resources. Changing this forces a new NGINX Deployment to be created.
|
|
360
360
|
*/
|
|
361
361
|
managedResourceGroup?: pulumi.Input<string>;
|
|
362
362
|
/**
|
|
363
|
-
* The name which should be used for this
|
|
363
|
+
* The name which should be used for this NGINX Deployment. Changing this forces a new NGINX Deployment to be created.
|
|
364
364
|
*/
|
|
365
365
|
name?: pulumi.Input<string>;
|
|
366
366
|
/**
|
|
367
|
-
* One or more `networkInterface` blocks as defined below. Changing this forces a new
|
|
367
|
+
* One or more `networkInterface` blocks as defined below. Changing this forces a new NGINX Deployment to be created.
|
|
368
368
|
*/
|
|
369
369
|
networkInterfaces?: pulumi.Input<pulumi.Input<inputs.nginx.DeploymentNetworkInterface>[]>;
|
|
370
370
|
/**
|
|
371
|
-
* The name of the Resource Group where the
|
|
371
|
+
* The name of the Resource Group where the NGINX Deployment should exist. Changing this forces a new NGINX Deployment to be created.
|
|
372
372
|
*/
|
|
373
373
|
resourceGroupName: pulumi.Input<string>;
|
|
374
374
|
/**
|
|
375
|
-
* Specifies the
|
|
375
|
+
* Specifies the NGINX Deployment SKU. Possible values include `standard_Monthly`. Changing this forces a new resource to be created.
|
|
376
376
|
*/
|
|
377
377
|
sku: pulumi.Input<string>;
|
|
378
378
|
/**
|
|
379
|
-
* A mapping of tags which should be assigned to the
|
|
379
|
+
* A mapping of tags which should be assigned to the NGINX Deployment.
|
|
380
380
|
*/
|
|
381
381
|
tags?: pulumi.Input<{
|
|
382
382
|
[key: string]: pulumi.Input<string>;
|
package/nginx/deployment.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Deployment = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Manages
|
|
9
|
+
* Manages an NGINX Deployment.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -113,7 +113,7 @@ const utilities = require("../utilities");
|
|
|
113
113
|
*
|
|
114
114
|
* ## Import
|
|
115
115
|
*
|
|
116
|
-
*
|
|
116
|
+
* NGINX Deployments can be imported using the `resource id`, e.g.
|
|
117
117
|
*
|
|
118
118
|
* ```sh
|
|
119
119
|
* $ pulumi import azure:nginx/deployment:Deployment example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Nginx.NginxPlus/nginxDeployments/dep1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Use this data source to access information about an existing
|
|
3
|
+
* Use this data source to access information about an existing NGINX Certificate.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -21,11 +21,11 @@ export declare function getCertificate(args: GetCertificateArgs, opts?: pulumi.I
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetCertificateArgs {
|
|
23
23
|
/**
|
|
24
|
-
* The name of
|
|
24
|
+
* The name of the NGINX Certificate.
|
|
25
25
|
*/
|
|
26
26
|
name: string;
|
|
27
27
|
/**
|
|
28
|
-
* The ID of the
|
|
28
|
+
* The ID of the NGINX Deployment that the certificate is associated with.
|
|
29
29
|
*/
|
|
30
30
|
nginxDeploymentId: string;
|
|
31
31
|
}
|
|
@@ -34,7 +34,7 @@ export interface GetCertificateArgs {
|
|
|
34
34
|
*/
|
|
35
35
|
export interface GetCertificateResult {
|
|
36
36
|
/**
|
|
37
|
-
* The path to the certificate file of
|
|
37
|
+
* The path to the certificate file of the certificate.
|
|
38
38
|
*/
|
|
39
39
|
readonly certificateVirtualPath: string;
|
|
40
40
|
/**
|
|
@@ -42,18 +42,18 @@ export interface GetCertificateResult {
|
|
|
42
42
|
*/
|
|
43
43
|
readonly id: string;
|
|
44
44
|
/**
|
|
45
|
-
* The ID of the Key Vault Secret for
|
|
45
|
+
* The ID of the Key Vault Secret for the certificate.
|
|
46
46
|
*/
|
|
47
47
|
readonly keyVaultSecretId: string;
|
|
48
48
|
/**
|
|
49
|
-
* The path to the key file of
|
|
49
|
+
* The path to the key file of the certificate.
|
|
50
50
|
*/
|
|
51
51
|
readonly keyVirtualPath: string;
|
|
52
52
|
readonly name: string;
|
|
53
53
|
readonly nginxDeploymentId: string;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
|
-
* Use this data source to access information about an existing
|
|
56
|
+
* Use this data source to access information about an existing NGINX Certificate.
|
|
57
57
|
*
|
|
58
58
|
* ## Example Usage
|
|
59
59
|
*
|
|
@@ -74,11 +74,11 @@ export declare function getCertificateOutput(args: GetCertificateOutputArgs, opt
|
|
|
74
74
|
*/
|
|
75
75
|
export interface GetCertificateOutputArgs {
|
|
76
76
|
/**
|
|
77
|
-
* The name of
|
|
77
|
+
* The name of the NGINX Certificate.
|
|
78
78
|
*/
|
|
79
79
|
name: pulumi.Input<string>;
|
|
80
80
|
/**
|
|
81
|
-
* The ID of the
|
|
81
|
+
* The ID of the NGINX Deployment that the certificate is associated with.
|
|
82
82
|
*/
|
|
83
83
|
nginxDeploymentId: pulumi.Input<string>;
|
|
84
84
|
}
|
package/nginx/getCertificate.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getCertificateOutput = exports.getCertificate = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Use this data source to access information about an existing
|
|
9
|
+
* Use this data source to access information about an existing NGINX Certificate.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -30,7 +30,7 @@ function getCertificate(args, opts) {
|
|
|
30
30
|
}
|
|
31
31
|
exports.getCertificate = getCertificate;
|
|
32
32
|
/**
|
|
33
|
-
* Use this data source to access information about an existing
|
|
33
|
+
* Use this data source to access information about an existing NGINX Certificate.
|
|
34
34
|
*
|
|
35
35
|
* ## Example Usage
|
|
36
36
|
*
|
package/nginx/getDeployment.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
|
-
* Use this data source to access information about an existing
|
|
4
|
+
* Use this data source to access information about an existing NGINX Deployment.
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
@@ -22,11 +22,11 @@ export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.Inv
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetDeploymentArgs {
|
|
24
24
|
/**
|
|
25
|
-
* The name of this
|
|
25
|
+
* The name of this NGINX Deployment.
|
|
26
26
|
*/
|
|
27
27
|
name: string;
|
|
28
28
|
/**
|
|
29
|
-
* The name of the Resource Group where the
|
|
29
|
+
* The name of the Resource Group where the NGINX Deployment exists.
|
|
30
30
|
*/
|
|
31
31
|
resourceGroupName: string;
|
|
32
32
|
}
|
|
@@ -43,7 +43,7 @@ export interface GetDeploymentResult {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly automaticUpgradeChannel: string;
|
|
45
45
|
/**
|
|
46
|
-
* The number of NGINX capacity units for this
|
|
46
|
+
* The number of NGINX capacity units for this NGINX Deployment.
|
|
47
47
|
*/
|
|
48
48
|
readonly capacity: number;
|
|
49
49
|
/**
|
|
@@ -51,7 +51,7 @@ export interface GetDeploymentResult {
|
|
|
51
51
|
*/
|
|
52
52
|
readonly diagnoseSupportEnabled: boolean;
|
|
53
53
|
/**
|
|
54
|
-
* Preferred email associated with the
|
|
54
|
+
* Preferred email associated with the NGINX Deployment.
|
|
55
55
|
*/
|
|
56
56
|
readonly email: string;
|
|
57
57
|
/**
|
|
@@ -71,11 +71,11 @@ export interface GetDeploymentResult {
|
|
|
71
71
|
*/
|
|
72
72
|
readonly identities: outputs.nginx.GetDeploymentIdentity[];
|
|
73
73
|
/**
|
|
74
|
-
*
|
|
74
|
+
* The list of Public IP Resource IDs for this NGINX Deployment.
|
|
75
75
|
*/
|
|
76
76
|
readonly ipAddress: string;
|
|
77
77
|
/**
|
|
78
|
-
* The Azure Region where the
|
|
78
|
+
* The Azure Region where the NGINX Deployment exists.
|
|
79
79
|
*/
|
|
80
80
|
readonly location: string;
|
|
81
81
|
/**
|
|
@@ -83,7 +83,7 @@ export interface GetDeploymentResult {
|
|
|
83
83
|
*/
|
|
84
84
|
readonly loggingStorageAccounts: outputs.nginx.GetDeploymentLoggingStorageAccount[];
|
|
85
85
|
/**
|
|
86
|
-
* Auto-generated managed resource group for the
|
|
86
|
+
* Auto-generated managed resource group for the NGINX Deployment.
|
|
87
87
|
*/
|
|
88
88
|
readonly managedResourceGroup: string;
|
|
89
89
|
/**
|
|
@@ -95,23 +95,23 @@ export interface GetDeploymentResult {
|
|
|
95
95
|
*/
|
|
96
96
|
readonly networkInterfaces: outputs.nginx.GetDeploymentNetworkInterface[];
|
|
97
97
|
/**
|
|
98
|
-
* NGINX version of the
|
|
98
|
+
* NGINX version of the Deployment.
|
|
99
99
|
*/
|
|
100
100
|
readonly nginxVersion: string;
|
|
101
101
|
readonly resourceGroupName: string;
|
|
102
102
|
/**
|
|
103
|
-
* The
|
|
103
|
+
* The NGINX Deployment SKU. Possible values include `standard_Monthly`.
|
|
104
104
|
*/
|
|
105
105
|
readonly sku: string;
|
|
106
106
|
/**
|
|
107
|
-
* A mapping of tags assigned to the
|
|
107
|
+
* A mapping of tags assigned to the NGINX Deployment.
|
|
108
108
|
*/
|
|
109
109
|
readonly tags: {
|
|
110
110
|
[key: string]: string;
|
|
111
111
|
};
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
|
-
* Use this data source to access information about an existing
|
|
114
|
+
* Use this data source to access information about an existing NGINX Deployment.
|
|
115
115
|
*
|
|
116
116
|
* ## Example Usage
|
|
117
117
|
*
|
|
@@ -132,11 +132,11 @@ export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?
|
|
|
132
132
|
*/
|
|
133
133
|
export interface GetDeploymentOutputArgs {
|
|
134
134
|
/**
|
|
135
|
-
* The name of this
|
|
135
|
+
* The name of this NGINX Deployment.
|
|
136
136
|
*/
|
|
137
137
|
name: pulumi.Input<string>;
|
|
138
138
|
/**
|
|
139
|
-
* The name of the Resource Group where the
|
|
139
|
+
* The name of the Resource Group where the NGINX Deployment exists.
|
|
140
140
|
*/
|
|
141
141
|
resourceGroupName: pulumi.Input<string>;
|
|
142
142
|
}
|
package/nginx/getDeployment.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getDeploymentOutput = exports.getDeployment = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Use this data source to access information about an existing
|
|
9
|
+
* Use this data source to access information about an existing NGINX Deployment.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -30,7 +30,7 @@ function getDeployment(args, opts) {
|
|
|
30
30
|
}
|
|
31
31
|
exports.getDeployment = getDeployment;
|
|
32
32
|
/**
|
|
33
|
-
* Use this data source to access information about an existing
|
|
33
|
+
* Use this data source to access information about an existing NGINX Deployment.
|
|
34
34
|
*
|
|
35
35
|
* ## Example Usage
|
|
36
36
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azure",
|
|
3
|
-
"version": "v5.74.0
|
|
3
|
+
"version": "v5.74.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -43,7 +43,7 @@ import * as outputs from "../types/output";
|
|
|
43
43
|
* location: example.location,
|
|
44
44
|
* resourceGroupName: example.name,
|
|
45
45
|
* actions: [{
|
|
46
|
-
* type: "
|
|
46
|
+
* type: "eventhub",
|
|
47
47
|
* resourceId: exampleEventHub.id,
|
|
48
48
|
* connectionString: exampleAuthorizationRule.primaryConnectionString,
|
|
49
49
|
* }],
|
|
@@ -47,7 +47,7 @@ const utilities = require("../utilities");
|
|
|
47
47
|
* location: example.location,
|
|
48
48
|
* resourceGroupName: example.name,
|
|
49
49
|
* actions: [{
|
|
50
|
-
* type: "
|
|
50
|
+
* type: "eventhub",
|
|
51
51
|
* resourceId: exampleEventHub.id,
|
|
52
52
|
* connectionString: exampleAuthorizationRule.primaryConnectionString,
|
|
53
53
|
* }],
|
package/types/input.d.ts
CHANGED
|
@@ -18635,7 +18635,7 @@ export declare namespace compute {
|
|
|
18635
18635
|
}
|
|
18636
18636
|
interface OrchestratedVirtualMachineScaleSetTerminationNotification {
|
|
18637
18637
|
/**
|
|
18638
|
-
* Should the termination notification be enabled on this Virtual Machine Scale Set? Possible values `true` or `false
|
|
18638
|
+
* Should the termination notification be enabled on this Virtual Machine Scale Set? Possible values `true` or `false`.
|
|
18639
18639
|
*/
|
|
18640
18640
|
enabled: pulumi.Input<boolean>;
|
|
18641
18641
|
/**
|
|
@@ -22292,9 +22292,11 @@ export declare namespace containerservice {
|
|
|
22292
22292
|
*/
|
|
22293
22293
|
clientAppId?: pulumi.Input<string>;
|
|
22294
22294
|
/**
|
|
22295
|
-
* Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration.
|
|
22295
|
+
* Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration. Defaults to `false`.
|
|
22296
22296
|
*
|
|
22297
|
-
*
|
|
22297
|
+
* > **Note:** The property `managed` is deprecated and will be defaulted to `true` in v4.0 of the AzureRM provider. Until the property is removed it must be specified with `true` for AKS-managed Entra Integration.
|
|
22298
|
+
*
|
|
22299
|
+
* @deprecated Azure AD Integration (legacy) (https://aka.ms/aks/aad-legacy) is deprecated and clusters can no longer be created with the Azure AD integration (legacy) enabled. This field must be supplied with the value `true` for AKS-managed Entra Integration, but will be removed and defaulted to `true` for the user in v4.0 of the AzureRM Provider.
|
|
22298
22300
|
*/
|
|
22299
22301
|
managed?: pulumi.Input<boolean>;
|
|
22300
22302
|
/**
|
|
@@ -23153,7 +23155,7 @@ export declare namespace containerservice {
|
|
|
23153
23155
|
/**
|
|
23154
23156
|
* Network plugin to use for networking. Currently supported values are `azure`, `kubenet` and `none`. Changing this forces a new resource to be created.
|
|
23155
23157
|
*
|
|
23156
|
-
* > **Note:** When `networkPlugin` is set to `azure` - the `podCidr` field must not be set
|
|
23158
|
+
* > **Note:** When `networkPlugin` is set to `azure` - the `podCidr` field must not be set, unless specifying `networkPluginMode` to `overlay`.
|
|
23157
23159
|
*/
|
|
23158
23160
|
networkPlugin: pulumi.Input<string>;
|
|
23159
23161
|
/**
|
|
@@ -23175,7 +23177,7 @@ export declare namespace containerservice {
|
|
|
23175
23177
|
*/
|
|
23176
23178
|
outboundType?: pulumi.Input<string>;
|
|
23177
23179
|
/**
|
|
23178
|
-
* The CIDR to use for pod IP addresses. This field can only be set when `networkPlugin` is set to `kubenet`. Changing this forces a new resource to be created.
|
|
23180
|
+
* The CIDR to use for pod IP addresses. This field can only be set when `networkPlugin` is set to `kubenet` or `networkPluginMode` is set to `overlay`. Changing this forces a new resource to be created.
|
|
23179
23181
|
*/
|
|
23180
23182
|
podCidr?: pulumi.Input<string>;
|
|
23181
23183
|
/**
|
|
@@ -43971,21 +43973,21 @@ export declare namespace nginx {
|
|
|
43971
43973
|
}
|
|
43972
43974
|
interface DeploymentFrontendPrivate {
|
|
43973
43975
|
/**
|
|
43974
|
-
* Specify the method
|
|
43976
|
+
* Specify the method for allocating the private IP. Possible values are `Static` and `Dynamic`.
|
|
43975
43977
|
*/
|
|
43976
43978
|
allocationMethod: pulumi.Input<string>;
|
|
43977
43979
|
/**
|
|
43978
|
-
* Specify the IP Address
|
|
43980
|
+
* Specify the private IP Address.
|
|
43979
43981
|
*/
|
|
43980
43982
|
ipAddress: pulumi.Input<string>;
|
|
43981
43983
|
/**
|
|
43982
|
-
* Specify the
|
|
43984
|
+
* Specify the Subnet Resource ID for this NGINX Deployment.
|
|
43983
43985
|
*/
|
|
43984
43986
|
subnetId: pulumi.Input<string>;
|
|
43985
43987
|
}
|
|
43986
43988
|
interface DeploymentFrontendPublic {
|
|
43987
43989
|
/**
|
|
43988
|
-
* Specifies a list of Public IP Resource ID to this
|
|
43990
|
+
* Specifies a list of Public IP Resource ID to this NGINX Deployment.
|
|
43989
43991
|
*/
|
|
43990
43992
|
ipAddresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
43991
43993
|
}
|
|
@@ -43999,23 +44001,23 @@ export declare namespace nginx {
|
|
|
43999
44001
|
principalId?: pulumi.Input<string>;
|
|
44000
44002
|
tenantId?: pulumi.Input<string>;
|
|
44001
44003
|
/**
|
|
44002
|
-
* Specifies the identity type of the
|
|
44004
|
+
* Specifies the identity type of the NGINX Deployment. Possible values are `UserAssigned`, `SystemAssigned`.
|
|
44003
44005
|
*/
|
|
44004
44006
|
type: pulumi.Input<string>;
|
|
44005
44007
|
}
|
|
44006
44008
|
interface DeploymentLoggingStorageAccount {
|
|
44007
44009
|
/**
|
|
44008
|
-
* Specify the container name
|
|
44010
|
+
* Specify the container name in the Storage Account for logging.
|
|
44009
44011
|
*/
|
|
44010
44012
|
containerName?: pulumi.Input<string>;
|
|
44011
44013
|
/**
|
|
44012
|
-
* The
|
|
44014
|
+
* The name of the StorageAccount for NGINX Logging.
|
|
44013
44015
|
*/
|
|
44014
44016
|
name?: pulumi.Input<string>;
|
|
44015
44017
|
}
|
|
44016
44018
|
interface DeploymentNetworkInterface {
|
|
44017
44019
|
/**
|
|
44018
|
-
* Specify The
|
|
44020
|
+
* Specify The Subnet Resource ID for this NGINX Deployment.
|
|
44019
44021
|
*/
|
|
44020
44022
|
subnetId: pulumi.Input<string>;
|
|
44021
44023
|
}
|
|
@@ -45423,7 +45425,7 @@ export declare namespace securitycenter {
|
|
|
45423
45425
|
}
|
|
45424
45426
|
interface AutomationAction {
|
|
45425
45427
|
/**
|
|
45426
|
-
* (Optional, but required when `type` is `
|
|
45428
|
+
* (Optional, but required when `type` is `eventhub`) A connection string to send data to the target Event Hub namespace, this should include a key with send permissions.
|
|
45427
45429
|
*/
|
|
45428
45430
|
connectionString?: pulumi.Input<string>;
|
|
45429
45431
|
/**
|
|
@@ -45431,11 +45433,11 @@ export declare namespace securitycenter {
|
|
|
45431
45433
|
*/
|
|
45432
45434
|
resourceId: pulumi.Input<string>;
|
|
45433
45435
|
/**
|
|
45434
|
-
* (Optional, but required when `type` is `
|
|
45436
|
+
* (Optional, but required when `type` is `logicapp`) The callback URL to trigger the Logic App that will receive and process data sent by this automation. This can be found in the Azure Portal under "See trigger history"
|
|
45435
45437
|
*/
|
|
45436
45438
|
triggerUrl?: pulumi.Input<string>;
|
|
45437
45439
|
/**
|
|
45438
|
-
* Type of Azure resource to send data to. Must be set to one of: `
|
|
45440
|
+
* Type of Azure resource to send data to. Must be set to one of: `logicapp`, `eventhub` or `loganalytics`.
|
|
45439
45441
|
*/
|
|
45440
45442
|
type: pulumi.Input<string>;
|
|
45441
45443
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -25196,7 +25196,7 @@ export declare namespace compute {
|
|
|
25196
25196
|
}
|
|
25197
25197
|
interface OrchestratedVirtualMachineScaleSetTerminationNotification {
|
|
25198
25198
|
/**
|
|
25199
|
-
* Should the termination notification be enabled on this Virtual Machine Scale Set? Possible values `true` or `false
|
|
25199
|
+
* Should the termination notification be enabled on this Virtual Machine Scale Set? Possible values `true` or `false`.
|
|
25200
25200
|
*/
|
|
25201
25201
|
enabled: boolean;
|
|
25202
25202
|
/**
|
|
@@ -30156,9 +30156,11 @@ export declare namespace containerservice {
|
|
|
30156
30156
|
*/
|
|
30157
30157
|
clientAppId?: string;
|
|
30158
30158
|
/**
|
|
30159
|
-
* Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration.
|
|
30159
|
+
* Is the Azure Active Directory integration Managed, meaning that Azure will create/manage the Service Principal used for integration. Defaults to `false`.
|
|
30160
30160
|
*
|
|
30161
|
-
*
|
|
30161
|
+
* > **Note:** The property `managed` is deprecated and will be defaulted to `true` in v4.0 of the AzureRM provider. Until the property is removed it must be specified with `true` for AKS-managed Entra Integration.
|
|
30162
|
+
*
|
|
30163
|
+
* @deprecated Azure AD Integration (legacy) (https://aka.ms/aks/aad-legacy) is deprecated and clusters can no longer be created with the Azure AD integration (legacy) enabled. This field must be supplied with the value `true` for AKS-managed Entra Integration, but will be removed and defaulted to `true` for the user in v4.0 of the AzureRM Provider.
|
|
30162
30164
|
*/
|
|
30163
30165
|
managed?: boolean;
|
|
30164
30166
|
/**
|
|
@@ -31017,7 +31019,7 @@ export declare namespace containerservice {
|
|
|
31017
31019
|
/**
|
|
31018
31020
|
* Network plugin to use for networking. Currently supported values are `azure`, `kubenet` and `none`. Changing this forces a new resource to be created.
|
|
31019
31021
|
*
|
|
31020
|
-
* > **Note:** When `networkPlugin` is set to `azure` - the `podCidr` field must not be set
|
|
31022
|
+
* > **Note:** When `networkPlugin` is set to `azure` - the `podCidr` field must not be set, unless specifying `networkPluginMode` to `overlay`.
|
|
31021
31023
|
*/
|
|
31022
31024
|
networkPlugin: string;
|
|
31023
31025
|
/**
|
|
@@ -31039,7 +31041,7 @@ export declare namespace containerservice {
|
|
|
31039
31041
|
*/
|
|
31040
31042
|
outboundType?: string;
|
|
31041
31043
|
/**
|
|
31042
|
-
* The CIDR to use for pod IP addresses. This field can only be set when `networkPlugin` is set to `kubenet`. Changing this forces a new resource to be created.
|
|
31044
|
+
* The CIDR to use for pod IP addresses. This field can only be set when `networkPlugin` is set to `kubenet` or `networkPluginMode` is set to `overlay`. Changing this forces a new resource to be created.
|
|
31043
31045
|
*/
|
|
31044
31046
|
podCidr: string;
|
|
31045
31047
|
/**
|
|
@@ -56206,21 +56208,21 @@ export declare namespace nginx {
|
|
|
56206
56208
|
}
|
|
56207
56209
|
interface DeploymentFrontendPrivate {
|
|
56208
56210
|
/**
|
|
56209
|
-
* Specify the method
|
|
56211
|
+
* Specify the method for allocating the private IP. Possible values are `Static` and `Dynamic`.
|
|
56210
56212
|
*/
|
|
56211
56213
|
allocationMethod: string;
|
|
56212
56214
|
/**
|
|
56213
|
-
* Specify the IP Address
|
|
56215
|
+
* Specify the private IP Address.
|
|
56214
56216
|
*/
|
|
56215
56217
|
ipAddress: string;
|
|
56216
56218
|
/**
|
|
56217
|
-
* Specify the
|
|
56219
|
+
* Specify the Subnet Resource ID for this NGINX Deployment.
|
|
56218
56220
|
*/
|
|
56219
56221
|
subnetId: string;
|
|
56220
56222
|
}
|
|
56221
56223
|
interface DeploymentFrontendPublic {
|
|
56222
56224
|
/**
|
|
56223
|
-
* Specifies a list of Public IP Resource ID to this
|
|
56225
|
+
* Specifies a list of Public IP Resource ID to this NGINX Deployment.
|
|
56224
56226
|
*/
|
|
56225
56227
|
ipAddresses?: string[];
|
|
56226
56228
|
}
|
|
@@ -56234,23 +56236,23 @@ export declare namespace nginx {
|
|
|
56234
56236
|
principalId: string;
|
|
56235
56237
|
tenantId: string;
|
|
56236
56238
|
/**
|
|
56237
|
-
* Specifies the identity type of the
|
|
56239
|
+
* Specifies the identity type of the NGINX Deployment. Possible values are `UserAssigned`, `SystemAssigned`.
|
|
56238
56240
|
*/
|
|
56239
56241
|
type: string;
|
|
56240
56242
|
}
|
|
56241
56243
|
interface DeploymentLoggingStorageAccount {
|
|
56242
56244
|
/**
|
|
56243
|
-
* Specify the container name
|
|
56245
|
+
* Specify the container name in the Storage Account for logging.
|
|
56244
56246
|
*/
|
|
56245
56247
|
containerName?: string;
|
|
56246
56248
|
/**
|
|
56247
|
-
* The
|
|
56249
|
+
* The name of the StorageAccount for NGINX Logging.
|
|
56248
56250
|
*/
|
|
56249
56251
|
name?: string;
|
|
56250
56252
|
}
|
|
56251
56253
|
interface DeploymentNetworkInterface {
|
|
56252
56254
|
/**
|
|
56253
|
-
* Specify The
|
|
56255
|
+
* Specify The Subnet Resource ID for this NGINX Deployment.
|
|
56254
56256
|
*/
|
|
56255
56257
|
subnetId: string;
|
|
56256
56258
|
}
|
|
@@ -56272,55 +56274,55 @@ export declare namespace nginx {
|
|
|
56272
56274
|
*/
|
|
56273
56275
|
minCapacity: number;
|
|
56274
56276
|
/**
|
|
56275
|
-
* The name of this
|
|
56277
|
+
* The name of this NGINX Deployment.
|
|
56276
56278
|
*/
|
|
56277
56279
|
name: string;
|
|
56278
56280
|
}
|
|
56279
56281
|
interface GetDeploymentFrontendPrivate {
|
|
56280
56282
|
/**
|
|
56281
|
-
* The method of allocating the private IP to the
|
|
56283
|
+
* The method of allocating the private IP to the NGINX Deployment.
|
|
56282
56284
|
*/
|
|
56283
56285
|
allocationMethod: string;
|
|
56284
56286
|
/**
|
|
56285
|
-
*
|
|
56287
|
+
* The list of Public IP Resource IDs for this NGINX Deployment.
|
|
56286
56288
|
*/
|
|
56287
56289
|
ipAddress: string;
|
|
56288
56290
|
/**
|
|
56289
|
-
* The subnet resource ID of the
|
|
56291
|
+
* The subnet resource ID of the NGINX Deployment.
|
|
56290
56292
|
*/
|
|
56291
56293
|
subnetId: string;
|
|
56292
56294
|
}
|
|
56293
56295
|
interface GetDeploymentFrontendPublic {
|
|
56294
56296
|
/**
|
|
56295
|
-
*
|
|
56297
|
+
* The list of Public IP Resource IDs for this NGINX Deployment.
|
|
56296
56298
|
*/
|
|
56297
56299
|
ipAddresses: string[];
|
|
56298
56300
|
}
|
|
56299
56301
|
interface GetDeploymentIdentity {
|
|
56300
56302
|
/**
|
|
56301
|
-
* List of identities attached to the
|
|
56303
|
+
* List of identities attached to the NGINX Deployment.
|
|
56302
56304
|
*/
|
|
56303
56305
|
identityIds: string[];
|
|
56304
56306
|
principalId: string;
|
|
56305
56307
|
tenantId: string;
|
|
56306
56308
|
/**
|
|
56307
|
-
* Type of identity attached to the
|
|
56309
|
+
* Type of identity attached to the NGINX Deployment.
|
|
56308
56310
|
*/
|
|
56309
56311
|
type: string;
|
|
56310
56312
|
}
|
|
56311
56313
|
interface GetDeploymentLoggingStorageAccount {
|
|
56312
56314
|
/**
|
|
56313
|
-
*
|
|
56315
|
+
* The container name of Storage Account for logging.
|
|
56314
56316
|
*/
|
|
56315
56317
|
containerName: string;
|
|
56316
56318
|
/**
|
|
56317
|
-
* The name of this
|
|
56319
|
+
* The name of this NGINX Deployment.
|
|
56318
56320
|
*/
|
|
56319
56321
|
name: string;
|
|
56320
56322
|
}
|
|
56321
56323
|
interface GetDeploymentNetworkInterface {
|
|
56322
56324
|
/**
|
|
56323
|
-
* The subnet resource ID of the
|
|
56325
|
+
* The subnet resource ID of the NGINX Deployment.
|
|
56324
56326
|
*/
|
|
56325
56327
|
subnetId: string;
|
|
56326
56328
|
}
|
|
@@ -58111,7 +58113,7 @@ export declare namespace securitycenter {
|
|
|
58111
58113
|
}
|
|
58112
58114
|
interface AutomationAction {
|
|
58113
58115
|
/**
|
|
58114
|
-
* (Optional, but required when `type` is `
|
|
58116
|
+
* (Optional, but required when `type` is `eventhub`) A connection string to send data to the target Event Hub namespace, this should include a key with send permissions.
|
|
58115
58117
|
*/
|
|
58116
58118
|
connectionString?: string;
|
|
58117
58119
|
/**
|
|
@@ -58119,11 +58121,11 @@ export declare namespace securitycenter {
|
|
|
58119
58121
|
*/
|
|
58120
58122
|
resourceId: string;
|
|
58121
58123
|
/**
|
|
58122
|
-
* (Optional, but required when `type` is `
|
|
58124
|
+
* (Optional, but required when `type` is `logicapp`) The callback URL to trigger the Logic App that will receive and process data sent by this automation. This can be found in the Azure Portal under "See trigger history"
|
|
58123
58125
|
*/
|
|
58124
58126
|
triggerUrl?: string;
|
|
58125
58127
|
/**
|
|
58126
|
-
* Type of Azure resource to send data to. Must be set to one of: `
|
|
58128
|
+
* Type of Azure resource to send data to. Must be set to one of: `logicapp`, `eventhub` or `loganalytics`.
|
|
58127
58129
|
*/
|
|
58128
58130
|
type: string;
|
|
58129
58131
|
}
|