@pulumi/azure 5.81.0-alpha.1718949576 → 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/output.d.ts
CHANGED
|
@@ -1892,13 +1892,7 @@ export declare namespace apimanagement {
|
|
|
1892
1892
|
type: string;
|
|
1893
1893
|
}
|
|
1894
1894
|
interface ServicePolicy {
|
|
1895
|
-
/**
|
|
1896
|
-
* The XML Content for this Policy.
|
|
1897
|
-
*/
|
|
1898
1895
|
xmlContent: string;
|
|
1899
|
-
/**
|
|
1900
|
-
* A link to an API Management Policy XML Document, which must be publicly available.
|
|
1901
|
-
*/
|
|
1902
1896
|
xmlLink?: string;
|
|
1903
1897
|
}
|
|
1904
1898
|
interface ServiceProtocols {
|
|
@@ -19768,11 +19762,25 @@ export declare namespace automation {
|
|
|
19768
19762
|
type: string;
|
|
19769
19763
|
}
|
|
19770
19764
|
interface RunBookJobSchedule {
|
|
19765
|
+
/**
|
|
19766
|
+
* The UUID of automation runbook job schedule ID.
|
|
19767
|
+
*/
|
|
19771
19768
|
jobScheduleId: string;
|
|
19769
|
+
/**
|
|
19770
|
+
* A map of key/value pairs corresponding to the arguments that can be passed to the Runbook.
|
|
19771
|
+
*
|
|
19772
|
+
* > **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.
|
|
19773
|
+
*/
|
|
19772
19774
|
parameters?: {
|
|
19773
19775
|
[key: string]: string;
|
|
19774
19776
|
};
|
|
19777
|
+
/**
|
|
19778
|
+
* Name of a Hybrid Worker Group the Runbook will be executed on.
|
|
19779
|
+
*/
|
|
19775
19780
|
runOn?: string;
|
|
19781
|
+
/**
|
|
19782
|
+
* The name of the Schedule.
|
|
19783
|
+
*/
|
|
19776
19784
|
scheduleName: string;
|
|
19777
19785
|
}
|
|
19778
19786
|
interface RunBookPublishContentLink {
|
|
@@ -23366,6 +23374,120 @@ export declare namespace cognitive {
|
|
|
23366
23374
|
type: string;
|
|
23367
23375
|
}
|
|
23368
23376
|
}
|
|
23377
|
+
export declare namespace communication {
|
|
23378
|
+
interface EmailServiceDomainVerificationRecord {
|
|
23379
|
+
/**
|
|
23380
|
+
* (Optional) An `dkim2` block as defined below.
|
|
23381
|
+
*/
|
|
23382
|
+
dkim2s: outputs.communication.EmailServiceDomainVerificationRecordDkim2[];
|
|
23383
|
+
/**
|
|
23384
|
+
* (Optional) An `dkim` block as defined below.
|
|
23385
|
+
*/
|
|
23386
|
+
dkims: outputs.communication.EmailServiceDomainVerificationRecordDkim[];
|
|
23387
|
+
/**
|
|
23388
|
+
* (Optional) An `dmarc` block as defined below.
|
|
23389
|
+
*/
|
|
23390
|
+
dmarcs: outputs.communication.EmailServiceDomainVerificationRecordDmarc[];
|
|
23391
|
+
/**
|
|
23392
|
+
* (Optional) An `domain` block as defined below.
|
|
23393
|
+
*/
|
|
23394
|
+
domains: outputs.communication.EmailServiceDomainVerificationRecordDomain[];
|
|
23395
|
+
/**
|
|
23396
|
+
* (Optional) An `spf` block as defined below.
|
|
23397
|
+
*/
|
|
23398
|
+
spfs: outputs.communication.EmailServiceDomainVerificationRecordSpf[];
|
|
23399
|
+
}
|
|
23400
|
+
interface EmailServiceDomainVerificationRecordDkim {
|
|
23401
|
+
/**
|
|
23402
|
+
* 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.
|
|
23403
|
+
*/
|
|
23404
|
+
name: string;
|
|
23405
|
+
/**
|
|
23406
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
23407
|
+
*/
|
|
23408
|
+
ttl: number;
|
|
23409
|
+
/**
|
|
23410
|
+
* Type of the DNS record. Example: TXT
|
|
23411
|
+
*/
|
|
23412
|
+
type: string;
|
|
23413
|
+
/**
|
|
23414
|
+
* Value of the DNS record.
|
|
23415
|
+
*/
|
|
23416
|
+
value: string;
|
|
23417
|
+
}
|
|
23418
|
+
interface EmailServiceDomainVerificationRecordDkim2 {
|
|
23419
|
+
/**
|
|
23420
|
+
* 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.
|
|
23421
|
+
*/
|
|
23422
|
+
name: string;
|
|
23423
|
+
/**
|
|
23424
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
23425
|
+
*/
|
|
23426
|
+
ttl: number;
|
|
23427
|
+
/**
|
|
23428
|
+
* Type of the DNS record. Example: TXT
|
|
23429
|
+
*/
|
|
23430
|
+
type: string;
|
|
23431
|
+
/**
|
|
23432
|
+
* Value of the DNS record.
|
|
23433
|
+
*/
|
|
23434
|
+
value: string;
|
|
23435
|
+
}
|
|
23436
|
+
interface EmailServiceDomainVerificationRecordDmarc {
|
|
23437
|
+
/**
|
|
23438
|
+
* 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.
|
|
23439
|
+
*/
|
|
23440
|
+
name: string;
|
|
23441
|
+
/**
|
|
23442
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
23443
|
+
*/
|
|
23444
|
+
ttl: number;
|
|
23445
|
+
/**
|
|
23446
|
+
* Type of the DNS record. Example: TXT
|
|
23447
|
+
*/
|
|
23448
|
+
type: string;
|
|
23449
|
+
/**
|
|
23450
|
+
* Value of the DNS record.
|
|
23451
|
+
*/
|
|
23452
|
+
value: string;
|
|
23453
|
+
}
|
|
23454
|
+
interface EmailServiceDomainVerificationRecordDomain {
|
|
23455
|
+
/**
|
|
23456
|
+
* 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.
|
|
23457
|
+
*/
|
|
23458
|
+
name: string;
|
|
23459
|
+
/**
|
|
23460
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
23461
|
+
*/
|
|
23462
|
+
ttl: number;
|
|
23463
|
+
/**
|
|
23464
|
+
* Type of the DNS record. Example: TXT
|
|
23465
|
+
*/
|
|
23466
|
+
type: string;
|
|
23467
|
+
/**
|
|
23468
|
+
* Value of the DNS record.
|
|
23469
|
+
*/
|
|
23470
|
+
value: string;
|
|
23471
|
+
}
|
|
23472
|
+
interface EmailServiceDomainVerificationRecordSpf {
|
|
23473
|
+
/**
|
|
23474
|
+
* 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.
|
|
23475
|
+
*/
|
|
23476
|
+
name: string;
|
|
23477
|
+
/**
|
|
23478
|
+
* Represents an expiry time in seconds to represent how long this entry can be cached by the resolver, default = 3600sec.
|
|
23479
|
+
*/
|
|
23480
|
+
ttl: number;
|
|
23481
|
+
/**
|
|
23482
|
+
* Type of the DNS record. Example: TXT
|
|
23483
|
+
*/
|
|
23484
|
+
type: string;
|
|
23485
|
+
/**
|
|
23486
|
+
* Value of the DNS record.
|
|
23487
|
+
*/
|
|
23488
|
+
value: string;
|
|
23489
|
+
}
|
|
23490
|
+
}
|
|
23369
23491
|
export declare namespace compute {
|
|
23370
23492
|
interface BastionHostIpConfiguration {
|
|
23371
23493
|
/**
|
|
@@ -31670,15 +31792,9 @@ export declare namespace containerservice {
|
|
|
31670
31792
|
*/
|
|
31671
31793
|
dockerBridgeCidr: string;
|
|
31672
31794
|
/**
|
|
31673
|
-
*
|
|
31674
|
-
*
|
|
31675
|
-
* > **Note:** When `ebpfDataPlane` is set to `cilium`, the `networkPlugin` field can only be set to `azure`.
|
|
31676
|
-
*
|
|
31677
|
-
* > **Note:** When `ebpfDataPlane` is set to `cilium`, one of either `networkPluginMode = "overlay"` or `podSubnetId` must be specified.
|
|
31678
|
-
*
|
|
31679
|
-
* > **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.
|
|
31795
|
+
* @deprecated This property has been superseded by the property `networkDataPlane` and will be removed in v4.0 of the AzureRM provider.
|
|
31680
31796
|
*/
|
|
31681
|
-
ebpfDataPlane
|
|
31797
|
+
ebpfDataPlane: string;
|
|
31682
31798
|
/**
|
|
31683
31799
|
* Specifies a list of IP versions the Kubernetes Cluster will use to assign IP addresses to its nodes and pods. Possible values are `IPv4` and/or `IPv6`. `IPv4` must always be specified. Changing this forces a new resource to be created.
|
|
31684
31800
|
*
|
|
@@ -31699,6 +31815,16 @@ export declare namespace containerservice {
|
|
|
31699
31815
|
* 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.
|
|
31700
31816
|
*/
|
|
31701
31817
|
natGatewayProfile: outputs.containerservice.KubernetesClusterNetworkProfileNatGatewayProfile;
|
|
31818
|
+
/**
|
|
31819
|
+
* 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.
|
|
31820
|
+
*
|
|
31821
|
+
* > **Note:** When `networkDataPlane` is set to `cilium`, the `networkPlugin` field can only be set to `azure`.
|
|
31822
|
+
*
|
|
31823
|
+
* > **Note:** When `networkDataPlane` is set to `cilium`, one of either `networkPluginMode = "overlay"` or `podSubnetId` must be specified.
|
|
31824
|
+
*
|
|
31825
|
+
* > **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.
|
|
31826
|
+
*/
|
|
31827
|
+
networkDataPlane: string;
|
|
31702
31828
|
/**
|
|
31703
31829
|
* Network mode to be used with Azure CNI. Possible values are `bridge` and `transparent`. Changing this forces a new resource to be created.
|
|
31704
31830
|
*
|
|
@@ -31724,7 +31850,7 @@ export declare namespace containerservice {
|
|
|
31724
31850
|
*
|
|
31725
31851
|
* > **Note:** When `networkPolicy` is set to `azure`, the `networkPlugin` field can only be set to `azure`.
|
|
31726
31852
|
*
|
|
31727
|
-
* > **Note:** When `networkPolicy` is set to `cilium`, the `
|
|
31853
|
+
* > **Note:** When `networkPolicy` is set to `cilium`, the `networkDataPlane` field must be set to `cilium`.
|
|
31728
31854
|
*/
|
|
31729
31855
|
networkPolicy: string;
|
|
31730
31856
|
outboundIpAddressIds: string[];
|
|
@@ -45441,6 +45567,44 @@ export declare namespace management {
|
|
|
45441
45567
|
notIns?: string[];
|
|
45442
45568
|
}
|
|
45443
45569
|
}
|
|
45570
|
+
export declare namespace maps {
|
|
45571
|
+
interface AccountCors {
|
|
45572
|
+
/**
|
|
45573
|
+
* A list of origins that should be allowed to make cross-origin calls.
|
|
45574
|
+
*/
|
|
45575
|
+
allowedOrigins: string[];
|
|
45576
|
+
}
|
|
45577
|
+
interface AccountDataStore {
|
|
45578
|
+
/**
|
|
45579
|
+
* The ID of the Storage Account that should be linked to this Azure Maps Account.
|
|
45580
|
+
*/
|
|
45581
|
+
storageAccountId?: string;
|
|
45582
|
+
/**
|
|
45583
|
+
* The name given to the linked Storage Account.
|
|
45584
|
+
*/
|
|
45585
|
+
uniqueName: string;
|
|
45586
|
+
}
|
|
45587
|
+
interface AccountIdentity {
|
|
45588
|
+
/**
|
|
45589
|
+
* A list of User Assigned Managed Identity IDs to be assigned to this Azure Maps Account.
|
|
45590
|
+
*
|
|
45591
|
+
* > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
|
|
45592
|
+
*/
|
|
45593
|
+
identityIds?: string[];
|
|
45594
|
+
/**
|
|
45595
|
+
* The Principal ID associated with this Managed Service Identity.
|
|
45596
|
+
*/
|
|
45597
|
+
principalId: string;
|
|
45598
|
+
/**
|
|
45599
|
+
* The Tenant ID associated with this Managed Service Identity.
|
|
45600
|
+
*/
|
|
45601
|
+
tenantId: string;
|
|
45602
|
+
/**
|
|
45603
|
+
* 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).
|
|
45604
|
+
*/
|
|
45605
|
+
type: string;
|
|
45606
|
+
}
|
|
45607
|
+
}
|
|
45444
45608
|
export declare namespace mariadb {
|
|
45445
45609
|
interface GetMariaDbServerStorageProfile {
|
|
45446
45610
|
/**
|
|
@@ -52167,7 +52331,7 @@ export declare namespace netapp {
|
|
|
52167
52331
|
/**
|
|
52168
52332
|
* A list of allowed protocols. Valid values include `CIFS`, `NFSv3`, or `NFSv4.1`. Only one value is supported at this time. This replaces the previous arguments: `cifsEnabled`, `nfsv3Enabled` and `nfsv4Enabled`.
|
|
52169
52333
|
*/
|
|
52170
|
-
protocolsEnabled
|
|
52334
|
+
protocolsEnabled?: string;
|
|
52171
52335
|
/**
|
|
52172
52336
|
* Is root access permitted to this volume?
|
|
52173
52337
|
*/
|
|
@@ -57948,6 +58112,532 @@ export declare namespace pim {
|
|
|
57948
58112
|
*/
|
|
57949
58113
|
system?: string;
|
|
57950
58114
|
}
|
|
58115
|
+
interface GetRoleManagementPolicyActivationRule {
|
|
58116
|
+
/**
|
|
58117
|
+
* An `approvalStage` block as defined below.
|
|
58118
|
+
*/
|
|
58119
|
+
approvalStages: outputs.pim.GetRoleManagementPolicyActivationRuleApprovalStage[];
|
|
58120
|
+
/**
|
|
58121
|
+
* (String) The maximum length of time an activated role can be valid, in an ISO8601 Duration format.
|
|
58122
|
+
*/
|
|
58123
|
+
maximumDuration: string;
|
|
58124
|
+
/**
|
|
58125
|
+
* (Boolean) Is approval required for activation.
|
|
58126
|
+
*/
|
|
58127
|
+
requireApproval: boolean;
|
|
58128
|
+
/**
|
|
58129
|
+
* (Boolean) Is a justification required to create new assignments.
|
|
58130
|
+
*/
|
|
58131
|
+
requireJustification: boolean;
|
|
58132
|
+
/**
|
|
58133
|
+
* (Boolean) Is multi-factor authentication required to create new assignments.
|
|
58134
|
+
*/
|
|
58135
|
+
requireMultifactorAuthentication: boolean;
|
|
58136
|
+
/**
|
|
58137
|
+
* (Boolean) Is ticket information required to create new assignments.
|
|
58138
|
+
*/
|
|
58139
|
+
requireTicketInfo: boolean;
|
|
58140
|
+
/**
|
|
58141
|
+
* (String) The Entra ID Conditional Access context that must be present for activation.
|
|
58142
|
+
*/
|
|
58143
|
+
requiredConditionalAccessAuthenticationContext: string;
|
|
58144
|
+
}
|
|
58145
|
+
interface GetRoleManagementPolicyActivationRuleApprovalStage {
|
|
58146
|
+
/**
|
|
58147
|
+
* The IDs of the users or groups who can approve the activation
|
|
58148
|
+
*/
|
|
58149
|
+
primaryApprovers: outputs.pim.GetRoleManagementPolicyActivationRuleApprovalStagePrimaryApprover[];
|
|
58150
|
+
}
|
|
58151
|
+
interface GetRoleManagementPolicyActivationRuleApprovalStagePrimaryApprover {
|
|
58152
|
+
/**
|
|
58153
|
+
* (String) The ID of the object which will act as an approver.
|
|
58154
|
+
*/
|
|
58155
|
+
objectId: string;
|
|
58156
|
+
/**
|
|
58157
|
+
* (String) The type of object acting as an approver. Either `User` or `Group`.
|
|
58158
|
+
*/
|
|
58159
|
+
type: string;
|
|
58160
|
+
}
|
|
58161
|
+
interface GetRoleManagementPolicyActiveAssignmentRule {
|
|
58162
|
+
/**
|
|
58163
|
+
* (Boolean) Must an assignment have an expiry date.
|
|
58164
|
+
*/
|
|
58165
|
+
expirationRequired: boolean;
|
|
58166
|
+
/**
|
|
58167
|
+
* (String) The maximum length of time an assignment can be valid, as an ISO8601 duration.
|
|
58168
|
+
*/
|
|
58169
|
+
expireAfter: string;
|
|
58170
|
+
/**
|
|
58171
|
+
* (Boolean) Is a justification required to create new assignments.
|
|
58172
|
+
*/
|
|
58173
|
+
requireJustification: boolean;
|
|
58174
|
+
/**
|
|
58175
|
+
* (Boolean) Is multi-factor authentication required to create new assignments.
|
|
58176
|
+
*/
|
|
58177
|
+
requireMultifactorAuthentication: boolean;
|
|
58178
|
+
/**
|
|
58179
|
+
* (Boolean) Is ticket information required to create new assignments.
|
|
58180
|
+
*/
|
|
58181
|
+
requireTicketInfo: boolean;
|
|
58182
|
+
}
|
|
58183
|
+
interface GetRoleManagementPolicyEligibleAssignmentRule {
|
|
58184
|
+
/**
|
|
58185
|
+
* (Boolean) Must an assignment have an expiry date.
|
|
58186
|
+
*/
|
|
58187
|
+
expirationRequired: boolean;
|
|
58188
|
+
/**
|
|
58189
|
+
* (String) The maximum length of time an assignment can be valid, as an ISO8601 duration.
|
|
58190
|
+
*/
|
|
58191
|
+
expireAfter: string;
|
|
58192
|
+
}
|
|
58193
|
+
interface GetRoleManagementPolicyNotificationRule {
|
|
58194
|
+
/**
|
|
58195
|
+
* A `notificationTarget` block as defined below with the details of notfications on active role assignments.
|
|
58196
|
+
*/
|
|
58197
|
+
activeAssignments: outputs.pim.GetRoleManagementPolicyNotificationRuleActiveAssignment[];
|
|
58198
|
+
/**
|
|
58199
|
+
* A `notificationTarget` block as defined below with the details of notifications on activation of eligible role.
|
|
58200
|
+
*/
|
|
58201
|
+
eligibleActivations: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleActivation[];
|
|
58202
|
+
/**
|
|
58203
|
+
* A `notificationTarget` block as defined below with the details of notifications on eligible role assignments.
|
|
58204
|
+
*/
|
|
58205
|
+
eligibleAssignments: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleAssignment[];
|
|
58206
|
+
}
|
|
58207
|
+
interface GetRoleManagementPolicyNotificationRuleActiveAssignment {
|
|
58208
|
+
/**
|
|
58209
|
+
* A `notificationSettings` block as defined above.
|
|
58210
|
+
*/
|
|
58211
|
+
adminNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleActiveAssignmentAdminNotification[];
|
|
58212
|
+
/**
|
|
58213
|
+
* A `notificationSettings` block as defined above.
|
|
58214
|
+
*/
|
|
58215
|
+
approverNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleActiveAssignmentApproverNotification[];
|
|
58216
|
+
/**
|
|
58217
|
+
* A `notificationSettings` block as defined above.
|
|
58218
|
+
*/
|
|
58219
|
+
assigneeNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleActiveAssignmentAssigneeNotification[];
|
|
58220
|
+
}
|
|
58221
|
+
interface GetRoleManagementPolicyNotificationRuleActiveAssignmentAdminNotification {
|
|
58222
|
+
/**
|
|
58223
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58224
|
+
*/
|
|
58225
|
+
additionalRecipients: string[];
|
|
58226
|
+
/**
|
|
58227
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58228
|
+
*/
|
|
58229
|
+
defaultRecipients: boolean;
|
|
58230
|
+
/**
|
|
58231
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58232
|
+
*/
|
|
58233
|
+
notificationLevel: string;
|
|
58234
|
+
}
|
|
58235
|
+
interface GetRoleManagementPolicyNotificationRuleActiveAssignmentApproverNotification {
|
|
58236
|
+
/**
|
|
58237
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58238
|
+
*/
|
|
58239
|
+
additionalRecipients: string[];
|
|
58240
|
+
/**
|
|
58241
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58242
|
+
*/
|
|
58243
|
+
defaultRecipients: boolean;
|
|
58244
|
+
/**
|
|
58245
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58246
|
+
*/
|
|
58247
|
+
notificationLevel: string;
|
|
58248
|
+
}
|
|
58249
|
+
interface GetRoleManagementPolicyNotificationRuleActiveAssignmentAssigneeNotification {
|
|
58250
|
+
/**
|
|
58251
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58252
|
+
*/
|
|
58253
|
+
additionalRecipients: string[];
|
|
58254
|
+
/**
|
|
58255
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58256
|
+
*/
|
|
58257
|
+
defaultRecipients: boolean;
|
|
58258
|
+
/**
|
|
58259
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58260
|
+
*/
|
|
58261
|
+
notificationLevel: string;
|
|
58262
|
+
}
|
|
58263
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleActivation {
|
|
58264
|
+
/**
|
|
58265
|
+
* A `notificationSettings` block as defined above.
|
|
58266
|
+
*/
|
|
58267
|
+
adminNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleActivationAdminNotification[];
|
|
58268
|
+
/**
|
|
58269
|
+
* A `notificationSettings` block as defined above.
|
|
58270
|
+
*/
|
|
58271
|
+
approverNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleActivationApproverNotification[];
|
|
58272
|
+
/**
|
|
58273
|
+
* A `notificationSettings` block as defined above.
|
|
58274
|
+
*/
|
|
58275
|
+
assigneeNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleActivationAssigneeNotification[];
|
|
58276
|
+
}
|
|
58277
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleActivationAdminNotification {
|
|
58278
|
+
/**
|
|
58279
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58280
|
+
*/
|
|
58281
|
+
additionalRecipients: string[];
|
|
58282
|
+
/**
|
|
58283
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58284
|
+
*/
|
|
58285
|
+
defaultRecipients: boolean;
|
|
58286
|
+
/**
|
|
58287
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58288
|
+
*/
|
|
58289
|
+
notificationLevel: string;
|
|
58290
|
+
}
|
|
58291
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleActivationApproverNotification {
|
|
58292
|
+
/**
|
|
58293
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58294
|
+
*/
|
|
58295
|
+
additionalRecipients: string[];
|
|
58296
|
+
/**
|
|
58297
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58298
|
+
*/
|
|
58299
|
+
defaultRecipients: boolean;
|
|
58300
|
+
/**
|
|
58301
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58302
|
+
*/
|
|
58303
|
+
notificationLevel: string;
|
|
58304
|
+
}
|
|
58305
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleActivationAssigneeNotification {
|
|
58306
|
+
/**
|
|
58307
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58308
|
+
*/
|
|
58309
|
+
additionalRecipients: string[];
|
|
58310
|
+
/**
|
|
58311
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58312
|
+
*/
|
|
58313
|
+
defaultRecipients: boolean;
|
|
58314
|
+
/**
|
|
58315
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58316
|
+
*/
|
|
58317
|
+
notificationLevel: string;
|
|
58318
|
+
}
|
|
58319
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleAssignment {
|
|
58320
|
+
/**
|
|
58321
|
+
* A `notificationSettings` block as defined above.
|
|
58322
|
+
*/
|
|
58323
|
+
adminNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleAssignmentAdminNotification[];
|
|
58324
|
+
/**
|
|
58325
|
+
* A `notificationSettings` block as defined above.
|
|
58326
|
+
*/
|
|
58327
|
+
approverNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleAssignmentApproverNotification[];
|
|
58328
|
+
/**
|
|
58329
|
+
* A `notificationSettings` block as defined above.
|
|
58330
|
+
*/
|
|
58331
|
+
assigneeNotifications: outputs.pim.GetRoleManagementPolicyNotificationRuleEligibleAssignmentAssigneeNotification[];
|
|
58332
|
+
}
|
|
58333
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleAssignmentAdminNotification {
|
|
58334
|
+
/**
|
|
58335
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58336
|
+
*/
|
|
58337
|
+
additionalRecipients: string[];
|
|
58338
|
+
/**
|
|
58339
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58340
|
+
*/
|
|
58341
|
+
defaultRecipients: boolean;
|
|
58342
|
+
/**
|
|
58343
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58344
|
+
*/
|
|
58345
|
+
notificationLevel: string;
|
|
58346
|
+
}
|
|
58347
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleAssignmentApproverNotification {
|
|
58348
|
+
/**
|
|
58349
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58350
|
+
*/
|
|
58351
|
+
additionalRecipients: string[];
|
|
58352
|
+
/**
|
|
58353
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58354
|
+
*/
|
|
58355
|
+
defaultRecipients: boolean;
|
|
58356
|
+
/**
|
|
58357
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58358
|
+
*/
|
|
58359
|
+
notificationLevel: string;
|
|
58360
|
+
}
|
|
58361
|
+
interface GetRoleManagementPolicyNotificationRuleEligibleAssignmentAssigneeNotification {
|
|
58362
|
+
/**
|
|
58363
|
+
* A list of additional email addresses that will receive these notifications.
|
|
58364
|
+
*/
|
|
58365
|
+
additionalRecipients: string[];
|
|
58366
|
+
/**
|
|
58367
|
+
* (Boolean) Should the default recipients receive these notifications.
|
|
58368
|
+
*/
|
|
58369
|
+
defaultRecipients: boolean;
|
|
58370
|
+
/**
|
|
58371
|
+
* (String) What level of notifications should be sent. Either `All` or `Critical`.
|
|
58372
|
+
*/
|
|
58373
|
+
notificationLevel: string;
|
|
58374
|
+
}
|
|
58375
|
+
interface RoleManagementPolicyActivationRules {
|
|
58376
|
+
/**
|
|
58377
|
+
* An `approvalStage` block as defined below.
|
|
58378
|
+
*/
|
|
58379
|
+
approvalStage?: outputs.pim.RoleManagementPolicyActivationRulesApprovalStage;
|
|
58380
|
+
/**
|
|
58381
|
+
* 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`.
|
|
58382
|
+
*/
|
|
58383
|
+
maximumDuration: string;
|
|
58384
|
+
/**
|
|
58385
|
+
* Is approval required for activation. If `true` an `approvalStage` block must be provided.
|
|
58386
|
+
*/
|
|
58387
|
+
requireApproval: boolean;
|
|
58388
|
+
/**
|
|
58389
|
+
* Is a justification required during activation of the role.
|
|
58390
|
+
*/
|
|
58391
|
+
requireJustification: boolean;
|
|
58392
|
+
/**
|
|
58393
|
+
* Is multi-factor authentication required to activate the role. Conflicts with `requiredConditionalAccessAuthenticationContext`.
|
|
58394
|
+
*/
|
|
58395
|
+
requireMultifactorAuthentication: boolean;
|
|
58396
|
+
/**
|
|
58397
|
+
* Is ticket information requrired during activation of the role.
|
|
58398
|
+
*/
|
|
58399
|
+
requireTicketInfo: boolean;
|
|
58400
|
+
/**
|
|
58401
|
+
* The Entra ID Conditional Access context that must be present for activation. Conflicts with `requireMultifactorAuthentication`.
|
|
58402
|
+
*/
|
|
58403
|
+
requiredConditionalAccessAuthenticationContext: string;
|
|
58404
|
+
}
|
|
58405
|
+
interface RoleManagementPolicyActivationRulesApprovalStage {
|
|
58406
|
+
/**
|
|
58407
|
+
* The IDs of the users or groups who can approve the activation
|
|
58408
|
+
*/
|
|
58409
|
+
primaryApprovers: outputs.pim.RoleManagementPolicyActivationRulesApprovalStagePrimaryApprover[];
|
|
58410
|
+
}
|
|
58411
|
+
interface RoleManagementPolicyActivationRulesApprovalStagePrimaryApprover {
|
|
58412
|
+
/**
|
|
58413
|
+
* The ID of the object which will act as an approver.
|
|
58414
|
+
*/
|
|
58415
|
+
objectId: string;
|
|
58416
|
+
/**
|
|
58417
|
+
* The type of object acting as an approver. Possible options are `User` and `Group`.
|
|
58418
|
+
*/
|
|
58419
|
+
type: string;
|
|
58420
|
+
}
|
|
58421
|
+
interface RoleManagementPolicyActiveAssignmentRules {
|
|
58422
|
+
/**
|
|
58423
|
+
* Must an assignment have an expiry date. `false` allows permanent assignment.
|
|
58424
|
+
*/
|
|
58425
|
+
expirationRequired: boolean;
|
|
58426
|
+
/**
|
|
58427
|
+
* The maximum length of time an assignment can be valid, as an ISO8601 duration. Permitted values: `P15D`, `P30D`, `P90D`, `P180D`, or `P365D`.
|
|
58428
|
+
*/
|
|
58429
|
+
expireAfter: string;
|
|
58430
|
+
/**
|
|
58431
|
+
* Is a justification required to create new assignments.
|
|
58432
|
+
*/
|
|
58433
|
+
requireJustification: boolean;
|
|
58434
|
+
/**
|
|
58435
|
+
* Is multi-factor authentication required to create new assignments.
|
|
58436
|
+
*/
|
|
58437
|
+
requireMultifactorAuthentication: boolean;
|
|
58438
|
+
/**
|
|
58439
|
+
* Is ticket information required to create new assignments.
|
|
58440
|
+
*
|
|
58441
|
+
* One of `expirationRequired` or `expireAfter` must be provided.
|
|
58442
|
+
*/
|
|
58443
|
+
requireTicketInfo: boolean;
|
|
58444
|
+
}
|
|
58445
|
+
interface RoleManagementPolicyEligibleAssignmentRules {
|
|
58446
|
+
/**
|
|
58447
|
+
* Must an assignment have an expiry date. `false` allows permanent assignment.
|
|
58448
|
+
*/
|
|
58449
|
+
expirationRequired: boolean;
|
|
58450
|
+
/**
|
|
58451
|
+
* The maximum length of time an assignment can be valid, as an ISO8601 duration. Permitted values: `P15D`, `P30D`, `P90D`, `P180D`, or `P365D`.
|
|
58452
|
+
*
|
|
58453
|
+
* One of `expirationRequired` or `expireAfter` must be provided.
|
|
58454
|
+
*/
|
|
58455
|
+
expireAfter: string;
|
|
58456
|
+
}
|
|
58457
|
+
interface RoleManagementPolicyNotificationRules {
|
|
58458
|
+
/**
|
|
58459
|
+
* A `notificationTarget` block as defined below to configure notfications on active role assignments.
|
|
58460
|
+
*/
|
|
58461
|
+
activeAssignments: outputs.pim.RoleManagementPolicyNotificationRulesActiveAssignments;
|
|
58462
|
+
/**
|
|
58463
|
+
* A `notificationTarget` block as defined below for configuring notifications on activation of eligible role.
|
|
58464
|
+
*/
|
|
58465
|
+
eligibleActivations: outputs.pim.RoleManagementPolicyNotificationRulesEligibleActivations;
|
|
58466
|
+
/**
|
|
58467
|
+
* A `notificationTarget` block as defined below to configure notification on eligible role assignments.
|
|
58468
|
+
*
|
|
58469
|
+
* At least one `notificationTarget` block must be provided.
|
|
58470
|
+
*/
|
|
58471
|
+
eligibleAssignments: outputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignments;
|
|
58472
|
+
}
|
|
58473
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignments {
|
|
58474
|
+
/**
|
|
58475
|
+
* Admin notification settings
|
|
58476
|
+
*/
|
|
58477
|
+
adminNotifications: outputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsAdminNotifications;
|
|
58478
|
+
/**
|
|
58479
|
+
* Approver notification settings
|
|
58480
|
+
*/
|
|
58481
|
+
approverNotifications: outputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsApproverNotifications;
|
|
58482
|
+
/**
|
|
58483
|
+
* Assignee notification settings
|
|
58484
|
+
*/
|
|
58485
|
+
assigneeNotifications: outputs.pim.RoleManagementPolicyNotificationRulesActiveAssignmentsAssigneeNotifications;
|
|
58486
|
+
}
|
|
58487
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsAdminNotifications {
|
|
58488
|
+
/**
|
|
58489
|
+
* The additional recipients to notify
|
|
58490
|
+
*/
|
|
58491
|
+
additionalRecipients: string[];
|
|
58492
|
+
/**
|
|
58493
|
+
* Whether the default recipients are notified
|
|
58494
|
+
*/
|
|
58495
|
+
defaultRecipients: boolean;
|
|
58496
|
+
/**
|
|
58497
|
+
* What level of notifications are sent
|
|
58498
|
+
*/
|
|
58499
|
+
notificationLevel: string;
|
|
58500
|
+
}
|
|
58501
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsApproverNotifications {
|
|
58502
|
+
/**
|
|
58503
|
+
* The additional recipients to notify
|
|
58504
|
+
*/
|
|
58505
|
+
additionalRecipients: string[];
|
|
58506
|
+
/**
|
|
58507
|
+
* Whether the default recipients are notified
|
|
58508
|
+
*/
|
|
58509
|
+
defaultRecipients: boolean;
|
|
58510
|
+
/**
|
|
58511
|
+
* What level of notifications are sent
|
|
58512
|
+
*/
|
|
58513
|
+
notificationLevel: string;
|
|
58514
|
+
}
|
|
58515
|
+
interface RoleManagementPolicyNotificationRulesActiveAssignmentsAssigneeNotifications {
|
|
58516
|
+
/**
|
|
58517
|
+
* The additional recipients to notify
|
|
58518
|
+
*/
|
|
58519
|
+
additionalRecipients: string[];
|
|
58520
|
+
/**
|
|
58521
|
+
* Whether the default recipients are notified
|
|
58522
|
+
*/
|
|
58523
|
+
defaultRecipients: boolean;
|
|
58524
|
+
/**
|
|
58525
|
+
* What level of notifications are sent
|
|
58526
|
+
*/
|
|
58527
|
+
notificationLevel: string;
|
|
58528
|
+
}
|
|
58529
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivations {
|
|
58530
|
+
/**
|
|
58531
|
+
* Admin notification settings
|
|
58532
|
+
*/
|
|
58533
|
+
adminNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotifications;
|
|
58534
|
+
/**
|
|
58535
|
+
* Approver notification settings
|
|
58536
|
+
*/
|
|
58537
|
+
approverNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotifications;
|
|
58538
|
+
/**
|
|
58539
|
+
* Assignee notification settings
|
|
58540
|
+
*/
|
|
58541
|
+
assigneeNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotifications;
|
|
58542
|
+
}
|
|
58543
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotifications {
|
|
58544
|
+
/**
|
|
58545
|
+
* The additional recipients to notify
|
|
58546
|
+
*/
|
|
58547
|
+
additionalRecipients: string[];
|
|
58548
|
+
/**
|
|
58549
|
+
* Whether the default recipients are notified
|
|
58550
|
+
*/
|
|
58551
|
+
defaultRecipients: boolean;
|
|
58552
|
+
/**
|
|
58553
|
+
* What level of notifications are sent
|
|
58554
|
+
*/
|
|
58555
|
+
notificationLevel: string;
|
|
58556
|
+
}
|
|
58557
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotifications {
|
|
58558
|
+
/**
|
|
58559
|
+
* The additional recipients to notify
|
|
58560
|
+
*/
|
|
58561
|
+
additionalRecipients: string[];
|
|
58562
|
+
/**
|
|
58563
|
+
* Whether the default recipients are notified
|
|
58564
|
+
*/
|
|
58565
|
+
defaultRecipients: boolean;
|
|
58566
|
+
/**
|
|
58567
|
+
* What level of notifications are sent
|
|
58568
|
+
*/
|
|
58569
|
+
notificationLevel: string;
|
|
58570
|
+
}
|
|
58571
|
+
interface RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotifications {
|
|
58572
|
+
/**
|
|
58573
|
+
* The additional recipients to notify
|
|
58574
|
+
*/
|
|
58575
|
+
additionalRecipients: string[];
|
|
58576
|
+
/**
|
|
58577
|
+
* Whether the default recipients are notified
|
|
58578
|
+
*/
|
|
58579
|
+
defaultRecipients: boolean;
|
|
58580
|
+
/**
|
|
58581
|
+
* What level of notifications are sent
|
|
58582
|
+
*/
|
|
58583
|
+
notificationLevel: string;
|
|
58584
|
+
}
|
|
58585
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignments {
|
|
58586
|
+
/**
|
|
58587
|
+
* Admin notification settings
|
|
58588
|
+
*/
|
|
58589
|
+
adminNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsAdminNotifications;
|
|
58590
|
+
/**
|
|
58591
|
+
* Approver notification settings
|
|
58592
|
+
*/
|
|
58593
|
+
approverNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsApproverNotifications;
|
|
58594
|
+
/**
|
|
58595
|
+
* Assignee notification settings
|
|
58596
|
+
*/
|
|
58597
|
+
assigneeNotifications: outputs.pim.RoleManagementPolicyNotificationRulesEligibleAssignmentsAssigneeNotifications;
|
|
58598
|
+
}
|
|
58599
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsAdminNotifications {
|
|
58600
|
+
/**
|
|
58601
|
+
* The additional recipients to notify
|
|
58602
|
+
*/
|
|
58603
|
+
additionalRecipients: string[];
|
|
58604
|
+
/**
|
|
58605
|
+
* Whether the default recipients are notified
|
|
58606
|
+
*/
|
|
58607
|
+
defaultRecipients: boolean;
|
|
58608
|
+
/**
|
|
58609
|
+
* What level of notifications are sent
|
|
58610
|
+
*/
|
|
58611
|
+
notificationLevel: string;
|
|
58612
|
+
}
|
|
58613
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsApproverNotifications {
|
|
58614
|
+
/**
|
|
58615
|
+
* The additional recipients to notify
|
|
58616
|
+
*/
|
|
58617
|
+
additionalRecipients: string[];
|
|
58618
|
+
/**
|
|
58619
|
+
* Whether the default recipients are notified
|
|
58620
|
+
*/
|
|
58621
|
+
defaultRecipients: boolean;
|
|
58622
|
+
/**
|
|
58623
|
+
* What level of notifications are sent
|
|
58624
|
+
*/
|
|
58625
|
+
notificationLevel: string;
|
|
58626
|
+
}
|
|
58627
|
+
interface RoleManagementPolicyNotificationRulesEligibleAssignmentsAssigneeNotifications {
|
|
58628
|
+
/**
|
|
58629
|
+
* The additional recipients to notify
|
|
58630
|
+
*/
|
|
58631
|
+
additionalRecipients: string[];
|
|
58632
|
+
/**
|
|
58633
|
+
* Whether the default recipients are notified
|
|
58634
|
+
*/
|
|
58635
|
+
defaultRecipients: boolean;
|
|
58636
|
+
/**
|
|
58637
|
+
* What level of notifications are sent
|
|
58638
|
+
*/
|
|
58639
|
+
notificationLevel: string;
|
|
58640
|
+
}
|
|
57951
58641
|
}
|
|
57952
58642
|
export declare namespace policy {
|
|
57953
58643
|
interface GetPolicyAssignmentIdentity {
|
|
@@ -59587,14 +60277,21 @@ export declare namespace sentinel {
|
|
|
59587
60277
|
*/
|
|
59588
60278
|
aggregationMethod: string;
|
|
59589
60279
|
}
|
|
59590
|
-
interface
|
|
60280
|
+
interface AlertRuleScheduledIncident {
|
|
59591
60281
|
/**
|
|
59592
60282
|
* Whether to create an incident from alerts triggered by this Sentinel Scheduled Alert Rule?
|
|
59593
60283
|
*/
|
|
59594
|
-
|
|
60284
|
+
createIncidentEnabled: boolean;
|
|
59595
60285
|
/**
|
|
59596
60286
|
* A `grouping` block as defined below.
|
|
59597
60287
|
*/
|
|
60288
|
+
grouping: outputs.sentinel.AlertRuleScheduledIncidentGrouping;
|
|
60289
|
+
}
|
|
60290
|
+
interface AlertRuleScheduledIncidentConfiguration {
|
|
60291
|
+
/**
|
|
60292
|
+
* @deprecated The `createIncident` property has been superseded by the `createIncidentEnabled` property and will be removed in v4.0 of the AzureRM Provider
|
|
60293
|
+
*/
|
|
60294
|
+
createIncident: boolean;
|
|
59598
60295
|
grouping: outputs.sentinel.AlertRuleScheduledIncidentConfigurationGrouping;
|
|
59599
60296
|
}
|
|
59600
60297
|
interface AlertRuleScheduledIncidentConfigurationGrouping {
|
|
@@ -59607,15 +60304,15 @@ export declare namespace sentinel {
|
|
|
59607
60304
|
*/
|
|
59608
60305
|
entityMatchingMethod?: string;
|
|
59609
60306
|
/**
|
|
59610
|
-
*
|
|
60307
|
+
* @deprecated The `groupByAlertDetails` property has been superseded by the `byAlertDetails` property and will be removed in v4.0 of the AzureRM Provider
|
|
59611
60308
|
*/
|
|
59612
60309
|
groupByAlertDetails?: string[];
|
|
59613
60310
|
/**
|
|
59614
|
-
*
|
|
60311
|
+
* @deprecated The `groupByCustomDetails` property has been superseded by the `byCustomDetails` property and will be removed in v4.0 of the AzureRM Provider
|
|
59615
60312
|
*/
|
|
59616
60313
|
groupByCustomDetails?: string[];
|
|
59617
60314
|
/**
|
|
59618
|
-
*
|
|
60315
|
+
* @deprecated The `groupByEntities` property has been superseded by the `byEntities` property and will be removed in v4.0 of the AzureRM Provider
|
|
59619
60316
|
*/
|
|
59620
60317
|
groupByEntities?: string[];
|
|
59621
60318
|
/**
|
|
@@ -59627,6 +60324,36 @@ export declare namespace sentinel {
|
|
|
59627
60324
|
*/
|
|
59628
60325
|
reopenClosedIncidents?: boolean;
|
|
59629
60326
|
}
|
|
60327
|
+
interface AlertRuleScheduledIncidentGrouping {
|
|
60328
|
+
/**
|
|
60329
|
+
* A list of alert details to group by, only when the `entityMatchingMethod` is `Selected`. Possible values are `DisplayName` and `Severity`.
|
|
60330
|
+
*/
|
|
60331
|
+
byAlertDetails?: string[];
|
|
60332
|
+
/**
|
|
60333
|
+
* A list of custom details keys to group by, only when the `entityMatchingMethod` is `Selected`. Only keys defined in the `customDetails` may be used.
|
|
60334
|
+
*/
|
|
60335
|
+
byCustomDetails?: string[];
|
|
60336
|
+
/**
|
|
60337
|
+
* 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`.
|
|
60338
|
+
*/
|
|
60339
|
+
byEntities?: string[];
|
|
60340
|
+
/**
|
|
60341
|
+
* Enable grouping incidents created from alerts triggered by this Sentinel Scheduled Alert Rule. Defaults to `true`.
|
|
60342
|
+
*/
|
|
60343
|
+
enabled?: boolean;
|
|
60344
|
+
/**
|
|
60345
|
+
* The method used to group incidents. Possible values are `AnyAlert`, `Selected` and `AllEntities`. Defaults to `AnyAlert`.
|
|
60346
|
+
*/
|
|
60347
|
+
entityMatchingMethod?: string;
|
|
60348
|
+
/**
|
|
60349
|
+
* Limit the group to alerts created within the lookback duration (in ISO 8601 duration format). Defaults to `PT5M`.
|
|
60350
|
+
*/
|
|
60351
|
+
lookbackDuration?: string;
|
|
60352
|
+
/**
|
|
60353
|
+
* Whether to re-open closed matching incidents? Defaults to `false`.
|
|
60354
|
+
*/
|
|
60355
|
+
reopenClosedIncidents?: boolean;
|
|
60356
|
+
}
|
|
59630
60357
|
interface AlertRuleScheduledSentinelEntityMapping {
|
|
59631
60358
|
/**
|
|
59632
60359
|
* The column name to be mapped to the identifier.
|
|
@@ -62995,16 +63722,10 @@ export declare namespace synapse {
|
|
|
62995
63722
|
enabled?: boolean;
|
|
62996
63723
|
}
|
|
62997
63724
|
interface WorkspaceAadAdmin {
|
|
62998
|
-
/**
|
|
62999
|
-
* The login name of the Azure AD Administrator of this Synapse Workspace.
|
|
63000
|
-
*/
|
|
63001
63725
|
login: string;
|
|
63002
|
-
/**
|
|
63003
|
-
* The object id of the Azure AD Administrator of this Synapse Workspace.
|
|
63004
|
-
*/
|
|
63005
63726
|
objectId: string;
|
|
63006
63727
|
/**
|
|
63007
|
-
* The
|
|
63728
|
+
* The Tenant ID for the Service Principal associated with the Managed Service Identity of this Synapse Workspace.
|
|
63008
63729
|
*/
|
|
63009
63730
|
tenantId: string;
|
|
63010
63731
|
}
|
|
@@ -63101,16 +63822,10 @@ export declare namespace synapse {
|
|
|
63101
63822
|
type: string;
|
|
63102
63823
|
}
|
|
63103
63824
|
interface WorkspaceSqlAadAdmin {
|
|
63104
|
-
/**
|
|
63105
|
-
* The login name of the Azure AD Administrator of this Synapse Workspace SQL.
|
|
63106
|
-
*/
|
|
63107
63825
|
login: string;
|
|
63108
|
-
/**
|
|
63109
|
-
* The object id of the Azure AD Administrator of this Synapse Workspace SQL.
|
|
63110
|
-
*/
|
|
63111
63826
|
objectId: string;
|
|
63112
63827
|
/**
|
|
63113
|
-
* The
|
|
63828
|
+
* The Tenant ID for the Service Principal associated with the Managed Service Identity of this Synapse Workspace.
|
|
63114
63829
|
*/
|
|
63115
63830
|
tenantId: string;
|
|
63116
63831
|
}
|