pulumi-azure 6.27.0a1758868424__py3-none-any.whl → 6.27.0a1759511969__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.0a1759511969.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
@@ -63,6 +63,7 @@ __all__ = [
63
63
  'FrontdoorOriginGroupLoadBalancing',
64
64
  'FrontdoorOriginPrivateLink',
65
65
  'FrontdoorProfileIdentity',
66
+ 'FrontdoorProfileLogScrubbingRule',
66
67
  'FrontdoorRouteCache',
67
68
  'FrontdoorRuleActions',
68
69
  'FrontdoorRuleActionsRequestHeaderAction',
@@ -100,6 +101,7 @@ __all__ = [
100
101
  'GetFrontdoorOriginGroupHealthProbeResult',
101
102
  'GetFrontdoorOriginGroupLoadBalancingResult',
102
103
  'GetFrontdoorProfileIdentityResult',
104
+ 'GetFrontdoorProfileLogScrubbingRuleResult',
103
105
  'GetFrontdoorSecretSecretResult',
104
106
  'GetFrontdoorSecretSecretCustomerCertificateResult',
105
107
  ]
@@ -2485,9 +2487,9 @@ class FrontdoorFirewallPolicyCustomRule(dict):
2485
2487
  rate_limit_duration_in_minutes: Optional[_builtins.int] = None,
2486
2488
  rate_limit_threshold: Optional[_builtins.int] = None):
2487
2489
  """
2488
- :param _builtins.str action: The action to perform when the rule is matched. Possible values are `Allow`, `Block`, `Log`, `Redirect`, or `JSChallenge`.
2490
+ :param _builtins.str action: The action to perform when the rule is matched. Possible values are `Allow`, `Block`, `Log`, `Redirect`, `JSChallenge`, or `CAPTCHA`.
2489
2491
 
2490
- !> **Note:** Setting the `action` field to `JSChallenge` is currently in **PREVIEW**. Please see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
2492
+ !> **Note:** Setting the `action` field to `JSChallenge` or `CAPTCHA` is currently in **PREVIEW**. Please see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
2491
2493
  :param _builtins.str name: Gets name of the resource that is unique within a policy. This name can be used to access the resource.
2492
2494
  :param _builtins.str type: The type of rule. Possible values are `MatchRule` or `RateLimitRule`.
2493
2495
  :param _builtins.bool enabled: Is the rule is enabled or disabled? Defaults to `true`.
@@ -2514,9 +2516,9 @@ class FrontdoorFirewallPolicyCustomRule(dict):
2514
2516
  @pulumi.getter
2515
2517
  def action(self) -> _builtins.str:
2516
2518
  """
2517
- The action to perform when the rule is matched. Possible values are `Allow`, `Block`, `Log`, `Redirect`, or `JSChallenge`.
2519
+ The action to perform when the rule is matched. Possible values are `Allow`, `Block`, `Log`, `Redirect`, `JSChallenge`, or `CAPTCHA`.
2518
2520
 
2519
- !> **Note:** Setting the `action` field to `JSChallenge` is currently in **PREVIEW**. Please see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
2521
+ !> **Note:** Setting the `action` field to `JSChallenge` or `CAPTCHA` is currently in **PREVIEW**. Please see the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
2520
2522
  """
2521
2523
  return pulumi.get(self, "action")
2522
2524
 
@@ -3489,6 +3491,45 @@ class FrontdoorProfileIdentity(dict):
3489
3491
  return pulumi.get(self, "tenant_id")
3490
3492
 
3491
3493
 
3494
+ @pulumi.output_type
3495
+ class FrontdoorProfileLogScrubbingRule(dict):
3496
+ @staticmethod
3497
+ def __key_warning(key: str):
3498
+ suggest = None
3499
+ if key == "matchVariable":
3500
+ suggest = "match_variable"
3501
+
3502
+ if suggest:
3503
+ pulumi.log.warn(f"Key '{key}' not found in FrontdoorProfileLogScrubbingRule. Access the value via the '{suggest}' property getter instead.")
3504
+
3505
+ def __getitem__(self, key: str) -> Any:
3506
+ FrontdoorProfileLogScrubbingRule.__key_warning(key)
3507
+ return super().__getitem__(key)
3508
+
3509
+ def get(self, key: str, default = None) -> Any:
3510
+ FrontdoorProfileLogScrubbingRule.__key_warning(key)
3511
+ return super().get(key, default)
3512
+
3513
+ def __init__(__self__, *,
3514
+ match_variable: _builtins.str):
3515
+ """
3516
+ :param _builtins.str match_variable: The variable to be scrubbed from the logs. Possible values are `QueryStringArgNames`, `RequestIPAddress`, and `RequestUri`.
3517
+
3518
+ > **Note:** The `operator` field is implicitly set to `EqualsAny`, as it is the sole supported value, and is therefore not exposed as a configurable option in the provider schema.
3519
+ """
3520
+ pulumi.set(__self__, "match_variable", match_variable)
3521
+
3522
+ @_builtins.property
3523
+ @pulumi.getter(name="matchVariable")
3524
+ def match_variable(self) -> _builtins.str:
3525
+ """
3526
+ The variable to be scrubbed from the logs. Possible values are `QueryStringArgNames`, `RequestIPAddress`, and `RequestUri`.
3527
+
3528
+ > **Note:** The `operator` field is implicitly set to `EqualsAny`, as it is the sole supported value, and is therefore not exposed as a configurable option in the provider schema.
3529
+ """
3530
+ return pulumi.get(self, "match_variable")
3531
+
3532
+
3492
3533
  @pulumi.output_type
3493
3534
  class FrontdoorRouteCache(dict):
3494
3535
  @staticmethod
@@ -5815,7 +5856,7 @@ class FrontdoorSecurityPolicySecurityPolicies(dict):
5815
5856
  def __init__(__self__, *,
5816
5857
  firewall: 'outputs.FrontdoorSecurityPolicySecurityPoliciesFirewall'):
5817
5858
  """
5818
- :param 'FrontdoorSecurityPolicySecurityPoliciesFirewallArgs' firewall: An `firewall` block as defined below. Changing this forces a new Front Door Security Policy to be created.
5859
+ :param 'FrontdoorSecurityPolicySecurityPoliciesFirewallArgs' firewall: An `firewall` block as defined below.
5819
5860
  """
5820
5861
  pulumi.set(__self__, "firewall", firewall)
5821
5862
 
@@ -5823,7 +5864,7 @@ class FrontdoorSecurityPolicySecurityPolicies(dict):
5823
5864
  @pulumi.getter
5824
5865
  def firewall(self) -> 'outputs.FrontdoorSecurityPolicySecurityPoliciesFirewall':
5825
5866
  """
5826
- An `firewall` block as defined below. Changing this forces a new Front Door Security Policy to be created.
5867
+ An `firewall` block as defined below.
5827
5868
  """
5828
5869
  return pulumi.get(self, "firewall")
5829
5870
 
@@ -5851,7 +5892,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewall(dict):
5851
5892
  association: 'outputs.FrontdoorSecurityPolicySecurityPoliciesFirewallAssociation',
5852
5893
  cdn_frontdoor_firewall_policy_id: _builtins.str):
5853
5894
  """
5854
- :param 'FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationArgs' association: An `association` block as defined below. Changing this forces a new Front Door Security Policy to be created.
5895
+ :param 'FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationArgs' association: An `association` block as defined below.
5855
5896
  :param _builtins.str cdn_frontdoor_firewall_policy_id: The Resource Id of the Front Door Firewall Policy that should be linked to this Front Door Security Policy. Changing this forces a new Front Door Security Policy to be created.
5856
5897
  """
5857
5898
  pulumi.set(__self__, "association", association)
@@ -5861,7 +5902,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewall(dict):
5861
5902
  @pulumi.getter
5862
5903
  def association(self) -> 'outputs.FrontdoorSecurityPolicySecurityPoliciesFirewallAssociation':
5863
5904
  """
5864
- An `association` block as defined below. Changing this forces a new Front Door Security Policy to be created.
5905
+ An `association` block as defined below.
5865
5906
  """
5866
5907
  return pulumi.get(self, "association")
5867
5908
 
@@ -5897,7 +5938,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewallAssociation(dict):
5897
5938
  domains: Sequence['outputs.FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomain'],
5898
5939
  patterns_to_match: _builtins.str):
5899
5940
  """
5900
- :param Sequence['FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomainArgs'] domains: One or more `domain` blocks as defined below. Changing this forces a new Front Door Security Policy to be created.
5941
+ :param Sequence['FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomainArgs'] domains: One or more `domain` blocks as defined below.
5901
5942
  :param _builtins.str patterns_to_match: The list of paths to match for this firewall policy. Possible value includes `/*`. Changing this forces a new Front Door Security Policy to be created.
5902
5943
  """
5903
5944
  pulumi.set(__self__, "domains", domains)
@@ -5907,7 +5948,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewallAssociation(dict):
5907
5948
  @pulumi.getter
5908
5949
  def domains(self) -> Sequence['outputs.FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomain']:
5909
5950
  """
5910
- One or more `domain` blocks as defined below. Changing this forces a new Front Door Security Policy to be created.
5951
+ One or more `domain` blocks as defined below.
5911
5952
  """
5912
5953
  return pulumi.get(self, "domains")
5913
5954
 
@@ -5943,7 +5984,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomain(dict):
5943
5984
  cdn_frontdoor_domain_id: _builtins.str,
5944
5985
  active: Optional[_builtins.bool] = None):
5945
5986
  """
5946
- :param _builtins.str cdn_frontdoor_domain_id: The Resource Id of the **Front Door Custom Domain** or **Front Door Endpoint** that should be bound to this Front Door Security Policy. Changing this forces a new Front Door Security Policy to be created.
5987
+ :param _builtins.str cdn_frontdoor_domain_id: The Resource Id of the **Front Door Custom Domain** or **Front Door Endpoint** that should be bound to this Front Door Security Policy.
5947
5988
  :param _builtins.bool active: Is the Front Door Custom Domain/Endpoint activated?
5948
5989
  """
5949
5990
  pulumi.set(__self__, "cdn_frontdoor_domain_id", cdn_frontdoor_domain_id)
@@ -5954,7 +5995,7 @@ class FrontdoorSecurityPolicySecurityPoliciesFirewallAssociationDomain(dict):
5954
5995
  @pulumi.getter(name="cdnFrontdoorDomainId")
5955
5996
  def cdn_frontdoor_domain_id(self) -> _builtins.str:
5956
5997
  """
5957
- The Resource Id of the **Front Door Custom Domain** or **Front Door Endpoint** that should be bound to this Front Door Security Policy. Changing this forces a new Front Door Security Policy to be created.
5998
+ The Resource Id of the **Front Door Custom Domain** or **Front Door Endpoint** that should be bound to this Front Door Security Policy.
5958
5999
  """
5959
6000
  return pulumi.get(self, "cdn_frontdoor_domain_id")
5960
6001
 
@@ -6101,19 +6142,26 @@ class GetFrontdoorOriginGroupLoadBalancingResult(dict):
6101
6142
  @pulumi.output_type
6102
6143
  class GetFrontdoorProfileIdentityResult(dict):
6103
6144
  def __init__(__self__, *,
6145
+ identity_ids: Sequence[_builtins.str],
6104
6146
  principal_id: _builtins.str,
6105
6147
  tenant_id: _builtins.str,
6106
- type: _builtins.str,
6107
- identity_ids: Optional[Sequence[_builtins.str]] = None):
6148
+ type: _builtins.str):
6108
6149
  """
6109
- :param _builtins.str type: The type of Managed Service Identity that is configured on this Front Door Profile.
6110
6150
  :param Sequence[_builtins.str] identity_ids: The list of User Assigned Managed Identity IDs assigned to this Front Door Profile.
6151
+ :param _builtins.str type: The type of Managed Service Identity that is configured on this Front Door Profile.
6111
6152
  """
6153
+ pulumi.set(__self__, "identity_ids", identity_ids)
6112
6154
  pulumi.set(__self__, "principal_id", principal_id)
6113
6155
  pulumi.set(__self__, "tenant_id", tenant_id)
6114
6156
  pulumi.set(__self__, "type", type)
6115
- if identity_ids is not None:
6116
- pulumi.set(__self__, "identity_ids", identity_ids)
6157
+
6158
+ @_builtins.property
6159
+ @pulumi.getter(name="identityIds")
6160
+ def identity_ids(self) -> Sequence[_builtins.str]:
6161
+ """
6162
+ The list of User Assigned Managed Identity IDs assigned to this Front Door Profile.
6163
+ """
6164
+ return pulumi.get(self, "identity_ids")
6117
6165
 
6118
6166
  @_builtins.property
6119
6167
  @pulumi.getter(name="principalId")
@@ -6133,13 +6181,23 @@ class GetFrontdoorProfileIdentityResult(dict):
6133
6181
  """
6134
6182
  return pulumi.get(self, "type")
6135
6183
 
6184
+
6185
+ @pulumi.output_type
6186
+ class GetFrontdoorProfileLogScrubbingRuleResult(dict):
6187
+ def __init__(__self__, *,
6188
+ match_variable: _builtins.str):
6189
+ """
6190
+ :param _builtins.str match_variable: The variable that is scrubbed from the logs.
6191
+ """
6192
+ pulumi.set(__self__, "match_variable", match_variable)
6193
+
6136
6194
  @_builtins.property
6137
- @pulumi.getter(name="identityIds")
6138
- def identity_ids(self) -> Optional[Sequence[_builtins.str]]:
6195
+ @pulumi.getter(name="matchVariable")
6196
+ def match_variable(self) -> _builtins.str:
6139
6197
  """
6140
- The list of User Assigned Managed Identity IDs assigned to this Front Door Profile.
6198
+ The variable that is scrubbed from the logs.
6141
6199
  """
6142
- return pulumi.get(self, "identity_ids")
6200
+ return pulumi.get(self, "match_variable")
6143
6201
 
6144
6202
 
6145
6203
  @pulumi.output_type
@@ -52,7 +52,7 @@ class AccountArgs:
52
52
 
53
53
  > **Note:** You must create your first Face, Text Analytics, or Computer Vision resources from the Azure portal to review and acknowledge the terms and conditions. In Azure Portal, the checkbox to accept terms and conditions is only displayed when a US region is selected. More information on [Prerequisites](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account-cli?tabs=windows#prerequisites).
54
54
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which the Cognitive Service Account is created. Changing this forces a new resource to be created.
55
- :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
55
+ :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
56
56
 
57
57
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
58
58
  :param pulumi.Input[_builtins.str] custom_question_answering_search_service_id: If `kind` is `TextAnalytics` this specifies the ID of the Search service.
@@ -156,7 +156,7 @@ class AccountArgs:
156
156
  @pulumi.getter(name="skuName")
157
157
  def sku_name(self) -> pulumi.Input[_builtins.str]:
158
158
  """
159
- Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
159
+ Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
160
160
 
161
161
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
162
162
  """
@@ -473,7 +473,7 @@ class _AccountState:
473
473
  :param pulumi.Input[_builtins.str] qna_runtime_endpoint: A URL to link a QnAMaker cognitive account to a QnA runtime.
474
474
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which the Cognitive Service Account is created. Changing this forces a new resource to be created.
475
475
  :param pulumi.Input[_builtins.str] secondary_access_key: The secondary access key which can be used to connect to the Cognitive Service Account.
476
- :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
476
+ :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
477
477
 
478
478
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
479
479
  :param pulumi.Input[Sequence[pulumi.Input['AccountStorageArgs']]] storages: A `storage` block as defined below.
@@ -820,7 +820,7 @@ class _AccountState:
820
820
  @pulumi.getter(name="skuName")
821
821
  def sku_name(self) -> Optional[pulumi.Input[_builtins.str]]:
822
822
  """
823
- Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
823
+ Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
824
824
 
825
825
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
826
826
  """
@@ -955,7 +955,7 @@ class Account(pulumi.CustomResource):
955
955
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Whether public network access is allowed for the Cognitive Account. Defaults to `true`.
956
956
  :param pulumi.Input[_builtins.str] qna_runtime_endpoint: A URL to link a QnAMaker cognitive account to a QnA runtime.
957
957
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which the Cognitive Service Account is created. Changing this forces a new resource to be created.
958
- :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
958
+ :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
959
959
 
960
960
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
961
961
  :param pulumi.Input[Sequence[pulumi.Input[Union['AccountStorageArgs', 'AccountStorageArgsDict']]]] storages: A `storage` block as defined below.
@@ -1162,7 +1162,7 @@ class Account(pulumi.CustomResource):
1162
1162
  :param pulumi.Input[_builtins.str] qna_runtime_endpoint: A URL to link a QnAMaker cognitive account to a QnA runtime.
1163
1163
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which the Cognitive Service Account is created. Changing this forces a new resource to be created.
1164
1164
  :param pulumi.Input[_builtins.str] secondary_access_key: The secondary access key which can be used to connect to the Cognitive Service Account.
1165
- :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
1165
+ :param pulumi.Input[_builtins.str] sku_name: Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
1166
1166
 
1167
1167
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
1168
1168
  :param pulumi.Input[Sequence[pulumi.Input[Union['AccountStorageArgs', 'AccountStorageArgsDict']]]] storages: A `storage` block as defined below.
@@ -1396,7 +1396,7 @@ class Account(pulumi.CustomResource):
1396
1396
  @pulumi.getter(name="skuName")
1397
1397
  def sku_name(self) -> pulumi.Output[_builtins.str]:
1398
1398
  """
1399
- Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`.
1399
+ Specifies the SKU Name for this Cognitive Service Account. Possible values are `C2`, `C3`, `C4`, `D3`, `DC0`, `E0`, `F0`, `F1`, `P0`, `P1`, `P2`, `S`, `S0`, `S1`, `S2`, `S3`, `S4`, `S5` and `S6`.
1400
1400
 
1401
1401
  > **Note:** SKU `DC0` is the commitment tier for Cognitive Services containers running in disconnected environments. You must obtain approval from Microsoft by submitting the [request form](https://aka.ms/csdisconnectedcontainers) first, before you can use this SKU. More information on [Purchase a commitment plan to use containers in disconnected environments](https://learn.microsoft.com/en-us/azure/cognitive-services/containers/disconnected-containers?tabs=stt#purchase-a-commitment-plan-to-use-containers-in-disconnected-environments).
1402
1402
  """
@@ -30,6 +30,7 @@ from .get_disk_encryption_set import *
30
30
  from .get_image import *
31
31
  from .get_images import *
32
32
  from .get_managed_disk import *
33
+ from .get_managed_disks import *
33
34
  from .get_orchestrated_virtual_machine_scale_set import *
34
35
  from .get_platform_image import *
35
36
  from .get_shared_image import *