@pulumi/azure 5.78.0-alpha.1716388911 → 5.78.0-alpha.1716402178
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/containerservice/getKubernetesServiceVersions.d.ts +4 -0
- package/containerservice/getKubernetesServiceVersions.js.map +1 -1
- package/databasemigration/project.d.ts +6 -6
- package/databricks/workspace.d.ts +30 -0
- package/databricks/workspace.js +4 -0
- package/databricks/workspace.js.map +1 -1
- package/datafactory/triggerCustomEvent.d.ts +0 -6
- package/datafactory/triggerCustomEvent.js.map +1 -1
- package/elasticsan/get.d.ts +122 -0
- package/elasticsan/get.js +52 -0
- package/elasticsan/get.js.map +1 -0
- package/elasticsan/index.d.ts +3 -0
- package/elasticsan/index.js +4 -1
- package/elasticsan/index.js.map +1 -1
- package/keyvault/index.d.ts +3 -0
- package/keyvault/index.js +6 -1
- package/keyvault/index.js.map +1 -1
- package/keyvault/keyVault.d.ts +3 -3
- package/keyvault/managedHardwareSecurityModuleKey.d.ts +177 -0
- package/keyvault/managedHardwareSecurityModuleKey.js +89 -0
- package/keyvault/managedHardwareSecurityModuleKey.js.map +1 -0
- package/network/vnpGatewayNatRule.d.ts +9 -34
- package/network/vnpGatewayNatRule.js +0 -1
- package/network/vnpGatewayNatRule.js.map +1 -1
- package/package.json +2 -2
- package/pim/activeRoleAssignment.d.ts +24 -24
- package/pim/activeRoleAssignment.js +2 -2
- package/pim/eligibleRoleAssignment.d.ts +24 -24
- package/pim/eligibleRoleAssignment.js +2 -2
- package/sentinel/alertRuleScheduled.d.ts +3 -3
- package/types/input.d.ts +41 -21
- package/types/output.d.ts +53 -21
|
@@ -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 a
|
|
5
|
+
* Manages a PIM Eligible Role Assignment.
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -70,7 +70,7 @@ import * as outputs from "../types/output";
|
|
|
70
70
|
*
|
|
71
71
|
* ## Import
|
|
72
72
|
*
|
|
73
|
-
*
|
|
73
|
+
* PIM Eligible Role Assignments can be imported using the following composite resource ID, e.g.
|
|
74
74
|
*
|
|
75
75
|
* ```sh
|
|
76
76
|
* $ pulumi import azure:pim/eligibleRoleAssignment:EligibleRoleAssignment example /subscriptions/00000000-0000-0000-0000-000000000000|/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000
|
|
@@ -93,31 +93,31 @@ export declare class EligibleRoleAssignment extends pulumi.CustomResource {
|
|
|
93
93
|
*/
|
|
94
94
|
static isInstance(obj: any): obj is EligibleRoleAssignment;
|
|
95
95
|
/**
|
|
96
|
-
* The justification of the role assignment. Changing this forces a new
|
|
96
|
+
* The justification of the role assignment. Changing this forces a new resource to be created.
|
|
97
97
|
*/
|
|
98
|
-
readonly justification: pulumi.Output<string
|
|
98
|
+
readonly justification: pulumi.Output<string>;
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Object ID of the principal for this eligible role assignment. Changing this forces a new resource to be created.
|
|
101
101
|
*/
|
|
102
102
|
readonly principalId: pulumi.Output<string>;
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* Type of principal to which the role will be assigned.
|
|
105
105
|
*/
|
|
106
106
|
readonly principalType: pulumi.Output<string>;
|
|
107
107
|
/**
|
|
108
|
-
* The role definition
|
|
108
|
+
* The role definition ID for this eligible role assignment. Changing this forces a new resource to be created.
|
|
109
109
|
*/
|
|
110
110
|
readonly roleDefinitionId: pulumi.Output<string>;
|
|
111
111
|
/**
|
|
112
|
-
* A `schedule` block as defined below. Changing this forces a new
|
|
112
|
+
* A `schedule` block as defined below. Changing this forces a new resource to be created.
|
|
113
113
|
*/
|
|
114
|
-
readonly schedule: pulumi.Output<outputs.pim.EligibleRoleAssignmentSchedule
|
|
114
|
+
readonly schedule: pulumi.Output<outputs.pim.EligibleRoleAssignmentSchedule>;
|
|
115
115
|
/**
|
|
116
|
-
* The scope. Changing this forces a new
|
|
116
|
+
* The scope for this eligible role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
|
|
117
117
|
*/
|
|
118
118
|
readonly scope: pulumi.Output<string>;
|
|
119
119
|
/**
|
|
120
|
-
* A `ticket` block as defined below. Changing this forces a new
|
|
120
|
+
* A `ticket` block as defined below. Changing this forces a new resource to be created.
|
|
121
121
|
*/
|
|
122
122
|
readonly ticket: pulumi.Output<outputs.pim.EligibleRoleAssignmentTicket | undefined>;
|
|
123
123
|
/**
|
|
@@ -134,31 +134,31 @@ export declare class EligibleRoleAssignment extends pulumi.CustomResource {
|
|
|
134
134
|
*/
|
|
135
135
|
export interface EligibleRoleAssignmentState {
|
|
136
136
|
/**
|
|
137
|
-
* The justification of the role assignment. Changing this forces a new
|
|
137
|
+
* The justification of the role assignment. Changing this forces a new resource to be created.
|
|
138
138
|
*/
|
|
139
139
|
justification?: pulumi.Input<string>;
|
|
140
140
|
/**
|
|
141
|
-
*
|
|
141
|
+
* Object ID of the principal for this eligible role assignment. Changing this forces a new resource to be created.
|
|
142
142
|
*/
|
|
143
143
|
principalId?: pulumi.Input<string>;
|
|
144
144
|
/**
|
|
145
|
-
*
|
|
145
|
+
* Type of principal to which the role will be assigned.
|
|
146
146
|
*/
|
|
147
147
|
principalType?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
149
|
-
* The role definition
|
|
149
|
+
* The role definition ID for this eligible role assignment. Changing this forces a new resource to be created.
|
|
150
150
|
*/
|
|
151
151
|
roleDefinitionId?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
153
|
-
* A `schedule` block as defined below. Changing this forces a new
|
|
153
|
+
* A `schedule` block as defined below. Changing this forces a new resource to be created.
|
|
154
154
|
*/
|
|
155
155
|
schedule?: pulumi.Input<inputs.pim.EligibleRoleAssignmentSchedule>;
|
|
156
156
|
/**
|
|
157
|
-
* The scope. Changing this forces a new
|
|
157
|
+
* The scope for this eligible role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
|
|
158
158
|
*/
|
|
159
159
|
scope?: pulumi.Input<string>;
|
|
160
160
|
/**
|
|
161
|
-
* A `ticket` block as defined below. Changing this forces a new
|
|
161
|
+
* A `ticket` block as defined below. Changing this forces a new resource to be created.
|
|
162
162
|
*/
|
|
163
163
|
ticket?: pulumi.Input<inputs.pim.EligibleRoleAssignmentTicket>;
|
|
164
164
|
}
|
|
@@ -167,27 +167,27 @@ export interface EligibleRoleAssignmentState {
|
|
|
167
167
|
*/
|
|
168
168
|
export interface EligibleRoleAssignmentArgs {
|
|
169
169
|
/**
|
|
170
|
-
* The justification of the role assignment. Changing this forces a new
|
|
170
|
+
* The justification of the role assignment. Changing this forces a new resource to be created.
|
|
171
171
|
*/
|
|
172
172
|
justification?: pulumi.Input<string>;
|
|
173
173
|
/**
|
|
174
|
-
*
|
|
174
|
+
* Object ID of the principal for this eligible role assignment. Changing this forces a new resource to be created.
|
|
175
175
|
*/
|
|
176
176
|
principalId: pulumi.Input<string>;
|
|
177
177
|
/**
|
|
178
|
-
* The role definition
|
|
178
|
+
* The role definition ID for this eligible role assignment. Changing this forces a new resource to be created.
|
|
179
179
|
*/
|
|
180
180
|
roleDefinitionId: pulumi.Input<string>;
|
|
181
181
|
/**
|
|
182
|
-
* A `schedule` block as defined below. Changing this forces a new
|
|
182
|
+
* A `schedule` block as defined below. Changing this forces a new resource to be created.
|
|
183
183
|
*/
|
|
184
184
|
schedule?: pulumi.Input<inputs.pim.EligibleRoleAssignmentSchedule>;
|
|
185
185
|
/**
|
|
186
|
-
* The scope. Changing this forces a new
|
|
186
|
+
* The scope for this eligible role assignment, should be a valid resource ID. Changing this forces a new resource to be created.
|
|
187
187
|
*/
|
|
188
188
|
scope: pulumi.Input<string>;
|
|
189
189
|
/**
|
|
190
|
-
* A `ticket` block as defined below. Changing this forces a new
|
|
190
|
+
* A `ticket` block as defined below. Changing this forces a new resource to be created.
|
|
191
191
|
*/
|
|
192
192
|
ticket?: pulumi.Input<inputs.pim.EligibleRoleAssignmentTicket>;
|
|
193
193
|
}
|
|
@@ -6,7 +6,7 @@ exports.EligibleRoleAssignment = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Manages a
|
|
9
|
+
* Manages a PIM Eligible Role Assignment.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -74,7 +74,7 @@ const utilities = require("../utilities");
|
|
|
74
74
|
*
|
|
75
75
|
* ## Import
|
|
76
76
|
*
|
|
77
|
-
*
|
|
77
|
+
* PIM Eligible Role Assignments can be imported using the following composite resource ID, e.g.
|
|
78
78
|
*
|
|
79
79
|
* ```sh
|
|
80
80
|
* $ pulumi import azure:pim/eligibleRoleAssignment:EligibleRoleAssignment example /subscriptions/00000000-0000-0000-0000-000000000000|/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000
|
|
@@ -67,7 +67,7 @@ export declare class AlertRuleScheduled extends pulumi.CustomResource {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly alertRuleTemplateGuid: pulumi.Output<string | undefined>;
|
|
69
69
|
/**
|
|
70
|
-
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
70
|
+
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
71
71
|
*/
|
|
72
72
|
readonly alertRuleTemplateVersion: pulumi.Output<string | undefined>;
|
|
73
73
|
/**
|
|
@@ -180,7 +180,7 @@ export interface AlertRuleScheduledState {
|
|
|
180
180
|
*/
|
|
181
181
|
alertRuleTemplateGuid?: pulumi.Input<string>;
|
|
182
182
|
/**
|
|
183
|
-
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
183
|
+
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
184
184
|
*/
|
|
185
185
|
alertRuleTemplateVersion?: pulumi.Input<string>;
|
|
186
186
|
/**
|
|
@@ -285,7 +285,7 @@ export interface AlertRuleScheduledArgs {
|
|
|
285
285
|
*/
|
|
286
286
|
alertRuleTemplateGuid?: pulumi.Input<string>;
|
|
287
287
|
/**
|
|
288
|
-
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
288
|
+
* The version of the alert rule template which is used for this Sentinel Scheduled Alert Rule.
|
|
289
289
|
*/
|
|
290
290
|
alertRuleTemplateVersion?: pulumi.Input<string>;
|
|
291
291
|
/**
|
package/types/input.d.ts
CHANGED
|
@@ -41,6 +41,10 @@ export interface ProviderFeaturesKeyVault {
|
|
|
41
41
|
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be permanently deleted (e.g purged), when destroyed
|
|
42
42
|
*/
|
|
43
43
|
purgeSoftDeletedCertificatesOnDestroy?: pulumi.Input<boolean>;
|
|
44
|
+
/**
|
|
45
|
+
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModuleKey` resources will be permanently deleted (e.g purged), when destroyed
|
|
46
|
+
*/
|
|
47
|
+
purgeSoftDeletedHardwareSecurityModuleKeysOnDestroy?: pulumi.Input<boolean>;
|
|
44
48
|
/**
|
|
45
49
|
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModule` resources will be permanently deleted (e.g purged), when destroyed
|
|
46
50
|
*/
|
|
@@ -57,6 +61,10 @@ export interface ProviderFeaturesKeyVault {
|
|
|
57
61
|
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be restored, instead of creating new ones
|
|
58
62
|
*/
|
|
59
63
|
recoverSoftDeletedCertificates?: pulumi.Input<boolean>;
|
|
64
|
+
/**
|
|
65
|
+
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModuleKey` resources will be restored, instead of creating new ones
|
|
66
|
+
*/
|
|
67
|
+
recoverSoftDeletedHardwareSecurityModuleKeys?: pulumi.Input<boolean>;
|
|
60
68
|
/**
|
|
61
69
|
* When enabled soft-deleted `azure.keyvault.KeyVault` resources will be restored, instead of creating new ones
|
|
62
70
|
*/
|
|
@@ -5203,7 +5211,7 @@ export declare namespace appservice {
|
|
|
5203
5211
|
*/
|
|
5204
5212
|
nodeVersion?: pulumi.Input<string>;
|
|
5205
5213
|
/**
|
|
5206
|
-
* The version of PowerShell Core to run. Possible values are `7`, and `7.
|
|
5214
|
+
* The version of PowerShell Core to run. Possible values are `7`, `7.2`, and `7.4`.
|
|
5207
5215
|
*/
|
|
5208
5216
|
powershellCoreVersion?: pulumi.Input<string>;
|
|
5209
5217
|
/**
|
|
@@ -6179,7 +6187,7 @@ export declare namespace appservice {
|
|
|
6179
6187
|
*/
|
|
6180
6188
|
nodeVersion?: pulumi.Input<string>;
|
|
6181
6189
|
/**
|
|
6182
|
-
* The version of PowerShell Core to use. Possibles values are `7` , and `7.
|
|
6190
|
+
* The version of PowerShell Core to use. Possibles values are `7` , `7.2`, and `7.4`.
|
|
6183
6191
|
*/
|
|
6184
6192
|
powershellCoreVersion?: pulumi.Input<string>;
|
|
6185
6193
|
/**
|
|
@@ -10197,7 +10205,7 @@ export declare namespace appservice {
|
|
|
10197
10205
|
*/
|
|
10198
10206
|
nodeVersion?: pulumi.Input<string>;
|
|
10199
10207
|
/**
|
|
10200
|
-
* The version of PowerShell Core to run. Possible values are `7`, and `7.
|
|
10208
|
+
* The version of PowerShell Core to run. Possible values are `7`, `7.2`, and `7.4`.
|
|
10201
10209
|
*
|
|
10202
10210
|
* > **NOTE:** A value of `7` will provide the latest stable version. `7.2` is in preview at the time of writing.
|
|
10203
10211
|
*/
|
|
@@ -11133,7 +11141,7 @@ export declare namespace appservice {
|
|
|
11133
11141
|
*/
|
|
11134
11142
|
nodeVersion?: pulumi.Input<string>;
|
|
11135
11143
|
/**
|
|
11136
|
-
* The PowerShell Core version to use. Possible values are `7`, and `7.
|
|
11144
|
+
* The PowerShell Core version to use. Possible values are `7`, `7.2`, and `7.4`.
|
|
11137
11145
|
*/
|
|
11138
11146
|
powershellCoreVersion?: pulumi.Input<string>;
|
|
11139
11147
|
/**
|
|
@@ -21619,7 +21627,7 @@ export declare namespace containerapp {
|
|
|
21619
21627
|
principalId?: pulumi.Input<string>;
|
|
21620
21628
|
tenantId?: pulumi.Input<string>;
|
|
21621
21629
|
/**
|
|
21622
|
-
* The type of identity used for the Container App Job. Possible values are `SystemAssigned` and `None`. Defaults to `None`.
|
|
21630
|
+
* The type of identity used for the Container App Job. Possible values are `SystemAssigned`, `UserAssigned` and `None`. Defaults to `None`.
|
|
21623
21631
|
*/
|
|
21624
21632
|
type: pulumi.Input<string>;
|
|
21625
21633
|
}
|
|
@@ -34721,6 +34729,12 @@ export declare namespace loadtest {
|
|
|
34721
34729
|
}
|
|
34722
34730
|
export declare namespace loganalytics {
|
|
34723
34731
|
interface ClusterIdentity {
|
|
34732
|
+
/**
|
|
34733
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this Windows Web App Slot.
|
|
34734
|
+
*
|
|
34735
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned`.
|
|
34736
|
+
*/
|
|
34737
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
34724
34738
|
/**
|
|
34725
34739
|
* The Principal ID associated with this Managed Service Identity.
|
|
34726
34740
|
*/
|
|
@@ -34730,7 +34744,7 @@ export declare namespace loganalytics {
|
|
|
34730
34744
|
*/
|
|
34731
34745
|
tenantId?: pulumi.Input<string>;
|
|
34732
34746
|
/**
|
|
34733
|
-
* Specifies the type of Managed Service Identity that should be configured on this Log Analytics Cluster.
|
|
34747
|
+
* Specifies the type of Managed Service Identity that should be configured on this Log Analytics Cluster. Possible values are `SystemAssigned` and `UserAssigned`. Changing this forces a new resource to be created.
|
|
34734
34748
|
*
|
|
34735
34749
|
* > **NOTE:** The assigned `principalId` and `tenantId` can be retrieved after the identity `type` has been set to `SystemAssigned` and the Log Analytics Cluster has been created. More details are available below.
|
|
34736
34750
|
*/
|
|
@@ -41606,7 +41620,9 @@ export declare namespace network {
|
|
|
41606
41620
|
/**
|
|
41607
41621
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Application Gateway.
|
|
41608
41622
|
*/
|
|
41609
|
-
identityIds
|
|
41623
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
41624
|
+
principalId?: pulumi.Input<string>;
|
|
41625
|
+
tenantId?: pulumi.Input<string>;
|
|
41610
41626
|
/**
|
|
41611
41627
|
* Specifies the type of Managed Service Identity that should be configured on this Application Gateway. Only possible value is `UserAssigned`.
|
|
41612
41628
|
*/
|
|
@@ -45170,69 +45186,73 @@ export declare namespace paloalto {
|
|
|
45170
45186
|
export declare namespace pim {
|
|
45171
45187
|
interface ActiveRoleAssignmentSchedule {
|
|
45172
45188
|
/**
|
|
45173
|
-
*
|
|
45189
|
+
* An `expiration` block as defined above.
|
|
45174
45190
|
*/
|
|
45175
45191
|
expiration?: pulumi.Input<inputs.pim.ActiveRoleAssignmentScheduleExpiration>;
|
|
45176
45192
|
/**
|
|
45177
|
-
* The start date
|
|
45193
|
+
* The start date/time of the role assignment. Changing this forces a new resource to be created.
|
|
45178
45194
|
*/
|
|
45179
45195
|
startDateTime?: pulumi.Input<string>;
|
|
45180
45196
|
}
|
|
45181
45197
|
interface ActiveRoleAssignmentScheduleExpiration {
|
|
45182
45198
|
/**
|
|
45183
|
-
* The duration of the role assignment in days.
|
|
45199
|
+
* The duration of the role assignment in days. Changing this forces a new resource to be created.
|
|
45184
45200
|
*/
|
|
45185
45201
|
durationDays?: pulumi.Input<number>;
|
|
45186
45202
|
/**
|
|
45187
|
-
* The duration of the role assignment in hours.
|
|
45203
|
+
* The duration of the role assignment in hours. Changing this forces a new resource to be created.
|
|
45188
45204
|
*/
|
|
45189
45205
|
durationHours?: pulumi.Input<number>;
|
|
45190
45206
|
/**
|
|
45191
|
-
* The end date
|
|
45207
|
+
* The end date/time of the role assignment. Changing this forces a new resource to be created.
|
|
45208
|
+
*
|
|
45209
|
+
* > Note: Only one of `durationDays`, `durationHours` or `endDateTime` should be specified.
|
|
45192
45210
|
*/
|
|
45193
45211
|
endDateTime?: pulumi.Input<string>;
|
|
45194
45212
|
}
|
|
45195
45213
|
interface ActiveRoleAssignmentTicket {
|
|
45196
45214
|
/**
|
|
45197
|
-
*
|
|
45215
|
+
* User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
|
|
45198
45216
|
*/
|
|
45199
45217
|
number?: pulumi.Input<string>;
|
|
45200
45218
|
/**
|
|
45201
|
-
*
|
|
45219
|
+
* User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
|
|
45202
45220
|
*/
|
|
45203
45221
|
system?: pulumi.Input<string>;
|
|
45204
45222
|
}
|
|
45205
45223
|
interface EligibleRoleAssignmentSchedule {
|
|
45206
45224
|
/**
|
|
45207
|
-
*
|
|
45225
|
+
* An `expiration` block as defined above.
|
|
45208
45226
|
*/
|
|
45209
45227
|
expiration?: pulumi.Input<inputs.pim.EligibleRoleAssignmentScheduleExpiration>;
|
|
45210
45228
|
/**
|
|
45211
|
-
* The start date
|
|
45229
|
+
* The start date/time of the role assignment. Changing this forces a new resource to be created.
|
|
45212
45230
|
*/
|
|
45213
45231
|
startDateTime?: pulumi.Input<string>;
|
|
45214
45232
|
}
|
|
45215
45233
|
interface EligibleRoleAssignmentScheduleExpiration {
|
|
45216
45234
|
/**
|
|
45217
|
-
* The duration of the role assignment in days.
|
|
45235
|
+
* The duration of the role assignment in days. Changing this forces a new resource to be created.
|
|
45218
45236
|
*/
|
|
45219
45237
|
durationDays?: pulumi.Input<number>;
|
|
45220
45238
|
/**
|
|
45221
|
-
* The duration of the role assignment in hours.
|
|
45239
|
+
* The duration of the role assignment in hours. Changing this forces a new resource to be created.
|
|
45222
45240
|
*/
|
|
45223
45241
|
durationHours?: pulumi.Input<number>;
|
|
45224
45242
|
/**
|
|
45225
|
-
* The end date
|
|
45243
|
+
* The end date/time of the role assignment. Changing this forces a new resource to be created.
|
|
45244
|
+
*
|
|
45245
|
+
* > Note: Only one of `durationDays`, `durationHours` or `endDateTime` should be specified.
|
|
45226
45246
|
*/
|
|
45227
45247
|
endDateTime?: pulumi.Input<string>;
|
|
45228
45248
|
}
|
|
45229
45249
|
interface EligibleRoleAssignmentTicket {
|
|
45230
45250
|
/**
|
|
45231
|
-
*
|
|
45251
|
+
* User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
|
|
45232
45252
|
*/
|
|
45233
45253
|
number?: pulumi.Input<string>;
|
|
45234
45254
|
/**
|
|
45235
|
-
*
|
|
45255
|
+
* User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
|
|
45236
45256
|
*/
|
|
45237
45257
|
system?: pulumi.Input<string>;
|
|
45238
45258
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -10217,7 +10217,7 @@ export declare namespace appservice {
|
|
|
10217
10217
|
*/
|
|
10218
10218
|
nodeVersion?: string;
|
|
10219
10219
|
/**
|
|
10220
|
-
* The version of PowerShell Core to run. Possible values are `7`, and `7.
|
|
10220
|
+
* The version of PowerShell Core to run. Possible values are `7`, `7.2`, and `7.4`.
|
|
10221
10221
|
*/
|
|
10222
10222
|
powershellCoreVersion?: string;
|
|
10223
10223
|
/**
|
|
@@ -11193,7 +11193,7 @@ export declare namespace appservice {
|
|
|
11193
11193
|
*/
|
|
11194
11194
|
nodeVersion?: string;
|
|
11195
11195
|
/**
|
|
11196
|
-
* The version of PowerShell Core to use. Possibles values are `7` , and `7.
|
|
11196
|
+
* The version of PowerShell Core to use. Possibles values are `7` , `7.2`, and `7.4`.
|
|
11197
11197
|
*/
|
|
11198
11198
|
powershellCoreVersion?: string;
|
|
11199
11199
|
/**
|
|
@@ -15211,7 +15211,7 @@ export declare namespace appservice {
|
|
|
15211
15211
|
*/
|
|
15212
15212
|
nodeVersion?: string;
|
|
15213
15213
|
/**
|
|
15214
|
-
* The version of PowerShell Core to run. Possible values are `7`, and `7.
|
|
15214
|
+
* The version of PowerShell Core to run. Possible values are `7`, `7.2`, and `7.4`.
|
|
15215
15215
|
*
|
|
15216
15216
|
* > **NOTE:** A value of `7` will provide the latest stable version. `7.2` is in preview at the time of writing.
|
|
15217
15217
|
*/
|
|
@@ -16147,7 +16147,7 @@ export declare namespace appservice {
|
|
|
16147
16147
|
*/
|
|
16148
16148
|
nodeVersion?: string;
|
|
16149
16149
|
/**
|
|
16150
|
-
* The PowerShell Core version to use. Possible values are `7`, and `7.
|
|
16150
|
+
* The PowerShell Core version to use. Possible values are `7`, `7.2`, and `7.4`.
|
|
16151
16151
|
*/
|
|
16152
16152
|
powershellCoreVersion?: string;
|
|
16153
16153
|
/**
|
|
@@ -27155,6 +27155,10 @@ export declare namespace config {
|
|
|
27155
27155
|
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be permanently deleted (e.g purged), when destroyed
|
|
27156
27156
|
*/
|
|
27157
27157
|
purgeSoftDeletedCertificatesOnDestroy?: boolean;
|
|
27158
|
+
/**
|
|
27159
|
+
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModuleKey` resources will be permanently deleted (e.g purged), when destroyed
|
|
27160
|
+
*/
|
|
27161
|
+
purgeSoftDeletedHardwareSecurityModuleKeysOnDestroy?: boolean;
|
|
27158
27162
|
/**
|
|
27159
27163
|
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModule` resources will be permanently deleted (e.g purged), when destroyed
|
|
27160
27164
|
*/
|
|
@@ -27171,6 +27175,10 @@ export declare namespace config {
|
|
|
27171
27175
|
* When enabled soft-deleted `azure.keyvault.Certificate` resources will be restored, instead of creating new ones
|
|
27172
27176
|
*/
|
|
27173
27177
|
recoverSoftDeletedCertificates?: boolean;
|
|
27178
|
+
/**
|
|
27179
|
+
* When enabled soft-deleted `azure.keyvault.ManagedHardwareSecurityModuleKey` resources will be restored, instead of creating new ones
|
|
27180
|
+
*/
|
|
27181
|
+
recoverSoftDeletedHardwareSecurityModuleKeys?: boolean;
|
|
27174
27182
|
/**
|
|
27175
27183
|
* When enabled soft-deleted `azure.keyvault.KeyVault` resources will be restored, instead of creating new ones
|
|
27176
27184
|
*/
|
|
@@ -29121,7 +29129,7 @@ export declare namespace containerapp {
|
|
|
29121
29129
|
principalId: string;
|
|
29122
29130
|
tenantId: string;
|
|
29123
29131
|
/**
|
|
29124
|
-
* The type of identity used for the Container App Job. Possible values are `SystemAssigned` and `None`. Defaults to `None`.
|
|
29132
|
+
* The type of identity used for the Container App Job. Possible values are `SystemAssigned`, `UserAssigned` and `None`. Defaults to `None`.
|
|
29125
29133
|
*/
|
|
29126
29134
|
type: string;
|
|
29127
29135
|
}
|
|
@@ -36943,6 +36951,16 @@ export declare namespace elasticsan {
|
|
|
36943
36951
|
*/
|
|
36944
36952
|
tier?: string;
|
|
36945
36953
|
}
|
|
36954
|
+
interface GetSkus {
|
|
36955
|
+
/**
|
|
36956
|
+
* The name of this Elastic SAN.
|
|
36957
|
+
*/
|
|
36958
|
+
name: string;
|
|
36959
|
+
/**
|
|
36960
|
+
* The SKU tier.
|
|
36961
|
+
*/
|
|
36962
|
+
tier: string;
|
|
36963
|
+
}
|
|
36946
36964
|
interface VolumeCreateSource {
|
|
36947
36965
|
/**
|
|
36948
36966
|
* Specifies the ID of the source to create the Elastic SAN Volume from. Changing this forces a new resource to be created.
|
|
@@ -43993,6 +44011,12 @@ export declare namespace loadtest {
|
|
|
43993
44011
|
}
|
|
43994
44012
|
export declare namespace loganalytics {
|
|
43995
44013
|
interface ClusterIdentity {
|
|
44014
|
+
/**
|
|
44015
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this Windows Web App Slot.
|
|
44016
|
+
*
|
|
44017
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned`.
|
|
44018
|
+
*/
|
|
44019
|
+
identityIds?: string[];
|
|
43996
44020
|
/**
|
|
43997
44021
|
* The Principal ID associated with this Managed Service Identity.
|
|
43998
44022
|
*/
|
|
@@ -44002,7 +44026,7 @@ export declare namespace loganalytics {
|
|
|
44002
44026
|
*/
|
|
44003
44027
|
tenantId: string;
|
|
44004
44028
|
/**
|
|
44005
|
-
* Specifies the type of Managed Service Identity that should be configured on this Log Analytics Cluster.
|
|
44029
|
+
* Specifies the type of Managed Service Identity that should be configured on this Log Analytics Cluster. Possible values are `SystemAssigned` and `UserAssigned`. Changing this forces a new resource to be created.
|
|
44006
44030
|
*
|
|
44007
44031
|
* > **NOTE:** The assigned `principalId` and `tenantId` can be retrieved after the identity `type` has been set to `SystemAssigned` and the Log Analytics Cluster has been created. More details are available below.
|
|
44008
44032
|
*/
|
|
@@ -52337,7 +52361,9 @@ export declare namespace network {
|
|
|
52337
52361
|
/**
|
|
52338
52362
|
* Specifies a list of User Assigned Managed Identity IDs to be assigned to this Application Gateway.
|
|
52339
52363
|
*/
|
|
52340
|
-
identityIds
|
|
52364
|
+
identityIds?: string[];
|
|
52365
|
+
principalId: string;
|
|
52366
|
+
tenantId: string;
|
|
52341
52367
|
/**
|
|
52342
52368
|
* Specifies the type of Managed Service Identity that should be configured on this Application Gateway. Only possible value is `UserAssigned`.
|
|
52343
52369
|
*/
|
|
@@ -53890,6 +53916,8 @@ export declare namespace network {
|
|
|
53890
53916
|
* The list of User Assigned Managed Identity IDs assigned to this Application Gateway.
|
|
53891
53917
|
*/
|
|
53892
53918
|
identityIds: string[];
|
|
53919
|
+
principalId: string;
|
|
53920
|
+
tenantId: string;
|
|
53893
53921
|
/**
|
|
53894
53922
|
* The type of Managed Service Identity that is configured on this Application Gateway.
|
|
53895
53923
|
*/
|
|
@@ -57597,69 +57625,73 @@ export declare namespace paloalto {
|
|
|
57597
57625
|
export declare namespace pim {
|
|
57598
57626
|
interface ActiveRoleAssignmentSchedule {
|
|
57599
57627
|
/**
|
|
57600
|
-
*
|
|
57628
|
+
* An `expiration` block as defined above.
|
|
57601
57629
|
*/
|
|
57602
57630
|
expiration?: outputs.pim.ActiveRoleAssignmentScheduleExpiration;
|
|
57603
57631
|
/**
|
|
57604
|
-
* The start date
|
|
57632
|
+
* The start date/time of the role assignment. Changing this forces a new resource to be created.
|
|
57605
57633
|
*/
|
|
57606
57634
|
startDateTime: string;
|
|
57607
57635
|
}
|
|
57608
57636
|
interface ActiveRoleAssignmentScheduleExpiration {
|
|
57609
57637
|
/**
|
|
57610
|
-
* The duration of the role assignment in days.
|
|
57638
|
+
* The duration of the role assignment in days. Changing this forces a new resource to be created.
|
|
57611
57639
|
*/
|
|
57612
57640
|
durationDays: number;
|
|
57613
57641
|
/**
|
|
57614
|
-
* The duration of the role assignment in hours.
|
|
57642
|
+
* The duration of the role assignment in hours. Changing this forces a new resource to be created.
|
|
57615
57643
|
*/
|
|
57616
57644
|
durationHours: number;
|
|
57617
57645
|
/**
|
|
57618
|
-
* The end date
|
|
57646
|
+
* The end date/time of the role assignment. Changing this forces a new resource to be created.
|
|
57647
|
+
*
|
|
57648
|
+
* > Note: Only one of `durationDays`, `durationHours` or `endDateTime` should be specified.
|
|
57619
57649
|
*/
|
|
57620
57650
|
endDateTime: string;
|
|
57621
57651
|
}
|
|
57622
57652
|
interface ActiveRoleAssignmentTicket {
|
|
57623
57653
|
/**
|
|
57624
|
-
*
|
|
57654
|
+
* User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
|
|
57625
57655
|
*/
|
|
57626
57656
|
number?: string;
|
|
57627
57657
|
/**
|
|
57628
|
-
*
|
|
57658
|
+
* User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
|
|
57629
57659
|
*/
|
|
57630
57660
|
system?: string;
|
|
57631
57661
|
}
|
|
57632
57662
|
interface EligibleRoleAssignmentSchedule {
|
|
57633
57663
|
/**
|
|
57634
|
-
*
|
|
57664
|
+
* An `expiration` block as defined above.
|
|
57635
57665
|
*/
|
|
57636
57666
|
expiration?: outputs.pim.EligibleRoleAssignmentScheduleExpiration;
|
|
57637
57667
|
/**
|
|
57638
|
-
* The start date
|
|
57668
|
+
* The start date/time of the role assignment. Changing this forces a new resource to be created.
|
|
57639
57669
|
*/
|
|
57640
57670
|
startDateTime: string;
|
|
57641
57671
|
}
|
|
57642
57672
|
interface EligibleRoleAssignmentScheduleExpiration {
|
|
57643
57673
|
/**
|
|
57644
|
-
* The duration of the role assignment in days.
|
|
57674
|
+
* The duration of the role assignment in days. Changing this forces a new resource to be created.
|
|
57645
57675
|
*/
|
|
57646
57676
|
durationDays: number;
|
|
57647
57677
|
/**
|
|
57648
|
-
* The duration of the role assignment in hours.
|
|
57678
|
+
* The duration of the role assignment in hours. Changing this forces a new resource to be created.
|
|
57649
57679
|
*/
|
|
57650
57680
|
durationHours: number;
|
|
57651
57681
|
/**
|
|
57652
|
-
* The end date
|
|
57682
|
+
* The end date/time of the role assignment. Changing this forces a new resource to be created.
|
|
57683
|
+
*
|
|
57684
|
+
* > Note: Only one of `durationDays`, `durationHours` or `endDateTime` should be specified.
|
|
57653
57685
|
*/
|
|
57654
57686
|
endDateTime: string;
|
|
57655
57687
|
}
|
|
57656
57688
|
interface EligibleRoleAssignmentTicket {
|
|
57657
57689
|
/**
|
|
57658
|
-
*
|
|
57690
|
+
* User-supplied ticket number to be included with the request. Changing this forces a new resource to be created.
|
|
57659
57691
|
*/
|
|
57660
57692
|
number?: string;
|
|
57661
57693
|
/**
|
|
57662
|
-
*
|
|
57694
|
+
* User-supplied ticket system name to be included with the request. Changing this forces a new resource to be created.
|
|
57663
57695
|
*/
|
|
57664
57696
|
system?: string;
|
|
57665
57697
|
}
|