@pulumi/azure 5.88.0 → 5.89.0-alpha.1724152320

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.
Files changed (60) hide show
  1. package/cognitive/aiservices.d.ts +274 -0
  2. package/cognitive/aiservices.js +121 -0
  3. package/cognitive/aiservices.js.map +1 -0
  4. package/cognitive/index.d.ts +3 -0
  5. package/cognitive/index.js +6 -1
  6. package/cognitive/index.js.map +1 -1
  7. package/communication/index.d.ts +3 -0
  8. package/communication/index.js +6 -1
  9. package/communication/index.js.map +1 -1
  10. package/communication/serviceEmailDomainAssociation.d.ts +102 -0
  11. package/communication/serviceEmailDomainAssociation.js +99 -0
  12. package/communication/serviceEmailDomainAssociation.js.map +1 -0
  13. package/containerservice/getKubernetesCluster.d.ts +1 -1
  14. package/containerservice/kubernetesCluster.d.ts +3 -9
  15. package/containerservice/kubernetesCluster.js.map +1 -1
  16. package/containerservice/kubernetesClusterNodePool.d.ts +9 -21
  17. package/containerservice/kubernetesClusterNodePool.js.map +1 -1
  18. package/cosmosdb/account.d.ts +3 -0
  19. package/cosmosdb/account.js +2 -0
  20. package/cosmosdb/account.js.map +1 -1
  21. package/cosmosdb/sqlContainer.d.ts +4 -4
  22. package/cosmosdb/sqlContainer.js +1 -1
  23. package/devcenter/index.d.ts +3 -0
  24. package/devcenter/index.js +6 -1
  25. package/devcenter/index.js.map +1 -1
  26. package/devcenter/projectEnvironmentType.d.ts +193 -0
  27. package/devcenter/projectEnvironmentType.js +125 -0
  28. package/devcenter/projectEnvironmentType.js.map +1 -0
  29. package/extendedlocation/customLocation.d.ts +159 -0
  30. package/extendedlocation/customLocation.js +90 -0
  31. package/extendedlocation/customLocation.js.map +1 -0
  32. package/extendedlocation/index.d.ts +3 -0
  33. package/extendedlocation/index.js +22 -0
  34. package/extendedlocation/index.js.map +1 -0
  35. package/index.d.ts +2 -1
  36. package/index.js +4 -2
  37. package/index.js.map +1 -1
  38. package/network/expressRouteConnection.d.ts +3 -3
  39. package/nginx/deployment.d.ts +4 -4
  40. package/nginx/deployment.js +1 -1
  41. package/package.json +2 -2
  42. package/postgresql/flexibleServerVirtualEndpoint.d.ts +141 -0
  43. package/postgresql/flexibleServerVirtualEndpoint.js +121 -0
  44. package/postgresql/flexibleServerVirtualEndpoint.js.map +1 -0
  45. package/postgresql/index.d.ts +3 -0
  46. package/postgresql/index.js +6 -1
  47. package/postgresql/index.js.map +1 -1
  48. package/recoveryservices/getVault.d.ts +5 -0
  49. package/recoveryservices/getVault.js.map +1 -1
  50. package/search/getService.d.ts +6 -0
  51. package/search/getService.js.map +1 -1
  52. package/storage/getTableEntities.d.ts +23 -8
  53. package/storage/getTableEntities.js +1 -0
  54. package/storage/getTableEntities.js.map +1 -1
  55. package/storage/getTableEntity.d.ts +23 -8
  56. package/storage/getTableEntity.js +1 -0
  57. package/storage/getTableEntity.js.map +1 -1
  58. package/synapse/sparkPool.d.ts +1 -1
  59. package/types/input.d.ts +121 -15
  60. package/types/output.d.ts +141 -16
