pulumi-azure 6.27.0a1758868424__py3-none-any.whl → 6.27.2__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-azure might be problematic. Click here for more details.

Files changed (169) hide show
  1. pulumi_azure/__init__.py +32 -0
  2. pulumi_azure/apimanagement/backend.py +2 -2
  3. pulumi_azure/appservice/_inputs.py +78 -6
  4. pulumi_azure/appservice/app_flex_consumption.py +61 -0
  5. pulumi_azure/appservice/outputs.py +52 -4
  6. pulumi_azure/appservice/service_plan.py +14 -14
  7. pulumi_azure/billing/account_cost_management_export.py +2 -2
  8. pulumi_azure/cdn/_inputs.py +57 -95
  9. pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
  10. pulumi_azure/cdn/frontdoor_profile.py +87 -2
  11. pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
  12. pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
  13. pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
  14. pulumi_azure/cdn/outputs.py +79 -21
  15. pulumi_azure/cognitive/account.py +7 -7
  16. pulumi_azure/compute/__init__.py +1 -0
  17. pulumi_azure/compute/_inputs.py +79 -47
  18. pulumi_azure/compute/get_managed_disks.py +140 -0
  19. pulumi_azure/compute/linux_virtual_machine.py +97 -23
  20. pulumi_azure/compute/outputs.py +362 -34
  21. pulumi_azure/compute/windows_virtual_machine.py +172 -42
  22. pulumi_azure/containerservice/_inputs.py +209 -17
  23. pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
  24. pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
  25. pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
  26. pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
  27. pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
  28. pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
  29. pulumi_azure/containerservice/outputs.py +173 -11
  30. pulumi_azure/core/_inputs.py +0 -54
  31. pulumi_azure/core/outputs.py +0 -36
  32. pulumi_azure/core/resource_group_cost_management_export.py +2 -2
  33. pulumi_azure/core/resource_group_policy_assignment.py +7 -7
  34. pulumi_azure/core/resource_policy_assignment.py +7 -7
  35. pulumi_azure/core/subscription_cost_management_export.py +2 -2
  36. pulumi_azure/core/subscription_policy_assignment.py +7 -7
  37. pulumi_azure/datafactory/__init__.py +1 -0
  38. pulumi_azure/datafactory/customer_managed_key.py +439 -0
  39. pulumi_azure/datafactory/factory.py +2 -2
  40. pulumi_azure/dataprotection/_inputs.py +36 -6
  41. pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
  42. pulumi_azure/dataprotection/outputs.py +24 -4
  43. pulumi_azure/devcenter/get_project_pool.py +15 -1
  44. pulumi_azure/devcenter/project_pool.py +47 -0
  45. pulumi_azure/eventgrid/domain.py +2 -2
  46. pulumi_azure/eventgrid/domain_topic.py +2 -2
  47. pulumi_azure/eventgrid/event_subscription.py +2 -2
  48. pulumi_azure/eventgrid/get_domain.py +2 -2
  49. pulumi_azure/eventgrid/get_domain_topic.py +2 -2
  50. pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
  51. pulumi_azure/eventgrid/get_partner_registration.py +2 -2
  52. pulumi_azure/eventgrid/get_system_topic.py +28 -6
  53. pulumi_azure/eventgrid/get_topic.py +2 -2
  54. pulumi_azure/eventgrid/partner_configuration.py +2 -2
  55. pulumi_azure/eventgrid/partner_namespace.py +2 -2
  56. pulumi_azure/eventgrid/partner_registration.py +2 -2
  57. pulumi_azure/eventgrid/system_topic.py +97 -35
  58. pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
  59. pulumi_azure/eventgrid/topic.py +2 -2
  60. pulumi_azure/eventhub/domain.py +2 -2
  61. pulumi_azure/eventhub/event_grid_topic.py +2 -2
  62. pulumi_azure/eventhub/event_subscription.py +2 -2
  63. pulumi_azure/hpc/cache_blob_target.py +2 -2
  64. pulumi_azure/iot/_inputs.py +27 -1
  65. pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
  66. pulumi_azure/iot/endpoint_eventhub.py +64 -3
  67. pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
  68. pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
  69. pulumi_azure/iot/endpoint_storage_container.py +64 -3
  70. pulumi_azure/iot/outputs.py +19 -1
  71. pulumi_azure/keyvault/_inputs.py +3 -17
  72. pulumi_azure/keyvault/get_key_vault.py +13 -1
  73. pulumi_azure/keyvault/key_vault.py +78 -35
  74. pulumi_azure/keyvault/outputs.py +2 -10
  75. pulumi_azure/kusto/_inputs.py +16 -6
  76. pulumi_azure/kusto/cluster.py +95 -66
  77. pulumi_azure/kusto/outputs.py +10 -4
  78. pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
  79. pulumi_azure/lb/get_lb_rule.py +28 -4
  80. pulumi_azure/lb/load_balancer.py +94 -0
  81. pulumi_azure/lb/nat_rule.py +115 -29
  82. pulumi_azure/lb/outbound_rule.py +60 -17
  83. pulumi_azure/lb/rule.py +116 -30
  84. pulumi_azure/loadtest/_inputs.py +6 -3
  85. pulumi_azure/loadtest/load_test.py +0 -4
  86. pulumi_azure/loadtest/outputs.py +4 -2
  87. pulumi_azure/logicapps/_inputs.py +46 -987
  88. pulumi_azure/logicapps/get_standard.py +0 -7
  89. pulumi_azure/logicapps/outputs.py +117 -101
  90. pulumi_azure/logicapps/standard.py +7 -7
  91. pulumi_azure/machinelearning/_inputs.py +24 -4
  92. pulumi_azure/machinelearning/compute_instance.py +35 -7
  93. pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
  94. pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
  95. pulumi_azure/machinelearning/inference_cluster.py +2 -2
  96. pulumi_azure/machinelearning/outputs.py +17 -3
  97. pulumi_azure/machinelearning/workspace.py +61 -0
  98. pulumi_azure/management/_inputs.py +0 -18
  99. pulumi_azure/management/group_policy_assignment.py +7 -7
  100. pulumi_azure/management/outputs.py +0 -12
  101. pulumi_azure/management/private_link_association.py +0 -70
  102. pulumi_azure/mobile/_inputs.py +14 -6
  103. pulumi_azure/mobile/network_sim.py +2 -6
  104. pulumi_azure/mobile/network_sim_policy.py +2 -6
  105. pulumi_azure/mobile/network_slice.py +116 -31
  106. pulumi_azure/mobile/outputs.py +6 -4
  107. pulumi_azure/monitoring/_inputs.py +15 -9
  108. pulumi_azure/monitoring/activity_log_alert.py +7 -7
  109. pulumi_azure/monitoring/outputs.py +10 -6
  110. pulumi_azure/mssql/job_step.py +11 -11
  111. pulumi_azure/mysql/_inputs.py +20 -0
  112. pulumi_azure/mysql/outputs.py +14 -0
  113. pulumi_azure/netapp/_inputs.py +18 -6
  114. pulumi_azure/netapp/account.py +2 -2
  115. pulumi_azure/netapp/account_encryption.py +132 -4
  116. pulumi_azure/netapp/backup_policy.py +2 -2
  117. pulumi_azure/netapp/backup_vault.py +2 -2
  118. pulumi_azure/netapp/get_account.py +2 -2
  119. pulumi_azure/netapp/get_account_encryption.py +25 -3
  120. pulumi_azure/netapp/get_backup_policy.py +2 -2
  121. pulumi_azure/netapp/get_backup_vault.py +2 -2
  122. pulumi_azure/netapp/get_pool.py +17 -3
  123. pulumi_azure/netapp/get_snapshot.py +2 -2
  124. pulumi_azure/netapp/get_snapshot_policy.py +2 -2
  125. pulumi_azure/netapp/get_volume.py +17 -3
  126. pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
  127. pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
  128. pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
  129. pulumi_azure/netapp/outputs.py +12 -4
  130. pulumi_azure/netapp/pool.py +104 -9
  131. pulumi_azure/netapp/snapshot.py +2 -2
  132. pulumi_azure/netapp/snapshot_policy.py +2 -2
  133. pulumi_azure/netapp/volume.py +82 -7
  134. pulumi_azure/netapp/volume_group_oracle.py +2 -2
  135. pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
  136. pulumi_azure/netapp/volume_quota_rule.py +2 -2
  137. pulumi_azure/network/__init__.py +2 -0
  138. pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
  139. pulumi_azure/network/network_manager_routing_configuration.py +7 -7
  140. pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
  141. pulumi_azure/network/subnet.py +76 -1
  142. pulumi_azure/oracle/__init__.py +3 -0
  143. pulumi_azure/oracle/autonomous_database_backup.py +310 -0
  144. pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
  145. pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
  146. pulumi_azure/oracle/outputs.py +191 -0
  147. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
  148. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
  149. pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
  150. pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
  151. pulumi_azure/policy/_inputs.py +6 -0
  152. pulumi_azure/policy/outputs.py +4 -0
  153. pulumi_azure/postgresql/flexible_server.py +7 -7
  154. pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
  155. pulumi_azure/pulumi-plugin.json +1 -1
  156. pulumi_azure/search/service.py +7 -7
  157. pulumi_azure/sentinel/_inputs.py +144 -0
  158. pulumi_azure/sentinel/authomation_rule.py +47 -0
  159. pulumi_azure/sentinel/automation_rule.py +47 -0
  160. pulumi_azure/sentinel/outputs.py +84 -0
  161. pulumi_azure/storage/_inputs.py +3 -3
  162. pulumi_azure/storage/container_immutability_policy.py +2 -2
  163. pulumi_azure/storage/get_queue.py +59 -8
  164. pulumi_azure/storage/outputs.py +2 -2
  165. pulumi_azure/storage/queue.py +159 -27
  166. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.2.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.2.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.2.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.2.dist-info}/top_level.txt +0 -0
