@pulumi/azure 5.81.0-alpha.1719035839 → 5.81.0-alpha.1719232422
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/apimanagement/service.d.ts +3 -3
- package/automation/getRunbook.d.ts +117 -0
- package/automation/getRunbook.js +55 -0
- package/automation/getRunbook.js.map +1 -0
- package/automation/index.d.ts +3 -0
- package/automation/index.js +4 -1
- package/automation/index.js.map +1 -1
- package/automation/jobSchedule.d.ts +14 -4
- package/automation/jobSchedule.js +5 -1
- package/automation/jobSchedule.js.map +1 -1
- package/automation/runBook.d.ts +18 -3
- package/automation/runBook.js.map +1 -1
- package/communication/emailServiceDomain.d.ts +139 -0
- package/communication/emailServiceDomain.js +80 -0
- package/communication/emailServiceDomain.js.map +1 -0
- package/communication/index.d.ts +3 -0
- package/communication/index.js +6 -1
- package/communication/index.js.map +1 -1
- package/containerservice/kubernetesCluster.d.ts +3 -3
- package/cosmosdb/cassandraTable.d.ts +1 -1
- package/cosmosdb/gremlinGraph.d.ts +1 -1
- package/cosmosdb/sqlContainer.d.ts +29 -5
- package/cosmosdb/sqlContainer.js +4 -3
- package/cosmosdb/sqlContainer.js.map +1 -1
- package/dataprotection/backupInstanceBlogStorage.d.ts +18 -0
- package/dataprotection/backupInstanceBlogStorage.js +2 -0
- package/dataprotection/backupInstanceBlogStorage.js.map +1 -1
- package/dataprotection/backupInstancePostgresqlFlexibleServer.d.ts +176 -0
- package/dataprotection/backupInstancePostgresqlFlexibleServer.js +146 -0
- package/dataprotection/backupInstancePostgresqlFlexibleServer.js.map +1 -0
- package/dataprotection/index.d.ts +3 -0
- package/dataprotection/index.js +6 -1
- package/dataprotection/index.js.map +1 -1
- package/desktopvirtualization/hostPool.d.ts +3 -3
- package/desktopvirtualization/scalingPlan.d.ts +1 -1
- package/desktopvirtualization/scalingPlan.js +1 -1
- package/hdinsight/getCluster.d.ts +9 -0
- package/hdinsight/getCluster.js +2 -0
- package/hdinsight/getCluster.js.map +1 -1
- package/lb/backendAddressPool.d.ts +18 -0
- package/lb/backendAddressPool.js +2 -0
- package/lb/backendAddressPool.js.map +1 -1
- package/machinelearning/datastoreDatalakeGen2.d.ts +1 -1
- package/maps/account.d.ts +50 -0
- package/maps/account.js +8 -0
- package/maps/account.js.map +1 -1
- package/monitoring/privateLinkScope.d.ts +26 -0
- package/monitoring/privateLinkScope.js +6 -0
- package/monitoring/privateLinkScope.js.map +1 -1
- package/netapp/volume.d.ts +1 -1
- package/network/getNetworkInterface.d.ts +10 -2
- package/network/getNetworkInterface.js.map +1 -1
- package/network/networkInterface.d.ts +44 -20
- package/network/networkInterface.js +4 -0
- package/network/networkInterface.js.map +1 -1
- package/network/virtualNetworkPeering.d.ts +48 -0
- package/network/virtualNetworkPeering.js +8 -0
- package/network/virtualNetworkPeering.js.map +1 -1
- package/package.json +2 -2
- package/pim/getRoleManagementPolicy.d.ts +151 -0
- package/pim/getRoleManagementPolicy.js +106 -0
- package/pim/getRoleManagementPolicy.js.map +1 -0
- package/pim/index.d.ts +6 -0
- package/pim/index.js +9 -1
- package/pim/index.js.map +1 -1
- package/pim/roleManagementPolicy.d.ts +175 -0
- package/pim/roleManagementPolicy.js +118 -0
- package/pim/roleManagementPolicy.js.map +1 -0
- package/sentinel/alertRuleScheduled.d.ts +15 -3
- package/sentinel/alertRuleScheduled.js +2 -0
- package/sentinel/alertRuleScheduled.js.map +1 -1
- package/synapse/workspace.d.ts +6 -11
- package/synapse/workspace.js +0 -5
- package/synapse/workspace.js.map +1 -1
- package/systemcenter/index.d.ts +9 -0
- package/systemcenter/index.js +16 -1
- package/systemcenter/index.js.map +1 -1
- package/systemcenter/virtualMachineManagerCloud.d.ts +157 -0
- package/systemcenter/virtualMachineManagerCloud.js +111 -0
- package/systemcenter/virtualMachineManagerCloud.js.map +1 -0
- package/systemcenter/virtualMachineManagerVirtualMachineTemplate.d.ts +157 -0
- package/systemcenter/virtualMachineManagerVirtualMachineTemplate.js +111 -0
- package/systemcenter/virtualMachineManagerVirtualMachineTemplate.js.map +1 -0
- package/systemcenter/virtualMachineManagerVirtualNetwork.d.ts +157 -0
- package/systemcenter/virtualMachineManagerVirtualNetwork.js +111 -0
- package/systemcenter/virtualMachineManagerVirtualNetwork.js.map +1 -0
- package/types/input.d.ts +488 -33
- package/types/output.d.ts +750 -35
package/types/input.d.ts
CHANGED
|
@@ -1786,13 +1786,7 @@ export declare namespace apimanagement {
|
|
|
1786
1786
|
type: pulumi.Input<string>;
|
|
1787
1787
|
}
|
|
1788
1788
|
interface ServicePolicy {
|
|
1789
|
-
/**
|
|
1790
|
-
* The XML Content for this Policy.
|
|
1791
|
-
*/
|
|
1792
1789
|
xmlContent?: pulumi.Input<string>;
|
|
1793
|
-
/**
|
|
1794
|
-
* A link to an API Management Policy XML Document, which must be publicly available.
|
|
1795
|
-
*/
|
|
1796
1790
|
xmlLink?: pulumi.Input<string>;
|
|
1797
1791
|
}
|
|
1798
1792
|
interface ServiceProtocols {
|
|
@@ -14398,11 +14392,25 @@ export declare namespace automation {
|
|
|
14398
14392
|
type: pulumi.Input<string>;
|
|
14399
14393
|
}
|
|
14400
14394
|
interface RunBookJobSchedule {
|
|
14395
|
+
/**
|
|
14396
|
+
* The UUID of automation runbook job schedule ID.
|
|
14397
|
+
*/
|
|
14401
14398
|
jobScheduleId?: pulumi.Input<string>;
|
|
14399
|
+
/**
|
|
14400
|
+
* A map of key/value pairs corresponding to the arguments that can be passed to the Runbook.
|
|
14401
|
+
*
|
|
14402
|
+
* > **NOTE:** The parameter keys/names must strictly be in lowercase, even if this is not the case in the runbook. This is due to a limitation in Azure Automation where the parameter names are normalized. The values specified don't have this limitation.
|
|
14403
|
+
*/
|
|
14402
14404
|
parameters?: pulumi.Input<{
|
|
14403
14405
|
[key: string]: pulumi.Input<string>;
|
|
14404
14406
|
}>;
|
|
14407
|
+
/**
|
|
14408
|
+
* Name of a Hybrid Worker Group the Runbook will be executed on.
|
|
14409
|
+
*/
|
|
14405
14410
|
runOn?: pulumi.Input<string>;
|
|
14411
|
+
/**
|
|
14412
|
+
* The name of the Schedule.
|
|
14413
|
+
*/
|
|
14406
14414
|
scheduleName: pulumi.Input<string>;
|
|
14407
14415
|
}
|
|
14408
14416
|
interface RunBookPublishContentLink {
|
|
@@ -17372,6 +17380,120 @@ export declare namespace cognitive {
|
|
|
17372
17380
|
type: pulumi.Input<string>;
|
|
17373
17381
|
}
|
|
17374
17382
|
}
|
|
17383
|
+
export declare namespace communication {
|
|
17384
|
+
interface EmailServiceDomainVerificationRecord {
|
|
17385
|
+
/**
|
|
17386
|
+
* (Optional) An `dkim2` block as defined below.
|
|
17387
|
+
*/
|
|
17388
|
+
dkim2s?: pulumi.Input<pulumi.Input<inputs.communication.EmailServiceDomainVerificationRecordDkim2>[]>;
|
|
17389
|
+
/**
|
|
17390
|
+
* (Optional) An `dkim` block as defined below.
|
|
17391
|
+
*/
|
|
17392
|
+
dkims?: pulumi.Input<pulumi.Input<inputs.communication.EmailServiceDomainVerificationRecordDkim>[]>;
|
|
17393
|
+
/**
|
|
17394
|
+
* (Optional) An `dmarc` block as defined below.
|
|
17395
|
+
*/
|
|
17396
|
+
dmarcs?: pulumi.Input<pulumi.Input<inputs.communication.EmailServiceDomainVerificationRecordDmarc>[]>;
|
|
17397
|
+
/**
|
|
17398
|
+
* (Optional) An `domain` block as defined below.
|
|
17399
|
+
*/
|
|
17400
|
+
domains?: pulumi.Input<pulumi.Input<inputs.communication.EmailServiceDomainVerificationRecordDomain>[]>;
|
|
17401
|
+
/**
|
|
17402
|
+
* (Optional) An `spf` block as defined below.
|
|
17403
|
+
*/
|
|
17404
|
+
spfs?: pulumi.Input<pulumi.Input<inputs.communication.EmailServiceDomainVerificationRecordSpf>[]>;
|
|
17405
|
+
}
|
|
17406
|
+
interface EmailServiceDomainVerificationRecordDkim {
|
|
17407
|
+
/**
|
|
17408
|
+
* The name of the Email Communication Service resource. If `domainManagement` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.
|
|
17409
|
+
*/
|
|
17410
|
+
name?: pulumi.Input<string>;
|
|
17411
|
+
/**
|
|
17412
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
17413
|
+
*/
|
|
17414
|
+
ttl?: pulumi.Input<number>;
|
|
17415
|
+
/**
|
|
17416
|
+
* Type of the DNS record. Example: TXT
|
|
17417
|
+
*/
|
|
17418
|
+
type?: pulumi.Input<string>;
|
|
17419
|
+
/**
|
|
17420
|
+
* Value of the DNS record.
|
|
17421
|
+
*/
|
|
17422
|
+
value?: pulumi.Input<string>;
|
|
17423
|
+
}
|
|
17424
|
+
interface EmailServiceDomainVerificationRecordDkim2 {
|
|
17425
|
+
/**
|
|
17426
|
+
* The name of the Email Communication Service resource. If `domainManagement` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.
|
|
17427
|
+
*/
|
|
17428
|
+
name?: pulumi.Input<string>;
|
|
17429
|
+
/**
|
|
17430
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
17431
|
+
*/
|
|
17432
|
+
ttl?: pulumi.Input<number>;
|
|
17433
|
+
/**
|
|
17434
|
+
* Type of the DNS record. Example: TXT
|
|
17435
|
+
*/
|
|
17436
|
+
type?: pulumi.Input<string>;
|
|
17437
|
+
/**
|
|
17438
|
+
* Value of the DNS record.
|
|
17439
|
+
*/
|
|
17440
|
+
value?: pulumi.Input<string>;
|
|
17441
|
+
}
|
|
17442
|
+
interface EmailServiceDomainVerificationRecordDmarc {
|
|
17443
|
+
/**
|
|
17444
|
+
* The name of the Email Communication Service resource. If `domainManagement` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.
|
|
17445
|
+
*/
|
|
17446
|
+
name?: pulumi.Input<string>;
|
|
17447
|
+
/**
|
|
17448
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
17449
|
+
*/
|
|
17450
|
+
ttl?: pulumi.Input<number>;
|
|
17451
|
+
/**
|
|
17452
|
+
* Type of the DNS record. Example: TXT
|
|
17453
|
+
*/
|
|
17454
|
+
type?: pulumi.Input<string>;
|
|
17455
|
+
/**
|
|
17456
|
+
* Value of the DNS record.
|
|
17457
|
+
*/
|
|
17458
|
+
value?: pulumi.Input<string>;
|
|
17459
|
+
}
|
|
17460
|
+
interface EmailServiceDomainVerificationRecordDomain {
|
|
17461
|
+
/**
|
|
17462
|
+
* The name of the Email Communication Service resource. If `domainManagement` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.
|
|
17463
|
+
*/
|
|
17464
|
+
name?: pulumi.Input<string>;
|
|
17465
|
+
/**
|
|
17466
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
17467
|
+
*/
|
|
17468
|
+
ttl?: pulumi.Input<number>;
|
|
17469
|
+
/**
|
|
17470
|
+
* Type of the DNS record. Example: TXT
|
|
17471
|
+
*/
|
|
17472
|
+
type?: pulumi.Input<string>;
|
|
17473
|
+
/**
|
|
17474
|
+
* Value of the DNS record.
|
|
17475
|
+
*/
|
|
17476
|
+
value?: pulumi.Input<string>;
|
|
17477
|
+
}
|
|
17478
|
+
interface EmailServiceDomainVerificationRecordSpf {
|
|
17479
|
+
/**
|
|
17480
|
+
* The name of the Email Communication Service resource. If `domainManagement` is `AzureManaged`, the name must be `AzureManagedDomain`. Changing this forces a new Email Communication Service to be created.
|
|
17481
|
+
*/
|
|
17482
|
+
name?: pulumi.Input<string>;
|
|
17483
|
+
/**
|
|
17484
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
17485
|
+
*/
|
|
17486
|
+
ttl?: pulumi.Input<number>;
|
|
17487
|
+
/**
|
|
17488
|
+
* Type of the DNS record. Example: TXT
|
|
17489
|
+
*/
|
|
17490
|
+
type?: pulumi.Input<string>;
|
|
17491
|
+
/**
|
|
17492
|
+
* Value of the DNS record.
|
|
17493
|
+
*/
|
|
17494
|
+
value?: pulumi.Input<string>;
|
|
17495
|
+
}
|
|
17496
|
+
}
|
|
17375
17497
|
export declare namespace compute {
|
|
17376
17498
|
interface BastionHostIpConfiguration {
|
|
17377
17499
|
/**
|
|
@@ -23716,13 +23838,7 @@ export declare namespace containerservice {
|
|
|
23716
23838
|
*/
|
|
23717
23839
|
dockerBridgeCidr?: pulumi.Input<string>;
|
|
23718
23840
|
/**
|
|
23719
|
-
*
|
|
23720
|
-
*
|
|
23721
|
-
* > **Note:** When `ebpfDataPlane` is set to `cilium`, the `networkPlugin` field can only be set to `azure`.
|
|
23722
|
-
*
|
|
23723
|
-
* > **Note:** When `ebpfDataPlane` is set to `cilium`, one of either `networkPluginMode = "overlay"` or `podSubnetId` must be specified.
|
|
23724
|
-
*
|
|
23725
|
-
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/CiliumDataplanePreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/azure-cni-powered-by-cilium) for more information.
|
|
23841
|
+
* @deprecated This property has been superseded by the property `networkDataPlane` and will be removed in v4.0 of the AzureRM provider.
|
|
23726
23842
|
*/
|
|
23727
23843
|
ebpfDataPlane?: pulumi.Input<string>;
|
|
23728
23844
|
/**
|
|
@@ -23745,6 +23861,16 @@ export declare namespace containerservice {
|
|
|
23745
23861
|
* A `natGatewayProfile` block as defined below. This can only be specified when `loadBalancerSku` is set to `standard` and `outboundType` is set to `managedNATGateway` or `userAssignedNATGateway`. Changing this forces a new resource to be created.
|
|
23746
23862
|
*/
|
|
23747
23863
|
natGatewayProfile?: pulumi.Input<inputs.containerservice.KubernetesClusterNetworkProfileNatGatewayProfile>;
|
|
23864
|
+
/**
|
|
23865
|
+
* Specifies the data plane used for building the Kubernetes network. Possible values are `azure` and `cilium`. Defaults to `azure`. Disabling this forces a new resource to be created.
|
|
23866
|
+
*
|
|
23867
|
+
* > **Note:** When `networkDataPlane` is set to `cilium`, the `networkPlugin` field can only be set to `azure`.
|
|
23868
|
+
*
|
|
23869
|
+
* > **Note:** When `networkDataPlane` is set to `cilium`, one of either `networkPluginMode = "overlay"` or `podSubnetId` must be specified.
|
|
23870
|
+
*
|
|
23871
|
+
* > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/CiliumDataplanePreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/azure-cni-powered-by-cilium) for more information.
|
|
23872
|
+
*/
|
|
23873
|
+
networkDataPlane?: pulumi.Input<string>;
|
|
23748
23874
|
/**
|
|
23749
23875
|
* Network mode to be used with Azure CNI. Possible values are `bridge` and `transparent`. Changing this forces a new resource to be created.
|
|
23750
23876
|
*
|
|
@@ -23770,7 +23896,7 @@ export declare namespace containerservice {
|
|
|
23770
23896
|
*
|
|
23771
23897
|
* > **Note:** When `networkPolicy` is set to `azure`, the `networkPlugin` field can only be set to `azure`.
|
|
23772
23898
|
*
|
|
23773
|
-
* > **Note:** When `networkPolicy` is set to `cilium`, the `
|
|
23899
|
+
* > **Note:** When `networkPolicy` is set to `cilium`, the `networkDataPlane` field must be set to `cilium`.
|
|
23774
23900
|
*/
|
|
23775
23901
|
networkPolicy?: pulumi.Input<string>;
|
|
23776
23902
|
outboundIpAddressIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -35980,6 +36106,44 @@ export declare namespace management {
|
|
|
35980
36106
|
notIns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
35981
36107
|
}
|
|
35982
36108
|
}
|
|
36109
|
+
export declare namespace maps {
|
|
36110
|
+
interface AccountCors {
|
|
36111
|
+
/**
|
|
36112
|
+
* A list of origins that should be allowed to make cross-origin calls.
|
|
36113
|
+
*/
|
|
36114
|
+
allowedOrigins: pulumi.Input<pulumi.Input<string>[]>;
|
|
36115
|
+
}
|
|
36116
|
+
interface AccountDataStore {
|
|
36117
|
+
/**
|
|
36118
|
+
* The ID of the Storage Account that should be linked to this Azure Maps Account.
|
|
36119
|
+
*/
|
|
36120
|
+
storageAccountId?: pulumi.Input<string>;
|
|
36121
|
+
/**
|
|
36122
|
+
* The name given to the linked Storage Account.
|
|
36123
|
+
*/
|
|
36124
|
+
uniqueName: pulumi.Input<string>;
|
|
36125
|
+
}
|
|
36126
|
+
interface AccountIdentity {
|
|
36127
|
+
/**
|
|
36128
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this Azure Maps Account.
|
|
36129
|
+
*
|
|
36130
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
|
|
36131
|
+
*/
|
|
36132
|
+
identityIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
36133
|
+
/**
|
|
36134
|
+
* The Principal ID associated with this Managed Service Identity.
|
|
36135
|
+
*/
|
|
36136
|
+
principalId?: pulumi.Input<string>;
|
|
36137
|
+
/**
|
|
36138
|
+
* The Tenant ID associated with this Managed Service Identity.
|
|
36139
|
+
*/
|
|
36140
|
+
tenantId?: pulumi.Input<string>;
|
|
36141
|
+
/**
|
|
36142
|
+
* Specifies the type of Managed Service Identity that should be configured on this Azure Maps Account. Possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned` (to enable both).
|
|
36143
|
+
*/
|
|
36144
|
+
type: pulumi.Input<string>;
|
|
36145
|
+
}
|
|
36146
|
+
}
|
|
35983
36147
|
export declare namespace mariadb {
|
|
35984
36148
|
}
|
|
35985
36149
|
export declare namespace media {
|
|
@@ -45417,6 +45581,272 @@ export declare namespace pim {
|
|
|
45417
45581
|
*/
|
|
45418
45582
|
system?: pulumi.Input<string>;
|
|
45419
45583
|
}
|
|
45584
|
+
interface RoleManagementPolicyActivationRules {
|
|
45585
|
+
/**
|
|
45586
|
+
* An `approvalStage` block as defined below.
|
|
45587
|
+
*/
|
|
45588
|
+
approvalStage?: pulumi.Input<inputs.pim.RoleManagementPolicyActivationRulesApprovalStage>;
|
|
45589
|
+
/**
|
|
45590
|
+
* The maximum length of time an activated role can be valid, in an ISO8601 Duration format (e.g. `PT8H`). Valid range is `PT30M` to `PT23H30M`, in 30 minute increments, or `PT1D`.
|
|
45591
|
+
*/
|
|
45592
|
+
maximumDuration?: pulumi.Input<string>;
|
|
45593
|
+
/**
|
|
45594
|
+
* Is approval required for activation. If `true` an `approvalStage` block must be provided.
|
|
45595
|
+
*/
|
|
45596
|
+
requireApproval?: pulumi.Input<boolean>;
|
|
45597
|
+
/**
|
|
45598
|
+
* Is a justification required during activation of the role.
|
|
45599
|
+
*/
|
|
45600
|
+
requireJustification?: pulumi.Input<boolean>;
|
|
45601
|
+
/**
|
|
45602
|
+
* Is multi-factor authentication required to activate the role. Conflicts with `requiredConditionalAccessAuthenticationContext`.
|
|
45603
|
+
*/
|
|
45604
|
+
requireMultifactorAuthentication?: pulumi.Input<boolean>;
|
|
45605
|
+
/**
|
|
45606
|
+
* Is ticket information requrired during activation of the role.
|
|
45607
|
+
*/
|
|
45608
|
+
requireTicketInfo?: pulumi.Input<boolean>;
|
|
45609
|
+
/**
|
|
45610
|
+
* The Entra ID Conditional Access context that must be present for activation. Conflicts with `requireMultifactorAuthentication`.
|
|
45611
|
+
*/
|
|
45612
|
+
requiredConditionalAccessAuthenticationContext?: pulumi.Input<string>;
|
|
45613
|
+
}
|
|
45614
|
+
interface RoleManagementPolicyActivationRulesApprovalStage {
|
|
45615
|
+
/**
|
|
45616
|
+
* The IDs of the users or groups who can approve the activation
|
|
45617
|
+
*/
|
|
45618
|
+
primaryApprovers: pulumi.Input<pulumi.Input<inputs.pim.RoleManagementPolicyActivationRulesApprovalStagePrimaryApprover>[]>;
|
|
45619
|
+
}
|
|
45620
|
+
interface RoleManagementPolicyActivationRulesApprovalStagePrimaryApprover {
|
|
45621
|
+
/**
|
|
45622
|
+
* The ID of the object which will act as an approver.
|
|
45623
|
+
*/
|
|
45624
|
+
objectId: pulumi.Input<string>;
|
|
45625
|
+
/**
|
|
45626
|
+
* The type of object acting as an approver. Possible options are `User` and `Group`.
|
|
45627
|
+
*/
|
|
45628
|
+
type: pulumi.Input<string>;
|
|
45629
|
+
}
|
|
45630
|
+
interface RoleManagementPolicyActiveAssignmentRules {
|
|
45631
|
+
/**
|
|
45632
|
+
* Must an assignment have an expiry date. `false` allows permanent assignment.
|
|
45633
|
+
*/
|
|
45634
|
+
expirationRequired?: pulumi.Input<boolean>;
|
|
45635
|
+
/**
|
|
45636
|
+
* The maximum length of time an assignment can be valid, as an ISO8601 duration. Permitted values: `P15D`, `P30D`, `P90D`, `P180D`, or `P365D`.
|
|
45637
|
+
*/
|
|
45638
|
+
expireAfter?: pulumi.Input<string>;
|
|
45639
|
+
/**
|
|
45640
|
+
* Is a justification required to create new assignments.
|
|
45641
|
+
*/
|
|
45642
|
+
requireJustification?: pulumi.Input<boolean>;
|
|
45643
|
+
/**
|
|
45644
|
+
* Is multi-factor authentication required to create new assignments.
|
|
45645
|
+
*/
|
|
45646
|
+
requireMultifactorAuthentication?: pulumi.Input<boolean>;
|
|
45647
|
+
/**
|
|
45648
|
+
* Is ticket information required to create new assignments.
|
|
45649
|
+
*
|
|
45650
|
+
* One of `expirationRequired` or `expireAfter` must be provided.
|
|
45651
|
+
*/
|
|
45652
|
+
requireTicketInfo?: pulumi.Input<boolean>;
|
|
45653
|
+
}
|
|
45654
|
+
interface RoleManagementPolicyEligibleAssignmentRules {
|
|
45655
|
+
/**
|
|
45656
|
+
* Must an assignment have an expiry date. `false` allows permanent assignment.
|
|
45657
|
+
*/
|
|
45658
|
+
expirationRequired?: pulumi.Input<boolean>;
|
|
45659
|
+
/**
|
|
45660
|
+
* The maximum length of time an assignment can be valid, as an ISO8601 duration. Permitted values: `P15D`, `P30D`, `P90D`, `P180D`, or `P365D`.
|
|
45661
|
+
*
|
|
45662
|
+
* One of `expirationRequired` or `expireAfter` must be provided.
|
|
45663
|
+
*/
|
|
45664
|
+
expireAfter?: pulumi.Input<string>;
|
|
45665
|
+
}
|
|
45666
|
+
interface RoleManagementPolicyNotificationRules {
|
|
45667
|
+
/**
|
|
45668
|
+
* A `notificationTarget` block as defined below to configure notfications on active role assignments.
|
|
45669
|
+
*/
|
|
45670
|
+
activeAssignments?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesActiveAssignments>;
|
|
45671
|
+
/**
|
|
45672
|
+
* A `notificationTarget` block as defined below for configuring notifications on activation of eligible role.
|
|
45673
|
+
*/
|
|
45674
|
+
eligibleActivations?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleActivations>;
|
|
45675
|
+
/**
|
|
45676
|
+
* A `notificationTarget` block as defined below to configure notification on eligible role assignments.
|
|
45677
|
+
*
|
|
45678
|
+
* At least one `notificationTarget` block must be provided.
|
|
45679
|
+
*/
|
|
45680
|
+
eligibleAssignments?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignments>;
|
|
45681
|
+
}
|
|
45682
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignments {
|
|
45683
|
+
/**
|
|
45684
|
+
* Admin notification settings
|
|
45685
|
+
*/
|
|
45686
|
+
adminNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsAdminNotifications>;
|
|
45687
|
+
/**
|
|
45688
|
+
* Approver notification settings
|
|
45689
|
+
*/
|
|
45690
|
+
approverNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsApproverNotifications>;
|
|
45691
|
+
/**
|
|
45692
|
+
* Assignee notification settings
|
|
45693
|
+
*/
|
|
45694
|
+
assigneeNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsAssigneeNotifications>;
|
|
45695
|
+
}
|
|
45696
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsAdminNotifications {
|
|
45697
|
+
/**
|
|
45698
|
+
* The additional recipients to notify
|
|
45699
|
+
*/
|
|
45700
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45701
|
+
/**
|
|
45702
|
+
* Whether the default recipients are notified
|
|
45703
|
+
*/
|
|
45704
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45705
|
+
/**
|
|
45706
|
+
* What level of notifications are sent
|
|
45707
|
+
*/
|
|
45708
|
+
notificationLevel: pulumi.Input<string>;
|
|
45709
|
+
}
|
|
45710
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsApproverNotifications {
|
|
45711
|
+
/**
|
|
45712
|
+
* The additional recipients to notify
|
|
45713
|
+
*/
|
|
45714
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45715
|
+
/**
|
|
45716
|
+
* Whether the default recipients are notified
|
|
45717
|
+
*/
|
|
45718
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45719
|
+
/**
|
|
45720
|
+
* What level of notifications are sent
|
|
45721
|
+
*/
|
|
45722
|
+
notificationLevel: pulumi.Input<string>;
|
|
45723
|
+
}
|
|
45724
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsAssigneeNotifications {
|
|
45725
|
+
/**
|
|
45726
|
+
* The additional recipients to notify
|
|
45727
|
+
*/
|
|
45728
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45729
|
+
/**
|
|
45730
|
+
* Whether the default recipients are notified
|
|
45731
|
+
*/
|
|
45732
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45733
|
+
/**
|
|
45734
|
+
* What level of notifications are sent
|
|
45735
|
+
*/
|
|
45736
|
+
notificationLevel: pulumi.Input<string>;
|
|
45737
|
+
}
|
|
45738
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivations {
|
|
45739
|
+
/**
|
|
45740
|
+
* Admin notification settings
|
|
45741
|
+
*/
|
|
45742
|
+
adminNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotifications>;
|
|
45743
|
+
/**
|
|
45744
|
+
* Approver notification settings
|
|
45745
|
+
*/
|
|
45746
|
+
approverNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotifications>;
|
|
45747
|
+
/**
|
|
45748
|
+
* Assignee notification settings
|
|
45749
|
+
*/
|
|
45750
|
+
assigneeNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotifications>;
|
|
45751
|
+
}
|
|
45752
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotifications {
|
|
45753
|
+
/**
|
|
45754
|
+
* The additional recipients to notify
|
|
45755
|
+
*/
|
|
45756
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45757
|
+
/**
|
|
45758
|
+
* Whether the default recipients are notified
|
|
45759
|
+
*/
|
|
45760
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45761
|
+
/**
|
|
45762
|
+
* What level of notifications are sent
|
|
45763
|
+
*/
|
|
45764
|
+
notificationLevel: pulumi.Input<string>;
|
|
45765
|
+
}
|
|
45766
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotifications {
|
|
45767
|
+
/**
|
|
45768
|
+
* The additional recipients to notify
|
|
45769
|
+
*/
|
|
45770
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45771
|
+
/**
|
|
45772
|
+
* Whether the default recipients are notified
|
|
45773
|
+
*/
|
|
45774
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45775
|
+
/**
|
|
45776
|
+
* What level of notifications are sent
|
|
45777
|
+
*/
|
|
45778
|
+
notificationLevel: pulumi.Input<string>;
|
|
45779
|
+
}
|
|
45780
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotifications {
|
|
45781
|
+
/**
|
|
45782
|
+
* The additional recipients to notify
|
|
45783
|
+
*/
|
|
45784
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45785
|
+
/**
|
|
45786
|
+
* Whether the default recipients are notified
|
|
45787
|
+
*/
|
|
45788
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45789
|
+
/**
|
|
45790
|
+
* What level of notifications are sent
|
|
45791
|
+
*/
|
|
45792
|
+
notificationLevel: pulumi.Input<string>;
|
|
45793
|
+
}
|
|
45794
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignments {
|
|
45795
|
+
/**
|
|
45796
|
+
* Admin notification settings
|
|
45797
|
+
*/
|
|
45798
|
+
adminNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsAdminNotifications>;
|
|
45799
|
+
/**
|
|
45800
|
+
* Approver notification settings
|
|
45801
|
+
*/
|
|
45802
|
+
approverNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsApproverNotifications>;
|
|
45803
|
+
/**
|
|
45804
|
+
* Assignee notification settings
|
|
45805
|
+
*/
|
|
45806
|
+
assigneeNotifications?: pulumi.Input<inputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsAssigneeNotifications>;
|
|
45807
|
+
}
|
|
45808
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsAdminNotifications {
|
|
45809
|
+
/**
|
|
45810
|
+
* The additional recipients to notify
|
|
45811
|
+
*/
|
|
45812
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45813
|
+
/**
|
|
45814
|
+
* Whether the default recipients are notified
|
|
45815
|
+
*/
|
|
45816
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45817
|
+
/**
|
|
45818
|
+
* What level of notifications are sent
|
|
45819
|
+
*/
|
|
45820
|
+
notificationLevel: pulumi.Input<string>;
|
|
45821
|
+
}
|
|
45822
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsApproverNotifications {
|
|
45823
|
+
/**
|
|
45824
|
+
* The additional recipients to notify
|
|
45825
|
+
*/
|
|
45826
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45827
|
+
/**
|
|
45828
|
+
* Whether the default recipients are notified
|
|
45829
|
+
*/
|
|
45830
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45831
|
+
/**
|
|
45832
|
+
* What level of notifications are sent
|
|
45833
|
+
*/
|
|
45834
|
+
notificationLevel: pulumi.Input<string>;
|
|
45835
|
+
}
|
|
45836
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsAssigneeNotifications {
|
|
45837
|
+
/**
|
|
45838
|
+
* The additional recipients to notify
|
|
45839
|
+
*/
|
|
45840
|
+
additionalRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
45841
|
+
/**
|
|
45842
|
+
* Whether the default recipients are notified
|
|
45843
|
+
*/
|
|
45844
|
+
defaultRecipients: pulumi.Input<boolean>;
|
|
45845
|
+
/**
|
|
45846
|
+
* What level of notifications are sent
|
|
45847
|
+
*/
|
|
45848
|
+
notificationLevel: pulumi.Input<string>;
|
|
45849
|
+
}
|
|
45420
45850
|
}
|
|
45421
45851
|
export declare namespace policy {
|
|
45422
45852
|
interface PolicySetDefinitionPolicyDefinitionGroup {
|
|
@@ -46707,14 +47137,21 @@ export declare namespace sentinel {
|
|
|
46707
47137
|
*/
|
|
46708
47138
|
aggregationMethod: pulumi.Input<string>;
|
|
46709
47139
|
}
|
|
46710
|
-
interface
|
|
47140
|
+
interface AlertRuleScheduledIncident {
|
|
46711
47141
|
/**
|
|
46712
47142
|
* Whether to create an incident from alerts triggered by this Sentinel Scheduled Alert Rule?
|
|
46713
47143
|
*/
|
|
46714
|
-
|
|
47144
|
+
createIncidentEnabled: pulumi.Input<boolean>;
|
|
46715
47145
|
/**
|
|
46716
47146
|
* A `grouping` block as defined below.
|
|
46717
47147
|
*/
|
|
47148
|
+
grouping: pulumi.Input<inputs.sentinel.AlertRuleScheduledIncidentGrouping>;
|
|
47149
|
+
}
|
|
47150
|
+
interface AlertRuleScheduledIncidentConfiguration {
|
|
47151
|
+
/**
|
|
47152
|
+
* @deprecated The `createIncident` property has been superseded by the `createIncidentEnabled` property and will be removed in v4.0 of the AzureRM Provider
|
|
47153
|
+
*/
|
|
47154
|
+
createIncident: pulumi.Input<boolean>;
|
|
46718
47155
|
grouping: pulumi.Input<inputs.sentinel.AlertRuleScheduledIncidentConfigurationGrouping>;
|
|
46719
47156
|
}
|
|
46720
47157
|
interface AlertRuleScheduledIncidentConfigurationGrouping {
|
|
@@ -46727,15 +47164,15 @@ export declare namespace sentinel {
|
|
|
46727
47164
|
*/
|
|
46728
47165
|
entityMatchingMethod?: pulumi.Input<string>;
|
|
46729
47166
|
/**
|
|
46730
|
-
*
|
|
47167
|
+
* @deprecated The `groupByAlertDetails` property has been superseded by the `byAlertDetails` property and will be removed in v4.0 of the AzureRM Provider
|
|
46731
47168
|
*/
|
|
46732
47169
|
groupByAlertDetails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
46733
47170
|
/**
|
|
46734
|
-
*
|
|
47171
|
+
* @deprecated The `groupByCustomDetails` property has been superseded by the `byCustomDetails` property and will be removed in v4.0 of the AzureRM Provider
|
|
46735
47172
|
*/
|
|
46736
47173
|
groupByCustomDetails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
46737
47174
|
/**
|
|
46738
|
-
*
|
|
47175
|
+
* @deprecated The `groupByEntities` property has been superseded by the `byEntities` property and will be removed in v4.0 of the AzureRM Provider
|
|
46739
47176
|
*/
|
|
46740
47177
|
groupByEntities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
46741
47178
|
/**
|
|
@@ -46747,6 +47184,36 @@ export declare namespace sentinel {
|
|
|
46747
47184
|
*/
|
|
46748
47185
|
reopenClosedIncidents?: pulumi.Input<boolean>;
|
|
46749
47186
|
}
|
|
47187
|
+
interface AlertRuleScheduledIncidentGrouping {
|
|
47188
|
+
/**
|
|
47189
|
+
* A list of alert details to group by, only when the `entityMatchingMethod` is `Selected`. Possible values are `DisplayName` and `Severity`.
|
|
47190
|
+
*/
|
|
47191
|
+
byAlertDetails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
47192
|
+
/**
|
|
47193
|
+
* A list of custom details keys to group by, only when the `entityMatchingMethod` is `Selected`. Only keys defined in the `customDetails` may be used.
|
|
47194
|
+
*/
|
|
47195
|
+
byCustomDetails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
47196
|
+
/**
|
|
47197
|
+
* A list of entity types to group by, only when the `entityMatchingMethod` is `Selected`. Possible values are `Account`, `AzureResource`, `CloudApplication`, `DNS`, `File`, `FileHash`, `Host`, `IP`, `Mailbox`, `MailCluster`, `MailMessage`, `Malware`, `Process`, `RegistryKey`, `RegistryValue`, `SecurityGroup`, `SubmissionMail`, `URL`.
|
|
47198
|
+
*/
|
|
47199
|
+
byEntities?: pulumi.Input<pulumi.Input<string>[]>;
|
|
47200
|
+
/**
|
|
47201
|
+
* Enable grouping incidents created from alerts triggered by this Sentinel Scheduled Alert Rule. Defaults to `true`.
|
|
47202
|
+
*/
|
|
47203
|
+
enabled?: pulumi.Input<boolean>;
|
|
47204
|
+
/**
|
|
47205
|
+
* The method used to group incidents. Possible values are `AnyAlert`, `Selected` and `AllEntities`. Defaults to `AnyAlert`.
|
|
47206
|
+
*/
|
|
47207
|
+
entityMatchingMethod?: pulumi.Input<string>;
|
|
47208
|
+
/**
|
|
47209
|
+
* Limit the group to alerts created within the lookback duration (in ISO 8601 duration format). Defaults to `PT5M`.
|
|
47210
|
+
*/
|
|
47211
|
+
lookbackDuration?: pulumi.Input<string>;
|
|
47212
|
+
/**
|
|
47213
|
+
* Whether to re-open closed matching incidents? Defaults to `false`.
|
|
47214
|
+
*/
|
|
47215
|
+
reopenClosedIncidents?: pulumi.Input<boolean>;
|
|
47216
|
+
}
|
|
46750
47217
|
interface AlertRuleScheduledSentinelEntityMapping {
|
|
46751
47218
|
/**
|
|
46752
47219
|
* The column name to be mapped to the identifier.
|
|
@@ -49669,16 +50136,10 @@ export declare namespace synapse {
|
|
|
49669
50136
|
enabled?: pulumi.Input<boolean>;
|
|
49670
50137
|
}
|
|
49671
50138
|
interface WorkspaceAadAdmin {
|
|
49672
|
-
/**
|
|
49673
|
-
* The login name of the Azure AD Administrator of this Synapse Workspace.
|
|
49674
|
-
*/
|
|
49675
50139
|
login: pulumi.Input<string>;
|
|
49676
|
-
/**
|
|
49677
|
-
* The object id of the Azure AD Administrator of this Synapse Workspace.
|
|
49678
|
-
*/
|
|
49679
50140
|
objectId: pulumi.Input<string>;
|
|
49680
50141
|
/**
|
|
49681
|
-
* The
|
|
50142
|
+
* The Tenant ID for the Service Principal associated with the Managed Service Identity of this Synapse Workspace.
|
|
49682
50143
|
*/
|
|
49683
50144
|
tenantId: pulumi.Input<string>;
|
|
49684
50145
|
}
|
|
@@ -49775,16 +50236,10 @@ export declare namespace synapse {
|
|
|
49775
50236
|
type: pulumi.Input<string>;
|
|
49776
50237
|
}
|
|
49777
50238
|
interface WorkspaceSqlAadAdmin {
|
|
49778
|
-
/**
|
|
49779
|
-
* The login name of the Azure AD Administrator of this Synapse Workspace SQL.
|
|
49780
|
-
*/
|
|
49781
50239
|
login: pulumi.Input<string>;
|
|
49782
|
-
/**
|
|
49783
|
-
* The object id of the Azure AD Administrator of this Synapse Workspace SQL.
|
|
49784
|
-
*/
|
|
49785
50240
|
objectId: pulumi.Input<string>;
|
|
49786
50241
|
/**
|
|
49787
|
-
* The
|
|
50242
|
+
* The Tenant ID for the Service Principal associated with the Managed Service Identity of this Synapse Workspace.
|
|
49788
50243
|
*/
|
|
49789
50244
|
tenantId: pulumi.Input<string>;
|
|
49790
50245
|
}
|