@@ -30,13 +30,17 @@ export interface GetTableEntityArgs {
30
30
  */
31
31
  rowKey: string;
32
32
  /**
33
- * The name of the Storage Account where the Table exists.
33
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
34
34
  */
35
- storageAccountName: string;
35
+ storageAccountName?: string;
36
36
  /**
37
- * The name of the Table.
37
+ * The Storage Table ID where the entity exists.
38
38
  */
39
- tableName: string;
39
+ storageTableId?: string;
40
+ /**
41
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
42
+ */
43
+ tableName?: string;
40
44
  }
41
45
  /**
42
46
  * A collection of values returned by getTableEntity.
@@ -54,7 +58,14 @@ export interface GetTableEntityResult {
54
58
  readonly id: string;
55
59
  readonly partitionKey: string;
56
60
  readonly rowKey: string;
61
+ /**
62
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
63
+ */
57
64
  readonly storageAccountName: string;
65
+ readonly storageTableId: string;
66
+ /**
67
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
68
+ */
58
69
  readonly tableName: string;
59
70
  }
60
71
  /**
@@ -88,11 +99,15 @@ export interface GetTableEntityOutputArgs {
88
99
  */
89
100
  rowKey: pulumi.Input<string>;
90
101
  /**
91
- * The name of the Storage Account where the Table exists.
102
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
103
+ */
104
+ storageAccountName?: pulumi.Input<string>;
105
+ /**
106
+ * The Storage Table ID where the entity exists.
92
107
  */
93
- storageAccountName: pulumi.Input<string>;
108
+ storageTableId?: pulumi.Input<string>;
94
109
  /**
95
- * The name of the Table.
110
+ * @deprecated the `tableName` and `storageAccountName` properties have been superseded by the `storageTableId` property and will be removed in version 4.0 of the AzureRM provider
96
111
  */
97
- tableName: pulumi.Input<string>;
112
+ tableName?: pulumi.Input<string>;
98
113
  }
@@ -28,6 +28,7 @@ function getTableEntity(args, opts) {
28
28
  "partitionKey": args.partitionKey,
29
29
  "rowKey": args.rowKey,
30
30
  "storageAccountName": args.storageAccountName,
31
+ "storageTableId": args.storageTableId,
31
32
  "tableName": args.tableName,
32
33
  }, opts);
33
34
  }