pulumi_azure/__init__.py CHANGED
@@ -3501,6 +3501,14 @@ _utilities.register(
3501
3501
  "azure:datafactory/customDataset:CustomDataset": "CustomDataset"
3502
3502
  }
3503
3503
  },
3504
+ {
3505
+ "pkg": "azure",
3506
+ "mod": "datafactory/customerManagedKey",
3507
+ "fqn": "pulumi_azure.datafactory",
3508
+ "classes": {
3509
+ "azure:datafactory/customerManagedKey:CustomerManagedKey": "CustomerManagedKey"
3510
+ }
3511
+ },
3504
3512
  {
3505
3513
  "pkg": "azure",
3506
3514
  "mod": "datafactory/dataFlow",
@@ -6805,6 +6813,14 @@ _utilities.register(
6805
6813
  "azure:network/networkManagerIpamPool:NetworkManagerIpamPool": "NetworkManagerIpamPool"
6806
6814
  }
6807
6815
  },
6816
+ {
6817
+ "pkg": "azure",
6818
+ "mod": "network/networkManagerIpamPoolStaticCidr",
6819
+ "fqn": "pulumi_azure.network",
6820
+ "classes": {
6821
+ "azure:network/networkManagerIpamPoolStaticCidr:NetworkManagerIpamPoolStaticCidr": "NetworkManagerIpamPoolStaticCidr"
6822
+ }
6823
+ },
6808
6824
  {
6809
6825
  "pkg": "azure",
6810
6826
  "mod": "network/networkManagerManagementGroupConnection",
@@ -6829,6 +6845,14 @@ _utilities.register(
6829
6845
  "azure:network/networkManagerRoutingConfiguration:NetworkManagerRoutingConfiguration": "NetworkManagerRoutingConfiguration"
6830
6846
  }
6831
6847
  },
