pulumi-azure 6.27.0a1758695020__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.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
pulumi_azure/lb/rule.py
CHANGED
|
@@ -28,10 +28,12 @@ class RuleArgs:
|
|
|
28
28
|
disable_outbound_snat: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
29
29
|
enable_floating_ip: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
30
30
|
enable_tcp_reset: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31
|
+
floating_ip_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
31
32
|
idle_timeout_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
32
33
|
load_distribution: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
34
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
|
-
probe_id: Optional[pulumi.Input[_builtins.str]] = None
|
|
35
|
+
probe_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
36
|
+
tcp_reset_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
35
37
|
"""
|
|
36
38
|
The set of arguments for constructing a Rule resource.
|
|
37
39
|
:param pulumi.Input[_builtins.int] backend_port: The port used for internal connections on the endpoint. Possible values range between 0 and 65535, inclusive. A port of `0` means "Any Port".
|
|
@@ -43,12 +45,12 @@ class RuleArgs:
|
|
|
43
45
|
|
|
44
46
|
> **Note:** In most cases users can only set one Backend Address Pool ID in the `backend_address_pool_ids`. Especially, when the sku of the LB is `Gateway`, users can set up to two IDs in the `backend_address_pool_ids`.
|
|
45
47
|
:param pulumi.Input[_builtins.bool] disable_outbound_snat: Is snat enabled for this Load Balancer Rule? Default `false`.
|
|
46
|
-
:param pulumi.Input[_builtins.bool]
|
|
47
|
-
:param pulumi.Input[_builtins.bool] enable_tcp_reset: Is TCP Reset enabled for this Load Balancer Rule?
|
|
48
|
+
:param pulumi.Input[_builtins.bool] floating_ip_enabled: Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
48
49
|
:param pulumi.Input[_builtins.int] idle_timeout_in_minutes: Specifies the idle timeout in minutes for TCP connections. Valid values are between `4` and `100` minutes. Defaults to `4` minutes.
|
|
49
50
|
:param pulumi.Input[_builtins.str] load_distribution: Specifies the load balancing distribution type to be used by the Load Balancer. Possible values are: `Default` – The load balancer is configured to use a 5 tuple hash to map traffic to available servers. `SourceIP` – The load balancer is configured to use a 2 tuple hash to map traffic to available servers. `SourceIPProtocol` – The load balancer is configured to use a 3 tuple hash to map traffic to available servers. Also known as Session Persistence, where in the Azure portal the options are called `None`, `Client IP` and `Client IP and Protocol` respectively. Defaults to `Default`.
|
|
50
51
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the LB Rule. Changing this forces a new resource to be created.
|
|
51
52
|
:param pulumi.Input[_builtins.str] probe_id: A reference to a Probe used by this Load Balancing Rule.
|
|
53
|
+
:param pulumi.Input[_builtins.bool] tcp_reset_enabled: Is TCP Reset enabled for this Load Balancer Rule?
|
|
52
54
|
"""
|
|
53
55
|
pulumi.set(__self__, "backend_port", backend_port)
|
|
54
56
|
pulumi.set(__self__, "frontend_ip_configuration_name", frontend_ip_configuration_name)
|
|
@@ -59,10 +61,18 @@ class RuleArgs:
|
|
|
59
61
|
pulumi.set(__self__, "backend_address_pool_ids", backend_address_pool_ids)
|
|
60
62
|
if disable_outbound_snat is not None:
|
|
61
63
|
pulumi.set(__self__, "disable_outbound_snat", disable_outbound_snat)
|
|
64
|
+
if enable_floating_ip is not None:
|
|
65
|
+
warnings.warn("""This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""", DeprecationWarning)
|
|
66
|
+
pulumi.log.warn("""enable_floating_ip is deprecated: This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""")
|
|
62
67
|
if enable_floating_ip is not None:
|
|
63
68
|
pulumi.set(__self__, "enable_floating_ip", enable_floating_ip)
|
|
69
|
+
if enable_tcp_reset is not None:
|
|
70
|
+
warnings.warn("""This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""", DeprecationWarning)
|
|
71
|
+
pulumi.log.warn("""enable_tcp_reset is deprecated: This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""")
|
|
64
72
|
if enable_tcp_reset is not None:
|
|
65
73
|
pulumi.set(__self__, "enable_tcp_reset", enable_tcp_reset)
|
|
74
|
+
if floating_ip_enabled is not None:
|
|
75
|
+
pulumi.set(__self__, "floating_ip_enabled", floating_ip_enabled)
|
|
66
76
|
if idle_timeout_in_minutes is not None:
|
|
67
77
|
pulumi.set(__self__, "idle_timeout_in_minutes", idle_timeout_in_minutes)
|
|
68
78
|
if load_distribution is not None:
|
|
@@ -71,6 +81,8 @@ class RuleArgs:
|
|
|
71
81
|
pulumi.set(__self__, "name", name)
|
|
72
82
|
if probe_id is not None:
|
|
73
83
|
pulumi.set(__self__, "probe_id", probe_id)
|
|
84
|
+
if tcp_reset_enabled is not None:
|
|
85
|
+
pulumi.set(__self__, "tcp_reset_enabled", tcp_reset_enabled)
|
|
74
86
|
|
|
75
87
|
@_builtins.property
|
|
76
88
|
@pulumi.getter(name="backendPort")
|
|
@@ -160,10 +172,8 @@ class RuleArgs:
|
|
|
160
172
|
|
|
161
173
|
@_builtins.property
|
|
162
174
|
@pulumi.getter(name="enableFloatingIp")
|
|
175
|
+
@_utilities.deprecated("""This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""")
|
|
163
176
|
def enable_floating_ip(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
164
|
-
"""
|
|
165
|
-
Are the Floating IPs enabled for this Load Balancer Rule? A "floating” IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
166
|
-
"""
|
|
167
177
|
return pulumi.get(self, "enable_floating_ip")
|
|
168
178
|
|
|
169
179
|
@enable_floating_ip.setter
|
|
@@ -172,16 +182,26 @@ class RuleArgs:
|
|
|
172
182
|
|
|
173
183
|
@_builtins.property
|
|
174
184
|
@pulumi.getter(name="enableTcpReset")
|
|
185
|
+
@_utilities.deprecated("""This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""")
|
|
175
186
|
def enable_tcp_reset(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
176
|
-
"""
|
|
177
|
-
Is TCP Reset enabled for this Load Balancer Rule?
|
|
178
|
-
"""
|
|
179
187
|
return pulumi.get(self, "enable_tcp_reset")
|
|
180
188
|
|
|
181
189
|
@enable_tcp_reset.setter
|
|
182
190
|
def enable_tcp_reset(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
183
191
|
pulumi.set(self, "enable_tcp_reset", value)
|
|
184
192
|
|
|
193
|
+
@_builtins.property
|
|
194
|
+
@pulumi.getter(name="floatingIpEnabled")
|
|
195
|
+
def floating_ip_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
196
|
+
"""
|
|
197
|
+
Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "floating_ip_enabled")
|
|
200
|
+
|
|
201
|
+
@floating_ip_enabled.setter
|
|
202
|
+
def floating_ip_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
203
|
+
pulumi.set(self, "floating_ip_enabled", value)
|
|
204
|
+
|
|
185
205
|
@_builtins.property
|
|
186
206
|
@pulumi.getter(name="idleTimeoutInMinutes")
|
|
187
207
|
def idle_timeout_in_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
@@ -230,6 +250,18 @@ class RuleArgs:
|
|
|
230
250
|
def probe_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
231
251
|
pulumi.set(self, "probe_id", value)
|
|
232
252
|
|
|
253
|
+
@_builtins.property
|
|
254
|
+
@pulumi.getter(name="tcpResetEnabled")
|
|
255
|
+
def tcp_reset_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
256
|
+
"""
|
|
257
|
+
Is TCP Reset enabled for this Load Balancer Rule?
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "tcp_reset_enabled")
|
|
260
|
+
|
|
261
|
+
@tcp_reset_enabled.setter
|
|
262
|
+
def tcp_reset_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
263
|
+
pulumi.set(self, "tcp_reset_enabled", value)
|
|
264
|
+
|
|
233
265
|
|
|
234
266
|
@pulumi.input_type
|
|
235
267
|
class _RuleState:
|
|
@@ -239,6 +271,7 @@ class _RuleState:
|
|
|
239
271
|
disable_outbound_snat: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
240
272
|
enable_floating_ip: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
241
273
|
enable_tcp_reset: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
274
|
+
floating_ip_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
242
275
|
frontend_ip_configuration_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
243
276
|
frontend_ip_configuration_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
244
277
|
frontend_port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -247,7 +280,8 @@ class _RuleState:
|
|
|
247
280
|
loadbalancer_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
248
281
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
249
282
|
probe_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
250
|
-
protocol: Optional[pulumi.Input[_builtins.str]] = None
|
|
283
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
284
|
+
tcp_reset_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
251
285
|
"""
|
|
252
286
|
Input properties used for looking up and filtering Rule resources.
|
|
253
287
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] backend_address_pool_ids: A list of reference to a Backend Address Pool over which this Load Balancing Rule operates.
|
|
@@ -255,8 +289,7 @@ class _RuleState:
|
|
|
255
289
|
> **Note:** In most cases users can only set one Backend Address Pool ID in the `backend_address_pool_ids`. Especially, when the sku of the LB is `Gateway`, users can set up to two IDs in the `backend_address_pool_ids`.
|
|
256
290
|
:param pulumi.Input[_builtins.int] backend_port: The port used for internal connections on the endpoint. Possible values range between 0 and 65535, inclusive. A port of `0` means "Any Port".
|
|
257
291
|
:param pulumi.Input[_builtins.bool] disable_outbound_snat: Is snat enabled for this Load Balancer Rule? Default `false`.
|
|
258
|
-
:param pulumi.Input[_builtins.bool]
|
|
259
|
-
:param pulumi.Input[_builtins.bool] enable_tcp_reset: Is TCP Reset enabled for this Load Balancer Rule?
|
|
292
|
+
:param pulumi.Input[_builtins.bool] floating_ip_enabled: Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
260
293
|
:param pulumi.Input[_builtins.str] frontend_ip_configuration_name: The name of the frontend IP configuration to which the rule is associated.
|
|
261
294
|
:param pulumi.Input[_builtins.int] frontend_port: The port for the external endpoint. Port numbers for each Rule must be unique within the Load Balancer. Possible values range between 0 and 65534, inclusive. A port of `0` means "Any Port".
|
|
262
295
|
:param pulumi.Input[_builtins.int] idle_timeout_in_minutes: Specifies the idle timeout in minutes for TCP connections. Valid values are between `4` and `100` minutes. Defaults to `4` minutes.
|
|
@@ -265,6 +298,7 @@ class _RuleState:
|
|
|
265
298
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the LB Rule. Changing this forces a new resource to be created.
|
|
266
299
|
:param pulumi.Input[_builtins.str] probe_id: A reference to a Probe used by this Load Balancing Rule.
|
|
267
300
|
:param pulumi.Input[_builtins.str] protocol: The transport protocol for the external endpoint. Possible values are `Tcp`, `Udp` or `All`.
|
|
301
|
+
:param pulumi.Input[_builtins.bool] tcp_reset_enabled: Is TCP Reset enabled for this Load Balancer Rule?
|
|
268
302
|
"""
|
|
269
303
|
if backend_address_pool_ids is not None:
|
|
270
304
|
pulumi.set(__self__, "backend_address_pool_ids", backend_address_pool_ids)
|
|
@@ -272,10 +306,18 @@ class _RuleState:
|
|
|
272
306
|
pulumi.set(__self__, "backend_port", backend_port)
|
|
273
307
|
if disable_outbound_snat is not None:
|
|
274
308
|
pulumi.set(__self__, "disable_outbound_snat", disable_outbound_snat)
|
|
309
|
+
if enable_floating_ip is not None:
|
|
310
|
+
warnings.warn("""This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""", DeprecationWarning)
|
|
311
|
+
pulumi.log.warn("""enable_floating_ip is deprecated: This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""")
|
|
275
312
|
if enable_floating_ip is not None:
|
|
276
313
|
pulumi.set(__self__, "enable_floating_ip", enable_floating_ip)
|
|
314
|
+
if enable_tcp_reset is not None:
|
|
315
|
+
warnings.warn("""This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""", DeprecationWarning)
|
|
316
|
+
pulumi.log.warn("""enable_tcp_reset is deprecated: This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""")
|
|
277
317
|
if enable_tcp_reset is not None:
|
|
278
318
|
pulumi.set(__self__, "enable_tcp_reset", enable_tcp_reset)
|
|
319
|
+
if floating_ip_enabled is not None:
|
|
320
|
+
pulumi.set(__self__, "floating_ip_enabled", floating_ip_enabled)
|
|
279
321
|
if frontend_ip_configuration_id is not None:
|
|
280
322
|
pulumi.set(__self__, "frontend_ip_configuration_id", frontend_ip_configuration_id)
|
|
281
323
|
if frontend_ip_configuration_name is not None:
|
|
@@ -294,6 +336,8 @@ class _RuleState:
|
|
|
294
336
|
pulumi.set(__self__, "probe_id", probe_id)
|
|
295
337
|
if protocol is not None:
|
|
296
338
|
pulumi.set(__self__, "protocol", protocol)
|
|
339
|
+
if tcp_reset_enabled is not None:
|
|
340
|
+
pulumi.set(__self__, "tcp_reset_enabled", tcp_reset_enabled)
|
|
297
341
|
|
|
298
342
|
@_builtins.property
|
|
299
343
|
@pulumi.getter(name="backendAddressPoolIds")
|
|
@@ -335,10 +379,8 @@ class _RuleState:
|
|
|
335
379
|
|
|
336
380
|
@_builtins.property
|
|
337
381
|
@pulumi.getter(name="enableFloatingIp")
|
|
382
|
+
@_utilities.deprecated("""This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""")
|
|
338
383
|
def enable_floating_ip(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
339
|
-
"""
|
|
340
|
-
Are the Floating IPs enabled for this Load Balancer Rule? A "floating” IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
341
|
-
"""
|
|
342
384
|
return pulumi.get(self, "enable_floating_ip")
|
|
343
385
|
|
|
344
386
|
@enable_floating_ip.setter
|
|
@@ -347,16 +389,26 @@ class _RuleState:
|
|
|
347
389
|
|
|
348
390
|
@_builtins.property
|
|
349
391
|
@pulumi.getter(name="enableTcpReset")
|
|
392
|
+
@_utilities.deprecated("""This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""")
|
|
350
393
|
def enable_tcp_reset(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
351
|
-
"""
|
|
352
|
-
Is TCP Reset enabled for this Load Balancer Rule?
|
|
353
|
-
"""
|
|
354
394
|
return pulumi.get(self, "enable_tcp_reset")
|
|
355
395
|
|
|
356
396
|
@enable_tcp_reset.setter
|
|
357
397
|
def enable_tcp_reset(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
358
398
|
pulumi.set(self, "enable_tcp_reset", value)
|
|
359
399
|
|
|
400
|
+
@_builtins.property
|
|
401
|
+
@pulumi.getter(name="floatingIpEnabled")
|
|
402
|
+
def floating_ip_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
403
|
+
"""
|
|
404
|
+
Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
405
|
+
"""
|
|
406
|
+
return pulumi.get(self, "floating_ip_enabled")
|
|
407
|
+
|
|
408
|
+
@floating_ip_enabled.setter
|
|
409
|
+
def floating_ip_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
410
|
+
pulumi.set(self, "floating_ip_enabled", value)
|
|
411
|
+
|
|
360
412
|
@_builtins.property
|
|
361
413
|
@pulumi.getter(name="frontendIpConfigurationId")
|
|
362
414
|
def frontend_ip_configuration_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -462,6 +514,18 @@ class _RuleState:
|
|
|
462
514
|
def protocol(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
463
515
|
pulumi.set(self, "protocol", value)
|
|
464
516
|
|
|
517
|
+
@_builtins.property
|
|
518
|
+
@pulumi.getter(name="tcpResetEnabled")
|
|
519
|
+
def tcp_reset_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
520
|
+
"""
|
|
521
|
+
Is TCP Reset enabled for this Load Balancer Rule?
|
|
522
|
+
"""
|
|
523
|
+
return pulumi.get(self, "tcp_reset_enabled")
|
|
524
|
+
|
|
525
|
+
@tcp_reset_enabled.setter
|
|
526
|
+
def tcp_reset_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
527
|
+
pulumi.set(self, "tcp_reset_enabled", value)
|
|
528
|
+
|
|
465
529
|
|
|
466
530
|
@pulumi.type_token("azure:lb/rule:Rule")
|
|
467
531
|
class Rule(pulumi.CustomResource):
|
|
@@ -474,6 +538,7 @@ class Rule(pulumi.CustomResource):
|
|
|
474
538
|
disable_outbound_snat: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
475
539
|
enable_floating_ip: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
476
540
|
enable_tcp_reset: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
541
|
+
floating_ip_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
477
542
|
frontend_ip_configuration_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
478
543
|
frontend_port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
479
544
|
idle_timeout_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -482,6 +547,7 @@ class Rule(pulumi.CustomResource):
|
|
|
482
547
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
483
548
|
probe_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
484
549
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
550
|
+
tcp_reset_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
485
551
|
__props__=None):
|
|
486
552
|
"""
|
|
487
553
|
Manages a Load Balancer Rule.
|
|
@@ -541,8 +607,7 @@ class Rule(pulumi.CustomResource):
|
|
|
541
607
|
> **Note:** In most cases users can only set one Backend Address Pool ID in the `backend_address_pool_ids`. Especially, when the sku of the LB is `Gateway`, users can set up to two IDs in the `backend_address_pool_ids`.
|
|
542
608
|
:param pulumi.Input[_builtins.int] backend_port: The port used for internal connections on the endpoint. Possible values range between 0 and 65535, inclusive. A port of `0` means "Any Port".
|
|
543
609
|
:param pulumi.Input[_builtins.bool] disable_outbound_snat: Is snat enabled for this Load Balancer Rule? Default `false`.
|
|
544
|
-
:param pulumi.Input[_builtins.bool]
|
|
545
|
-
:param pulumi.Input[_builtins.bool] enable_tcp_reset: Is TCP Reset enabled for this Load Balancer Rule?
|
|
610
|
+
:param pulumi.Input[_builtins.bool] floating_ip_enabled: Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
546
611
|
:param pulumi.Input[_builtins.str] frontend_ip_configuration_name: The name of the frontend IP configuration to which the rule is associated.
|
|
547
612
|
:param pulumi.Input[_builtins.int] frontend_port: The port for the external endpoint. Port numbers for each Rule must be unique within the Load Balancer. Possible values range between 0 and 65534, inclusive. A port of `0` means "Any Port".
|
|
548
613
|
:param pulumi.Input[_builtins.int] idle_timeout_in_minutes: Specifies the idle timeout in minutes for TCP connections. Valid values are between `4` and `100` minutes. Defaults to `4` minutes.
|
|
@@ -551,6 +616,7 @@ class Rule(pulumi.CustomResource):
|
|
|
551
616
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the LB Rule. Changing this forces a new resource to be created.
|
|
552
617
|
:param pulumi.Input[_builtins.str] probe_id: A reference to a Probe used by this Load Balancing Rule.
|
|
553
618
|
:param pulumi.Input[_builtins.str] protocol: The transport protocol for the external endpoint. Possible values are `Tcp`, `Udp` or `All`.
|
|
619
|
+
:param pulumi.Input[_builtins.bool] tcp_reset_enabled: Is TCP Reset enabled for this Load Balancer Rule?
|
|
554
620
|
"""
|
|
555
621
|
...
|
|
556
622
|
@overload
|
|
@@ -629,6 +695,7 @@ class Rule(pulumi.CustomResource):
|
|
|
629
695
|
disable_outbound_snat: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
630
696
|
enable_floating_ip: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
631
697
|
enable_tcp_reset: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
698
|
+
floating_ip_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
632
699
|
frontend_ip_configuration_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
633
700
|
frontend_port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
634
701
|
idle_timeout_in_minutes: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -637,6 +704,7 @@ class Rule(pulumi.CustomResource):
|
|
|
637
704
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
638
705
|
probe_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
639
706
|
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
707
|
+
tcp_reset_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
640
708
|
__props__=None):
|
|
641
709
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
642
710
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -653,6 +721,7 @@ class Rule(pulumi.CustomResource):
|
|
|
653
721
|
__props__.__dict__["disable_outbound_snat"] = disable_outbound_snat
|
|
654
722
|
__props__.__dict__["enable_floating_ip"] = enable_floating_ip
|
|
655
723
|
__props__.__dict__["enable_tcp_reset"] = enable_tcp_reset
|
|
724
|
+
__props__.__dict__["floating_ip_enabled"] = floating_ip_enabled
|
|
656
725
|
if frontend_ip_configuration_name is None and not opts.urn:
|
|
657
726
|
raise TypeError("Missing required property 'frontend_ip_configuration_name'")
|
|
658
727
|
__props__.__dict__["frontend_ip_configuration_name"] = frontend_ip_configuration_name
|
|
@@ -669,6 +738,7 @@ class Rule(pulumi.CustomResource):
|
|
|
669
738
|
if protocol is None and not opts.urn:
|
|
670
739
|
raise TypeError("Missing required property 'protocol'")
|
|
671
740
|
__props__.__dict__["protocol"] = protocol
|
|
741
|
+
__props__.__dict__["tcp_reset_enabled"] = tcp_reset_enabled
|
|
672
742
|
__props__.__dict__["frontend_ip_configuration_id"] = None
|
|
673
743
|
super(Rule, __self__).__init__(
|
|
674
744
|
'azure:lb/rule:Rule',
|
|
@@ -685,6 +755,7 @@ class Rule(pulumi.CustomResource):
|
|
|
685
755
|
disable_outbound_snat: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
686
756
|
enable_floating_ip: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
687
757
|
enable_tcp_reset: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
758
|
+
floating_ip_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
688
759
|
frontend_ip_configuration_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
689
760
|
frontend_ip_configuration_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
690
761
|
frontend_port: Optional[pulumi.Input[_builtins.int]] = None,
|
|
@@ -693,7 +764,8 @@ class Rule(pulumi.CustomResource):
|
|
|
693
764
|
loadbalancer_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
694
765
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
695
766
|
probe_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
696
|
-
protocol: Optional[pulumi.Input[_builtins.str]] = None
|
|
767
|
+
protocol: Optional[pulumi.Input[_builtins.str]] = None,
|
|
768
|
+
tcp_reset_enabled: Optional[pulumi.Input[_builtins.bool]] = None) -> 'Rule':
|
|
697
769
|
"""
|
|
698
770
|
Get an existing Rule resource's state with the given name, id, and optional extra
|
|
699
771
|
properties used to qualify the lookup.
|
|
@@ -706,8 +778,7 @@ class Rule(pulumi.CustomResource):
|
|
|
706
778
|
> **Note:** In most cases users can only set one Backend Address Pool ID in the `backend_address_pool_ids`. Especially, when the sku of the LB is `Gateway`, users can set up to two IDs in the `backend_address_pool_ids`.
|
|
707
779
|
:param pulumi.Input[_builtins.int] backend_port: The port used for internal connections on the endpoint. Possible values range between 0 and 65535, inclusive. A port of `0` means "Any Port".
|
|
708
780
|
:param pulumi.Input[_builtins.bool] disable_outbound_snat: Is snat enabled for this Load Balancer Rule? Default `false`.
|
|
709
|
-
:param pulumi.Input[_builtins.bool]
|
|
710
|
-
:param pulumi.Input[_builtins.bool] enable_tcp_reset: Is TCP Reset enabled for this Load Balancer Rule?
|
|
781
|
+
:param pulumi.Input[_builtins.bool] floating_ip_enabled: Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
711
782
|
:param pulumi.Input[_builtins.str] frontend_ip_configuration_name: The name of the frontend IP configuration to which the rule is associated.
|
|
712
783
|
:param pulumi.Input[_builtins.int] frontend_port: The port for the external endpoint. Port numbers for each Rule must be unique within the Load Balancer. Possible values range between 0 and 65534, inclusive. A port of `0` means "Any Port".
|
|
713
784
|
:param pulumi.Input[_builtins.int] idle_timeout_in_minutes: Specifies the idle timeout in minutes for TCP connections. Valid values are between `4` and `100` minutes. Defaults to `4` minutes.
|
|
@@ -716,6 +787,7 @@ class Rule(pulumi.CustomResource):
|
|
|
716
787
|
:param pulumi.Input[_builtins.str] name: Specifies the name of the LB Rule. Changing this forces a new resource to be created.
|
|
717
788
|
:param pulumi.Input[_builtins.str] probe_id: A reference to a Probe used by this Load Balancing Rule.
|
|
718
789
|
:param pulumi.Input[_builtins.str] protocol: The transport protocol for the external endpoint. Possible values are `Tcp`, `Udp` or `All`.
|
|
790
|
+
:param pulumi.Input[_builtins.bool] tcp_reset_enabled: Is TCP Reset enabled for this Load Balancer Rule?
|
|
719
791
|
"""
|
|
720
792
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
721
793
|
|
|
@@ -726,6 +798,7 @@ class Rule(pulumi.CustomResource):
|
|
|
726
798
|
__props__.__dict__["disable_outbound_snat"] = disable_outbound_snat
|
|
727
799
|
__props__.__dict__["enable_floating_ip"] = enable_floating_ip
|
|
728
800
|
__props__.__dict__["enable_tcp_reset"] = enable_tcp_reset
|
|
801
|
+
__props__.__dict__["floating_ip_enabled"] = floating_ip_enabled
|
|
729
802
|
__props__.__dict__["frontend_ip_configuration_id"] = frontend_ip_configuration_id
|
|
730
803
|
__props__.__dict__["frontend_ip_configuration_name"] = frontend_ip_configuration_name
|
|
731
804
|
__props__.__dict__["frontend_port"] = frontend_port
|
|
@@ -735,6 +808,7 @@ class Rule(pulumi.CustomResource):
|
|
|
735
808
|
__props__.__dict__["name"] = name
|
|
736
809
|
__props__.__dict__["probe_id"] = probe_id
|
|
737
810
|
__props__.__dict__["protocol"] = protocol
|
|
811
|
+
__props__.__dict__["tcp_reset_enabled"] = tcp_reset_enabled
|
|
738
812
|
return Rule(resource_name, opts=opts, __props__=__props__)
|
|
739
813
|
|
|
740
814
|
@_builtins.property
|
|
@@ -765,19 +839,23 @@ class Rule(pulumi.CustomResource):
|
|
|
765
839
|
|
|
766
840
|
@_builtins.property
|
|
767
841
|
@pulumi.getter(name="enableFloatingIp")
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
Are the Floating IPs enabled for this Load Balancer Rule? A "floating” IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
771
|
-
"""
|
|
842
|
+
@_utilities.deprecated("""This field is deprecated in favour of `floating_ip_enabled` and will be removed in version 5.0 of the provider.""")
|
|
843
|
+
def enable_floating_ip(self) -> pulumi.Output[_builtins.bool]:
|
|
772
844
|
return pulumi.get(self, "enable_floating_ip")
|
|
773
845
|
|
|
774
846
|
@_builtins.property
|
|
775
847
|
@pulumi.getter(name="enableTcpReset")
|
|
776
|
-
|
|
848
|
+
@_utilities.deprecated("""This field is deprecated in favour of `tcp_reset_enabled` and will be removed in version 5.0 of the provider.""")
|
|
849
|
+
def enable_tcp_reset(self) -> pulumi.Output[_builtins.bool]:
|
|
850
|
+
return pulumi.get(self, "enable_tcp_reset")
|
|
851
|
+
|
|
852
|
+
@_builtins.property
|
|
853
|
+
@pulumi.getter(name="floatingIpEnabled")
|
|
854
|
+
def floating_ip_enabled(self) -> pulumi.Output[_builtins.bool]:
|
|
777
855
|
"""
|
|
778
|
-
|
|
856
|
+
Are the Floating IPs enabled for this Load Balancer Rule? A "floating" IP is reassigned to a secondary server in case the primary server fails. Required to configure a SQL AlwaysOn Availability Group. Defaults to `false`.
|
|
779
857
|
"""
|
|
780
|
-
return pulumi.get(self, "
|
|
858
|
+
return pulumi.get(self, "floating_ip_enabled")
|
|
781
859
|
|
|
782
860
|
@_builtins.property
|
|
783
861
|
@pulumi.getter(name="frontendIpConfigurationId")
|
|
@@ -848,3 +926,11 @@ class Rule(pulumi.CustomResource):
|
|
|
848
926
|
"""
|
|
849
927
|
return pulumi.get(self, "protocol")
|
|
850
928
|
|
|
929
|
+
@_builtins.property
|
|
930
|
+
@pulumi.getter(name="tcpResetEnabled")
|
|
931
|
+
def tcp_reset_enabled(self) -> pulumi.Output[_builtins.bool]:
|
|
932
|
+
"""
|
|
933
|
+
Is TCP Reset enabled for this Load Balancer Rule?
|
|
934
|
+
"""
|
|
935
|
+
return pulumi.get(self, "tcp_reset_enabled")
|
|
936
|
+
|
pulumi_azure/loadtest/_inputs.py
CHANGED
|
@@ -80,6 +80,8 @@ if not MYPY:
|
|
|
80
80
|
identity_id: pulumi.Input[_builtins.str]
|
|
81
81
|
"""
|
|
82
82
|
The User Assigned Identity ID that should be assigned to this Load Test Encryption. Changing this forces a new Load Test to be created.
|
|
83
|
+
|
|
84
|
+
> **Note:** The User Assigned Identity ID specified here must also exist in `identity.identity_ids`.
|
|
83
85
|
"""
|
|
84
86
|
type: pulumi.Input[_builtins.str]
|
|
85
87
|
"""
|
|
@@ -95,6 +97,8 @@ class LoadTestEncryptionIdentityArgs:
|
|
|
95
97
|
type: pulumi.Input[_builtins.str]):
|
|
96
98
|
"""
|
|
97
99
|
:param pulumi.Input[_builtins.str] identity_id: The User Assigned Identity ID that should be assigned to this Load Test Encryption. Changing this forces a new Load Test to be created.
|
|
100
|
+
|
|
101
|
+
> **Note:** The User Assigned Identity ID specified here must also exist in `identity.identity_ids`.
|
|
98
102
|
:param pulumi.Input[_builtins.str] type: Specifies the type of Managed Identity that should be assigned to this Load Test Encryption. Possible values are `SystemAssigned` or `UserAssigned`. Changing this forces a new Load Test to be created.
|
|
99
103
|
"""
|
|
100
104
|
pulumi.set(__self__, "identity_id", identity_id)
|
|
@@ -105,6 +109,8 @@ class LoadTestEncryptionIdentityArgs:
|
|
|
105
109
|
def identity_id(self) -> pulumi.Input[_builtins.str]:
|
|
106
110
|
"""
|
|
107
111
|
The User Assigned Identity ID that should be assigned to this Load Test Encryption. Changing this forces a new Load Test to be created.
|
|
112
|
+
|
|
113
|
+
> **Note:** The User Assigned Identity ID specified here must also exist in `identity.identity_ids`.
|
|
108
114
|
"""
|
|
109
115
|
return pulumi.get(self, "identity_id")
|
|
110
116
|
|
|
@@ -138,7 +144,6 @@ if not MYPY:
|
|
|
138
144
|
principal_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
139
145
|
"""
|
|
140
146
|
The Principal ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
141
|
-
*
|
|
142
147
|
"""
|
|
143
148
|
tenant_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
144
149
|
"""
|
|
@@ -158,7 +163,6 @@ class LoadTestIdentityArgs:
|
|
|
158
163
|
:param pulumi.Input[_builtins.str] type: Specifies the type of Managed Identity that should be assigned to this Load Test Encryption. Possible values are `SystemAssigned` or `UserAssigned`. Changing this forces a new Load Test to be created.
|
|
159
164
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] identity_ids: A list of the User Assigned Identity IDs that should be assigned to this Load Test.
|
|
160
165
|
:param pulumi.Input[_builtins.str] principal_id: The Principal ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
161
|
-
*
|
|
162
166
|
:param pulumi.Input[_builtins.str] tenant_id: The Tenant ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
163
167
|
"""
|
|
164
168
|
pulumi.set(__self__, "type", type)
|
|
@@ -198,7 +202,6 @@ class LoadTestIdentityArgs:
|
|
|
198
202
|
def principal_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
199
203
|
"""
|
|
200
204
|
The Principal ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
201
|
-
*
|
|
202
205
|
"""
|
|
203
206
|
return pulumi.get(self, "principal_id")
|
|
204
207
|
|
|
@@ -288,8 +288,6 @@ class LoadTest(pulumi.CustomResource):
|
|
|
288
288
|
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
|
289
289
|
__props__=None):
|
|
290
290
|
"""
|
|
291
|
-
<!-- Note: This documentation is generated. Any manual changes will be overwritten -->
|
|
292
|
-
|
|
293
291
|
Manages a Load Test Service.
|
|
294
292
|
|
|
295
293
|
## Example Usage
|
|
@@ -349,8 +347,6 @@ class LoadTest(pulumi.CustomResource):
|
|
|
349
347
|
args: LoadTestArgs,
|
|
350
348
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
351
349
|
"""
|
|
352
|
-
<!-- Note: This documentation is generated. Any manual changes will be overwritten -->
|
|
353
|
-
|
|
354
350
|
Manages a Load Test Service.
|
|
355
351
|
|
|
356
352
|
## Example Usage
|
pulumi_azure/loadtest/outputs.py
CHANGED
|
@@ -94,6 +94,8 @@ class LoadTestEncryptionIdentity(dict):
|
|
|
94
94
|
type: _builtins.str):
|
|
95
95
|
"""
|
|
96
96
|
:param _builtins.str identity_id: The User Assigned Identity ID that should be assigned to this Load Test Encryption. Changing this forces a new Load Test to be created.
|
|
97
|
+
|
|
98
|
+
> **Note:** The User Assigned Identity ID specified here must also exist in `identity.identity_ids`.
|
|
97
99
|
:param _builtins.str type: Specifies the type of Managed Identity that should be assigned to this Load Test Encryption. Possible values are `SystemAssigned` or `UserAssigned`. Changing this forces a new Load Test to be created.
|
|
98
100
|
"""
|
|
99
101
|
pulumi.set(__self__, "identity_id", identity_id)
|
|
@@ -104,6 +106,8 @@ class LoadTestEncryptionIdentity(dict):
|
|
|
104
106
|
def identity_id(self) -> _builtins.str:
|
|
105
107
|
"""
|
|
106
108
|
The User Assigned Identity ID that should be assigned to this Load Test Encryption. Changing this forces a new Load Test to be created.
|
|
109
|
+
|
|
110
|
+
> **Note:** The User Assigned Identity ID specified here must also exist in `identity.identity_ids`.
|
|
107
111
|
"""
|
|
108
112
|
return pulumi.get(self, "identity_id")
|
|
109
113
|
|
|
@@ -148,7 +152,6 @@ class LoadTestIdentity(dict):
|
|
|
148
152
|
:param _builtins.str type: Specifies the type of Managed Identity that should be assigned to this Load Test Encryption. Possible values are `SystemAssigned` or `UserAssigned`. Changing this forces a new Load Test to be created.
|
|
149
153
|
:param Sequence[_builtins.str] identity_ids: A list of the User Assigned Identity IDs that should be assigned to this Load Test.
|
|
150
154
|
:param _builtins.str principal_id: The Principal ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
151
|
-
*
|
|
152
155
|
:param _builtins.str tenant_id: The Tenant ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
153
156
|
"""
|
|
154
157
|
pulumi.set(__self__, "type", type)
|
|
@@ -180,7 +183,6 @@ class LoadTestIdentity(dict):
|
|
|
180
183
|
def principal_id(self) -> Optional[_builtins.str]:
|
|
181
184
|
"""
|
|
182
185
|
The Principal ID for the System-Assigned Managed Identity assigned to this Load Test.
|
|
183
|
-
*
|
|
184
186
|
"""
|
|
185
187
|
return pulumi.get(self, "principal_id")
|
|
186
188
|
|