@@ -1 +1 @@
1
- {"version":3,"file":"getTableEntity.js","sourceRoot":"","sources":["../../storage/getTableEntity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wCASC;AAyCD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
1
+ {"version":3,"file":"getTableEntity.js","sourceRoot":"","sources":["../../storage/getTableEntity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,wCAUC;AAoDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
@@ -118,7 +118,7 @@ export declare class SparkPool extends pulumi.CustomResource {
118
118
  /**
119
119
  * The number of nodes in the Spark Pool. Exactly one of `nodeCount` or `autoScale` must be specified.
120
120
  */
121
- readonly nodeCount: pulumi.Output<number | undefined>;
121
+ readonly nodeCount: pulumi.Output<number>;
122
122
  /**
123
123
  * The level of node in the Spark Pool. Possible values are `Small`, `Medium`, `Large`, `None`, `XLarge`, `XXLarge` and `XXXLarge`.
124
124
  */
package/types/input.d.ts CHANGED
@@ -17316,6 +17316,74 @@ export declare namespace chaosstudio {
17316
17316
  }
17317
17317
  }
17318
17318
  export declare namespace cognitive {
17319
+ interface AIServicesCustomerManagedKey {
17320
+ /**
17321
+ * The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
17322
+ */
17323
+ identityClientId?: pulumi.Input<string>;
17324
+ /**
17325
+ * The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of `keyVaultKeyId`, `managedHsmKeyId` must be specified.
17326
+ */
17327
+ keyVaultKeyId?: pulumi.Input<string>;
17328
+ /**
17329
+ * The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of `keyVaultKeyId`, `managedHsmKeyId` must be specified.
17330
+ */
17331
+ managedHsmKeyId?: pulumi.Input<string>;
17332
+ }
17333
+ interface AIServicesIdentity {
17334
+ /**
17335
+ * Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.
17336
+ *
17337
+ * > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
17338
+ */
17339
+ identityIds?: pulumi.Input<pulumi.Input<string>[]>;
17340
+ /**
17341
+ * The Principal ID associated with this Managed Service Identity.
17342
+ */
17343
+ principalId?: pulumi.Input<string>;
17344
+ /**
17345
+ * The Tenant ID associated with this Managed Service Identity.
17346
+ */
17347
+ tenantId?: pulumi.Input<string>;
17348
+ /**
17349
+ * Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned`
17350
+ */
17351
+ type: pulumi.Input<string>;
17352
+ }
17353
+ interface AIServicesNetworkAcls {
17354
+ /**
17355
+ * The Default Action to use when no rules match from `ipRules` / `virtualNetworkRules`. Possible values are `Allow` and `Deny`.
17356
+ */
17357
+ defaultAction: pulumi.Input<string>;
17358
+ /**
17359
+ * One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
17360
+ */
17361
+ ipRules?: pulumi.Input<pulumi.Input<string>[]>;
17362
+ /**
17363
+ * A `virtualNetworkRules` block as defined below.
17364
+ */
17365
+ virtualNetworkRules?: pulumi.Input<pulumi.Input<inputs.cognitive.AIServicesNetworkAclsVirtualNetworkRule>[]>;
17366
+ }
17367
+ interface AIServicesNetworkAclsVirtualNetworkRule {
17368
+ /**
17369
+ * Whether to ignore a missing Virtual Network Service Endpoint or not. Default to `false`.
17370
+ */
17371
+ ignoreMissingVnetServiceEndpoint?: pulumi.Input<boolean>;
17372
+ /**
17373
+ * The ID of the subnet which should be able to access this AI Services Account.
17374
+ */
17375
+ subnetId: pulumi.Input<string>;
17376
+ }
17377
+ interface AIServicesStorage {
17378
+ /**
17379
+ * The client ID of the Managed Identity associated with the Storage Account.
17380
+ */
17381
+ identityClientId?: pulumi.Input<string>;
17382
+ /**
17383
+ * The ID of the Storage Account.
17384
+ */
17385
+ storageAccountId: pulumi.Input<string>;
17386
+ }
17319
17387
  interface AccountCustomerManagedKey {
17320
17388
  /**
17321
17389
  * The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there're multiple identities attached to the Cognitive Account.
@@ -23007,13 +23075,17 @@ export declare namespace containerservice {
23007
23075
  */
23008
23076
  authorizedIpRanges?: pulumi.Input<pulumi.Input<string>[]>;
23009
23077
  /**
23010
- * The ID of the Subnet where the API server endpoint is delegated to.
23078
+ * The ID of the subnet on which to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster. See [this](https://docs.microsoft.com/azure/application-gateway/tutorial-ingress-controller-add-on-new) page for further details.
23079
+ *
23080
+ * > **Note:** Exactly one of `gatewayId`, `subnetId` or `subnetCidr` must be specified.
23081
+ *
23082
+ * > **Note:** If specifying `ingressApplicationGateway` in conjunction with `onlyCriticalAddonsEnabled`, the AGIC pod will fail to start. A separate `azure.containerservice.KubernetesClusterNodePool` is required to run the AGIC pod successfully. This is because AGIC is classed as a "non-critical addon".
23083
+ *
23084
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
23011
23085
  */
23012
23086
  subnetId?: pulumi.Input<string>;
23013
23087
  /**
23014
- * Should API Server VNet Integration be enabled? For more details please visit [Use API Server VNet Integration](https://learn.microsoft.com/en-us/azure/aks/api-server-vnet-integration).
23015
- *
23016
- * > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/EnableAPIServerVnetIntegrationPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/api-server-vnet-integration#register-the-enableapiservervnetintegrationpreview-preview-feature) for more information.
23088
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
23017
23089
  */
23018
23090
  vnetIntegrationEnabled?: pulumi.Input<boolean>;
23019
23091
  }
@@ -23127,9 +23199,7 @@ export declare namespace containerservice {
23127
23199
  */
23128
23200
  capacityReservationGroupId?: pulumi.Input<string>;
23129
23201
  /**
23130
- * Specifies whether to trust a Custom CA.
23131
- *
23132
- * > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/CustomCATrustPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/custom-certificate-authority) for more information.
23202
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
23133
23203
  */
23134
23204
  customCaTrustEnabled?: pulumi.Input<boolean>;
23135
23205
  /**
@@ -23180,7 +23250,7 @@ export declare namespace containerservice {
23180
23250
  */
23181
23251
  maxPods?: pulumi.Input<number>;
23182
23252
  /**
23183
- * A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It cannot be specified for Windows nodes and must be a static string (i.e. will be printed raw and not executed as a script). Changing this forces a new resource to be created.
23253
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
23184
23254
  */
23185
23255
  messageOfTheDay?: pulumi.Input<string>;
23186
23256
  minCount?: pulumi.Input<number>;
@@ -23282,9 +23352,7 @@ export declare namespace containerservice {
23282
23352
  */
23283
23353
  vnetSubnetId?: pulumi.Input<string>;
23284
23354
  /**
23285
- * Specifies the workload runtime used by the node pool. Possible values are `OCIContainer` and `KataMshvVmIsolation`.
23286
- *
23287
- * > **Note:** Pod Sandboxing / KataVM Isolation node pools are in Public Preview - more information and details on how to opt into the preview can be found in [this article](https://learn.microsoft.com/azure/aks/use-pod-sandboxing)
23355
+ * Specifies the workload runtime used by the node pool. Possible value is `OCIContainer`.
23288
23356
  */
23289
23357
  workloadRuntime?: pulumi.Input<string>;
23290
23358
  /**
@@ -24396,9 +24464,7 @@ export declare namespace containerservice {
24396
24464
  */
24397
24465
  diskDriverEnabled?: pulumi.Input<boolean>;
24398
24466
  /**
24399
- * Disk CSI Driver version to be used. Possible values are `v1` and `v2`. Defaults to `v1`.
24400
- *
24401
- * > **Note:** `Azure Disk CSI driver v2` is currently in [Public Preview](https://azure.microsoft.com/en-us/updates/public-preview-azure-disk-csi-driver-v2-in-aks/) on an opt-in basis. To use it, the feature `EnableAzureDiskCSIDriverV2` for namespace `Microsoft.ContainerService` must be requested.
24467
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
24402
24468
  */
24403
24469
  diskDriverVersion?: pulumi.Input<string>;
24404
24470
  /**
@@ -28418,6 +28484,30 @@ export declare namespace devcenter {
28418
28484
  tenantId?: pulumi.Input<string>;
28419
28485
  type: pulumi.Input<string>;
28420
28486
  }
28487
+ interface ProjectEnvironmentTypeIdentity {
28488
+ /**
28489
+ * The ID of the User Assigned Identity which should be assigned to this Dev Center Project Environment Type.
28490
+ *
28491
+ * > **Note:** `identityIds` is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
28492
+ */
28493
+ identityIds?: pulumi.Input<pulumi.Input<string>[]>;
28494
+ principalId?: pulumi.Input<string>;
28495
+ tenantId?: pulumi.Input<string>;
28496
+ /**
28497
+ * The type of identity used for this Dev Center Project Environment Type. Possible values are `SystemAssigned`, `UserAssigned` and `SystemAssigned, UserAssigned`.
28498
+ */
28499
+ type: pulumi.Input<string>;
28500
+ }
28501
+ interface ProjectEnvironmentTypeUserRoleAssignment {
28502
+ /**
28503
+ * A list of roles to assign to the `userId`.
28504
+ */
28505
+ roles: pulumi.Input<pulumi.Input<string>[]>;
28506
+ /**
28507
+ * The user object ID that is assigned roles.
28508
+ */
28509
+ userId: pulumi.Input<string>;
28510
+ }
28421
28511
  }
28422
28512
  export declare namespace devtest {
28423
28513
  interface GlobalVMShutdownScheduleNotificationSettings {
@@ -30713,6 +30803,18 @@ export declare namespace eventhub {
30713
30803
  to?: pulumi.Input<string>;
30714
30804
  }
30715
30805
  }
30806
+ export declare namespace extendedlocation {
30807
+ interface CustomLocationAuthentication {
30808
+ /**
30809
+ * Specifies the type of authentication.
30810
+ */
30811
+ type?: pulumi.Input<string>;
30812
+ /**
30813
+ * Specifies the value of authentication.
30814
+ */
30815
+ value: pulumi.Input<string>;
30816
+ }
30817
+ }
30716
30818
  export declare namespace fluidrelay {
30717
30819
  interface ServerIdentity {
30718
30820
  /**
@@ -35921,7 +36023,7 @@ export declare namespace logicapps {
35921
36023
  */
35922
36024
  cors?: pulumi.Input<inputs.logicapps.StandardSiteConfigCors>;
35923
36025
  /**
35924
- * The version of the .NET framework's CLR used in this Logic App Possible values are `v4.0` (including .NET Core 2.1 and 3.1), `v5.0` and `v6.0`. [For more information on which .NET Framework version to use based on the runtime version you're targeting - please see this table](https://docs.microsoft.com/azure/azure-functions/functions-dotnet-class-library#supported-versions). Defaults to `v4.0`.
36026
+ * The version of the .NET framework's CLR used in this Logic App Possible values are `v4.0` (including .NET Core 2.1 and 3.1), `v5.0`, `v6.0` and `v8.0`. [For more information on which .NET Framework version to use based on the runtime version you're targeting - please see this table](https://docs.microsoft.com/azure/azure-functions/functions-dotnet-class-library#supported-versions). Defaults to `v4.0`.
35925
36027
  */
35926
36028
  dotnetFrameworkVersion?: pulumi.Input<string>;
35927
36029
  /**
@@ -51504,6 +51606,10 @@ export declare namespace waf {
51504
51606
  * The File Upload Limit in MB. Accepted values are in the range `1` to `4000`. Defaults to `100`.
51505
51607
  */
51506
51608
  fileUploadLimitInMb?: pulumi.Input<number>;
51609
+ /**
51610
+ * Specifies the JavaScript challenge cookie validity lifetime in minutes. The user is challenged after the lifetime expires. Accepted values are in the range `5` to `1440`. Defaults to `30`.
51611
+ */
51612
+ jsChallengeCookieExpirationInMinutes?: pulumi.Input<number>;
51507
51613
  /**
51508
51614
  * One `logScrubbing` block as defined below.
51509
51615
  */
package/types/output.d.ts CHANGED
@@ -23292,6 +23292,74 @@ export declare namespace chaosstudio {
23292
23292
  }
23293
23293
  }
23294
23294
  export declare namespace cognitive {
23295
+ interface AIServicesCustomerManagedKey {
23296
+ /**
23297
+ * The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there are multiple identities attached to the Azure AI Service.
23298
+ */
23299
+ identityClientId?: string;
23300
+ /**
23301
+ * The ID of the Key Vault Key which should be used to encrypt the data in this AI Services Account. Exactly one of `keyVaultKeyId`, `managedHsmKeyId` must be specified.
23302
+ */
23303
+ keyVaultKeyId?: string;
23304
+ /**
23305
+ * The ID of the managed HSM Key which should be used to encrypt the data in this AI Services Account. Exactly one of `keyVaultKeyId`, `managedHsmKeyId` must be specified.
23306
+ */
23307
+ managedHsmKeyId?: string;
23308
+ }
23309
+ interface AIServicesIdentity {
23310
+ /**
23311
+ * Specifies a list of User Assigned Managed Identity IDs to be assigned to this AI Services Account.
23312
+ *
23313
+ * > **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
23314
+ */
23315
+ identityIds?: string[];
23316
+ /**
23317
+ * The Principal ID associated with this Managed Service Identity.
23318
+ */
23319
+ principalId: string;
23320
+ /**
23321
+ * The Tenant ID associated with this Managed Service Identity.
23322
+ */
23323
+ tenantId: string;
23324
+ /**
23325
+ * Specifies the type of Managed Service Identity that should be configured on this AI Services Account. Possible values are `SystemAssigned`, `UserAssigned`, `SystemAssigned, UserAssigned`
23326
+ */
23327
+ type: string;
23328
+ }
23329
+ interface AIServicesNetworkAcls {
23330
+ /**
23331
+ * The Default Action to use when no rules match from `ipRules` / `virtualNetworkRules`. Possible values are `Allow` and `Deny`.
23332
+ */
23333
+ defaultAction: string;
23334
+ /**
23335
+ * One or more IP Addresses, or CIDR Blocks which should be able to access the AI Services Account.
23336
+ */
23337
+ ipRules?: string[];
23338
+ /**
23339
+ * A `virtualNetworkRules` block as defined below.
23340
+ */
23341
+ virtualNetworkRules?: outputs.cognitive.AIServicesNetworkAclsVirtualNetworkRule[];
23342
+ }
23343
+ interface AIServicesNetworkAclsVirtualNetworkRule {
23344
+ /**
23345
+ * Whether to ignore a missing Virtual Network Service Endpoint or not. Default to `false`.
23346
+ */
23347
+ ignoreMissingVnetServiceEndpoint?: boolean;
23348
+ /**
23349
+ * The ID of the subnet which should be able to access this AI Services Account.
23350
+ */
23351
+ subnetId: string;
23352
+ }
23353
+ interface AIServicesStorage {
23354
+ /**
23355
+ * The client ID of the Managed Identity associated with the Storage Account.
23356
+ */
23357
+ identityClientId?: string;
23358
+ /**
23359
+ * The ID of the Storage Account.
23360
+ */
23361
+ storageAccountId: string;
23362
+ }
23295
23363
  interface AccountCustomerManagedKey {
23296
23364
  /**
23297
23365
  * The Client ID of the User Assigned Identity that has access to the key. This property only needs to be specified when there're multiple identities attached to the Cognitive Account.
@@ -30474,7 +30542,7 @@ export declare namespace containerservice {
30474
30542
  */
30475
30543
  diskDriverEnabled: boolean;
30476
30544
  /**
30477
- * The configured Disk CSI Driver version.
30545
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
30478
30546
  */
30479
30547
  diskDriverVersion: string;
30480
30548
  /**
@@ -30999,13 +31067,17 @@ export declare namespace containerservice {
30999
31067
  */
31000
31068
  authorizedIpRanges: string[];
31001
31069
  /**
31002
- * The ID of the Subnet where the API server endpoint is delegated to.
31070
+ * The ID of the subnet on which to create an Application Gateway, which in turn will be integrated with the ingress controller of this Kubernetes Cluster. See [this](https://docs.microsoft.com/azure/application-gateway/tutorial-ingress-controller-add-on-new) page for further details.
31071
+ *
31072
+ * > **Note:** Exactly one of `gatewayId`, `subnetId` or `subnetCidr` must be specified.
31073
+ *
31074
+ * > **Note:** If specifying `ingressApplicationGateway` in conjunction with `onlyCriticalAddonsEnabled`, the AGIC pod will fail to start. A separate `azure.containerservice.KubernetesClusterNodePool` is required to run the AGIC pod successfully. This is because AGIC is classed as a "non-critical addon".
31075
+ *
31076
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
31003
31077
  */
31004
31078
  subnetId?: string;
31005
31079
  /**
31006
- * Should API Server VNet Integration be enabled? For more details please visit [Use API Server VNet Integration](https://learn.microsoft.com/en-us/azure/aks/api-server-vnet-integration).
31007
- *
31008
- * > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/EnableAPIServerVnetIntegrationPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/api-server-vnet-integration#register-the-enableapiservervnetintegrationpreview-preview-feature) for more information.
31080
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
31009
31081
  */
31010
31082
  vnetIntegrationEnabled?: boolean;
31011
31083
  }
@@ -31119,9 +31191,7 @@ export declare namespace containerservice {
31119
31191
  */
31120
31192
  capacityReservationGroupId?: string;
31121
31193
  /**
31122
- * Specifies whether to trust a Custom CA.
31123
- *
31124
- * > **Note:** This requires that the Preview Feature `Microsoft.ContainerService/CustomCATrustPreview` is enabled and the Resource Provider is re-registered, see [the documentation](https://learn.microsoft.com/en-us/azure/aks/custom-certificate-authority) for more information.
31194
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
31125
31195
  */
31126
31196
  customCaTrustEnabled?: boolean;
31127
31197
  /**
@@ -31172,7 +31242,7 @@ export declare namespace containerservice {
31172
31242
  */
31173
31243
  maxPods: number;
31174
31244
  /**
31175
- * A base64-encoded string which will be written to /etc/motd after decoding. This allows customization of the message of the day for Linux nodes. It cannot be specified for Windows nodes and must be a static string (i.e. will be printed raw and not executed as a script). Changing this forces a new resource to be created.
31245
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
31176
31246
  */
31177
31247
  messageOfTheDay?: string;
31178
31248
  minCount?: number;
@@ -31274,9 +31344,7 @@ export declare namespace containerservice {
31274
31344
  */
31275
31345
  vnetSubnetId?: string;
31276
31346
  /**
31277
- * Specifies the workload runtime used by the node pool. Possible values are `OCIContainer` and `KataMshvVmIsolation`.
31278
- *
31279
- * > **Note:** Pod Sandboxing / KataVM Isolation node pools are in Public Preview - more information and details on how to opt into the preview can be found in [this article](https://learn.microsoft.com/azure/aks/use-pod-sandboxing)
31347
+ * Specifies the workload runtime used by the node pool. Possible value is `OCIContainer`.
31280
31348
  */
31281
31349
  workloadRuntime: string;
31282
31350
  /**
@@ -32388,9 +32456,7 @@ export declare namespace containerservice {
32388
32456
  */
32389
32457
  diskDriverEnabled?: boolean;
32390
32458
  /**
32391
- * Disk CSI Driver version to be used. Possible values are `v1` and `v2`. Defaults to `v1`.
32392
- *
32393
- * > **Note:** `Azure Disk CSI driver v2` is currently in [Public Preview](https://azure.microsoft.com/en-us/updates/public-preview-azure-disk-csi-driver-v2-in-aks/) on an opt-in basis. To use it, the feature `EnableAzureDiskCSIDriverV2` for namespace `Microsoft.ContainerService` must be requested.
32459
+ * @deprecated This property is not available in the stable API and will be removed in v4.0 of the Azure Provider. Please see https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/guides/4.0-upgrade-guide#aks-migration-to-stable-api for more details.
32394
32460
  */
32395
32461
  diskDriverVersion?: string;
32396
32462
  /**
@@ -36870,6 +36936,30 @@ export declare namespace devcenter {
36870
36936
  tenantId: string;
36871
36937
  type: string;
36872
36938
  }
36939
+ interface ProjectEnvironmentTypeIdentity {
36940
+ /**
36941
+ * The ID of the User Assigned Identity which should be assigned to this Dev Center Project Environment Type.
36942
+ *
36943
+ * > **Note:** `identityIds` is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
36944
+ */
36945
+ identityIds?: string[];
36946
+ principalId: string;
36947
+ tenantId: string;
36948
+ /**
36949
+ * The type of identity used for this Dev Center Project Environment Type. Possible values are `SystemAssigned`, `UserAssigned` and `SystemAssigned, UserAssigned`.
36950
+ */
36951
+ type: string;
36952
+ }
36953
+ interface ProjectEnvironmentTypeUserRoleAssignment {
36954
+ /**
36955
+ * A list of roles to assign to the `userId`.
36956
+ */
36957
+ roles: string[];
36958
+ /**
36959
+ * The user object ID that is assigned roles.
36960
+ */
36961
+ userId: string;
36962
+ }
36873
36963
  }
36874
36964
  export declare namespace devtest {
36875
36965
  interface GetVirtualNetworkAllowedSubnet {
@@ -39443,6 +39533,18 @@ export declare namespace eventhub {
39443
39533
  to?: string;
39444
39534
  }
39445
39535
  }
39536
+ export declare namespace extendedlocation {
39537
+ interface CustomLocationAuthentication {
39538
+ /**
39539
+ * Specifies the type of authentication.
39540
+ */
39541
+ type?: string;
39542
+ /**
39543
+ * Specifies the value of authentication.
39544
+ */
39545
+ value: string;
39546
+ }
39547
+ }
39446
39548
  export declare namespace fluidrelay {
39447
39549
  interface ServerIdentity {
39448
39550
  /**
@@ -45342,7 +45444,7 @@ export declare namespace logicapps {
45342
45444
  */
45343
45445
  cors: outputs.logicapps.StandardSiteConfigCors;
45344
45446
  /**
45345
- * The version of the .NET framework's CLR used in this Logic App Possible values are `v4.0` (including .NET Core 2.1 and 3.1), `v5.0` and `v6.0`. [For more information on which .NET Framework version to use based on the runtime version you're targeting - please see this table](https://docs.microsoft.com/azure/azure-functions/functions-dotnet-class-library#supported-versions). Defaults to `v4.0`.
45447
+ * The version of the .NET framework's CLR used in this Logic App Possible values are `v4.0` (including .NET Core 2.1 and 3.1), `v5.0`, `v6.0` and `v8.0`. [For more information on which .NET Framework version to use based on the runtime version you're targeting - please see this table](https://docs.microsoft.com/azure/azure-functions/functions-dotnet-class-library#supported-versions). Defaults to `v4.0`.
45346
45448
  */
45347
45449
  dotnetFrameworkVersion?: string;
45348
45450
  /**
@@ -60129,6 +60231,21 @@ export declare namespace purview {
60129
60231
  }
60130
60232
  }
60131
60233
  export declare namespace recoveryservices {
60234
+ interface GetVaultIdentity {
60235
+ identityIds: string[];
60236
+ /**
60237
+ * The Principal ID associated with this Managed Service Identity.
60238
+ */
60239
+ principalId: string;
60240
+ /**
60241
+ * The Tenant ID associated with this Managed Service Identity.
60242
+ */
60243
+ tenantId: string;
60244
+ /**
60245
+ * The identity type of this Managed Service Identity.
60246
+ */
60247
+ type: string;
60248
+ }
60132
60249
  interface VaultEncryption {
60133
60250
  /**
60134
60251
  * Enabling/Disabling the Double Encryption state.
@@ -63718,6 +63835,10 @@ export declare namespace storage {
63718
63835
  * An `activeDirectory` block as documented below.
63719
63836
  */
63720
63837
  activeDirectories: outputs.storage.GetAccountAzureFilesAuthenticationActiveDirectory[];
63838
+ /**
63839
+ * The default share level permissions applied to all users.
63840
+ */
63841
+ defaultShareLevelPermission: string;
63721
63842
  /**
63722
63843
  * The directory service used for this Storage Account.
63723
63844
  */
@@ -65183,6 +65304,10 @@ export declare namespace waf {
65183
65304
  * The File Upload Limit in MB. Accepted values are in the range `1` to `4000`. Defaults to `100`.
65184
65305
  */
65185
65306
  fileUploadLimitInMb?: number;
65307
+ /**
65308
+ * Specifies the JavaScript challenge cookie validity lifetime in minutes. The user is challenged after the lifetime expires. Accepted values are in the range `5` to `1440`. Defaults to `30`.
65309
+ */
65310
+ jsChallengeCookieExpirationInMinutes?: number;
65186
65311
  /**
65187
65312
  * One `logScrubbing` block as defined below.
65188
65313
  */