6848
+ {
6849
+ "pkg": "azure",
6850
+ "mod": "network/networkManagerRoutingRuleCollection",
6851
+ "fqn": "pulumi_azure.network",
6852
+ "classes": {
6853
+ "azure:network/networkManagerRoutingRuleCollection:NetworkManagerRoutingRuleCollection": "NetworkManagerRoutingRuleCollection"
6854
+ }
6855
+ },
6832
6856
  {
6833
6857
  "pkg": "azure",
6834
6858
  "mod": "network/networkManagerScopeConnection",
@@ -7341,6 +7365,14 @@ _utilities.register(
7341
7365
  "azure:oracle/autonomousDatabase:AutonomousDatabase": "AutonomousDatabase"
7342
7366
  }
7343
7367
  },
7368
+ {
7369
+ "pkg": "azure",
7370
+ "mod": "oracle/autonomousDatabaseBackup",
7371
+ "fqn": "pulumi_azure.oracle",
7372
+ "classes": {
7373
+ "azure:oracle/autonomousDatabaseBackup:AutonomousDatabaseBackup": "AutonomousDatabaseBackup"
7374
+ }
7375
+ },
7344
7376
  {
7345
7377
  "pkg": "azure",
7346
7378
  "mod": "oracle/cloudVmCluster",
@@ -465,7 +465,7 @@ class Backend(pulumi.CustomResource):
465
465
  <!-- This section is generated, changes will be overwritten -->
466
466
  This resource uses the following Azure API Providers:
467
467
 
468
- * `Microsoft.ApiManagement` - 2022-08-01
468
+ * `Microsoft.ApiManagement` - 2024-05-01
469
469
 
470
470
  ## Import
471
471
 
@@ -528,7 +528,7 @@ class Backend(pulumi.CustomResource):
528
528
  <!-- This section is generated, changes will be overwritten -->
529
529
  This resource uses the following Azure API Providers:
530
530
 
531
- * `Microsoft.ApiManagement` - 2022-08-01
531
+ * `Microsoft.ApiManagement` - 2024-05-01
532
532
 
533
533
  ## Import
534
534
 
@@ -6466,6 +6466,8 @@ if not MYPY:
6466
6466
  sas_url: pulumi.Input[_builtins.str]
6467
6467
  """
6468
6468
  The URL to the storage container with a shared access signature token appended.
6469
+
6470
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6469
6471
  """
6470
6472
  elif False:
6471
6473
  AppServiceLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -6480,6 +6482,8 @@ class AppServiceLogsApplicationLogsAzureBlobStorageArgs:
6480
6482
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
6481
6483
  :param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain logs for.
6482
6484
  :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container with a shared access signature token appended.
6485
+
6486
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6483
6487
  """
6484
6488
  pulumi.set(__self__, "level", level)
6485
6489
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -6514,6 +6518,8 @@ class AppServiceLogsApplicationLogsAzureBlobStorageArgs:
6514
6518
  def sas_url(self) -> pulumi.Input[_builtins.str]:
6515
6519
  """
6516
6520
  The URL to the storage container with a shared access signature token appended.
6521
+
6522
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6517
6523
  """
6518
6524
  return pulumi.get(self, "sas_url")
6519
6525
 
@@ -6583,6 +6589,8 @@ if not MYPY:
6583
6589
  sas_url: pulumi.Input[_builtins.str]
6584
6590
  """
6585
6591
  The URL to the storage container with a shared access signature token appended.
6592
+
6593
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6586
6594
  """
6587
6595
  elif False:
6588
6596
  AppServiceLogsHttpLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -6595,6 +6603,8 @@ class AppServiceLogsHttpLogsAzureBlobStorageArgs:
6595
6603
  """
6596
6604
  :param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain logs for.
6597
6605
  :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container with a shared access signature token appended.
6606
+
6607
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6598
6608
  """
6599
6609
  pulumi.set(__self__, "retention_in_days", retention_in_days)
6600
6610
  pulumi.set(__self__, "sas_url", sas_url)
@@ -6616,6 +6626,8 @@ class AppServiceLogsHttpLogsAzureBlobStorageArgs:
6616
6626
  def sas_url(self) -> pulumi.Input[_builtins.str]:
6617
6627
  """
6618
6628
  The URL to the storage container with a shared access signature token appended.
6629
+
6630
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
6619
6631
  """
6620
6632
  return pulumi.get(self, "sas_url")
6621
6633
 
@@ -25464,6 +25476,8 @@ if not MYPY:
25464
25476
  sas_url: pulumi.Input[_builtins.str]
25465
25477
  """
25466
25478
  SAS url to an Azure blob container with read/write/list/delete permissions.
25479
+
25480
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25467
25481
  """
25468
25482
  elif False:
25469
25483
  LinuxWebAppLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -25478,6 +25492,8 @@ class LinuxWebAppLogsApplicationLogsAzureBlobStorageArgs:
25478
25492
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
25479
25493
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
25480
25494
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
25495
+
25496
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25481
25497
  """
25482
25498
  pulumi.set(__self__, "level", level)
25483
25499
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -25512,6 +25528,8 @@ class LinuxWebAppLogsApplicationLogsAzureBlobStorageArgs:
25512
25528
  def sas_url(self) -> pulumi.Input[_builtins.str]:
25513
25529
  """
25514
25530
  SAS url to an Azure blob container with read/write/list/delete permissions.
25531
+
25532
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25515
25533
  """
25516
25534
  return pulumi.get(self, "sas_url")
25517
25535
 
@@ -25577,6 +25595,8 @@ if not MYPY:
25577
25595
  sas_url: pulumi.Input[_builtins.str]
25578
25596
  """
25579
25597
  SAS url to an Azure blob container with read/write/list/delete permissions.
25598
+
25599
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25580
25600
  """
25581
25601
  retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
25582
25602
  """
@@ -25592,6 +25612,8 @@ class LinuxWebAppLogsHttpLogsAzureBlobStorageArgs:
25592
25612
  retention_in_days: Optional[pulumi.Input[_builtins.int]] = None):
25593
25613
  """
25594
25614
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
25615
+
25616
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25595
25617
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
25596
25618
  """
25597
25619
  pulumi.set(__self__, "sas_url", sas_url)
@@ -25603,6 +25625,8 @@ class LinuxWebAppLogsHttpLogsAzureBlobStorageArgs:
25603
25625
  def sas_url(self) -> pulumi.Input[_builtins.str]:
25604
25626
  """
25605
25627
  SAS url to an Azure blob container with read/write/list/delete permissions.
25628
+
25629
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
25606
25630
  """
25607
25631
  return pulumi.get(self, "sas_url")
25608
25632
 
@@ -30952,6 +30976,8 @@ if not MYPY:
30952
30976
  sas_url: pulumi.Input[_builtins.str]
30953
30977
  """
30954
30978
  SAS URL to an Azure blob container with read/write/list/delete permissions.
30979
+
30980
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
30955
30981
  """
30956
30982
  elif False:
30957
30983
  LinuxWebAppSlotLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -30966,6 +30992,8 @@ class LinuxWebAppSlotLogsApplicationLogsAzureBlobStorageArgs:
30966
30992
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
30967
30993
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
30968
30994
  :param pulumi.Input[_builtins.str] sas_url: SAS URL to an Azure blob container with read/write/list/delete permissions.
30995
+
30996
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
30969
30997
  """
30970
30998
  pulumi.set(__self__, "level", level)
30971
30999
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -31000,6 +31028,8 @@ class LinuxWebAppSlotLogsApplicationLogsAzureBlobStorageArgs:
31000
31028
  def sas_url(self) -> pulumi.Input[_builtins.str]:
31001
31029
  """
31002
31030
  SAS URL to an Azure blob container with read/write/list/delete permissions.
31031
+
31032
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
31003
31033
  """
31004
31034
  return pulumi.get(self, "sas_url")
31005
31035
 
@@ -31065,6 +31095,8 @@ if not MYPY:
31065
31095
  sas_url: pulumi.Input[_builtins.str]
31066
31096
  """
31067
31097
  SAS URL to an Azure blob container with read/write/list/delete permissions.
31098
+
31099
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
31068
31100
  """
31069
31101
  retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
31070
31102
  """
@@ -31080,6 +31112,8 @@ class LinuxWebAppSlotLogsHttpLogsAzureBlobStorageArgs:
31080
31112
  retention_in_days: Optional[pulumi.Input[_builtins.int]] = None):
31081
31113
  """
31082
31114
  :param pulumi.Input[_builtins.str] sas_url: SAS URL to an Azure blob container with read/write/list/delete permissions.
31115
+
31116
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
31083
31117
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
31084
31118
  """
31085
31119
  pulumi.set(__self__, "sas_url", sas_url)
@@ -31091,6 +31125,8 @@ class LinuxWebAppSlotLogsHttpLogsAzureBlobStorageArgs:
31091
31125
  def sas_url(self) -> pulumi.Input[_builtins.str]:
31092
31126
  """
31093
31127
  SAS URL to an Azure blob container with read/write/list/delete permissions.
31128
+
31129
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
31094
31130
  """
31095
31131
  return pulumi.get(self, "sas_url")
31096
31132
 
@@ -34635,7 +34671,9 @@ if not MYPY:
34635
34671
  """
34636
34672
  sas_url: pulumi.Input[_builtins.str]
34637
34673
  """
34638
- The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34674
+ The URL to the storage container, with a Service SAS token appended.
34675
+
34676
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34639
34677
  """
34640
34678
  elif False:
34641
34679
  SlotLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -34649,7 +34687,9 @@ class SlotLogsApplicationLogsAzureBlobStorageArgs:
34649
34687
  """
34650
34688
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
34651
34689
  :param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain logs for.
34652
- :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34690
+ :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container, with a Service SAS token appended.
34691
+
34692
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34653
34693
  """
34654
34694
  pulumi.set(__self__, "level", level)
34655
34695
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -34683,7 +34723,9 @@ class SlotLogsApplicationLogsAzureBlobStorageArgs:
34683
34723
  @pulumi.getter(name="sasUrl")
34684
34724
  def sas_url(self) -> pulumi.Input[_builtins.str]:
34685
34725
  """
34686
- The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34726
+ The URL to the storage container, with a Service SAS token appended.
34727
+
34728
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34687
34729
  """
34688
34730
  return pulumi.get(self, "sas_url")
34689
34731
 
@@ -34752,7 +34794,9 @@ if not MYPY:
34752
34794
  """
34753
34795
  sas_url: pulumi.Input[_builtins.str]
34754
34796
  """
34755
- The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34797
+ The URL to the storage container, with a Service SAS token appended.
34798
+
34799
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34756
34800
  """
34757
34801
  elif False:
34758
34802
  SlotLogsHttpLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -34764,7 +34808,9 @@ class SlotLogsHttpLogsAzureBlobStorageArgs:
34764
34808
  sas_url: pulumi.Input[_builtins.str]):
34765
34809
  """
34766
34810
  :param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain logs for.
34767
- :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34811
+ :param pulumi.Input[_builtins.str] sas_url: The URL to the storage container, with a Service SAS token appended.
34812
+
34813
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34768
34814
  """
34769
34815
  pulumi.set(__self__, "retention_in_days", retention_in_days)
34770
34816
  pulumi.set(__self__, "sas_url", sas_url)
@@ -34785,7 +34831,9 @@ class SlotLogsHttpLogsAzureBlobStorageArgs:
34785
34831
  @pulumi.getter(name="sasUrl")
34786
34832
  def sas_url(self) -> pulumi.Input[_builtins.str]:
34787
34833
  """
34788
- The URL to the storage container, with a Service SAS token appended. **NOTE:** there is currently no means of generating Service SAS tokens with the `azurerm` provider.
34834
+ The URL to the storage container, with a Service SAS token appended.
34835
+
34836
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
34789
34837
  """
34790
34838
  return pulumi.get(self, "sas_url")
34791
34839
 
@@ -49539,6 +49587,8 @@ if not MYPY:
49539
49587
  sas_url: pulumi.Input[_builtins.str]
49540
49588
  """
49541
49589
  SAS url to an Azure blob container with read/write/list/delete permissions.
49590
+
49591
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49542
49592
  """
49543
49593
  elif False:
49544
49594
  WindowsWebAppLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -49553,6 +49603,8 @@ class WindowsWebAppLogsApplicationLogsAzureBlobStorageArgs:
49553
49603
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
49554
49604
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
49555
49605
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
49606
+
49607
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49556
49608
  """
49557
49609
  pulumi.set(__self__, "level", level)
49558
49610
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -49587,6 +49639,8 @@ class WindowsWebAppLogsApplicationLogsAzureBlobStorageArgs:
49587
49639
  def sas_url(self) -> pulumi.Input[_builtins.str]:
49588
49640
  """
49589
49641
  SAS url to an Azure blob container with read/write/list/delete permissions.
49642
+
49643
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49590
49644
  """
49591
49645
  return pulumi.get(self, "sas_url")
49592
49646
 
@@ -49652,6 +49706,8 @@ if not MYPY:
49652
49706
  sas_url: pulumi.Input[_builtins.str]
49653
49707
  """
49654
49708
  SAS url to an Azure blob container with read/write/list/delete permissions.
49709
+
49710
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49655
49711
  """
49656
49712
  retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
49657
49713
  """
@@ -49667,6 +49723,8 @@ class WindowsWebAppLogsHttpLogsAzureBlobStorageArgs:
49667
49723
  retention_in_days: Optional[pulumi.Input[_builtins.int]] = None):
49668
49724
  """
49669
49725
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
49726
+
49727
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49670
49728
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
49671
49729
  """
49672
49730
  pulumi.set(__self__, "sas_url", sas_url)
@@ -49678,6 +49736,8 @@ class WindowsWebAppLogsHttpLogsAzureBlobStorageArgs:
49678
49736
  def sas_url(self) -> pulumi.Input[_builtins.str]:
49679
49737
  """
49680
49738
  SAS url to an Azure blob container with read/write/list/delete permissions.
49739
+
49740
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
49681
49741
  """
49682
49742
  return pulumi.get(self, "sas_url")
49683
49743
 
@@ -55450,6 +55510,8 @@ if not MYPY:
55450
55510
  sas_url: pulumi.Input[_builtins.str]
55451
55511
  """
55452
55512
  SAS url to an Azure blob container with read/write/list/delete permissions.
55513
+
55514
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55453
55515
  """
55454
55516
  elif False:
55455
55517
  WindowsWebAppSlotLogsApplicationLogsAzureBlobStorageArgsDict: TypeAlias = Mapping[str, Any]
@@ -55464,6 +55526,8 @@ class WindowsWebAppSlotLogsApplicationLogsAzureBlobStorageArgs:
55464
55526
  :param pulumi.Input[_builtins.str] level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
55465
55527
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
55466
55528
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
55529
+
55530
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55467
55531
  """
55468
55532
  pulumi.set(__self__, "level", level)
55469
55533
  pulumi.set(__self__, "retention_in_days", retention_in_days)
@@ -55498,6 +55562,8 @@ class WindowsWebAppSlotLogsApplicationLogsAzureBlobStorageArgs:
55498
55562
  def sas_url(self) -> pulumi.Input[_builtins.str]:
55499
55563
  """
55500
55564
  SAS url to an Azure blob container with read/write/list/delete permissions.
55565
+
55566
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55501
55567
  """
55502
55568
  return pulumi.get(self, "sas_url")
55503
55569
 
@@ -55563,6 +55629,8 @@ if not MYPY:
55563
55629
  sas_url: pulumi.Input[_builtins.str]
55564
55630
  """
55565
55631
  SAS url to an Azure blob container with read/write/list/delete permissions.
55632
+
55633
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55566
55634
  """
55567
55635
  retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
55568
55636
  """
@@ -55578,6 +55646,8 @@ class WindowsWebAppSlotLogsHttpLogsAzureBlobStorageArgs:
55578
55646
  retention_in_days: Optional[pulumi.Input[_builtins.int]] = None):
55579
55647
  """
55580
55648
  :param pulumi.Input[_builtins.str] sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
55649
+
55650
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55581
55651
  :param pulumi.Input[_builtins.int] retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
55582
55652
  """
55583
55653
  pulumi.set(__self__, "sas_url", sas_url)
@@ -55589,6 +55659,8 @@ class WindowsWebAppSlotLogsHttpLogsAzureBlobStorageArgs:
55589
55659
  def sas_url(self) -> pulumi.Input[_builtins.str]:
55590
55660
  """
55591
55661
  SAS url to an Azure blob container with read/write/list/delete permissions.
55662
+
55663
+ > **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
55592
55664
  """
55593
55665
  return pulumi.get(self, "sas_url")
55594
55666
 
@@ -38,6 +38,7 @@ class AppFlexConsumptionArgs:
38
38
  client_certificate_mode: Optional[pulumi.Input[_builtins.str]] = None,
39
39
  connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input['AppFlexConsumptionConnectionStringArgs']]]] = None,
40
40
  enabled: Optional[pulumi.Input[_builtins.bool]] = None,
41
+ http_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
41
42
  https_only: Optional[pulumi.Input[_builtins.bool]] = None,
42
43
  identity: Optional[pulumi.Input['AppFlexConsumptionIdentityArgs']] = None,
43
44
  instance_memory_in_mb: Optional[pulumi.Input[_builtins.int]] = None,
@@ -71,6 +72,9 @@ class AppFlexConsumptionArgs:
71
72
  :param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Function App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
72
73
  :param pulumi.Input[Sequence[pulumi.Input['AppFlexConsumptionConnectionStringArgs']]] connection_strings: One or more `connection_string` blocks as defined below.
73
74
  :param pulumi.Input[_builtins.bool] enabled: Is the Function App enabled? Defaults to `true`.
75
+ :param pulumi.Input[_builtins.int] http_concurrency: The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
76
+
77
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
74
78
  :param pulumi.Input[_builtins.bool] https_only: Is Https Connection enforced to the function app. Defaults to `false`
75
79
  :param pulumi.Input['AppFlexConsumptionIdentityArgs'] identity: A `identity` block as defined below.
76
80
  :param pulumi.Input[_builtins.int] instance_memory_in_mb: The memory size of the instances on which your app runs. Reference the Microsoft Documentation for the [currently supported values](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan#instance-memory). Defaults to `2048`.
@@ -119,6 +123,8 @@ class AppFlexConsumptionArgs:
119
123
  pulumi.set(__self__, "connection_strings", connection_strings)
120
124
  if enabled is not None:
121
125
  pulumi.set(__self__, "enabled", enabled)
126
+ if http_concurrency is not None:
127
+ pulumi.set(__self__, "http_concurrency", http_concurrency)
122
128
  if https_only is not None:
123
129
  pulumi.set(__self__, "https_only", https_only)
124
130
  if identity is not None:
@@ -352,6 +358,20 @@ class AppFlexConsumptionArgs:
352
358
  def enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
353
359
  pulumi.set(self, "enabled", value)
354
360
 
361
+ @_builtins.property
362
+ @pulumi.getter(name="httpConcurrency")
363
+ def http_concurrency(self) -> Optional[pulumi.Input[_builtins.int]]:
364
+ """
365
+ The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
366
+
367
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
368
+ """
369
+ return pulumi.get(self, "http_concurrency")
370
+
371
+ @http_concurrency.setter
372
+ def http_concurrency(self, value: Optional[pulumi.Input[_builtins.int]]):
373
+ pulumi.set(self, "http_concurrency", value)
374
+
355
375
  @_builtins.property
356
376
  @pulumi.getter(name="httpsOnly")
357
377
  def https_only(self) -> Optional[pulumi.Input[_builtins.bool]]:
@@ -541,6 +561,7 @@ class _AppFlexConsumptionState:
541
561
  default_hostname: Optional[pulumi.Input[_builtins.str]] = None,
542
562
  enabled: Optional[pulumi.Input[_builtins.bool]] = None,
543
563
  hosting_environment_id: Optional[pulumi.Input[_builtins.str]] = None,
564
+ http_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
544
565
  https_only: Optional[pulumi.Input[_builtins.bool]] = None,
545
566
  identity: Optional[pulumi.Input['AppFlexConsumptionIdentityArgs']] = None,
546
567
  instance_memory_in_mb: Optional[pulumi.Input[_builtins.int]] = None,
@@ -583,6 +604,9 @@ class _AppFlexConsumptionState:
583
604
  :param pulumi.Input[_builtins.str] default_hostname: The default hostname of the Linux Function App.
584
605
  :param pulumi.Input[_builtins.bool] enabled: Is the Function App enabled? Defaults to `true`.
585
606
  :param pulumi.Input[_builtins.str] hosting_environment_id: The ID of the App Service Environment used by Function App.
607
+ :param pulumi.Input[_builtins.int] http_concurrency: The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
608
+
609
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
586
610
  :param pulumi.Input[_builtins.bool] https_only: Is Https Connection enforced to the function app. Defaults to `false`
587
611
  :param pulumi.Input['AppFlexConsumptionIdentityArgs'] identity: A `identity` block as defined below.
588
612
  :param pulumi.Input[_builtins.int] instance_memory_in_mb: The memory size of the instances on which your app runs. Reference the Microsoft Documentation for the [currently supported values](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan#instance-memory). Defaults to `2048`.
@@ -643,6 +667,8 @@ class _AppFlexConsumptionState:
643
667
  pulumi.set(__self__, "enabled", enabled)
644
668
  if hosting_environment_id is not None:
645
669
  pulumi.set(__self__, "hosting_environment_id", hosting_environment_id)
670
+ if http_concurrency is not None:
671
+ pulumi.set(__self__, "http_concurrency", http_concurrency)
646
672
  if https_only is not None:
647
673
  pulumi.set(__self__, "https_only", https_only)
648
674
  if identity is not None:
@@ -844,6 +870,20 @@ class _AppFlexConsumptionState:
844
870
  def hosting_environment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
845
871
  pulumi.set(self, "hosting_environment_id", value)
846
872
 
873
+ @_builtins.property
874
+ @pulumi.getter(name="httpConcurrency")
875
+ def http_concurrency(self) -> Optional[pulumi.Input[_builtins.int]]:
876
+ """
877
+ The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
878
+
879
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
880
+ """
881
+ return pulumi.get(self, "http_concurrency")
882
+
883
+ @http_concurrency.setter
884
+ def http_concurrency(self, value: Optional[pulumi.Input[_builtins.int]]):
885
+ pulumi.set(self, "http_concurrency", value)
886
+
847
887
  @_builtins.property
848
888
  @pulumi.getter(name="httpsOnly")
849
889
  def https_only(self) -> Optional[pulumi.Input[_builtins.bool]]:
@@ -1201,6 +1241,7 @@ class AppFlexConsumption(pulumi.CustomResource):
1201
1241
  client_certificate_mode: Optional[pulumi.Input[_builtins.str]] = None,
1202
1242
  connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppFlexConsumptionConnectionStringArgs', 'AppFlexConsumptionConnectionStringArgsDict']]]]] = None,
1203
1243
  enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1244
+ http_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
1204
1245
  https_only: Optional[pulumi.Input[_builtins.bool]] = None,
1205
1246
  identity: Optional[pulumi.Input[Union['AppFlexConsumptionIdentityArgs', 'AppFlexConsumptionIdentityArgsDict']]] = None,
1206
1247
  instance_memory_in_mb: Optional[pulumi.Input[_builtins.int]] = None,
@@ -1298,6 +1339,9 @@ class AppFlexConsumption(pulumi.CustomResource):
1298
1339
  :param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Function App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`. Defaults to `Optional`.
1299
1340
  :param pulumi.Input[Sequence[pulumi.Input[Union['AppFlexConsumptionConnectionStringArgs', 'AppFlexConsumptionConnectionStringArgsDict']]]] connection_strings: One or more `connection_string` blocks as defined below.
1300
1341
  :param pulumi.Input[_builtins.bool] enabled: Is the Function App enabled? Defaults to `true`.
1342
+ :param pulumi.Input[_builtins.int] http_concurrency: The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
1343
+
1344
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
1301
1345
  :param pulumi.Input[_builtins.bool] https_only: Is Https Connection enforced to the function app. Defaults to `false`
1302
1346
  :param pulumi.Input[Union['AppFlexConsumptionIdentityArgs', 'AppFlexConsumptionIdentityArgsDict']] identity: A `identity` block as defined below.
1303
1347
  :param pulumi.Input[_builtins.int] instance_memory_in_mb: The memory size of the instances on which your app runs. Reference the Microsoft Documentation for the [currently supported values](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan#instance-memory). Defaults to `2048`.
@@ -1421,6 +1465,7 @@ class AppFlexConsumption(pulumi.CustomResource):
1421
1465
  client_certificate_mode: Optional[pulumi.Input[_builtins.str]] = None,
1422
1466
  connection_strings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AppFlexConsumptionConnectionStringArgs', 'AppFlexConsumptionConnectionStringArgsDict']]]]] = None,
1423
1467
  enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1468
+ http_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
1424
1469
  https_only: Optional[pulumi.Input[_builtins.bool]] = None,
1425
1470
  identity: Optional[pulumi.Input[Union['AppFlexConsumptionIdentityArgs', 'AppFlexConsumptionIdentityArgsDict']]] = None,
1426
1471
  instance_memory_in_mb: Optional[pulumi.Input[_builtins.int]] = None,
@@ -1461,6 +1506,7 @@ class AppFlexConsumption(pulumi.CustomResource):
1461
1506
  __props__.__dict__["client_certificate_mode"] = client_certificate_mode
1462
1507
  __props__.__dict__["connection_strings"] = connection_strings
1463
1508
  __props__.__dict__["enabled"] = enabled
1509
+ __props__.__dict__["http_concurrency"] = http_concurrency
1464
1510
  __props__.__dict__["https_only"] = https_only
1465
1511
  __props__.__dict__["identity"] = identity
1466
1512
  __props__.__dict__["instance_memory_in_mb"] = instance_memory_in_mb
@@ -1532,6 +1578,7 @@ class AppFlexConsumption(pulumi.CustomResource):
1532
1578
  default_hostname: Optional[pulumi.Input[_builtins.str]] = None,
1533
1579
  enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1534
1580
  hosting_environment_id: Optional[pulumi.Input[_builtins.str]] = None,
1581
+ http_concurrency: Optional[pulumi.Input[_builtins.int]] = None,
1535
1582
  https_only: Optional[pulumi.Input[_builtins.bool]] = None,
1536
1583
  identity: Optional[pulumi.Input[Union['AppFlexConsumptionIdentityArgs', 'AppFlexConsumptionIdentityArgsDict']]] = None,
1537
1584
  instance_memory_in_mb: Optional[pulumi.Input[_builtins.int]] = None,
@@ -1579,6 +1626,9 @@ class AppFlexConsumption(pulumi.CustomResource):
1579
1626
  :param pulumi.Input[_builtins.str] default_hostname: The default hostname of the Linux Function App.
1580
1627
  :param pulumi.Input[_builtins.bool] enabled: Is the Function App enabled? Defaults to `true`.
1581
1628
  :param pulumi.Input[_builtins.str] hosting_environment_id: The ID of the App Service Environment used by Function App.
1629
+ :param pulumi.Input[_builtins.int] http_concurrency: The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
1630
+
1631
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
1582
1632
  :param pulumi.Input[_builtins.bool] https_only: Is Https Connection enforced to the function app. Defaults to `false`
1583
1633
  :param pulumi.Input[Union['AppFlexConsumptionIdentityArgs', 'AppFlexConsumptionIdentityArgsDict']] identity: A `identity` block as defined below.
1584
1634
  :param pulumi.Input[_builtins.int] instance_memory_in_mb: The memory size of the instances on which your app runs. Reference the Microsoft Documentation for the [currently supported values](https://learn.microsoft.com/en-us/azure/azure-functions/flex-consumption-plan#instance-memory). Defaults to `2048`.
@@ -1631,6 +1681,7 @@ class AppFlexConsumption(pulumi.CustomResource):
1631
1681
  __props__.__dict__["default_hostname"] = default_hostname
1632
1682
  __props__.__dict__["enabled"] = enabled
1633
1683
  __props__.__dict__["hosting_environment_id"] = hosting_environment_id
1684
+ __props__.__dict__["http_concurrency"] = http_concurrency
1634
1685
  __props__.__dict__["https_only"] = https_only
1635
1686
  __props__.__dict__["identity"] = identity
1636
1687
  __props__.__dict__["instance_memory_in_mb"] = instance_memory_in_mb
@@ -1757,6 +1808,16 @@ class AppFlexConsumption(pulumi.CustomResource):
1757
1808
  """
1758
1809
  return pulumi.get(self, "hosting_environment_id")
1759
1810
 
1811
+ @_builtins.property
1812
+ @pulumi.getter(name="httpConcurrency")
1813
+ def http_concurrency(self) -> pulumi.Output[Optional[_builtins.int]]:
1814
+ """
1815
+ The Http concurrency of the instances on which your app runs. The supported value are from `1` to `1000`.
1816
+
1817
+ > **Note:** A value will be assigned by the system if `http_concurrency` is not specified.
1818
+ """
1819
+ return pulumi.get(self, "http_concurrency")
1820
+
1760
1821
  @_builtins.property
1761
1822
  @pulumi.getter(name="httpsOnly")
1762
1823
  def https_only(self) -> pulumi.Output[Optional[_builtins.bool]]: