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.
- pulumi_azure/__init__.py +32 -0
- pulumi_azure/apimanagement/backend.py +2 -2
- pulumi_azure/appservice/_inputs.py +78 -6
- pulumi_azure/appservice/app_flex_consumption.py +61 -0
- pulumi_azure/appservice/outputs.py +52 -4
- pulumi_azure/appservice/service_plan.py +14 -14
- pulumi_azure/billing/account_cost_management_export.py +2 -2
- pulumi_azure/cdn/_inputs.py +57 -95
- pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
- pulumi_azure/cdn/frontdoor_profile.py +87 -2
- pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
- pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
- pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
- pulumi_azure/cdn/outputs.py +79 -21
- pulumi_azure/cognitive/account.py +7 -7
- pulumi_azure/compute/__init__.py +1 -0
- pulumi_azure/compute/_inputs.py +79 -47
- pulumi_azure/compute/get_managed_disks.py +140 -0
- pulumi_azure/compute/linux_virtual_machine.py +97 -23
- pulumi_azure/compute/outputs.py +362 -34
- pulumi_azure/compute/windows_virtual_machine.py +172 -42
- pulumi_azure/containerservice/_inputs.py +209 -17
- pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
- pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
- pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
- pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
- pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
- pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
- pulumi_azure/containerservice/outputs.py +173 -11
- pulumi_azure/core/_inputs.py +0 -54
- pulumi_azure/core/outputs.py +0 -36
- pulumi_azure/core/resource_group_cost_management_export.py +2 -2
- pulumi_azure/core/resource_group_policy_assignment.py +7 -7
- pulumi_azure/core/resource_policy_assignment.py +7 -7
- pulumi_azure/core/subscription_cost_management_export.py +2 -2
- pulumi_azure/core/subscription_policy_assignment.py +7 -7
- pulumi_azure/datafactory/__init__.py +1 -0
- pulumi_azure/datafactory/customer_managed_key.py +439 -0
- pulumi_azure/datafactory/factory.py +2 -2
- pulumi_azure/dataprotection/_inputs.py +36 -6
- pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
- pulumi_azure/dataprotection/outputs.py +24 -4
- pulumi_azure/devcenter/get_project_pool.py +15 -1
- pulumi_azure/devcenter/project_pool.py +47 -0
- pulumi_azure/eventgrid/domain.py +2 -2
- pulumi_azure/eventgrid/domain_topic.py +2 -2
- pulumi_azure/eventgrid/event_subscription.py +2 -2
- pulumi_azure/eventgrid/get_domain.py +2 -2
- pulumi_azure/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure/eventgrid/get_system_topic.py +28 -6
- pulumi_azure/eventgrid/get_topic.py +2 -2
- pulumi_azure/eventgrid/partner_configuration.py +2 -2
- pulumi_azure/eventgrid/partner_namespace.py +2 -2
- pulumi_azure/eventgrid/partner_registration.py +2 -2
- pulumi_azure/eventgrid/system_topic.py +97 -35
- pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
- pulumi_azure/eventgrid/topic.py +2 -2
- pulumi_azure/eventhub/domain.py +2 -2
- pulumi_azure/eventhub/event_grid_topic.py +2 -2
- pulumi_azure/eventhub/event_subscription.py +2 -2
- pulumi_azure/hpc/cache_blob_target.py +2 -2
- pulumi_azure/iot/_inputs.py +27 -1
- pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
- pulumi_azure/iot/endpoint_eventhub.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
- pulumi_azure/iot/endpoint_storage_container.py +64 -3
- pulumi_azure/iot/outputs.py +19 -1
- pulumi_azure/keyvault/_inputs.py +3 -17
- pulumi_azure/keyvault/get_key_vault.py +13 -1
- pulumi_azure/keyvault/key_vault.py +78 -35
- pulumi_azure/keyvault/outputs.py +2 -10
- pulumi_azure/kusto/_inputs.py +16 -6
- pulumi_azure/kusto/cluster.py +95 -66
- pulumi_azure/kusto/outputs.py +10 -4
- pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
- pulumi_azure/lb/get_lb_rule.py +28 -4
- pulumi_azure/lb/load_balancer.py +94 -0
- pulumi_azure/lb/nat_rule.py +115 -29
- pulumi_azure/lb/outbound_rule.py +60 -17
- pulumi_azure/lb/rule.py +116 -30
- pulumi_azure/loadtest/_inputs.py +6 -3
- pulumi_azure/loadtest/load_test.py +0 -4
- pulumi_azure/loadtest/outputs.py +4 -2
- pulumi_azure/logicapps/_inputs.py +46 -987
- pulumi_azure/logicapps/get_standard.py +0 -7
- pulumi_azure/logicapps/outputs.py +117 -101
- pulumi_azure/logicapps/standard.py +7 -7
- pulumi_azure/machinelearning/_inputs.py +24 -4
- pulumi_azure/machinelearning/compute_instance.py +35 -7
- pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
- pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
- pulumi_azure/machinelearning/inference_cluster.py +2 -2
- pulumi_azure/machinelearning/outputs.py +17 -3
- pulumi_azure/machinelearning/workspace.py +61 -0
- pulumi_azure/management/_inputs.py +0 -18
- pulumi_azure/management/group_policy_assignment.py +7 -7
- pulumi_azure/management/outputs.py +0 -12
- pulumi_azure/management/private_link_association.py +0 -70
- pulumi_azure/mobile/_inputs.py +14 -6
- pulumi_azure/mobile/network_sim.py +2 -6
- pulumi_azure/mobile/network_sim_policy.py +2 -6
- pulumi_azure/mobile/network_slice.py +116 -31
- pulumi_azure/mobile/outputs.py +6 -4
- pulumi_azure/monitoring/_inputs.py +15 -9
- pulumi_azure/monitoring/activity_log_alert.py +7 -7
- pulumi_azure/monitoring/outputs.py +10 -6
- pulumi_azure/mssql/job_step.py +11 -11
- pulumi_azure/mysql/_inputs.py +20 -0
- pulumi_azure/mysql/outputs.py +14 -0
- pulumi_azure/netapp/_inputs.py +18 -6
- pulumi_azure/netapp/account.py +2 -2
- pulumi_azure/netapp/account_encryption.py +132 -4
- pulumi_azure/netapp/backup_policy.py +2 -2
- pulumi_azure/netapp/backup_vault.py +2 -2
- pulumi_azure/netapp/get_account.py +2 -2
- pulumi_azure/netapp/get_account_encryption.py +25 -3
- pulumi_azure/netapp/get_backup_policy.py +2 -2
- pulumi_azure/netapp/get_backup_vault.py +2 -2
- pulumi_azure/netapp/get_pool.py +17 -3
- pulumi_azure/netapp/get_snapshot.py +2 -2
- pulumi_azure/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure/netapp/get_volume.py +17 -3
- pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
- pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure/netapp/outputs.py +12 -4
- pulumi_azure/netapp/pool.py +104 -9
- pulumi_azure/netapp/snapshot.py +2 -2
- pulumi_azure/netapp/snapshot_policy.py +2 -2
- pulumi_azure/netapp/volume.py +82 -7
- pulumi_azure/netapp/volume_group_oracle.py +2 -2
- pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/volume_quota_rule.py +2 -2
- pulumi_azure/network/__init__.py +2 -0
- pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
- pulumi_azure/network/network_manager_routing_configuration.py +7 -7
- pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
- pulumi_azure/network/subnet.py +76 -1
- pulumi_azure/oracle/__init__.py +3 -0
- pulumi_azure/oracle/autonomous_database_backup.py +310 -0
- pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
- pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
- pulumi_azure/oracle/outputs.py +191 -0
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
- pulumi_azure/policy/_inputs.py +6 -0
- pulumi_azure/policy/outputs.py +4 -0
- pulumi_azure/postgresql/flexible_server.py +7 -7
- pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/search/service.py +7 -7
- pulumi_azure/sentinel/_inputs.py +144 -0
- pulumi_azure/sentinel/authomation_rule.py +47 -0
- pulumi_azure/sentinel/automation_rule.py +47 -0
- pulumi_azure/sentinel/outputs.py +84 -0
- pulumi_azure/storage/_inputs.py +3 -3
- pulumi_azure/storage/container_immutability_policy.py +2 -2
- pulumi_azure/storage/get_queue.py +59 -8
- pulumi_azure/storage/outputs.py +2 -2
- pulumi_azure/storage/queue.py +159 -27
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
pulumi_azure/lb/get_lb_rule.py
CHANGED
|
@@ -26,7 +26,7 @@ class GetLBRuleResult:
|
|
|
26
26
|
"""
|
|
27
27
|
A collection of values returned by getLBRule.
|
|
28
28
|
"""
|
|
29
|
-
def __init__(__self__, backend_address_pool_id=None, backend_port=None, disable_outbound_snat=None, enable_floating_ip=None, enable_tcp_reset=None, frontend_ip_configuration_name=None, frontend_port=None, id=None, idle_timeout_in_minutes=None, load_distribution=None, loadbalancer_id=None, name=None, probe_id=None, protocol=None):
|
|
29
|
+
def __init__(__self__, backend_address_pool_id=None, backend_port=None, disable_outbound_snat=None, enable_floating_ip=None, enable_tcp_reset=None, floating_ip_enabled=None, frontend_ip_configuration_name=None, frontend_port=None, id=None, idle_timeout_in_minutes=None, load_distribution=None, loadbalancer_id=None, name=None, probe_id=None, protocol=None, tcp_reset_enabled=None):
|
|
30
30
|
if backend_address_pool_id and not isinstance(backend_address_pool_id, str):
|
|
31
31
|
raise TypeError("Expected argument 'backend_address_pool_id' to be a str")
|
|
32
32
|
pulumi.set(__self__, "backend_address_pool_id", backend_address_pool_id)
|
|
@@ -42,6 +42,9 @@ class GetLBRuleResult:
|
|
|
42
42
|
if enable_tcp_reset and not isinstance(enable_tcp_reset, bool):
|
|
43
43
|
raise TypeError("Expected argument 'enable_tcp_reset' to be a bool")
|
|
44
44
|
pulumi.set(__self__, "enable_tcp_reset", enable_tcp_reset)
|
|
45
|
+
if floating_ip_enabled and not isinstance(floating_ip_enabled, bool):
|
|
46
|
+
raise TypeError("Expected argument 'floating_ip_enabled' to be a bool")
|
|
47
|
+
pulumi.set(__self__, "floating_ip_enabled", floating_ip_enabled)
|
|
45
48
|
if frontend_ip_configuration_name and not isinstance(frontend_ip_configuration_name, str):
|
|
46
49
|
raise TypeError("Expected argument 'frontend_ip_configuration_name' to be a str")
|
|
47
50
|
pulumi.set(__self__, "frontend_ip_configuration_name", frontend_ip_configuration_name)
|
|
@@ -69,6 +72,9 @@ class GetLBRuleResult:
|
|
|
69
72
|
if protocol and not isinstance(protocol, str):
|
|
70
73
|
raise TypeError("Expected argument 'protocol' to be a str")
|
|
71
74
|
pulumi.set(__self__, "protocol", protocol)
|
|
75
|
+
if tcp_reset_enabled and not isinstance(tcp_reset_enabled, bool):
|
|
76
|
+
raise TypeError("Expected argument 'tcp_reset_enabled' to be a bool")
|
|
77
|
+
pulumi.set(__self__, "tcp_reset_enabled", tcp_reset_enabled)
|
|
72
78
|
|
|
73
79
|
@_builtins.property
|
|
74
80
|
@pulumi.getter(name="backendAddressPoolId")
|
|
@@ -96,6 +102,7 @@ class GetLBRuleResult:
|
|
|
96
102
|
|
|
97
103
|
@_builtins.property
|
|
98
104
|
@pulumi.getter(name="enableFloatingIp")
|
|
105
|
+
@_utilities.deprecated("""The property `enable_floating_ip` has been deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider""")
|
|
99
106
|
def enable_floating_ip(self) -> _builtins.bool:
|
|
100
107
|
"""
|
|
101
108
|
If Floating IPs are enabled for this Load Balancer Rule
|
|
@@ -104,12 +111,18 @@ class GetLBRuleResult:
|
|
|
104
111
|
|
|
105
112
|
@_builtins.property
|
|
106
113
|
@pulumi.getter(name="enableTcpReset")
|
|
114
|
+
@_utilities.deprecated("""The property `enable_tcp_reset` has been deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider""")
|
|
107
115
|
def enable_tcp_reset(self) -> _builtins.bool:
|
|
108
116
|
"""
|
|
109
117
|
If TCP Reset is enabled for this Load Balancer Rule.
|
|
110
118
|
"""
|
|
111
119
|
return pulumi.get(self, "enable_tcp_reset")
|
|
112
120
|
|
|
121
|
+
@_builtins.property
|
|
122
|
+
@pulumi.getter(name="floatingIpEnabled")
|
|
123
|
+
def floating_ip_enabled(self) -> _builtins.bool:
|
|
124
|
+
return pulumi.get(self, "floating_ip_enabled")
|
|
125
|
+
|
|
113
126
|
@_builtins.property
|
|
114
127
|
@pulumi.getter(name="frontendIpConfigurationName")
|
|
115
128
|
def frontend_ip_configuration_name(self) -> _builtins.str:
|
|
@@ -176,6 +189,11 @@ class GetLBRuleResult:
|
|
|
176
189
|
"""
|
|
177
190
|
return pulumi.get(self, "protocol")
|
|
178
191
|
|
|
192
|
+
@_builtins.property
|
|
193
|
+
@pulumi.getter(name="tcpResetEnabled")
|
|
194
|
+
def tcp_reset_enabled(self) -> _builtins.bool:
|
|
195
|
+
return pulumi.get(self, "tcp_reset_enabled")
|
|
196
|
+
|
|
179
197
|
|
|
180
198
|
class AwaitableGetLBRuleResult(GetLBRuleResult):
|
|
181
199
|
# pylint: disable=using-constant-test
|
|
@@ -188,6 +206,7 @@ class AwaitableGetLBRuleResult(GetLBRuleResult):
|
|
|
188
206
|
disable_outbound_snat=self.disable_outbound_snat,
|
|
189
207
|
enable_floating_ip=self.enable_floating_ip,
|
|
190
208
|
enable_tcp_reset=self.enable_tcp_reset,
|
|
209
|
+
floating_ip_enabled=self.floating_ip_enabled,
|
|
191
210
|
frontend_ip_configuration_name=self.frontend_ip_configuration_name,
|
|
192
211
|
frontend_port=self.frontend_port,
|
|
193
212
|
id=self.id,
|
|
@@ -196,7 +215,8 @@ class AwaitableGetLBRuleResult(GetLBRuleResult):
|
|
|
196
215
|
loadbalancer_id=self.loadbalancer_id,
|
|
197
216
|
name=self.name,
|
|
198
217
|
probe_id=self.probe_id,
|
|
199
|
-
protocol=self.protocol
|
|
218
|
+
protocol=self.protocol,
|
|
219
|
+
tcp_reset_enabled=self.tcp_reset_enabled)
|
|
200
220
|
|
|
201
221
|
|
|
202
222
|
def get_lb_rule(loadbalancer_id: Optional[_builtins.str] = None,
|
|
@@ -221,6 +241,7 @@ def get_lb_rule(loadbalancer_id: Optional[_builtins.str] = None,
|
|
|
221
241
|
disable_outbound_snat=pulumi.get(__ret__, 'disable_outbound_snat'),
|
|
222
242
|
enable_floating_ip=pulumi.get(__ret__, 'enable_floating_ip'),
|
|
223
243
|
enable_tcp_reset=pulumi.get(__ret__, 'enable_tcp_reset'),
|
|
244
|
+
floating_ip_enabled=pulumi.get(__ret__, 'floating_ip_enabled'),
|
|
224
245
|
frontend_ip_configuration_name=pulumi.get(__ret__, 'frontend_ip_configuration_name'),
|
|
225
246
|
frontend_port=pulumi.get(__ret__, 'frontend_port'),
|
|
226
247
|
id=pulumi.get(__ret__, 'id'),
|
|
@@ -229,7 +250,8 @@ def get_lb_rule(loadbalancer_id: Optional[_builtins.str] = None,
|
|
|
229
250
|
loadbalancer_id=pulumi.get(__ret__, 'loadbalancer_id'),
|
|
230
251
|
name=pulumi.get(__ret__, 'name'),
|
|
231
252
|
probe_id=pulumi.get(__ret__, 'probe_id'),
|
|
232
|
-
protocol=pulumi.get(__ret__, 'protocol')
|
|
253
|
+
protocol=pulumi.get(__ret__, 'protocol'),
|
|
254
|
+
tcp_reset_enabled=pulumi.get(__ret__, 'tcp_reset_enabled'))
|
|
233
255
|
def get_lb_rule_output(loadbalancer_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
256
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
235
257
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetLBRuleResult]:
|
|
@@ -251,6 +273,7 @@ def get_lb_rule_output(loadbalancer_id: Optional[pulumi.Input[_builtins.str]] =
|
|
|
251
273
|
disable_outbound_snat=pulumi.get(__response__, 'disable_outbound_snat'),
|
|
252
274
|
enable_floating_ip=pulumi.get(__response__, 'enable_floating_ip'),
|
|
253
275
|
enable_tcp_reset=pulumi.get(__response__, 'enable_tcp_reset'),
|
|
276
|
+
floating_ip_enabled=pulumi.get(__response__, 'floating_ip_enabled'),
|
|
254
277
|
frontend_ip_configuration_name=pulumi.get(__response__, 'frontend_ip_configuration_name'),
|
|
255
278
|
frontend_port=pulumi.get(__response__, 'frontend_port'),
|
|
256
279
|
id=pulumi.get(__response__, 'id'),
|
|
@@ -259,4 +282,5 @@ def get_lb_rule_output(loadbalancer_id: Optional[pulumi.Input[_builtins.str]] =
|
|
|
259
282
|
loadbalancer_id=pulumi.get(__response__, 'loadbalancer_id'),
|
|
260
283
|
name=pulumi.get(__response__, 'name'),
|
|
261
284
|
probe_id=pulumi.get(__response__, 'probe_id'),
|
|
262
|
-
protocol=pulumi.get(__response__, 'protocol')
|
|
285
|
+
protocol=pulumi.get(__response__, 'protocol'),
|
|
286
|
+
tcp_reset_enabled=pulumi.get(__response__, 'tcp_reset_enabled')))
|
pulumi_azure/lb/load_balancer.py
CHANGED
|
@@ -26,8 +26,10 @@ class LoadBalancerArgs:
|
|
|
26
26
|
frontend_ip_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerFrontendIpConfigurationArgs']]]] = None,
|
|
27
27
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
28
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
|
+
public_ip_address_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
sku: Optional[pulumi.Input[_builtins.str]] = None,
|
|
30
31
|
sku_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
31
33
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
32
34
|
"""
|
|
33
35
|
The set of arguments for constructing a LoadBalancer resource.
|
|
@@ -36,10 +38,12 @@ class LoadBalancerArgs:
|
|
|
36
38
|
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerFrontendIpConfigurationArgs']]] frontend_ip_configurations: One or more `frontend_ip_configuration` blocks as documented below.
|
|
37
39
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure Region where the Load Balancer should be created. Changing this forces a new resource to be created.
|
|
38
40
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the Load Balancer. Changing this forces a new resource to be created.
|
|
41
|
+
:param pulumi.Input[_builtins.str] public_ip_address_id: The ID of a Public IP Address which is associated with this Load Balancer.
|
|
39
42
|
:param pulumi.Input[_builtins.str] sku: The SKU of the Azure Load Balancer. Accepted values are `Basic`, `Standard` and `Gateway`. Defaults to `Standard`. Changing this forces a new resource to be created.
|
|
40
43
|
|
|
41
44
|
> **Note:** The `Microsoft.Network/AllowGatewayLoadBalancer` feature is required to be registered in order to use the `Gateway` SKU. The feature can only be registered by the Azure service team, please submit an [Azure support ticket](https://azure.microsoft.com/en-us/support/create-ticket/) for that.
|
|
42
45
|
:param pulumi.Input[_builtins.str] sku_tier: `sku_tier` - (Optional) The SKU tier of this Load Balancer. Possible values are `Global` and `Regional`. Defaults to `Regional`. Changing this forces a new resource to be created.
|
|
46
|
+
:param pulumi.Input[_builtins.str] subnet_id: The ID of the Subnet which is associated with the IP Configuration.
|
|
43
47
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
44
48
|
"""
|
|
45
49
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
@@ -51,10 +55,14 @@ class LoadBalancerArgs:
|
|
|
51
55
|
pulumi.set(__self__, "location", location)
|
|
52
56
|
if name is not None:
|
|
53
57
|
pulumi.set(__self__, "name", name)
|
|
58
|
+
if public_ip_address_id is not None:
|
|
59
|
+
pulumi.set(__self__, "public_ip_address_id", public_ip_address_id)
|
|
54
60
|
if sku is not None:
|
|
55
61
|
pulumi.set(__self__, "sku", sku)
|
|
56
62
|
if sku_tier is not None:
|
|
57
63
|
pulumi.set(__self__, "sku_tier", sku_tier)
|
|
64
|
+
if subnet_id is not None:
|
|
65
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
58
66
|
if tags is not None:
|
|
59
67
|
pulumi.set(__self__, "tags", tags)
|
|
60
68
|
|
|
@@ -118,6 +126,18 @@ class LoadBalancerArgs:
|
|
|
118
126
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
119
127
|
pulumi.set(self, "name", value)
|
|
120
128
|
|
|
129
|
+
@_builtins.property
|
|
130
|
+
@pulumi.getter(name="publicIpAddressId")
|
|
131
|
+
def public_ip_address_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
132
|
+
"""
|
|
133
|
+
The ID of a Public IP Address which is associated with this Load Balancer.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "public_ip_address_id")
|
|
136
|
+
|
|
137
|
+
@public_ip_address_id.setter
|
|
138
|
+
def public_ip_address_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
139
|
+
pulumi.set(self, "public_ip_address_id", value)
|
|
140
|
+
|
|
121
141
|
@_builtins.property
|
|
122
142
|
@pulumi.getter
|
|
123
143
|
def sku(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -144,6 +164,18 @@ class LoadBalancerArgs:
|
|
|
144
164
|
def sku_tier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
145
165
|
pulumi.set(self, "sku_tier", value)
|
|
146
166
|
|
|
167
|
+
@_builtins.property
|
|
168
|
+
@pulumi.getter(name="subnetId")
|
|
169
|
+
def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
170
|
+
"""
|
|
171
|
+
The ID of the Subnet which is associated with the IP Configuration.
|
|
172
|
+
"""
|
|
173
|
+
return pulumi.get(self, "subnet_id")
|
|
174
|
+
|
|
175
|
+
@subnet_id.setter
|
|
176
|
+
def subnet_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
177
|
+
pulumi.set(self, "subnet_id", value)
|
|
178
|
+
|
|
147
179
|
@_builtins.property
|
|
148
180
|
@pulumi.getter
|
|
149
181
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
@@ -166,9 +198,11 @@ class _LoadBalancerState:
|
|
|
166
198
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
167
199
|
private_ip_address: Optional[pulumi.Input[_builtins.str]] = None,
|
|
168
200
|
private_ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
201
|
+
public_ip_address_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
169
202
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
170
203
|
sku: Optional[pulumi.Input[_builtins.str]] = None,
|
|
171
204
|
sku_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
205
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
172
206
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
|
173
207
|
"""
|
|
174
208
|
Input properties used for looking up and filtering LoadBalancer resources.
|
|
@@ -178,11 +212,13 @@ class _LoadBalancerState:
|
|
|
178
212
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the Load Balancer. Changing this forces a new resource to be created.
|
|
179
213
|
:param pulumi.Input[_builtins.str] private_ip_address: Private IP Address to assign to the Load Balancer.
|
|
180
214
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] private_ip_addresses: The list of private IP address assigned to the load balancer in `frontend_ip_configuration` blocks, if any.
|
|
215
|
+
:param pulumi.Input[_builtins.str] public_ip_address_id: The ID of a Public IP Address which is associated with this Load Balancer.
|
|
181
216
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group in which to create the Load Balancer. Changing this forces a new resource to be created.
|
|
182
217
|
:param pulumi.Input[_builtins.str] sku: The SKU of the Azure Load Balancer. Accepted values are `Basic`, `Standard` and `Gateway`. Defaults to `Standard`. Changing this forces a new resource to be created.
|
|
183
218
|
|
|
184
219
|
> **Note:** The `Microsoft.Network/AllowGatewayLoadBalancer` feature is required to be registered in order to use the `Gateway` SKU. The feature can only be registered by the Azure service team, please submit an [Azure support ticket](https://azure.microsoft.com/en-us/support/create-ticket/) for that.
|
|
185
220
|
:param pulumi.Input[_builtins.str] sku_tier: `sku_tier` - (Optional) The SKU tier of this Load Balancer. Possible values are `Global` and `Regional`. Defaults to `Regional`. Changing this forces a new resource to be created.
|
|
221
|
+
:param pulumi.Input[_builtins.str] subnet_id: The ID of the Subnet which is associated with the IP Configuration.
|
|
186
222
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
187
223
|
"""
|
|
188
224
|
if edge_zone is not None:
|
|
@@ -197,12 +233,16 @@ class _LoadBalancerState:
|
|
|
197
233
|
pulumi.set(__self__, "private_ip_address", private_ip_address)
|
|
198
234
|
if private_ip_addresses is not None:
|
|
199
235
|
pulumi.set(__self__, "private_ip_addresses", private_ip_addresses)
|
|
236
|
+
if public_ip_address_id is not None:
|
|
237
|
+
pulumi.set(__self__, "public_ip_address_id", public_ip_address_id)
|
|
200
238
|
if resource_group_name is not None:
|
|
201
239
|
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
202
240
|
if sku is not None:
|
|
203
241
|
pulumi.set(__self__, "sku", sku)
|
|
204
242
|
if sku_tier is not None:
|
|
205
243
|
pulumi.set(__self__, "sku_tier", sku_tier)
|
|
244
|
+
if subnet_id is not None:
|
|
245
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
|
206
246
|
if tags is not None:
|
|
207
247
|
pulumi.set(__self__, "tags", tags)
|
|
208
248
|
|
|
@@ -278,6 +318,18 @@ class _LoadBalancerState:
|
|
|
278
318
|
def private_ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
279
319
|
pulumi.set(self, "private_ip_addresses", value)
|
|
280
320
|
|
|
321
|
+
@_builtins.property
|
|
322
|
+
@pulumi.getter(name="publicIpAddressId")
|
|
323
|
+
def public_ip_address_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
324
|
+
"""
|
|
325
|
+
The ID of a Public IP Address which is associated with this Load Balancer.
|
|
326
|
+
"""
|
|
327
|
+
return pulumi.get(self, "public_ip_address_id")
|
|
328
|
+
|
|
329
|
+
@public_ip_address_id.setter
|
|
330
|
+
def public_ip_address_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
331
|
+
pulumi.set(self, "public_ip_address_id", value)
|
|
332
|
+
|
|
281
333
|
@_builtins.property
|
|
282
334
|
@pulumi.getter(name="resourceGroupName")
|
|
283
335
|
def resource_group_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -316,6 +368,18 @@ class _LoadBalancerState:
|
|
|
316
368
|
def sku_tier(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
317
369
|
pulumi.set(self, "sku_tier", value)
|
|
318
370
|
|
|
371
|
+
@_builtins.property
|
|
372
|
+
@pulumi.getter(name="subnetId")
|
|
373
|
+
def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
374
|
+
"""
|
|
375
|
+
The ID of the Subnet which is associated with the IP Configuration.
|
|
376
|
+
"""
|
|
377
|
+
return pulumi.get(self, "subnet_id")
|
|
378
|
+
|
|
379
|
+
@subnet_id.setter
|
|
380
|
+
def subnet_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
381
|
+
pulumi.set(self, "subnet_id", value)
|
|
382
|
+
|
|
319
383
|
@_builtins.property
|
|
320
384
|
@pulumi.getter
|
|
321
385
|
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
|
@@ -339,9 +403,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
339
403
|
frontend_ip_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerFrontendIpConfigurationArgs', 'LoadBalancerFrontendIpConfigurationArgsDict']]]]] = None,
|
|
340
404
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
341
405
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
406
|
+
public_ip_address_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
342
407
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
343
408
|
sku: Optional[pulumi.Input[_builtins.str]] = None,
|
|
344
409
|
sku_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
410
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
345
411
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
346
412
|
__props__=None):
|
|
347
413
|
"""
|
|
@@ -392,11 +458,13 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
392
458
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerFrontendIpConfigurationArgs', 'LoadBalancerFrontendIpConfigurationArgsDict']]]] frontend_ip_configurations: One or more `frontend_ip_configuration` blocks as documented below.
|
|
393
459
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure Region where the Load Balancer should be created. Changing this forces a new resource to be created.
|
|
394
460
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the Load Balancer. Changing this forces a new resource to be created.
|
|
461
|
+
:param pulumi.Input[_builtins.str] public_ip_address_id: The ID of a Public IP Address which is associated with this Load Balancer.
|
|
395
462
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group in which to create the Load Balancer. Changing this forces a new resource to be created.
|
|
396
463
|
:param pulumi.Input[_builtins.str] sku: The SKU of the Azure Load Balancer. Accepted values are `Basic`, `Standard` and `Gateway`. Defaults to `Standard`. Changing this forces a new resource to be created.
|
|
397
464
|
|
|
398
465
|
> **Note:** The `Microsoft.Network/AllowGatewayLoadBalancer` feature is required to be registered in order to use the `Gateway` SKU. The feature can only be registered by the Azure service team, please submit an [Azure support ticket](https://azure.microsoft.com/en-us/support/create-ticket/) for that.
|
|
399
466
|
:param pulumi.Input[_builtins.str] sku_tier: `sku_tier` - (Optional) The SKU tier of this Load Balancer. Possible values are `Global` and `Regional`. Defaults to `Regional`. Changing this forces a new resource to be created.
|
|
467
|
+
:param pulumi.Input[_builtins.str] subnet_id: The ID of the Subnet which is associated with the IP Configuration.
|
|
400
468
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
401
469
|
"""
|
|
402
470
|
...
|
|
@@ -466,9 +534,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
466
534
|
frontend_ip_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerFrontendIpConfigurationArgs', 'LoadBalancerFrontendIpConfigurationArgsDict']]]]] = None,
|
|
467
535
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
468
536
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
537
|
+
public_ip_address_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
469
538
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
470
539
|
sku: Optional[pulumi.Input[_builtins.str]] = None,
|
|
471
540
|
sku_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
541
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
472
542
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
473
543
|
__props__=None):
|
|
474
544
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -483,11 +553,13 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
483
553
|
__props__.__dict__["frontend_ip_configurations"] = frontend_ip_configurations
|
|
484
554
|
__props__.__dict__["location"] = location
|
|
485
555
|
__props__.__dict__["name"] = name
|
|
556
|
+
__props__.__dict__["public_ip_address_id"] = public_ip_address_id
|
|
486
557
|
if resource_group_name is None and not opts.urn:
|
|
487
558
|
raise TypeError("Missing required property 'resource_group_name'")
|
|
488
559
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
489
560
|
__props__.__dict__["sku"] = sku
|
|
490
561
|
__props__.__dict__["sku_tier"] = sku_tier
|
|
562
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
|
491
563
|
__props__.__dict__["tags"] = tags
|
|
492
564
|
__props__.__dict__["private_ip_address"] = None
|
|
493
565
|
__props__.__dict__["private_ip_addresses"] = None
|
|
@@ -507,9 +579,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
507
579
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
508
580
|
private_ip_address: Optional[pulumi.Input[_builtins.str]] = None,
|
|
509
581
|
private_ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
582
|
+
public_ip_address_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
510
583
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
511
584
|
sku: Optional[pulumi.Input[_builtins.str]] = None,
|
|
512
585
|
sku_tier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
586
|
+
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
513
587
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None) -> 'LoadBalancer':
|
|
514
588
|
"""
|
|
515
589
|
Get an existing LoadBalancer resource's state with the given name, id, and optional extra
|
|
@@ -524,11 +598,13 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
524
598
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the Load Balancer. Changing this forces a new resource to be created.
|
|
525
599
|
:param pulumi.Input[_builtins.str] private_ip_address: Private IP Address to assign to the Load Balancer.
|
|
526
600
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] private_ip_addresses: The list of private IP address assigned to the load balancer in `frontend_ip_configuration` blocks, if any.
|
|
601
|
+
:param pulumi.Input[_builtins.str] public_ip_address_id: The ID of a Public IP Address which is associated with this Load Balancer.
|
|
527
602
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group in which to create the Load Balancer. Changing this forces a new resource to be created.
|
|
528
603
|
:param pulumi.Input[_builtins.str] sku: The SKU of the Azure Load Balancer. Accepted values are `Basic`, `Standard` and `Gateway`. Defaults to `Standard`. Changing this forces a new resource to be created.
|
|
529
604
|
|
|
530
605
|
> **Note:** The `Microsoft.Network/AllowGatewayLoadBalancer` feature is required to be registered in order to use the `Gateway` SKU. The feature can only be registered by the Azure service team, please submit an [Azure support ticket](https://azure.microsoft.com/en-us/support/create-ticket/) for that.
|
|
531
606
|
:param pulumi.Input[_builtins.str] sku_tier: `sku_tier` - (Optional) The SKU tier of this Load Balancer. Possible values are `Global` and `Regional`. Defaults to `Regional`. Changing this forces a new resource to be created.
|
|
607
|
+
:param pulumi.Input[_builtins.str] subnet_id: The ID of the Subnet which is associated with the IP Configuration.
|
|
532
608
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
|
|
533
609
|
"""
|
|
534
610
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -541,9 +617,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
541
617
|
__props__.__dict__["name"] = name
|
|
542
618
|
__props__.__dict__["private_ip_address"] = private_ip_address
|
|
543
619
|
__props__.__dict__["private_ip_addresses"] = private_ip_addresses
|
|
620
|
+
__props__.__dict__["public_ip_address_id"] = public_ip_address_id
|
|
544
621
|
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
545
622
|
__props__.__dict__["sku"] = sku
|
|
546
623
|
__props__.__dict__["sku_tier"] = sku_tier
|
|
624
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
|
547
625
|
__props__.__dict__["tags"] = tags
|
|
548
626
|
return LoadBalancer(resource_name, opts=opts, __props__=__props__)
|
|
549
627
|
|
|
@@ -595,6 +673,14 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
595
673
|
"""
|
|
596
674
|
return pulumi.get(self, "private_ip_addresses")
|
|
597
675
|
|
|
676
|
+
@_builtins.property
|
|
677
|
+
@pulumi.getter(name="publicIpAddressId")
|
|
678
|
+
def public_ip_address_id(self) -> pulumi.Output[_builtins.str]:
|
|
679
|
+
"""
|
|
680
|
+
The ID of a Public IP Address which is associated with this Load Balancer.
|
|
681
|
+
"""
|
|
682
|
+
return pulumi.get(self, "public_ip_address_id")
|
|
683
|
+
|
|
598
684
|
@_builtins.property
|
|
599
685
|
@pulumi.getter(name="resourceGroupName")
|
|
600
686
|
def resource_group_name(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -621,6 +707,14 @@ class LoadBalancer(pulumi.CustomResource):
|
|
|
621
707
|
"""
|
|
622
708
|
return pulumi.get(self, "sku_tier")
|
|
623
709
|
|
|
710
|
+
@_builtins.property
|
|
711
|
+
@pulumi.getter(name="subnetId")
|
|
712
|
+
def subnet_id(self) -> pulumi.Output[_builtins.str]:
|
|
713
|
+
"""
|
|
714
|
+
The ID of the Subnet which is associated with the IP Configuration.
|
|
715
|
+
"""
|
|
716
|
+
return pulumi.get(self, "subnet_id")
|
|
717
|
+
|
|
624
718
|
@_builtins.property
|
|
625
719
|
@pulumi.getter
|
|
626
720
|
def tags(self) -> pulumi.Output[Optional[Mapping[str, _builtins.str]]]:
|