@pulumi/azure 5.85.0-alpha.1721196325 → 5.85.0-alpha.1721329136

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/types/input.d.ts CHANGED
@@ -14355,8 +14355,17 @@ export declare namespace automation {
14355
14355
  parameters?: pulumi.Input<pulumi.Input<inputs.automation.RunBookDraftParameter>[]>;
14356
14356
  }
14357
14357
  interface RunBookDraftContentLink {
14358
+ /**
14359
+ * A `hash` block as defined below.
14360
+ */
14358
14361
  hash?: pulumi.Input<inputs.automation.RunBookDraftContentLinkHash>;
14362
+ /**
14363
+ * The URI of the runbook content.
14364
+ */
14359
14365
  uri: pulumi.Input<string>;
14366
+ /**
14367
+ * Specifies the version of the content
14368
+ */
14360
14369
  version?: pulumi.Input<string>;
14361
14370
  }
14362
14371
  interface RunBookDraftContentLinkHash {
@@ -15501,6 +15510,9 @@ export declare namespace batch {
15501
15510
  }
15502
15511
  interface PoolStartTaskContainerRegistry {
15503
15512
  password?: pulumi.Input<string>;
15513
+ /**
15514
+ * The container registry URL. Changing this forces a new resource to be created.
15515
+ */
15504
15516
  registryServer: pulumi.Input<string>;
15505
15517
  /**
15506
15518
  * The User Assigned Identity to use for Container Registry access.
@@ -17988,6 +18000,9 @@ export declare namespace compute {
17988
18000
  * @deprecated `configurationReferenceBlobUri` has been renamed to `configurationBlobUri` and will be deprecated in 4.0
17989
18001
  */
17990
18002
  configurationReferenceBlobUri?: pulumi.Input<string>;
18003
+ /**
18004
+ * Specifies the order in which the packages have to be installed. Possible values are between `0` and `2147483647`. Defaults to `0`. Changing this forces a new resource to be created.
18005
+ */
17991
18006
  order?: pulumi.Input<number>;
17992
18007
  /**
17993
18008
  * @deprecated `packageReferenceId` has been renamed to `versionId` and will be deprecated in 4.0
@@ -19662,6 +19677,9 @@ export declare namespace compute {
19662
19677
  * Specifies the name of the Virtual Machine. Changing this forces a new resource to be created.
19663
19678
  */
19664
19679
  computerName: pulumi.Input<string>;
19680
+ /**
19681
+ * Specifies custom data to supply to the machine. On Linux-based systems, this can be used as a cloud-init script. On other systems, this will be copied as a file on disk. Internally, this provider will base64 encode this value before sending it to the API. The maximum length of the binary array is 65535 bytes. Changing this forces a new resource to be created.
19682
+ */
19665
19683
  customData?: pulumi.Input<string>;
19666
19684
  }
19667
19685
  interface VirtualMachineOsProfileLinuxConfig {
@@ -20226,6 +20244,9 @@ export declare namespace compute {
20226
20244
  * @deprecated `configurationReferenceBlobUri` has been renamed to `configurationBlobUri` and will be deprecated in 4.0
20227
20245
  */
20228
20246
  configurationReferenceBlobUri?: pulumi.Input<string>;
20247
+ /**
20248
+ * Specifies the order in which the packages have to be installed. Possible values are between `0` and `2147483647`. Defaults to `0`. Changing this forces a new resource to be created.
20249
+ */
20229
20250
  order?: pulumi.Input<number>;
20230
20251
  /**
20231
20252
  * @deprecated `packageReferenceId` has been renamed to `versionId` and will be deprecated in 4.0
@@ -23928,7 +23949,17 @@ export declare namespace containerservice {
23928
23949
  * > **Note:** When `networkPolicy` is set to `cilium`, the `networkDataPlane` field must be set to `cilium`.
23929
23950
  */
23930
23951
  networkPolicy?: pulumi.Input<string>;
23952
+ /**
23953
+ * The ID of the Public IP Addresses which should be used for outbound communication for the cluster load balancer.
23954
+ *
23955
+ * > **Note:** Set `outboundIpAddressIds` to an empty slice `[]` in order to unlink it from the cluster. Unlinking a `outboundIpAddressIds` will revert the load balancing for the cluster back to a managed one.
23956
+ */
23931
23957
  outboundIpAddressIds?: pulumi.Input<pulumi.Input<string>[]>;
23958
+ /**
23959
+ * The ID of the outbound Public IP Address Prefixes which should be used for the cluster load balancer.
23960
+ *
23961
+ * > **Note:** Set `outboundIpPrefixIds` to an empty slice `[]` in order to unlink it from the cluster. Unlinking a `outboundIpPrefixIds` will revert the load balancing for the cluster back to a managed one.
23962
+ */
23932
23963
  outboundIpPrefixIds?: pulumi.Input<pulumi.Input<string>[]>;
23933
23964
  /**
23934
23965
  * The outbound (egress) routing method which should be used for this Kubernetes Cluster. Possible values are `loadBalancer`, `userDefinedRouting`, `managedNATGateway` and `userAssignedNATGateway`. Defaults to `loadBalancer`. More information on supported migration paths for `outboundType` can be found in [this documentation](https://learn.microsoft.com/azure/aks/egress-outboundtype#updating-outboundtype-after-cluster-creation).
@@ -24509,6 +24540,9 @@ export declare namespace containerservice {
24509
24540
  ipRange: pulumi.Input<string>;
24510
24541
  }
24511
24542
  interface RegistryNetworkRuleSetVirtualNetwork {
24543
+ /**
24544
+ * The behaviour for requests matching this rule. At this time the only supported value is `Allow`
24545
+ */
24512
24546
  action: pulumi.Input<string>;
24513
24547
  subnetId: pulumi.Input<string>;
24514
24548
  }
@@ -24793,6 +24827,9 @@ export declare namespace containerservice {
24793
24827
  enabled?: pulumi.Input<boolean>;
24794
24828
  }
24795
24829
  interface TokenPasswordPassword1 {
24830
+ /**
24831
+ * The expiration date of the password in RFC3339 format. If not specified, the password never expires. Changing this forces a new resource to be created.
24832
+ */
24796
24833
  expiry?: pulumi.Input<string>;
24797
24834
  /**
24798
24835
  * The value of the password (Sensitive).
@@ -24800,6 +24837,9 @@ export declare namespace containerservice {
24800
24837
  value?: pulumi.Input<string>;
24801
24838
  }
24802
24839
  interface TokenPasswordPassword2 {
24840
+ /**
24841
+ * The expiration date of the password in RFC3339 format. If not specified, the password never expires. Changing this forces a new resource to be created.
24842
+ */
24803
24843
  expiry?: pulumi.Input<string>;
24804
24844
  /**
24805
24845
  * The value of the password (Sensitive).
@@ -25046,6 +25086,9 @@ export declare namespace core {
25046
25086
  }
25047
25087
  interface ResourceGroupPolicyAssignmentOverrideSelector {
25048
25088
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25089
+ /**
25090
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25091
+ */
25049
25092
  kind?: pulumi.Input<string>;
25050
25093
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25051
25094
  }
@@ -25061,6 +25104,9 @@ export declare namespace core {
25061
25104
  }
25062
25105
  interface ResourceGroupPolicyAssignmentResourceSelectorSelector {
25063
25106
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25107
+ /**
25108
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25109
+ */
25064
25110
  kind: pulumi.Input<string>;
25065
25111
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25066
25112
  }
@@ -25106,6 +25152,9 @@ export declare namespace core {
25106
25152
  }
25107
25153
  interface ResourcePolicyAssignmentOverrideSelector {
25108
25154
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25155
+ /**
25156
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25157
+ */
25109
25158
  kind?: pulumi.Input<string>;
25110
25159
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25111
25160
  }
@@ -25121,6 +25170,9 @@ export declare namespace core {
25121
25170
  }
25122
25171
  interface ResourcePolicyAssignmentResourceSelectorSelector {
25123
25172
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25173
+ /**
25174
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25175
+ */
25124
25176
  kind: pulumi.Input<string>;
25125
25177
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25126
25178
  }
@@ -25259,6 +25311,9 @@ export declare namespace core {
25259
25311
  }
25260
25312
  interface SubscriptionPolicyAssignmentOverrideSelector {
25261
25313
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25314
+ /**
25315
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25316
+ */
25262
25317
  kind?: pulumi.Input<string>;
25263
25318
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25264
25319
  }
@@ -25274,6 +25329,9 @@ export declare namespace core {
25274
25329
  }
25275
25330
  interface SubscriptionPolicyAssignmentResourceSelectorSelector {
25276
25331
  ins?: pulumi.Input<pulumi.Input<string>[]>;
25332
+ /**
25333
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
25334
+ */
25277
25335
  kind: pulumi.Input<string>;
25278
25336
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
25279
25337
  }
@@ -27422,10 +27480,19 @@ export declare namespace datafactory {
27422
27480
  }
27423
27481
  interface IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword {
27424
27482
  linkedServiceName: pulumi.Input<string>;
27483
+ /**
27484
+ * A map of parameters to associate with the Key Vault Data Factory Linked Service.
27485
+ */
27425
27486
  parameters?: pulumi.Input<{
27426
27487
  [key: string]: pulumi.Input<string>;
27427
27488
  }>;
27489
+ /**
27490
+ * Specifies the secret name in Azure Key Vault.
27491
+ */
27428
27492
  secretName: pulumi.Input<string>;
27493
+ /**
27494
+ * Specifies the secret version in Azure Key Vault.
27495
+ */
27429
27496
  secretVersion?: pulumi.Input<string>;
27430
27497
  }
27431
27498
  interface IntegrationRuntimeSsisExpressCustomSetupComponent {
@@ -27444,10 +27511,19 @@ export declare namespace datafactory {
27444
27511
  }
27445
27512
  interface IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense {
27446
27513
  linkedServiceName: pulumi.Input<string>;
27514
+ /**
27515
+ * A map of parameters to associate with the Key Vault Data Factory Linked Service.
27516
+ */
27447
27517
  parameters?: pulumi.Input<{
27448
27518
  [key: string]: pulumi.Input<string>;
27449
27519
  }>;
27520
+ /**
27521
+ * Specifies the secret name in Azure Key Vault.
27522
+ */
27450
27523
  secretName: pulumi.Input<string>;
27524
+ /**
27525
+ * Specifies the secret version in Azure Key Vault.
27526
+ */
27451
27527
  secretVersion?: pulumi.Input<string>;
27452
27528
  }
27453
27529
  interface IntegrationRuntimeSsisExpressVnetIntegration {
@@ -29000,77 +29076,194 @@ export declare namespace eventgrid {
29000
29076
  stringNotIns?: pulumi.Input<pulumi.Input<inputs.eventgrid.EventSubscriptionAdvancedFilterStringNotIn>[]>;
29001
29077
  }
29002
29078
  interface EventSubscriptionAdvancedFilterBoolEqual {
29079
+ /**
29080
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29081
+ */
29003
29082
  key: pulumi.Input<string>;
29004
29083
  value: pulumi.Input<boolean>;
29005
29084
  }
29006
29085
  interface EventSubscriptionAdvancedFilterIsNotNull {
29086
+ /**
29087
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29088
+ */
29007
29089
  key: pulumi.Input<string>;
29008
29090
  }
29009
29091
  interface EventSubscriptionAdvancedFilterIsNullOrUndefined {
29092
+ /**
29093
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29094
+ */
29010
29095
  key: pulumi.Input<string>;
29011
29096
  }
29012
29097
  interface EventSubscriptionAdvancedFilterNumberGreaterThan {
29098
+ /**
29099
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29100
+ */
29013
29101
  key: pulumi.Input<string>;
29014
29102
  value: pulumi.Input<number>;
29015
29103
  }
29016
29104
  interface EventSubscriptionAdvancedFilterNumberGreaterThanOrEqual {
29105
+ /**
29106
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29107
+ */
29017
29108
  key: pulumi.Input<string>;
29018
29109
  value: pulumi.Input<number>;
29019
29110
  }
29020
29111
  interface EventSubscriptionAdvancedFilterNumberIn {
29112
+ /**
29113
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29114
+ */
29021
29115
  key: pulumi.Input<string>;
29116
+ /**
29117
+ * Specifies an array of values to compare to when using a multiple values operator.
29118
+ *
29119
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29120
+ */
29022
29121
  values: pulumi.Input<pulumi.Input<number>[]>;
29023
29122
  }
29024
29123
  interface EventSubscriptionAdvancedFilterNumberInRange {
29124
+ /**
29125
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29126
+ */
29025
29127
  key: pulumi.Input<string>;
29128
+ /**
29129
+ * Specifies an array of values to compare to when using a multiple values operator.
29130
+ *
29131
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29132
+ */
29026
29133
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29027
29134
  }
29028
29135
  interface EventSubscriptionAdvancedFilterNumberLessThan {
29136
+ /**
29137
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29138
+ */
29029
29139
  key: pulumi.Input<string>;
29030
29140
  value: pulumi.Input<number>;
29031
29141
  }
29032
29142
  interface EventSubscriptionAdvancedFilterNumberLessThanOrEqual {
29143
+ /**
29144
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29145
+ */
29033
29146
  key: pulumi.Input<string>;
29034
29147
  value: pulumi.Input<number>;
29035
29148
  }
29036
29149
  interface EventSubscriptionAdvancedFilterNumberNotIn {
29150
+ /**
29151
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29152
+ */
29037
29153
  key: pulumi.Input<string>;
29154
+ /**
29155
+ * Specifies an array of values to compare to when using a multiple values operator.
29156
+ *
29157
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29158
+ */
29038
29159
  values: pulumi.Input<pulumi.Input<number>[]>;
29039
29160
  }
29040
29161
  interface EventSubscriptionAdvancedFilterNumberNotInRange {
29162
+ /**
29163
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29164
+ */
29041
29165
  key: pulumi.Input<string>;
29166
+ /**
29167
+ * Specifies an array of values to compare to when using a multiple values operator.
29168
+ *
29169
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29170
+ */
29042
29171
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29043
29172
  }
29044
29173
  interface EventSubscriptionAdvancedFilterStringBeginsWith {
29174
+ /**
29175
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29176
+ */
29045
29177
  key: pulumi.Input<string>;
29178
+ /**
29179
+ * Specifies an array of values to compare to when using a multiple values operator.
29180
+ *
29181
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29182
+ */
29046
29183
  values: pulumi.Input<pulumi.Input<string>[]>;
29047
29184
  }
29048
29185
  interface EventSubscriptionAdvancedFilterStringContain {
29186
+ /**
29187
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29188
+ */
29049
29189
  key: pulumi.Input<string>;
29190
+ /**
29191
+ * Specifies an array of values to compare to when using a multiple values operator.
29192
+ *
29193
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29194
+ */
29050
29195
  values: pulumi.Input<pulumi.Input<string>[]>;
29051
29196
  }
29052
29197
  interface EventSubscriptionAdvancedFilterStringEndsWith {
29198
+ /**
29199
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29200
+ */
29053
29201
  key: pulumi.Input<string>;
29202
+ /**
29203
+ * Specifies an array of values to compare to when using a multiple values operator.
29204
+ *
29205
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29206
+ */
29054
29207
  values: pulumi.Input<pulumi.Input<string>[]>;
29055
29208
  }
29056
29209
  interface EventSubscriptionAdvancedFilterStringIn {
29210
+ /**
29211
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29212
+ */
29057
29213
  key: pulumi.Input<string>;
29214
+ /**
29215
+ * Specifies an array of values to compare to when using a multiple values operator.
29216
+ *
29217
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29218
+ */
29058
29219
  values: pulumi.Input<pulumi.Input<string>[]>;
29059
29220
  }
29060
29221
  interface EventSubscriptionAdvancedFilterStringNotBeginsWith {
29222
+ /**
29223
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29224
+ */
29061
29225
  key: pulumi.Input<string>;
29226
+ /**
29227
+ * Specifies an array of values to compare to when using a multiple values operator.
29228
+ *
29229
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29230
+ */
29062
29231
  values: pulumi.Input<pulumi.Input<string>[]>;
29063
29232
  }
29064
29233
  interface EventSubscriptionAdvancedFilterStringNotContain {
29234
+ /**
29235
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29236
+ */
29065
29237
  key: pulumi.Input<string>;
29238
+ /**
29239
+ * Specifies an array of values to compare to when using a multiple values operator.
29240
+ *
29241
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29242
+ */
29066
29243
  values: pulumi.Input<pulumi.Input<string>[]>;
29067
29244
  }
29068
29245
  interface EventSubscriptionAdvancedFilterStringNotEndsWith {
29246
+ /**
29247
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29248
+ */
29069
29249
  key: pulumi.Input<string>;
29250
+ /**
29251
+ * Specifies an array of values to compare to when using a multiple values operator.
29252
+ *
29253
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29254
+ */
29070
29255
  values: pulumi.Input<pulumi.Input<string>[]>;
29071
29256
  }
29072
29257
  interface EventSubscriptionAdvancedFilterStringNotIn {
29258
+ /**
29259
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29260
+ */
29073
29261
  key: pulumi.Input<string>;
29262
+ /**
29263
+ * Specifies an array of values to compare to when using a multiple values operator.
29264
+ *
29265
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29266
+ */
29074
29267
  values: pulumi.Input<pulumi.Input<string>[]>;
29075
29268
  }
29076
29269
  interface EventSubscriptionAzureFunctionEndpoint {
@@ -29284,77 +29477,194 @@ export declare namespace eventgrid {
29284
29477
  stringNotIns?: pulumi.Input<pulumi.Input<inputs.eventgrid.SystemTopicEventSubscriptionAdvancedFilterStringNotIn>[]>;
29285
29478
  }
29286
29479
  interface SystemTopicEventSubscriptionAdvancedFilterBoolEqual {
29480
+ /**
29481
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29482
+ */
29287
29483
  key: pulumi.Input<string>;
29288
29484
  value: pulumi.Input<boolean>;
29289
29485
  }
29290
29486
  interface SystemTopicEventSubscriptionAdvancedFilterIsNotNull {
29487
+ /**
29488
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29489
+ */
29291
29490
  key: pulumi.Input<string>;
29292
29491
  }
29293
29492
  interface SystemTopicEventSubscriptionAdvancedFilterIsNullOrUndefined {
29493
+ /**
29494
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29495
+ */
29294
29496
  key: pulumi.Input<string>;
29295
29497
  }
29296
29498
  interface SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThan {
29499
+ /**
29500
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29501
+ */
29297
29502
  key: pulumi.Input<string>;
29298
29503
  value: pulumi.Input<number>;
29299
29504
  }
29300
29505
  interface SystemTopicEventSubscriptionAdvancedFilterNumberGreaterThanOrEqual {
29506
+ /**
29507
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29508
+ */
29301
29509
  key: pulumi.Input<string>;
29302
29510
  value: pulumi.Input<number>;
29303
29511
  }
29304
29512
  interface SystemTopicEventSubscriptionAdvancedFilterNumberIn {
29513
+ /**
29514
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29515
+ */
29305
29516
  key: pulumi.Input<string>;
29517
+ /**
29518
+ * Specifies an array of values to compare to when using a multiple values operator.
29519
+ *
29520
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29521
+ */
29306
29522
  values: pulumi.Input<pulumi.Input<number>[]>;
29307
29523
  }
29308
29524
  interface SystemTopicEventSubscriptionAdvancedFilterNumberInRange {
29525
+ /**
29526
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29527
+ */
29309
29528
  key: pulumi.Input<string>;
29529
+ /**
29530
+ * Specifies an array of values to compare to when using a multiple values operator.
29531
+ *
29532
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29533
+ */
29310
29534
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29311
29535
  }
29312
29536
  interface SystemTopicEventSubscriptionAdvancedFilterNumberLessThan {
29537
+ /**
29538
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29539
+ */
29313
29540
  key: pulumi.Input<string>;
29314
29541
  value: pulumi.Input<number>;
29315
29542
  }
29316
29543
  interface SystemTopicEventSubscriptionAdvancedFilterNumberLessThanOrEqual {
29544
+ /**
29545
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29546
+ */
29317
29547
  key: pulumi.Input<string>;
29318
29548
  value: pulumi.Input<number>;
29319
29549
  }
29320
29550
  interface SystemTopicEventSubscriptionAdvancedFilterNumberNotIn {
29551
+ /**
29552
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29553
+ */
29321
29554
  key: pulumi.Input<string>;
29555
+ /**
29556
+ * Specifies an array of values to compare to when using a multiple values operator.
29557
+ *
29558
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29559
+ */
29322
29560
  values: pulumi.Input<pulumi.Input<number>[]>;
29323
29561
  }
29324
29562
  interface SystemTopicEventSubscriptionAdvancedFilterNumberNotInRange {
29563
+ /**
29564
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29565
+ */
29325
29566
  key: pulumi.Input<string>;
29567
+ /**
29568
+ * Specifies an array of values to compare to when using a multiple values operator.
29569
+ *
29570
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29571
+ */
29326
29572
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29327
29573
  }
29328
29574
  interface SystemTopicEventSubscriptionAdvancedFilterStringBeginsWith {
29575
+ /**
29576
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29577
+ */
29329
29578
  key: pulumi.Input<string>;
29579
+ /**
29580
+ * Specifies an array of values to compare to when using a multiple values operator.
29581
+ *
29582
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29583
+ */
29330
29584
  values: pulumi.Input<pulumi.Input<string>[]>;
29331
29585
  }
29332
29586
  interface SystemTopicEventSubscriptionAdvancedFilterStringContain {
29587
+ /**
29588
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29589
+ */
29333
29590
  key: pulumi.Input<string>;
29591
+ /**
29592
+ * Specifies an array of values to compare to when using a multiple values operator.
29593
+ *
29594
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29595
+ */
29334
29596
  values: pulumi.Input<pulumi.Input<string>[]>;
29335
29597
  }
29336
29598
  interface SystemTopicEventSubscriptionAdvancedFilterStringEndsWith {
29599
+ /**
29600
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29601
+ */
29337
29602
  key: pulumi.Input<string>;
29603
+ /**
29604
+ * Specifies an array of values to compare to when using a multiple values operator.
29605
+ *
29606
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29607
+ */
29338
29608
  values: pulumi.Input<pulumi.Input<string>[]>;
29339
29609
  }
29340
29610
  interface SystemTopicEventSubscriptionAdvancedFilterStringIn {
29611
+ /**
29612
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29613
+ */
29341
29614
  key: pulumi.Input<string>;
29615
+ /**
29616
+ * Specifies an array of values to compare to when using a multiple values operator.
29617
+ *
29618
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29619
+ */
29342
29620
  values: pulumi.Input<pulumi.Input<string>[]>;
29343
29621
  }
29344
29622
  interface SystemTopicEventSubscriptionAdvancedFilterStringNotBeginsWith {
29623
+ /**
29624
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29625
+ */
29345
29626
  key: pulumi.Input<string>;
29627
+ /**
29628
+ * Specifies an array of values to compare to when using a multiple values operator.
29629
+ *
29630
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29631
+ */
29346
29632
  values: pulumi.Input<pulumi.Input<string>[]>;
29347
29633
  }
29348
29634
  interface SystemTopicEventSubscriptionAdvancedFilterStringNotContain {
29635
+ /**
29636
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29637
+ */
29349
29638
  key: pulumi.Input<string>;
29639
+ /**
29640
+ * Specifies an array of values to compare to when using a multiple values operator.
29641
+ *
29642
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29643
+ */
29350
29644
  values: pulumi.Input<pulumi.Input<string>[]>;
29351
29645
  }
29352
29646
  interface SystemTopicEventSubscriptionAdvancedFilterStringNotEndsWith {
29647
+ /**
29648
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29649
+ */
29353
29650
  key: pulumi.Input<string>;
29651
+ /**
29652
+ * Specifies an array of values to compare to when using a multiple values operator.
29653
+ *
29654
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29655
+ */
29354
29656
  values: pulumi.Input<pulumi.Input<string>[]>;
29355
29657
  }
29356
29658
  interface SystemTopicEventSubscriptionAdvancedFilterStringNotIn {
29659
+ /**
29660
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
29661
+ */
29357
29662
  key: pulumi.Input<string>;
29663
+ /**
29664
+ * Specifies an array of values to compare to when using a multiple values operator.
29665
+ *
29666
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
29667
+ */
29358
29668
  values: pulumi.Input<pulumi.Input<string>[]>;
29359
29669
  }
29360
29670
  interface SystemTopicEventSubscriptionAzureFunctionEndpoint {
@@ -29920,77 +30230,194 @@ export declare namespace eventhub {
29920
30230
  stringNotIns?: pulumi.Input<pulumi.Input<inputs.eventhub.EventSubscriptionAdvancedFilterStringNotIn>[]>;
29921
30231
  }
29922
30232
  interface EventSubscriptionAdvancedFilterBoolEqual {
30233
+ /**
30234
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30235
+ */
29923
30236
  key: pulumi.Input<string>;
29924
30237
  value: pulumi.Input<boolean>;
29925
30238
  }
29926
30239
  interface EventSubscriptionAdvancedFilterIsNotNull {
30240
+ /**
30241
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30242
+ */
29927
30243
  key: pulumi.Input<string>;
29928
30244
  }
29929
30245
  interface EventSubscriptionAdvancedFilterIsNullOrUndefined {
30246
+ /**
30247
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30248
+ */
29930
30249
  key: pulumi.Input<string>;
29931
30250
  }
29932
30251
  interface EventSubscriptionAdvancedFilterNumberGreaterThan {
30252
+ /**
30253
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30254
+ */
29933
30255
  key: pulumi.Input<string>;
29934
30256
  value: pulumi.Input<number>;
29935
30257
  }
29936
30258
  interface EventSubscriptionAdvancedFilterNumberGreaterThanOrEqual {
30259
+ /**
30260
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30261
+ */
29937
30262
  key: pulumi.Input<string>;
29938
30263
  value: pulumi.Input<number>;
29939
30264
  }
29940
30265
  interface EventSubscriptionAdvancedFilterNumberIn {
30266
+ /**
30267
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30268
+ */
29941
30269
  key: pulumi.Input<string>;
30270
+ /**
30271
+ * Specifies an array of values to compare to when using a multiple values operator.
30272
+ *
30273
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30274
+ */
29942
30275
  values: pulumi.Input<pulumi.Input<number>[]>;
29943
30276
  }
29944
30277
  interface EventSubscriptionAdvancedFilterNumberInRange {
30278
+ /**
30279
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30280
+ */
29945
30281
  key: pulumi.Input<string>;
30282
+ /**
30283
+ * Specifies an array of values to compare to when using a multiple values operator.
30284
+ *
30285
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30286
+ */
29946
30287
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29947
30288
  }
29948
30289
  interface EventSubscriptionAdvancedFilterNumberLessThan {
30290
+ /**
30291
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30292
+ */
29949
30293
  key: pulumi.Input<string>;
29950
30294
  value: pulumi.Input<number>;
29951
30295
  }
29952
30296
  interface EventSubscriptionAdvancedFilterNumberLessThanOrEqual {
30297
+ /**
30298
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30299
+ */
29953
30300
  key: pulumi.Input<string>;
29954
30301
  value: pulumi.Input<number>;
29955
30302
  }
29956
30303
  interface EventSubscriptionAdvancedFilterNumberNotIn {
30304
+ /**
30305
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30306
+ */
29957
30307
  key: pulumi.Input<string>;
30308
+ /**
30309
+ * Specifies an array of values to compare to when using a multiple values operator.
30310
+ *
30311
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30312
+ */
29958
30313
  values: pulumi.Input<pulumi.Input<number>[]>;
29959
30314
  }
29960
30315
  interface EventSubscriptionAdvancedFilterNumberNotInRange {
30316
+ /**
30317
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30318
+ */
29961
30319
  key: pulumi.Input<string>;
30320
+ /**
30321
+ * Specifies an array of values to compare to when using a multiple values operator.
30322
+ *
30323
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30324
+ */
29962
30325
  values: pulumi.Input<pulumi.Input<pulumi.Input<number>[]>[]>;
29963
30326
  }
29964
30327
  interface EventSubscriptionAdvancedFilterStringBeginsWith {
30328
+ /**
30329
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30330
+ */
29965
30331
  key: pulumi.Input<string>;
30332
+ /**
30333
+ * Specifies an array of values to compare to when using a multiple values operator.
30334
+ *
30335
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30336
+ */
29966
30337
  values: pulumi.Input<pulumi.Input<string>[]>;
29967
30338
  }
29968
30339
  interface EventSubscriptionAdvancedFilterStringContain {
30340
+ /**
30341
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30342
+ */
29969
30343
  key: pulumi.Input<string>;
30344
+ /**
30345
+ * Specifies an array of values to compare to when using a multiple values operator.
30346
+ *
30347
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30348
+ */
29970
30349
  values: pulumi.Input<pulumi.Input<string>[]>;
29971
30350
  }
29972
30351
  interface EventSubscriptionAdvancedFilterStringEndsWith {
30352
+ /**
30353
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30354
+ */
29973
30355
  key: pulumi.Input<string>;
30356
+ /**
30357
+ * Specifies an array of values to compare to when using a multiple values operator.
30358
+ *
30359
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30360
+ */
29974
30361
  values: pulumi.Input<pulumi.Input<string>[]>;
29975
30362
  }
29976
30363
  interface EventSubscriptionAdvancedFilterStringIn {
30364
+ /**
30365
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30366
+ */
29977
30367
  key: pulumi.Input<string>;
30368
+ /**
30369
+ * Specifies an array of values to compare to when using a multiple values operator.
30370
+ *
30371
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30372
+ */
29978
30373
  values: pulumi.Input<pulumi.Input<string>[]>;
29979
30374
  }
29980
30375
  interface EventSubscriptionAdvancedFilterStringNotBeginsWith {
30376
+ /**
30377
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30378
+ */
29981
30379
  key: pulumi.Input<string>;
30380
+ /**
30381
+ * Specifies an array of values to compare to when using a multiple values operator.
30382
+ *
30383
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30384
+ */
29982
30385
  values: pulumi.Input<pulumi.Input<string>[]>;
29983
30386
  }
29984
30387
  interface EventSubscriptionAdvancedFilterStringNotContain {
30388
+ /**
30389
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30390
+ */
29985
30391
  key: pulumi.Input<string>;
30392
+ /**
30393
+ * Specifies an array of values to compare to when using a multiple values operator.
30394
+ *
30395
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30396
+ */
29986
30397
  values: pulumi.Input<pulumi.Input<string>[]>;
29987
30398
  }
29988
30399
  interface EventSubscriptionAdvancedFilterStringNotEndsWith {
30400
+ /**
30401
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30402
+ */
29989
30403
  key: pulumi.Input<string>;
30404
+ /**
30405
+ * Specifies an array of values to compare to when using a multiple values operator.
30406
+ *
30407
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30408
+ */
29990
30409
  values: pulumi.Input<pulumi.Input<string>[]>;
29991
30410
  }
29992
30411
  interface EventSubscriptionAdvancedFilterStringNotIn {
30412
+ /**
30413
+ * Specifies the field within the event data that you want to use for filtering. Type of the field can be a number, boolean, or string.
30414
+ */
29993
30415
  key: pulumi.Input<string>;
30416
+ /**
30417
+ * Specifies an array of values to compare to when using a multiple values operator.
30418
+ *
30419
+ * > **NOTE:** A maximum of total number of advanced filter values allowed on event subscription is 25.
30420
+ */
29994
30421
  values: pulumi.Input<pulumi.Input<string>[]>;
29995
30422
  }
29996
30423
  interface EventSubscriptionAzureFunctionEndpoint {
@@ -30940,8 +31367,17 @@ export declare namespace hdinsight {
30940
31367
  * Specifies the name for this HDInsight HBase Cluster. Changing this forces a new resource to be created.
30941
31368
  */
30942
31369
  name: pulumi.Input<string>;
31370
+ /**
31371
+ * Indicates whether this IP configuration is primary.
31372
+ */
30943
31373
  primary?: pulumi.Input<boolean>;
31374
+ /**
31375
+ * The private IP address of the IP configuration.
31376
+ */
30944
31377
  privateIpAddress?: pulumi.Input<string>;
31378
+ /**
31379
+ * The private IP allocation method. The only possible value now is `Dynamic`.
31380
+ */
30945
31381
  privateIpAllocationMethod?: pulumi.Input<string>;
30946
31382
  subnetId?: pulumi.Input<string>;
30947
31383
  }
@@ -31379,8 +31815,14 @@ export declare namespace hdinsight {
31379
31815
  * Specifies the name for this HDInsight Hadoop Cluster. Changing this forces a new resource to be created.
31380
31816
  */
31381
31817
  name: pulumi.Input<string>;
31818
+ /**
31819
+ * Indicates whether this IP configuration is primary.
31820
+ */
31382
31821
  primary?: pulumi.Input<boolean>;
31383
31822
  privateIpAddress?: pulumi.Input<string>;
31823
+ /**
31824
+ * The private IP allocation method. The only possible value now is `Dynamic`.
31825
+ */
31384
31826
  privateIpAllocationMethod?: pulumi.Input<string>;
31385
31827
  subnetId?: pulumi.Input<string>;
31386
31828
  }
@@ -31908,8 +32350,17 @@ export declare namespace hdinsight {
31908
32350
  * Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
31909
32351
  */
31910
32352
  name: pulumi.Input<string>;
32353
+ /**
32354
+ * Indicates whether this IP configuration is primary.
32355
+ */
31911
32356
  primary?: pulumi.Input<boolean>;
32357
+ /**
32358
+ * The private IP address of the IP configuration.
32359
+ */
31912
32360
  privateIpAddress?: pulumi.Input<string>;
32361
+ /**
32362
+ * The private IP allocation method. The only possible value now is `Dynamic`.
32363
+ */
31913
32364
  privateIpAllocationMethod?: pulumi.Input<string>;
31914
32365
  subnetId?: pulumi.Input<string>;
31915
32366
  }
@@ -32357,8 +32808,17 @@ export declare namespace hdinsight {
32357
32808
  * Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
32358
32809
  */
32359
32810
  name: pulumi.Input<string>;
32811
+ /**
32812
+ * Indicates whether this IP configuration is primary.
32813
+ */
32360
32814
  primary?: pulumi.Input<boolean>;
32815
+ /**
32816
+ * The private IP address of the IP configuration.
32817
+ */
32361
32818
  privateIpAddress?: pulumi.Input<string>;
32819
+ /**
32820
+ * The private IP allocation method. The only possible value now is `Dynamic`.
32821
+ */
32362
32822
  privateIpAllocationMethod?: pulumi.Input<string>;
32363
32823
  subnetId?: pulumi.Input<string>;
32364
32824
  }
@@ -32830,8 +33290,17 @@ export declare namespace hdinsight {
32830
33290
  * Specifies the name for this HDInsight Spark Cluster. Changing this forces a new resource to be created.
32831
33291
  */
32832
33292
  name: pulumi.Input<string>;
33293
+ /**
33294
+ * Indicates whether this IP configuration is primary.
33295
+ */
32833
33296
  primary?: pulumi.Input<boolean>;
33297
+ /**
33298
+ * The private IP address of the IP configuration.
33299
+ */
32834
33300
  privateIpAddress?: pulumi.Input<string>;
33301
+ /**
33302
+ * The private IP allocation method. The only possible value now is `Dynamic`.
33303
+ */
32835
33304
  privateIpAllocationMethod?: pulumi.Input<string>;
32836
33305
  subnetId?: pulumi.Input<string>;
32837
33306
  }
@@ -36166,6 +36635,9 @@ export declare namespace management {
36166
36635
  }
36167
36636
  interface GroupPolicyAssignmentOverrideSelector {
36168
36637
  ins?: pulumi.Input<pulumi.Input<string>[]>;
36638
+ /**
36639
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
36640
+ */
36169
36641
  kind?: pulumi.Input<string>;
36170
36642
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
36171
36643
  }
@@ -36181,6 +36653,9 @@ export declare namespace management {
36181
36653
  }
36182
36654
  interface GroupPolicyAssignmentResourceSelectorSelector {
36183
36655
  ins?: pulumi.Input<pulumi.Input<string>[]>;
36656
+ /**
36657
+ * Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
36658
+ */
36184
36659
  kind: pulumi.Input<string>;
36185
36660
  notIns?: pulumi.Input<pulumi.Input<string>[]>;
36186
36661
  }
@@ -36261,8 +36736,17 @@ export declare namespace media {
36261
36736
  conditions: pulumi.Input<pulumi.Input<inputs.media.AccountFilterTrackSelectionCondition>[]>;
36262
36737
  }
36263
36738
  interface AccountFilterTrackSelectionCondition {
36739
+ /**
36740
+ * The condition operation to test a track property against. Supported values are `Equal` and `NotEqual`.
36741
+ */
36264
36742
  operation: pulumi.Input<string>;
36743
+ /**
36744
+ * The track property to compare. Supported values are `Bitrate`, `FourCC`, `Language`, `Name` and `Type`. Check [documentation](https://docs.microsoft.com/azure/media-services/latest/filters-concept) for more details.
36745
+ */
36265
36746
  property: pulumi.Input<string>;
36747
+ /**
36748
+ * The track property value to match or not match.
36749
+ */
36266
36750
  value: pulumi.Input<string>;
36267
36751
  }
36268
36752
  interface AssetFilterPresentationTimeRange {
@@ -41681,9 +42165,21 @@ export declare namespace netapp {
41681
42165
  volumeSpecName: pulumi.Input<string>;
41682
42166
  }
41683
42167
  interface VolumeGroupSapHanaVolumeDataProtectionReplication {
42168
+ /**
42169
+ * The endpoint type. Possible values are `dst` and `src`. Defaults to `dst`.
42170
+ */
41684
42171
  endpointType?: pulumi.Input<string>;
42172
+ /**
42173
+ * Location of the primary volume.
42174
+ */
41685
42175
  remoteVolumeLocation: pulumi.Input<string>;
42176
+ /**
42177
+ * Resource ID of the primary volume.
42178
+ */
41686
42179
  remoteVolumeResourceId: pulumi.Input<string>;
42180
+ /**
42181
+ * eplication frequency. Possible values are `10minutes`, `daily` and `hourly`.
42182
+ */
41687
42183
  replicationFrequency: pulumi.Input<string>;
41688
42184
  }
41689
42185
  interface VolumeGroupSapHanaVolumeDataProtectionSnapshotPolicy {
@@ -42753,6 +43249,9 @@ export declare namespace network {
42753
43249
  type: pulumi.Input<string>;
42754
43250
  }
42755
43251
  interface ExpressRoutePortLink1 {
43252
+ /**
43253
+ * Whether enable administration state on the Express Route Port Link? Defaults to `false`.
43254
+ */
42756
43255
  adminEnabled?: pulumi.Input<boolean>;
42757
43256
  /**
42758
43257
  * The connector type of the Express Route Port Link.
@@ -42766,9 +43265,23 @@ export declare namespace network {
42766
43265
  * The interface name of the Azure router associated with the Express Route Port Link.
42767
43266
  */
42768
43267
  interfaceName?: pulumi.Input<string>;
43268
+ /**
43269
+ * The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.
43270
+ */
42769
43271
  macsecCakKeyvaultSecretId?: pulumi.Input<string>;
43272
+ /**
43273
+ * The MACSec cipher used for this Express Route Port Link. Possible values are `GcmAes128` and `GcmAes256`. Defaults to `GcmAes128`.
43274
+ */
42770
43275
  macsecCipher?: pulumi.Input<string>;
43276
+ /**
43277
+ * The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.
43278
+ */
42771
43279
  macsecCknKeyvaultSecretId?: pulumi.Input<string>;
43280
+ /**
43281
+ * Should Secure Channel Identifier on the Express Route Port Link be enabled? Defaults to `false`.
43282
+ *
43283
+ * > **NOTE** `macsecCknKeyvaultSecretId` and `macsecCakKeyvaultSecretId` should be used together with `identity`, so that the Express Route Port instance have the right permission to access the Key Vault.
43284
+ */
42772
43285
  macsecSciEnabled?: pulumi.Input<boolean>;
42773
43286
  /**
42774
43287
  * The ID that maps from the Express Route Port Link to the patch panel port.
@@ -42784,6 +43297,9 @@ export declare namespace network {
42784
43297
  routerName?: pulumi.Input<string>;
42785
43298
  }
42786
43299
  interface ExpressRoutePortLink2 {
43300
+ /**
43301
+ * Whether enable administration state on the Express Route Port Link? Defaults to `false`.
43302
+ */
42787
43303
  adminEnabled?: pulumi.Input<boolean>;
42788
43304
  /**
42789
43305
  * The connector type of the Express Route Port Link.
@@ -42797,9 +43313,23 @@ export declare namespace network {
42797
43313
  * The interface name of the Azure router associated with the Express Route Port Link.
42798
43314
  */
42799
43315
  interfaceName?: pulumi.Input<string>;
43316
+ /**
43317
+ * The ID of the Key Vault Secret that contains the Mac security CAK key for this Express Route Port Link.
43318
+ */
42800
43319
  macsecCakKeyvaultSecretId?: pulumi.Input<string>;
43320
+ /**
43321
+ * The MACSec cipher used for this Express Route Port Link. Possible values are `GcmAes128` and `GcmAes256`. Defaults to `GcmAes128`.
43322
+ */
42801
43323
  macsecCipher?: pulumi.Input<string>;
43324
+ /**
43325
+ * The ID of the Key Vault Secret that contains the MACSec CKN key for this Express Route Port Link.
43326
+ */
42802
43327
  macsecCknKeyvaultSecretId?: pulumi.Input<string>;
43328
+ /**
43329
+ * Should Secure Channel Identifier on the Express Route Port Link be enabled? Defaults to `false`.
43330
+ *
43331
+ * > **NOTE** `macsecCknKeyvaultSecretId` and `macsecCakKeyvaultSecretId` should be used together with `identity`, so that the Express Route Port instance have the right permission to access the Key Vault.
43332
+ */
42803
43333
  macsecSciEnabled?: pulumi.Input<boolean>;
42804
43334
  /**
42805
43335
  * The ID that maps from the Express Route Port Link to the patch panel port.
@@ -43149,9 +43679,18 @@ export declare namespace network {
43149
43679
  interface FirewallPolicyRuleCollectionGroupApplicationRuleCollectionRule {
43150
43680
  description?: pulumi.Input<string>;
43151
43681
  destinationAddresses?: pulumi.Input<pulumi.Input<string>[]>;
43682
+ /**
43683
+ * Specifies a list of destination FQDN tags.
43684
+ */
43152
43685
  destinationFqdnTags?: pulumi.Input<pulumi.Input<string>[]>;
43153
43686
  destinationFqdns?: pulumi.Input<pulumi.Input<string>[]>;
43687
+ /**
43688
+ * Specifies a list of destination URLs for which policy should hold. Needs Premium SKU for Firewall Policy. Conflicts with `destinationFqdns`.
43689
+ */
43154
43690
  destinationUrls?: pulumi.Input<pulumi.Input<string>[]>;
43691
+ /**
43692
+ * Specifies a list of HTTP/HTTPS headers to insert. One or more `httpHeaders` blocks as defined below.
43693
+ */
43155
43694
  httpHeaders?: pulumi.Input<pulumi.Input<inputs.network.FirewallPolicyRuleCollectionGroupApplicationRuleCollectionRuleHttpHeader>[]>;
43156
43695
  /**
43157
43696
  * The name which should be used for this Firewall Policy Rule Collection Group. Changing this forces a new Firewall Policy Rule Collection Group to be created.
@@ -43160,7 +43699,13 @@ export declare namespace network {
43160
43699
  protocols?: pulumi.Input<pulumi.Input<inputs.network.FirewallPolicyRuleCollectionGroupApplicationRuleCollectionRuleProtocol>[]>;
43161
43700
  sourceAddresses?: pulumi.Input<pulumi.Input<string>[]>;
43162
43701
  sourceIpGroups?: pulumi.Input<pulumi.Input<string>[]>;
43702
+ /**
43703
+ * Boolean specifying if TLS shall be terminated (true) or not (false). Must be `true` when using `destinationUrls`. Needs Premium SKU for Firewall Policy.
43704
+ */
43163
43705
  terminateTls?: pulumi.Input<boolean>;
43706
+ /**
43707
+ * Specifies a list of web categories to which access is denied or allowed depending on the value of `action` above. Needs Premium SKU for Firewall Policy.
43708
+ */
43164
43709
  webCategories?: pulumi.Input<pulumi.Input<string>[]>;
43165
43710
  }
43166
43711
  interface FirewallPolicyRuleCollectionGroupApplicationRuleCollectionRuleHttpHeader {
@@ -43203,6 +43748,9 @@ export declare namespace network {
43203
43748
  }
43204
43749
  interface FirewallPolicyRuleCollectionGroupNatRuleCollectionRule {
43205
43750
  description?: pulumi.Input<string>;
43751
+ /**
43752
+ * The destination IP address (including CIDR).
43753
+ */
43206
43754
  destinationAddress?: pulumi.Input<string>;
43207
43755
  destinationPorts?: pulumi.Input<string>;
43208
43756
  /**
@@ -43212,8 +43760,19 @@ export declare namespace network {
43212
43760
  protocols: pulumi.Input<pulumi.Input<string>[]>;
43213
43761
  sourceAddresses?: pulumi.Input<pulumi.Input<string>[]>;
43214
43762
  sourceIpGroups?: pulumi.Input<pulumi.Input<string>[]>;
43763
+ /**
43764
+ * Specifies the translated address.
43765
+ */
43215
43766
  translatedAddress?: pulumi.Input<string>;
43767
+ /**
43768
+ * Specifies the translated FQDN.
43769
+ *
43770
+ * > **NOTE:** Exactly one of `translatedAddress` and `translatedFqdn` should be set.
43771
+ */
43216
43772
  translatedFqdn?: pulumi.Input<string>;
43773
+ /**
43774
+ * Specifies the translated port.
43775
+ */
43217
43776
  translatedPort: pulumi.Input<number>;
43218
43777
  }
43219
43778
  interface FirewallPolicyRuleCollectionGroupNetworkRuleCollection {
@@ -43238,6 +43797,9 @@ export declare namespace network {
43238
43797
  description?: pulumi.Input<string>;
43239
43798
  destinationAddresses?: pulumi.Input<pulumi.Input<string>[]>;
43240
43799
  destinationFqdns?: pulumi.Input<pulumi.Input<string>[]>;
43800
+ /**
43801
+ * Specifies a list of destination IP groups.
43802
+ */
43241
43803
  destinationIpGroups?: pulumi.Input<pulumi.Input<string>[]>;
43242
43804
  destinationPorts: pulumi.Input<pulumi.Input<string>[]>;
43243
43805
  /**
@@ -44548,6 +45110,9 @@ export declare namespace network {
44548
45110
  peerWeight: pulumi.Input<number>;
44549
45111
  }
44550
45112
  interface VpnGatewayBgpSettingsInstance0BgpPeeringAddress {
45113
+ /**
45114
+ * A list of custom BGP peering addresses to assign to this instance.
45115
+ */
44551
45116
  customIps: pulumi.Input<pulumi.Input<string>[]>;
44552
45117
  /**
44553
45118
  * The list of default BGP peering addresses which belong to the pre-defined VPN Gateway IP configuration.
@@ -44563,6 +45128,9 @@ export declare namespace network {
44563
45128
  tunnelIps?: pulumi.Input<pulumi.Input<string>[]>;
44564
45129
  }
44565
45130
  interface VpnGatewayBgpSettingsInstance1BgpPeeringAddress {
45131
+ /**
45132
+ * A list of custom BGP peering addresses to assign to this instance.
45133
+ */
44566
45134
  customIps: pulumi.Input<pulumi.Input<string>[]>;
44567
45135
  /**
44568
45136
  * The list of default BGP peering addresses which belong to the pre-defined VPN Gateway IP configuration.
@@ -47239,6 +47807,9 @@ export declare namespace sentinel {
47239
47807
  * @deprecated The `createIncident` property has been superseded by the `createIncidentEnabled` property and will be removed in v4.0 of the AzureRM Provider
47240
47808
  */
47241
47809
  createIncident: pulumi.Input<boolean>;
47810
+ /**
47811
+ * A `grouping` block as defined below.
47812
+ */
47242
47813
  grouping: pulumi.Input<inputs.sentinel.AlertRuleScheduledIncidentConfigurationGrouping>;
47243
47814
  }
47244
47815
  interface AlertRuleScheduledIncidentConfigurationGrouping {
@@ -48422,28 +48993,80 @@ export declare namespace siterecovery {
48422
48993
  replicatedProtectedItems?: pulumi.Input<pulumi.Input<string>[]>;
48423
48994
  }
48424
48995
  interface ReplicationRecoveryPlanBootRecoveryGroupPostAction {
48996
+ /**
48997
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
48998
+ *
48999
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49000
+ */
48425
49001
  fabricLocation?: pulumi.Input<string>;
49002
+ /**
49003
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49004
+ */
48426
49005
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49006
+ /**
49007
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49008
+ */
48427
49009
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49010
+ /**
49011
+ * Instructions of manual action.
49012
+ *
49013
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49014
+ */
48428
49015
  manualActionInstruction?: pulumi.Input<string>;
48429
49016
  /**
48430
49017
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48431
49018
  */
48432
49019
  name: pulumi.Input<string>;
49020
+ /**
49021
+ * Id of runbook.
49022
+ *
49023
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49024
+ */
48433
49025
  runbookId?: pulumi.Input<string>;
49026
+ /**
49027
+ * Path of action script.
49028
+ *
49029
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49030
+ */
48434
49031
  scriptPath?: pulumi.Input<string>;
48435
49032
  type: pulumi.Input<string>;
48436
49033
  }
48437
49034
  interface ReplicationRecoveryPlanBootRecoveryGroupPreAction {
49035
+ /**
49036
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49037
+ *
49038
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49039
+ */
48438
49040
  fabricLocation?: pulumi.Input<string>;
49041
+ /**
49042
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49043
+ */
48439
49044
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49045
+ /**
49046
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49047
+ */
48440
49048
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49049
+ /**
49050
+ * Instructions of manual action.
49051
+ *
49052
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49053
+ */
48441
49054
  manualActionInstruction?: pulumi.Input<string>;
48442
49055
  /**
48443
49056
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48444
49057
  */
48445
49058
  name: pulumi.Input<string>;
49059
+ /**
49060
+ * Id of runbook.
49061
+ *
49062
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49063
+ */
48446
49064
  runbookId?: pulumi.Input<string>;
49065
+ /**
49066
+ * Path of action script.
49067
+ *
49068
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49069
+ */
48447
49070
  scriptPath?: pulumi.Input<string>;
48448
49071
  type: pulumi.Input<string>;
48449
49072
  }
@@ -48458,28 +49081,80 @@ export declare namespace siterecovery {
48458
49081
  preActions?: pulumi.Input<pulumi.Input<inputs.siterecovery.ReplicationRecoveryPlanFailoverRecoveryGroupPreAction>[]>;
48459
49082
  }
48460
49083
  interface ReplicationRecoveryPlanFailoverRecoveryGroupPostAction {
49084
+ /**
49085
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49086
+ *
49087
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49088
+ */
48461
49089
  fabricLocation?: pulumi.Input<string>;
49090
+ /**
49091
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49092
+ */
48462
49093
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49094
+ /**
49095
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49096
+ */
48463
49097
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49098
+ /**
49099
+ * Instructions of manual action.
49100
+ *
49101
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49102
+ */
48464
49103
  manualActionInstruction?: pulumi.Input<string>;
48465
49104
  /**
48466
49105
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48467
49106
  */
48468
49107
  name: pulumi.Input<string>;
49108
+ /**
49109
+ * Id of runbook.
49110
+ *
49111
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49112
+ */
48469
49113
  runbookId?: pulumi.Input<string>;
49114
+ /**
49115
+ * Path of action script.
49116
+ *
49117
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49118
+ */
48470
49119
  scriptPath?: pulumi.Input<string>;
48471
49120
  type: pulumi.Input<string>;
48472
49121
  }
48473
49122
  interface ReplicationRecoveryPlanFailoverRecoveryGroupPreAction {
49123
+ /**
49124
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49125
+ *
49126
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49127
+ */
48474
49128
  fabricLocation?: pulumi.Input<string>;
49129
+ /**
49130
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49131
+ */
48475
49132
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49133
+ /**
49134
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49135
+ */
48476
49136
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49137
+ /**
49138
+ * Instructions of manual action.
49139
+ *
49140
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49141
+ */
48477
49142
  manualActionInstruction?: pulumi.Input<string>;
48478
49143
  /**
48479
49144
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48480
49145
  */
48481
49146
  name: pulumi.Input<string>;
49147
+ /**
49148
+ * Id of runbook.
49149
+ *
49150
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49151
+ */
48482
49152
  runbookId?: pulumi.Input<string>;
49153
+ /**
49154
+ * Path of action script.
49155
+ *
49156
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49157
+ */
48483
49158
  scriptPath?: pulumi.Input<string>;
48484
49159
  type: pulumi.Input<string>;
48485
49160
  }
@@ -48502,28 +49177,80 @@ export declare namespace siterecovery {
48502
49177
  type: pulumi.Input<string>;
48503
49178
  }
48504
49179
  interface ReplicationRecoveryPlanRecoveryGroupPostAction {
49180
+ /**
49181
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49182
+ *
49183
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49184
+ */
48505
49185
  fabricLocation?: pulumi.Input<string>;
49186
+ /**
49187
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49188
+ */
48506
49189
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49190
+ /**
49191
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49192
+ */
48507
49193
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49194
+ /**
49195
+ * Instructions of manual action.
49196
+ *
49197
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49198
+ */
48508
49199
  manualActionInstruction?: pulumi.Input<string>;
48509
49200
  /**
48510
49201
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48511
49202
  */
48512
49203
  name: pulumi.Input<string>;
49204
+ /**
49205
+ * Id of runbook.
49206
+ *
49207
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49208
+ */
48513
49209
  runbookId?: pulumi.Input<string>;
49210
+ /**
49211
+ * Path of action script.
49212
+ *
49213
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49214
+ */
48514
49215
  scriptPath?: pulumi.Input<string>;
48515
49216
  type: pulumi.Input<string>;
48516
49217
  }
48517
49218
  interface ReplicationRecoveryPlanRecoveryGroupPreAction {
49219
+ /**
49220
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49221
+ *
49222
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49223
+ */
48518
49224
  fabricLocation?: pulumi.Input<string>;
49225
+ /**
49226
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49227
+ */
48519
49228
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49229
+ /**
49230
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49231
+ */
48520
49232
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49233
+ /**
49234
+ * Instructions of manual action.
49235
+ *
49236
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49237
+ */
48521
49238
  manualActionInstruction?: pulumi.Input<string>;
48522
49239
  /**
48523
49240
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48524
49241
  */
48525
49242
  name: pulumi.Input<string>;
49243
+ /**
49244
+ * Id of runbook.
49245
+ *
49246
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49247
+ */
48526
49248
  runbookId?: pulumi.Input<string>;
49249
+ /**
49250
+ * Path of action script.
49251
+ *
49252
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49253
+ */
48527
49254
  scriptPath?: pulumi.Input<string>;
48528
49255
  type: pulumi.Input<string>;
48529
49256
  }
@@ -48538,28 +49265,80 @@ export declare namespace siterecovery {
48538
49265
  preActions?: pulumi.Input<pulumi.Input<inputs.siterecovery.ReplicationRecoveryPlanShutdownRecoveryGroupPreAction>[]>;
48539
49266
  }
48540
49267
  interface ReplicationRecoveryPlanShutdownRecoveryGroupPostAction {
49268
+ /**
49269
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49270
+ *
49271
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49272
+ */
48541
49273
  fabricLocation?: pulumi.Input<string>;
49274
+ /**
49275
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49276
+ */
48542
49277
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49278
+ /**
49279
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49280
+ */
48543
49281
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49282
+ /**
49283
+ * Instructions of manual action.
49284
+ *
49285
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49286
+ */
48544
49287
  manualActionInstruction?: pulumi.Input<string>;
48545
49288
  /**
48546
49289
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48547
49290
  */
48548
49291
  name: pulumi.Input<string>;
49292
+ /**
49293
+ * Id of runbook.
49294
+ *
49295
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49296
+ */
48549
49297
  runbookId?: pulumi.Input<string>;
49298
+ /**
49299
+ * Path of action script.
49300
+ *
49301
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49302
+ */
48550
49303
  scriptPath?: pulumi.Input<string>;
48551
49304
  type: pulumi.Input<string>;
48552
49305
  }
48553
49306
  interface ReplicationRecoveryPlanShutdownRecoveryGroupPreAction {
49307
+ /**
49308
+ * The fabric location of runbook or script. Possible values are `Primary` and `Recovery`. It must not be specified when `type` is `ManualActionDetails`.
49309
+ *
49310
+ * > **NOTE:** This is required when `type` is set to `AutomationRunbookActionDetails` or `ScriptActionDetails`.
49311
+ */
48554
49312
  fabricLocation?: pulumi.Input<string>;
49313
+ /**
49314
+ * Directions of fail over. Possible values are `PrimaryToRecovery` and `RecoveryToPrimary`
49315
+ */
48555
49316
  failOverDirections: pulumi.Input<pulumi.Input<string>[]>;
49317
+ /**
49318
+ * Types of fail over. Possible values are `TestFailover`, `PlannedFailover` and `UnplannedFailover`
49319
+ */
48556
49320
  failOverTypes: pulumi.Input<pulumi.Input<string>[]>;
49321
+ /**
49322
+ * Instructions of manual action.
49323
+ *
49324
+ * > **NOTE:** This property is required when `type` is set to `ManualActionDetails`.
49325
+ */
48557
49326
  manualActionInstruction?: pulumi.Input<string>;
48558
49327
  /**
48559
49328
  * The name of the Replication Plan. The name can contain only letters, numbers, and hyphens. It should start with a letter and end with a letter or a number. Can be a maximum of 63 characters. Changing this forces a new resource to be created.
48560
49329
  */
48561
49330
  name: pulumi.Input<string>;
49331
+ /**
49332
+ * Id of runbook.
49333
+ *
49334
+ * > **NOTE:** This property is required when `type` is set to `AutomationRunbookActionDetails`.
49335
+ */
48562
49336
  runbookId?: pulumi.Input<string>;
49337
+ /**
49338
+ * Path of action script.
49339
+ *
49340
+ * > **NOTE:** This property is required when `type` is set to `ScriptActionDetails`.
49341
+ */
48563
49342
  scriptPath?: pulumi.Input<string>;
48564
49343
  type: pulumi.Input<string>;
48565
49344
  }