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
|
@@ -69,18 +69,6 @@ __all__ = [
|
|
|
69
69
|
'WorkflowAccessControlWorkflowManagementArgsDict',
|
|
70
70
|
'WorkflowIdentityArgs',
|
|
71
71
|
'WorkflowIdentityArgsDict',
|
|
72
|
-
'GetStandardSiteConfigArgs',
|
|
73
|
-
'GetStandardSiteConfigArgsDict',
|
|
74
|
-
'GetStandardSiteConfigCorsArgs',
|
|
75
|
-
'GetStandardSiteConfigCorsArgsDict',
|
|
76
|
-
'GetStandardSiteConfigIpRestrictionArgs',
|
|
77
|
-
'GetStandardSiteConfigIpRestrictionArgsDict',
|
|
78
|
-
'GetStandardSiteConfigIpRestrictionHeadersArgs',
|
|
79
|
-
'GetStandardSiteConfigIpRestrictionHeadersArgsDict',
|
|
80
|
-
'GetStandardSiteConfigScmIpRestrictionArgs',
|
|
81
|
-
'GetStandardSiteConfigScmIpRestrictionArgsDict',
|
|
82
|
-
'GetStandardSiteConfigScmIpRestrictionHeadersArgs',
|
|
83
|
-
'GetStandardSiteConfigScmIpRestrictionHeadersArgsDict',
|
|
84
72
|
]
|
|
85
73
|
|
|
86
74
|
MYPY = False
|
|
@@ -1378,7 +1366,7 @@ class StandardSiteConfigArgs:
|
|
|
1378
1366
|
|
|
1379
1367
|
if not MYPY:
|
|
1380
1368
|
class StandardSiteConfigCorsArgsDict(TypedDict):
|
|
1381
|
-
allowed_origins: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
1369
|
+
allowed_origins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
1382
1370
|
"""
|
|
1383
1371
|
A list of origins which should be able to make cross-origin calls. `*` can be used to allow all calls.
|
|
1384
1372
|
"""
|
|
@@ -1392,26 +1380,27 @@ elif False:
|
|
|
1392
1380
|
@pulumi.input_type
|
|
1393
1381
|
class StandardSiteConfigCorsArgs:
|
|
1394
1382
|
def __init__(__self__, *,
|
|
1395
|
-
allowed_origins: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
1383
|
+
allowed_origins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
1396
1384
|
support_credentials: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
1397
1385
|
"""
|
|
1398
1386
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_origins: A list of origins which should be able to make cross-origin calls. `*` can be used to allow all calls.
|
|
1399
1387
|
:param pulumi.Input[_builtins.bool] support_credentials: Are credentials supported?
|
|
1400
1388
|
"""
|
|
1401
|
-
|
|
1389
|
+
if allowed_origins is not None:
|
|
1390
|
+
pulumi.set(__self__, "allowed_origins", allowed_origins)
|
|
1402
1391
|
if support_credentials is not None:
|
|
1403
1392
|
pulumi.set(__self__, "support_credentials", support_credentials)
|
|
1404
1393
|
|
|
1405
1394
|
@_builtins.property
|
|
1406
1395
|
@pulumi.getter(name="allowedOrigins")
|
|
1407
|
-
def allowed_origins(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
1396
|
+
def allowed_origins(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
1408
1397
|
"""
|
|
1409
1398
|
A list of origins which should be able to make cross-origin calls. `*` can be used to allow all calls.
|
|
1410
1399
|
"""
|
|
1411
1400
|
return pulumi.get(self, "allowed_origins")
|
|
1412
1401
|
|
|
1413
1402
|
@allowed_origins.setter
|
|
1414
|
-
def allowed_origins(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
1403
|
+
def allowed_origins(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
1415
1404
|
pulumi.set(self, "allowed_origins", value)
|
|
1416
1405
|
|
|
1417
1406
|
@_builtins.property
|
|
@@ -1433,6 +1422,10 @@ if not MYPY:
|
|
|
1433
1422
|
"""
|
|
1434
1423
|
Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1435
1424
|
"""
|
|
1425
|
+
description: NotRequired[pulumi.Input[_builtins.str]]
|
|
1426
|
+
"""
|
|
1427
|
+
The Description of this IP Restriction.
|
|
1428
|
+
"""
|
|
1436
1429
|
headers: NotRequired[pulumi.Input['StandardSiteConfigIpRestrictionHeadersArgsDict']]
|
|
1437
1430
|
"""
|
|
1438
1431
|
The `headers` block for this specific as a `ip_restriction` block as defined below.
|
|
@@ -1466,6 +1459,7 @@ elif False:
|
|
|
1466
1459
|
class StandardSiteConfigIpRestrictionArgs:
|
|
1467
1460
|
def __init__(__self__, *,
|
|
1468
1461
|
action: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1462
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1469
1463
|
headers: Optional[pulumi.Input['StandardSiteConfigIpRestrictionHeadersArgs']] = None,
|
|
1470
1464
|
ip_address: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1471
1465
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1474,6 +1468,7 @@ class StandardSiteConfigIpRestrictionArgs:
|
|
|
1474
1468
|
virtual_network_subnet_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1475
1469
|
"""
|
|
1476
1470
|
:param pulumi.Input[_builtins.str] action: Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1471
|
+
:param pulumi.Input[_builtins.str] description: The Description of this IP Restriction.
|
|
1477
1472
|
:param pulumi.Input['StandardSiteConfigIpRestrictionHeadersArgs'] headers: The `headers` block for this specific as a `ip_restriction` block as defined below.
|
|
1478
1473
|
:param pulumi.Input[_builtins.str] ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
1479
1474
|
:param pulumi.Input[_builtins.str] name: The name for this IP Restriction.
|
|
@@ -1485,6 +1480,8 @@ class StandardSiteConfigIpRestrictionArgs:
|
|
|
1485
1480
|
"""
|
|
1486
1481
|
if action is not None:
|
|
1487
1482
|
pulumi.set(__self__, "action", action)
|
|
1483
|
+
if description is not None:
|
|
1484
|
+
pulumi.set(__self__, "description", description)
|
|
1488
1485
|
if headers is not None:
|
|
1489
1486
|
pulumi.set(__self__, "headers", headers)
|
|
1490
1487
|
if ip_address is not None:
|
|
@@ -1510,6 +1507,18 @@ class StandardSiteConfigIpRestrictionArgs:
|
|
|
1510
1507
|
def action(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1511
1508
|
pulumi.set(self, "action", value)
|
|
1512
1509
|
|
|
1510
|
+
@_builtins.property
|
|
1511
|
+
@pulumi.getter
|
|
1512
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1513
|
+
"""
|
|
1514
|
+
The Description of this IP Restriction.
|
|
1515
|
+
"""
|
|
1516
|
+
return pulumi.get(self, "description")
|
|
1517
|
+
|
|
1518
|
+
@description.setter
|
|
1519
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1520
|
+
pulumi.set(self, "description", value)
|
|
1521
|
+
|
|
1513
1522
|
@_builtins.property
|
|
1514
1523
|
@pulumi.getter
|
|
1515
1524
|
def headers(self) -> Optional[pulumi.Input['StandardSiteConfigIpRestrictionHeadersArgs']]:
|
|
@@ -1683,6 +1692,10 @@ if not MYPY:
|
|
|
1683
1692
|
"""
|
|
1684
1693
|
Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1685
1694
|
"""
|
|
1695
|
+
description: NotRequired[pulumi.Input[_builtins.str]]
|
|
1696
|
+
"""
|
|
1697
|
+
The Description of this IP Restriction.
|
|
1698
|
+
"""
|
|
1686
1699
|
headers: NotRequired[pulumi.Input['StandardSiteConfigScmIpRestrictionHeadersArgsDict']]
|
|
1687
1700
|
"""
|
|
1688
1701
|
The `headers` block for this specific `ip_restriction` as defined below.
|
|
@@ -1716,6 +1729,7 @@ elif False:
|
|
|
1716
1729
|
class StandardSiteConfigScmIpRestrictionArgs:
|
|
1717
1730
|
def __init__(__self__, *,
|
|
1718
1731
|
action: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1732
|
+
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1719
1733
|
headers: Optional[pulumi.Input['StandardSiteConfigScmIpRestrictionHeadersArgs']] = None,
|
|
1720
1734
|
ip_address: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1721
1735
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -1724,6 +1738,7 @@ class StandardSiteConfigScmIpRestrictionArgs:
|
|
|
1724
1738
|
virtual_network_subnet_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
1725
1739
|
"""
|
|
1726
1740
|
:param pulumi.Input[_builtins.str] action: Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1741
|
+
:param pulumi.Input[_builtins.str] description: The Description of this IP Restriction.
|
|
1727
1742
|
:param pulumi.Input['StandardSiteConfigScmIpRestrictionHeadersArgs'] headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
1728
1743
|
:param pulumi.Input[_builtins.str] ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
1729
1744
|
:param pulumi.Input[_builtins.str] name: The name for this IP Restriction.
|
|
@@ -1735,6 +1750,8 @@ class StandardSiteConfigScmIpRestrictionArgs:
|
|
|
1735
1750
|
"""
|
|
1736
1751
|
if action is not None:
|
|
1737
1752
|
pulumi.set(__self__, "action", action)
|
|
1753
|
+
if description is not None:
|
|
1754
|
+
pulumi.set(__self__, "description", description)
|
|
1738
1755
|
if headers is not None:
|
|
1739
1756
|
pulumi.set(__self__, "headers", headers)
|
|
1740
1757
|
if ip_address is not None:
|
|
@@ -1760,6 +1777,18 @@ class StandardSiteConfigScmIpRestrictionArgs:
|
|
|
1760
1777
|
def action(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1761
1778
|
pulumi.set(self, "action", value)
|
|
1762
1779
|
|
|
1780
|
+
@_builtins.property
|
|
1781
|
+
@pulumi.getter
|
|
1782
|
+
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1783
|
+
"""
|
|
1784
|
+
The Description of this IP Restriction.
|
|
1785
|
+
"""
|
|
1786
|
+
return pulumi.get(self, "description")
|
|
1787
|
+
|
|
1788
|
+
@description.setter
|
|
1789
|
+
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
1790
|
+
pulumi.set(self, "description", value)
|
|
1791
|
+
|
|
1763
1792
|
@_builtins.property
|
|
1764
1793
|
@pulumi.getter
|
|
1765
1794
|
def headers(self) -> Optional[pulumi.Input['StandardSiteConfigScmIpRestrictionHeadersArgs']]:
|
|
@@ -2485,973 +2514,3 @@ class WorkflowIdentityArgs:
|
|
|
2485
2514
|
pulumi.set(self, "tenant_id", value)
|
|
2486
2515
|
|
|
2487
2516
|
|
|
2488
|
-
if not MYPY:
|
|
2489
|
-
class GetStandardSiteConfigArgsDict(TypedDict):
|
|
2490
|
-
app_scale_limit: _builtins.int
|
|
2491
|
-
"""
|
|
2492
|
-
The number of workers this Logic App can scale out to. Only applicable to apps on the Consumption and Premium plan.
|
|
2493
|
-
"""
|
|
2494
|
-
auto_swap_slot_name: _builtins.str
|
|
2495
|
-
"""
|
|
2496
|
-
The Auto-swap slot name.
|
|
2497
|
-
"""
|
|
2498
|
-
cors: 'GetStandardSiteConfigCorsArgsDict'
|
|
2499
|
-
"""
|
|
2500
|
-
A `cors` block as defined below.
|
|
2501
|
-
"""
|
|
2502
|
-
elastic_instance_minimum: _builtins.int
|
|
2503
|
-
"""
|
|
2504
|
-
The number of minimum instances for this Logic App Only affects apps on the Premium plan.
|
|
2505
|
-
"""
|
|
2506
|
-
ftps_state: _builtins.str
|
|
2507
|
-
"""
|
|
2508
|
-
The state of FTP / FTPS service for this Logic App.
|
|
2509
|
-
"""
|
|
2510
|
-
ip_restrictions: Sequence['GetStandardSiteConfigIpRestrictionArgsDict']
|
|
2511
|
-
"""
|
|
2512
|
-
A list of `ip_restriction` objects representing IP restrictions as defined below.
|
|
2513
|
-
"""
|
|
2514
|
-
linux_fx_version: _builtins.str
|
|
2515
|
-
"""
|
|
2516
|
-
Linux App Framework and version for the Logic App.
|
|
2517
|
-
"""
|
|
2518
|
-
min_tls_version: _builtins.str
|
|
2519
|
-
"""
|
|
2520
|
-
The minimum supported TLS version for the Logic App.
|
|
2521
|
-
"""
|
|
2522
|
-
pre_warmed_instance_count: _builtins.int
|
|
2523
|
-
"""
|
|
2524
|
-
The number of pre-warmed instances for this Logic App Only affects apps on the Premium plan.
|
|
2525
|
-
"""
|
|
2526
|
-
public_network_access_enabled: _builtins.bool
|
|
2527
|
-
scm_ip_restrictions: Sequence['GetStandardSiteConfigScmIpRestrictionArgsDict']
|
|
2528
|
-
"""
|
|
2529
|
-
A list of `scm_ip_restriction` objects representing SCM IP restrictions as defined below.
|
|
2530
|
-
"""
|
|
2531
|
-
scm_min_tls_version: _builtins.str
|
|
2532
|
-
"""
|
|
2533
|
-
The minimum version of TLS required for SSL requests to the SCM site.
|
|
2534
|
-
"""
|
|
2535
|
-
scm_type: _builtins.str
|
|
2536
|
-
"""
|
|
2537
|
-
The type of Source Control used by the Logic App in use by the Windows Function App.
|
|
2538
|
-
"""
|
|
2539
|
-
vnet_route_all_enabled: _builtins.bool
|
|
2540
|
-
"""
|
|
2541
|
-
Should all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
|
|
2542
|
-
"""
|
|
2543
|
-
always_on: NotRequired[_builtins.bool]
|
|
2544
|
-
"""
|
|
2545
|
-
Should the Logic App be loaded at all times?
|
|
2546
|
-
"""
|
|
2547
|
-
dotnet_framework_version: NotRequired[_builtins.str]
|
|
2548
|
-
"""
|
|
2549
|
-
The version of the .NET framework's CLR used in this Logic App.
|
|
2550
|
-
"""
|
|
2551
|
-
health_check_path: NotRequired[_builtins.str]
|
|
2552
|
-
"""
|
|
2553
|
-
Path which will be checked for this Logic App health.
|
|
2554
|
-
"""
|
|
2555
|
-
http2_enabled: NotRequired[_builtins.bool]
|
|
2556
|
-
"""
|
|
2557
|
-
Specifies whether the HTTP2 protocol should be enabled.
|
|
2558
|
-
"""
|
|
2559
|
-
runtime_scale_monitoring_enabled: NotRequired[_builtins.bool]
|
|
2560
|
-
"""
|
|
2561
|
-
Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan.
|
|
2562
|
-
"""
|
|
2563
|
-
scm_use_main_ip_restriction: NotRequired[_builtins.bool]
|
|
2564
|
-
"""
|
|
2565
|
-
Should the Logic App `ip_restriction` configuration be used for the SCM too.
|
|
2566
|
-
"""
|
|
2567
|
-
use32_bit_worker_process: NotRequired[_builtins.bool]
|
|
2568
|
-
"""
|
|
2569
|
-
Should the Logic App run in 32 bit mode, rather than 64 bit mode?
|
|
2570
|
-
"""
|
|
2571
|
-
websockets_enabled: NotRequired[_builtins.bool]
|
|
2572
|
-
"""
|
|
2573
|
-
Should WebSockets be enabled?
|
|
2574
|
-
"""
|
|
2575
|
-
elif False:
|
|
2576
|
-
GetStandardSiteConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
2577
|
-
|
|
2578
|
-
@pulumi.input_type
|
|
2579
|
-
class GetStandardSiteConfigArgs:
|
|
2580
|
-
def __init__(__self__, *,
|
|
2581
|
-
app_scale_limit: _builtins.int,
|
|
2582
|
-
auto_swap_slot_name: _builtins.str,
|
|
2583
|
-
cors: 'GetStandardSiteConfigCorsArgs',
|
|
2584
|
-
elastic_instance_minimum: _builtins.int,
|
|
2585
|
-
ftps_state: _builtins.str,
|
|
2586
|
-
ip_restrictions: Sequence['GetStandardSiteConfigIpRestrictionArgs'],
|
|
2587
|
-
linux_fx_version: _builtins.str,
|
|
2588
|
-
min_tls_version: _builtins.str,
|
|
2589
|
-
pre_warmed_instance_count: _builtins.int,
|
|
2590
|
-
public_network_access_enabled: _builtins.bool,
|
|
2591
|
-
scm_ip_restrictions: Sequence['GetStandardSiteConfigScmIpRestrictionArgs'],
|
|
2592
|
-
scm_min_tls_version: _builtins.str,
|
|
2593
|
-
scm_type: _builtins.str,
|
|
2594
|
-
vnet_route_all_enabled: _builtins.bool,
|
|
2595
|
-
always_on: Optional[_builtins.bool] = None,
|
|
2596
|
-
dotnet_framework_version: Optional[_builtins.str] = None,
|
|
2597
|
-
health_check_path: Optional[_builtins.str] = None,
|
|
2598
|
-
http2_enabled: Optional[_builtins.bool] = None,
|
|
2599
|
-
runtime_scale_monitoring_enabled: Optional[_builtins.bool] = None,
|
|
2600
|
-
scm_use_main_ip_restriction: Optional[_builtins.bool] = None,
|
|
2601
|
-
use32_bit_worker_process: Optional[_builtins.bool] = None,
|
|
2602
|
-
websockets_enabled: Optional[_builtins.bool] = None):
|
|
2603
|
-
"""
|
|
2604
|
-
:param _builtins.int app_scale_limit: The number of workers this Logic App can scale out to. Only applicable to apps on the Consumption and Premium plan.
|
|
2605
|
-
:param _builtins.str auto_swap_slot_name: The Auto-swap slot name.
|
|
2606
|
-
:param 'GetStandardSiteConfigCorsArgs' cors: A `cors` block as defined below.
|
|
2607
|
-
:param _builtins.int elastic_instance_minimum: The number of minimum instances for this Logic App Only affects apps on the Premium plan.
|
|
2608
|
-
:param _builtins.str ftps_state: The state of FTP / FTPS service for this Logic App.
|
|
2609
|
-
:param Sequence['GetStandardSiteConfigIpRestrictionArgs'] ip_restrictions: A list of `ip_restriction` objects representing IP restrictions as defined below.
|
|
2610
|
-
:param _builtins.str linux_fx_version: Linux App Framework and version for the Logic App.
|
|
2611
|
-
:param _builtins.str min_tls_version: The minimum supported TLS version for the Logic App.
|
|
2612
|
-
:param _builtins.int pre_warmed_instance_count: The number of pre-warmed instances for this Logic App Only affects apps on the Premium plan.
|
|
2613
|
-
:param Sequence['GetStandardSiteConfigScmIpRestrictionArgs'] scm_ip_restrictions: A list of `scm_ip_restriction` objects representing SCM IP restrictions as defined below.
|
|
2614
|
-
:param _builtins.str scm_min_tls_version: The minimum version of TLS required for SSL requests to the SCM site.
|
|
2615
|
-
:param _builtins.str scm_type: The type of Source Control used by the Logic App in use by the Windows Function App.
|
|
2616
|
-
:param _builtins.bool vnet_route_all_enabled: Should all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
|
|
2617
|
-
:param _builtins.bool always_on: Should the Logic App be loaded at all times?
|
|
2618
|
-
:param _builtins.str dotnet_framework_version: The version of the .NET framework's CLR used in this Logic App.
|
|
2619
|
-
:param _builtins.str health_check_path: Path which will be checked for this Logic App health.
|
|
2620
|
-
:param _builtins.bool http2_enabled: Specifies whether the HTTP2 protocol should be enabled.
|
|
2621
|
-
:param _builtins.bool runtime_scale_monitoring_enabled: Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan.
|
|
2622
|
-
:param _builtins.bool scm_use_main_ip_restriction: Should the Logic App `ip_restriction` configuration be used for the SCM too.
|
|
2623
|
-
:param _builtins.bool use32_bit_worker_process: Should the Logic App run in 32 bit mode, rather than 64 bit mode?
|
|
2624
|
-
:param _builtins.bool websockets_enabled: Should WebSockets be enabled?
|
|
2625
|
-
"""
|
|
2626
|
-
pulumi.set(__self__, "app_scale_limit", app_scale_limit)
|
|
2627
|
-
pulumi.set(__self__, "auto_swap_slot_name", auto_swap_slot_name)
|
|
2628
|
-
pulumi.set(__self__, "cors", cors)
|
|
2629
|
-
pulumi.set(__self__, "elastic_instance_minimum", elastic_instance_minimum)
|
|
2630
|
-
pulumi.set(__self__, "ftps_state", ftps_state)
|
|
2631
|
-
pulumi.set(__self__, "ip_restrictions", ip_restrictions)
|
|
2632
|
-
pulumi.set(__self__, "linux_fx_version", linux_fx_version)
|
|
2633
|
-
pulumi.set(__self__, "min_tls_version", min_tls_version)
|
|
2634
|
-
pulumi.set(__self__, "pre_warmed_instance_count", pre_warmed_instance_count)
|
|
2635
|
-
if public_network_access_enabled is not None:
|
|
2636
|
-
warnings.warn("""the `site_config.public_network_access_enabled` property has been superseded by the `public_network_access` property and will be removed in v5.0 of the AzureRM Provider.""", DeprecationWarning)
|
|
2637
|
-
pulumi.log.warn("""public_network_access_enabled is deprecated: the `site_config.public_network_access_enabled` property has been superseded by the `public_network_access` property and will be removed in v5.0 of the AzureRM Provider.""")
|
|
2638
|
-
pulumi.set(__self__, "public_network_access_enabled", public_network_access_enabled)
|
|
2639
|
-
pulumi.set(__self__, "scm_ip_restrictions", scm_ip_restrictions)
|
|
2640
|
-
pulumi.set(__self__, "scm_min_tls_version", scm_min_tls_version)
|
|
2641
|
-
pulumi.set(__self__, "scm_type", scm_type)
|
|
2642
|
-
pulumi.set(__self__, "vnet_route_all_enabled", vnet_route_all_enabled)
|
|
2643
|
-
if always_on is not None:
|
|
2644
|
-
pulumi.set(__self__, "always_on", always_on)
|
|
2645
|
-
if dotnet_framework_version is not None:
|
|
2646
|
-
pulumi.set(__self__, "dotnet_framework_version", dotnet_framework_version)
|
|
2647
|
-
if health_check_path is not None:
|
|
2648
|
-
pulumi.set(__self__, "health_check_path", health_check_path)
|
|
2649
|
-
if http2_enabled is not None:
|
|
2650
|
-
pulumi.set(__self__, "http2_enabled", http2_enabled)
|
|
2651
|
-
if runtime_scale_monitoring_enabled is not None:
|
|
2652
|
-
pulumi.set(__self__, "runtime_scale_monitoring_enabled", runtime_scale_monitoring_enabled)
|
|
2653
|
-
if scm_use_main_ip_restriction is not None:
|
|
2654
|
-
pulumi.set(__self__, "scm_use_main_ip_restriction", scm_use_main_ip_restriction)
|
|
2655
|
-
if use32_bit_worker_process is not None:
|
|
2656
|
-
pulumi.set(__self__, "use32_bit_worker_process", use32_bit_worker_process)
|
|
2657
|
-
if websockets_enabled is not None:
|
|
2658
|
-
pulumi.set(__self__, "websockets_enabled", websockets_enabled)
|
|
2659
|
-
|
|
2660
|
-
@_builtins.property
|
|
2661
|
-
@pulumi.getter(name="appScaleLimit")
|
|
2662
|
-
def app_scale_limit(self) -> _builtins.int:
|
|
2663
|
-
"""
|
|
2664
|
-
The number of workers this Logic App can scale out to. Only applicable to apps on the Consumption and Premium plan.
|
|
2665
|
-
"""
|
|
2666
|
-
return pulumi.get(self, "app_scale_limit")
|
|
2667
|
-
|
|
2668
|
-
@app_scale_limit.setter
|
|
2669
|
-
def app_scale_limit(self, value: _builtins.int):
|
|
2670
|
-
pulumi.set(self, "app_scale_limit", value)
|
|
2671
|
-
|
|
2672
|
-
@_builtins.property
|
|
2673
|
-
@pulumi.getter(name="autoSwapSlotName")
|
|
2674
|
-
def auto_swap_slot_name(self) -> _builtins.str:
|
|
2675
|
-
"""
|
|
2676
|
-
The Auto-swap slot name.
|
|
2677
|
-
"""
|
|
2678
|
-
return pulumi.get(self, "auto_swap_slot_name")
|
|
2679
|
-
|
|
2680
|
-
@auto_swap_slot_name.setter
|
|
2681
|
-
def auto_swap_slot_name(self, value: _builtins.str):
|
|
2682
|
-
pulumi.set(self, "auto_swap_slot_name", value)
|
|
2683
|
-
|
|
2684
|
-
@_builtins.property
|
|
2685
|
-
@pulumi.getter
|
|
2686
|
-
def cors(self) -> 'GetStandardSiteConfigCorsArgs':
|
|
2687
|
-
"""
|
|
2688
|
-
A `cors` block as defined below.
|
|
2689
|
-
"""
|
|
2690
|
-
return pulumi.get(self, "cors")
|
|
2691
|
-
|
|
2692
|
-
@cors.setter
|
|
2693
|
-
def cors(self, value: 'GetStandardSiteConfigCorsArgs'):
|
|
2694
|
-
pulumi.set(self, "cors", value)
|
|
2695
|
-
|
|
2696
|
-
@_builtins.property
|
|
2697
|
-
@pulumi.getter(name="elasticInstanceMinimum")
|
|
2698
|
-
def elastic_instance_minimum(self) -> _builtins.int:
|
|
2699
|
-
"""
|
|
2700
|
-
The number of minimum instances for this Logic App Only affects apps on the Premium plan.
|
|
2701
|
-
"""
|
|
2702
|
-
return pulumi.get(self, "elastic_instance_minimum")
|
|
2703
|
-
|
|
2704
|
-
@elastic_instance_minimum.setter
|
|
2705
|
-
def elastic_instance_minimum(self, value: _builtins.int):
|
|
2706
|
-
pulumi.set(self, "elastic_instance_minimum", value)
|
|
2707
|
-
|
|
2708
|
-
@_builtins.property
|
|
2709
|
-
@pulumi.getter(name="ftpsState")
|
|
2710
|
-
def ftps_state(self) -> _builtins.str:
|
|
2711
|
-
"""
|
|
2712
|
-
The state of FTP / FTPS service for this Logic App.
|
|
2713
|
-
"""
|
|
2714
|
-
return pulumi.get(self, "ftps_state")
|
|
2715
|
-
|
|
2716
|
-
@ftps_state.setter
|
|
2717
|
-
def ftps_state(self, value: _builtins.str):
|
|
2718
|
-
pulumi.set(self, "ftps_state", value)
|
|
2719
|
-
|
|
2720
|
-
@_builtins.property
|
|
2721
|
-
@pulumi.getter(name="ipRestrictions")
|
|
2722
|
-
def ip_restrictions(self) -> Sequence['GetStandardSiteConfigIpRestrictionArgs']:
|
|
2723
|
-
"""
|
|
2724
|
-
A list of `ip_restriction` objects representing IP restrictions as defined below.
|
|
2725
|
-
"""
|
|
2726
|
-
return pulumi.get(self, "ip_restrictions")
|
|
2727
|
-
|
|
2728
|
-
@ip_restrictions.setter
|
|
2729
|
-
def ip_restrictions(self, value: Sequence['GetStandardSiteConfigIpRestrictionArgs']):
|
|
2730
|
-
pulumi.set(self, "ip_restrictions", value)
|
|
2731
|
-
|
|
2732
|
-
@_builtins.property
|
|
2733
|
-
@pulumi.getter(name="linuxFxVersion")
|
|
2734
|
-
def linux_fx_version(self) -> _builtins.str:
|
|
2735
|
-
"""
|
|
2736
|
-
Linux App Framework and version for the Logic App.
|
|
2737
|
-
"""
|
|
2738
|
-
return pulumi.get(self, "linux_fx_version")
|
|
2739
|
-
|
|
2740
|
-
@linux_fx_version.setter
|
|
2741
|
-
def linux_fx_version(self, value: _builtins.str):
|
|
2742
|
-
pulumi.set(self, "linux_fx_version", value)
|
|
2743
|
-
|
|
2744
|
-
@_builtins.property
|
|
2745
|
-
@pulumi.getter(name="minTlsVersion")
|
|
2746
|
-
def min_tls_version(self) -> _builtins.str:
|
|
2747
|
-
"""
|
|
2748
|
-
The minimum supported TLS version for the Logic App.
|
|
2749
|
-
"""
|
|
2750
|
-
return pulumi.get(self, "min_tls_version")
|
|
2751
|
-
|
|
2752
|
-
@min_tls_version.setter
|
|
2753
|
-
def min_tls_version(self, value: _builtins.str):
|
|
2754
|
-
pulumi.set(self, "min_tls_version", value)
|
|
2755
|
-
|
|
2756
|
-
@_builtins.property
|
|
2757
|
-
@pulumi.getter(name="preWarmedInstanceCount")
|
|
2758
|
-
def pre_warmed_instance_count(self) -> _builtins.int:
|
|
2759
|
-
"""
|
|
2760
|
-
The number of pre-warmed instances for this Logic App Only affects apps on the Premium plan.
|
|
2761
|
-
"""
|
|
2762
|
-
return pulumi.get(self, "pre_warmed_instance_count")
|
|
2763
|
-
|
|
2764
|
-
@pre_warmed_instance_count.setter
|
|
2765
|
-
def pre_warmed_instance_count(self, value: _builtins.int):
|
|
2766
|
-
pulumi.set(self, "pre_warmed_instance_count", value)
|
|
2767
|
-
|
|
2768
|
-
@_builtins.property
|
|
2769
|
-
@pulumi.getter(name="publicNetworkAccessEnabled")
|
|
2770
|
-
@_utilities.deprecated("""the `site_config.public_network_access_enabled` property has been superseded by the `public_network_access` property and will be removed in v5.0 of the AzureRM Provider.""")
|
|
2771
|
-
def public_network_access_enabled(self) -> _builtins.bool:
|
|
2772
|
-
return pulumi.get(self, "public_network_access_enabled")
|
|
2773
|
-
|
|
2774
|
-
@public_network_access_enabled.setter
|
|
2775
|
-
def public_network_access_enabled(self, value: _builtins.bool):
|
|
2776
|
-
pulumi.set(self, "public_network_access_enabled", value)
|
|
2777
|
-
|
|
2778
|
-
@_builtins.property
|
|
2779
|
-
@pulumi.getter(name="scmIpRestrictions")
|
|
2780
|
-
def scm_ip_restrictions(self) -> Sequence['GetStandardSiteConfigScmIpRestrictionArgs']:
|
|
2781
|
-
"""
|
|
2782
|
-
A list of `scm_ip_restriction` objects representing SCM IP restrictions as defined below.
|
|
2783
|
-
"""
|
|
2784
|
-
return pulumi.get(self, "scm_ip_restrictions")
|
|
2785
|
-
|
|
2786
|
-
@scm_ip_restrictions.setter
|
|
2787
|
-
def scm_ip_restrictions(self, value: Sequence['GetStandardSiteConfigScmIpRestrictionArgs']):
|
|
2788
|
-
pulumi.set(self, "scm_ip_restrictions", value)
|
|
2789
|
-
|
|
2790
|
-
@_builtins.property
|
|
2791
|
-
@pulumi.getter(name="scmMinTlsVersion")
|
|
2792
|
-
def scm_min_tls_version(self) -> _builtins.str:
|
|
2793
|
-
"""
|
|
2794
|
-
The minimum version of TLS required for SSL requests to the SCM site.
|
|
2795
|
-
"""
|
|
2796
|
-
return pulumi.get(self, "scm_min_tls_version")
|
|
2797
|
-
|
|
2798
|
-
@scm_min_tls_version.setter
|
|
2799
|
-
def scm_min_tls_version(self, value: _builtins.str):
|
|
2800
|
-
pulumi.set(self, "scm_min_tls_version", value)
|
|
2801
|
-
|
|
2802
|
-
@_builtins.property
|
|
2803
|
-
@pulumi.getter(name="scmType")
|
|
2804
|
-
def scm_type(self) -> _builtins.str:
|
|
2805
|
-
"""
|
|
2806
|
-
The type of Source Control used by the Logic App in use by the Windows Function App.
|
|
2807
|
-
"""
|
|
2808
|
-
return pulumi.get(self, "scm_type")
|
|
2809
|
-
|
|
2810
|
-
@scm_type.setter
|
|
2811
|
-
def scm_type(self, value: _builtins.str):
|
|
2812
|
-
pulumi.set(self, "scm_type", value)
|
|
2813
|
-
|
|
2814
|
-
@_builtins.property
|
|
2815
|
-
@pulumi.getter(name="vnetRouteAllEnabled")
|
|
2816
|
-
def vnet_route_all_enabled(self) -> _builtins.bool:
|
|
2817
|
-
"""
|
|
2818
|
-
Should all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
|
|
2819
|
-
"""
|
|
2820
|
-
return pulumi.get(self, "vnet_route_all_enabled")
|
|
2821
|
-
|
|
2822
|
-
@vnet_route_all_enabled.setter
|
|
2823
|
-
def vnet_route_all_enabled(self, value: _builtins.bool):
|
|
2824
|
-
pulumi.set(self, "vnet_route_all_enabled", value)
|
|
2825
|
-
|
|
2826
|
-
@_builtins.property
|
|
2827
|
-
@pulumi.getter(name="alwaysOn")
|
|
2828
|
-
def always_on(self) -> Optional[_builtins.bool]:
|
|
2829
|
-
"""
|
|
2830
|
-
Should the Logic App be loaded at all times?
|
|
2831
|
-
"""
|
|
2832
|
-
return pulumi.get(self, "always_on")
|
|
2833
|
-
|
|
2834
|
-
@always_on.setter
|
|
2835
|
-
def always_on(self, value: Optional[_builtins.bool]):
|
|
2836
|
-
pulumi.set(self, "always_on", value)
|
|
2837
|
-
|
|
2838
|
-
@_builtins.property
|
|
2839
|
-
@pulumi.getter(name="dotnetFrameworkVersion")
|
|
2840
|
-
def dotnet_framework_version(self) -> Optional[_builtins.str]:
|
|
2841
|
-
"""
|
|
2842
|
-
The version of the .NET framework's CLR used in this Logic App.
|
|
2843
|
-
"""
|
|
2844
|
-
return pulumi.get(self, "dotnet_framework_version")
|
|
2845
|
-
|
|
2846
|
-
@dotnet_framework_version.setter
|
|
2847
|
-
def dotnet_framework_version(self, value: Optional[_builtins.str]):
|
|
2848
|
-
pulumi.set(self, "dotnet_framework_version", value)
|
|
2849
|
-
|
|
2850
|
-
@_builtins.property
|
|
2851
|
-
@pulumi.getter(name="healthCheckPath")
|
|
2852
|
-
def health_check_path(self) -> Optional[_builtins.str]:
|
|
2853
|
-
"""
|
|
2854
|
-
Path which will be checked for this Logic App health.
|
|
2855
|
-
"""
|
|
2856
|
-
return pulumi.get(self, "health_check_path")
|
|
2857
|
-
|
|
2858
|
-
@health_check_path.setter
|
|
2859
|
-
def health_check_path(self, value: Optional[_builtins.str]):
|
|
2860
|
-
pulumi.set(self, "health_check_path", value)
|
|
2861
|
-
|
|
2862
|
-
@_builtins.property
|
|
2863
|
-
@pulumi.getter(name="http2Enabled")
|
|
2864
|
-
def http2_enabled(self) -> Optional[_builtins.bool]:
|
|
2865
|
-
"""
|
|
2866
|
-
Specifies whether the HTTP2 protocol should be enabled.
|
|
2867
|
-
"""
|
|
2868
|
-
return pulumi.get(self, "http2_enabled")
|
|
2869
|
-
|
|
2870
|
-
@http2_enabled.setter
|
|
2871
|
-
def http2_enabled(self, value: Optional[_builtins.bool]):
|
|
2872
|
-
pulumi.set(self, "http2_enabled", value)
|
|
2873
|
-
|
|
2874
|
-
@_builtins.property
|
|
2875
|
-
@pulumi.getter(name="runtimeScaleMonitoringEnabled")
|
|
2876
|
-
def runtime_scale_monitoring_enabled(self) -> Optional[_builtins.bool]:
|
|
2877
|
-
"""
|
|
2878
|
-
Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan.
|
|
2879
|
-
"""
|
|
2880
|
-
return pulumi.get(self, "runtime_scale_monitoring_enabled")
|
|
2881
|
-
|
|
2882
|
-
@runtime_scale_monitoring_enabled.setter
|
|
2883
|
-
def runtime_scale_monitoring_enabled(self, value: Optional[_builtins.bool]):
|
|
2884
|
-
pulumi.set(self, "runtime_scale_monitoring_enabled", value)
|
|
2885
|
-
|
|
2886
|
-
@_builtins.property
|
|
2887
|
-
@pulumi.getter(name="scmUseMainIpRestriction")
|
|
2888
|
-
def scm_use_main_ip_restriction(self) -> Optional[_builtins.bool]:
|
|
2889
|
-
"""
|
|
2890
|
-
Should the Logic App `ip_restriction` configuration be used for the SCM too.
|
|
2891
|
-
"""
|
|
2892
|
-
return pulumi.get(self, "scm_use_main_ip_restriction")
|
|
2893
|
-
|
|
2894
|
-
@scm_use_main_ip_restriction.setter
|
|
2895
|
-
def scm_use_main_ip_restriction(self, value: Optional[_builtins.bool]):
|
|
2896
|
-
pulumi.set(self, "scm_use_main_ip_restriction", value)
|
|
2897
|
-
|
|
2898
|
-
@_builtins.property
|
|
2899
|
-
@pulumi.getter(name="use32BitWorkerProcess")
|
|
2900
|
-
def use32_bit_worker_process(self) -> Optional[_builtins.bool]:
|
|
2901
|
-
"""
|
|
2902
|
-
Should the Logic App run in 32 bit mode, rather than 64 bit mode?
|
|
2903
|
-
"""
|
|
2904
|
-
return pulumi.get(self, "use32_bit_worker_process")
|
|
2905
|
-
|
|
2906
|
-
@use32_bit_worker_process.setter
|
|
2907
|
-
def use32_bit_worker_process(self, value: Optional[_builtins.bool]):
|
|
2908
|
-
pulumi.set(self, "use32_bit_worker_process", value)
|
|
2909
|
-
|
|
2910
|
-
@_builtins.property
|
|
2911
|
-
@pulumi.getter(name="websocketsEnabled")
|
|
2912
|
-
def websockets_enabled(self) -> Optional[_builtins.bool]:
|
|
2913
|
-
"""
|
|
2914
|
-
Should WebSockets be enabled?
|
|
2915
|
-
"""
|
|
2916
|
-
return pulumi.get(self, "websockets_enabled")
|
|
2917
|
-
|
|
2918
|
-
@websockets_enabled.setter
|
|
2919
|
-
def websockets_enabled(self, value: Optional[_builtins.bool]):
|
|
2920
|
-
pulumi.set(self, "websockets_enabled", value)
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
if not MYPY:
|
|
2924
|
-
class GetStandardSiteConfigCorsArgsDict(TypedDict):
|
|
2925
|
-
allowed_origins: Sequence[_builtins.str]
|
|
2926
|
-
"""
|
|
2927
|
-
A list of origins which should be able to make cross-origin calls.
|
|
2928
|
-
"""
|
|
2929
|
-
support_credentials: NotRequired[_builtins.bool]
|
|
2930
|
-
"""
|
|
2931
|
-
Are credentials supported?
|
|
2932
|
-
"""
|
|
2933
|
-
elif False:
|
|
2934
|
-
GetStandardSiteConfigCorsArgsDict: TypeAlias = Mapping[str, Any]
|
|
2935
|
-
|
|
2936
|
-
@pulumi.input_type
|
|
2937
|
-
class GetStandardSiteConfigCorsArgs:
|
|
2938
|
-
def __init__(__self__, *,
|
|
2939
|
-
allowed_origins: Sequence[_builtins.str],
|
|
2940
|
-
support_credentials: Optional[_builtins.bool] = None):
|
|
2941
|
-
"""
|
|
2942
|
-
:param Sequence[_builtins.str] allowed_origins: A list of origins which should be able to make cross-origin calls.
|
|
2943
|
-
:param _builtins.bool support_credentials: Are credentials supported?
|
|
2944
|
-
"""
|
|
2945
|
-
pulumi.set(__self__, "allowed_origins", allowed_origins)
|
|
2946
|
-
if support_credentials is not None:
|
|
2947
|
-
pulumi.set(__self__, "support_credentials", support_credentials)
|
|
2948
|
-
|
|
2949
|
-
@_builtins.property
|
|
2950
|
-
@pulumi.getter(name="allowedOrigins")
|
|
2951
|
-
def allowed_origins(self) -> Sequence[_builtins.str]:
|
|
2952
|
-
"""
|
|
2953
|
-
A list of origins which should be able to make cross-origin calls.
|
|
2954
|
-
"""
|
|
2955
|
-
return pulumi.get(self, "allowed_origins")
|
|
2956
|
-
|
|
2957
|
-
@allowed_origins.setter
|
|
2958
|
-
def allowed_origins(self, value: Sequence[_builtins.str]):
|
|
2959
|
-
pulumi.set(self, "allowed_origins", value)
|
|
2960
|
-
|
|
2961
|
-
@_builtins.property
|
|
2962
|
-
@pulumi.getter(name="supportCredentials")
|
|
2963
|
-
def support_credentials(self) -> Optional[_builtins.bool]:
|
|
2964
|
-
"""
|
|
2965
|
-
Are credentials supported?
|
|
2966
|
-
"""
|
|
2967
|
-
return pulumi.get(self, "support_credentials")
|
|
2968
|
-
|
|
2969
|
-
@support_credentials.setter
|
|
2970
|
-
def support_credentials(self, value: Optional[_builtins.bool]):
|
|
2971
|
-
pulumi.set(self, "support_credentials", value)
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
if not MYPY:
|
|
2975
|
-
class GetStandardSiteConfigIpRestrictionArgsDict(TypedDict):
|
|
2976
|
-
headers: 'GetStandardSiteConfigIpRestrictionHeadersArgsDict'
|
|
2977
|
-
"""
|
|
2978
|
-
The `headers` block for this specific `ip_restriction` as defined below.
|
|
2979
|
-
"""
|
|
2980
|
-
name: _builtins.str
|
|
2981
|
-
"""
|
|
2982
|
-
The name of the Logic App.
|
|
2983
|
-
"""
|
|
2984
|
-
action: NotRequired[_builtins.str]
|
|
2985
|
-
"""
|
|
2986
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2987
|
-
"""
|
|
2988
|
-
ip_address: NotRequired[_builtins.str]
|
|
2989
|
-
"""
|
|
2990
|
-
The IP Address used for this IP Restriction in CIDR notation.
|
|
2991
|
-
"""
|
|
2992
|
-
priority: NotRequired[_builtins.int]
|
|
2993
|
-
"""
|
|
2994
|
-
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
2995
|
-
"""
|
|
2996
|
-
service_tag: NotRequired[_builtins.str]
|
|
2997
|
-
"""
|
|
2998
|
-
The Service Tag used for this IP Restriction.
|
|
2999
|
-
"""
|
|
3000
|
-
virtual_network_subnet_id: NotRequired[_builtins.str]
|
|
3001
|
-
"""
|
|
3002
|
-
The Virtual Network Subnet ID used for this IP Restriction.
|
|
3003
|
-
"""
|
|
3004
|
-
elif False:
|
|
3005
|
-
GetStandardSiteConfigIpRestrictionArgsDict: TypeAlias = Mapping[str, Any]
|
|
3006
|
-
|
|
3007
|
-
@pulumi.input_type
|
|
3008
|
-
class GetStandardSiteConfigIpRestrictionArgs:
|
|
3009
|
-
def __init__(__self__, *,
|
|
3010
|
-
headers: 'GetStandardSiteConfigIpRestrictionHeadersArgs',
|
|
3011
|
-
name: _builtins.str,
|
|
3012
|
-
action: Optional[_builtins.str] = None,
|
|
3013
|
-
ip_address: Optional[_builtins.str] = None,
|
|
3014
|
-
priority: Optional[_builtins.int] = None,
|
|
3015
|
-
service_tag: Optional[_builtins.str] = None,
|
|
3016
|
-
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
3017
|
-
"""
|
|
3018
|
-
:param 'GetStandardSiteConfigIpRestrictionHeadersArgs' headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
3019
|
-
:param _builtins.str name: The name of the Logic App.
|
|
3020
|
-
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
3021
|
-
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
3022
|
-
:param _builtins.int priority: The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
3023
|
-
:param _builtins.str service_tag: The Service Tag used for this IP Restriction.
|
|
3024
|
-
:param _builtins.str virtual_network_subnet_id: The Virtual Network Subnet ID used for this IP Restriction.
|
|
3025
|
-
"""
|
|
3026
|
-
pulumi.set(__self__, "headers", headers)
|
|
3027
|
-
pulumi.set(__self__, "name", name)
|
|
3028
|
-
if action is not None:
|
|
3029
|
-
pulumi.set(__self__, "action", action)
|
|
3030
|
-
if ip_address is not None:
|
|
3031
|
-
pulumi.set(__self__, "ip_address", ip_address)
|
|
3032
|
-
if priority is not None:
|
|
3033
|
-
pulumi.set(__self__, "priority", priority)
|
|
3034
|
-
if service_tag is not None:
|
|
3035
|
-
pulumi.set(__self__, "service_tag", service_tag)
|
|
3036
|
-
if virtual_network_subnet_id is not None:
|
|
3037
|
-
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
3038
|
-
|
|
3039
|
-
@_builtins.property
|
|
3040
|
-
@pulumi.getter
|
|
3041
|
-
def headers(self) -> 'GetStandardSiteConfigIpRestrictionHeadersArgs':
|
|
3042
|
-
"""
|
|
3043
|
-
The `headers` block for this specific `ip_restriction` as defined below.
|
|
3044
|
-
"""
|
|
3045
|
-
return pulumi.get(self, "headers")
|
|
3046
|
-
|
|
3047
|
-
@headers.setter
|
|
3048
|
-
def headers(self, value: 'GetStandardSiteConfigIpRestrictionHeadersArgs'):
|
|
3049
|
-
pulumi.set(self, "headers", value)
|
|
3050
|
-
|
|
3051
|
-
@_builtins.property
|
|
3052
|
-
@pulumi.getter
|
|
3053
|
-
def name(self) -> _builtins.str:
|
|
3054
|
-
"""
|
|
3055
|
-
The name of the Logic App.
|
|
3056
|
-
"""
|
|
3057
|
-
return pulumi.get(self, "name")
|
|
3058
|
-
|
|
3059
|
-
@name.setter
|
|
3060
|
-
def name(self, value: _builtins.str):
|
|
3061
|
-
pulumi.set(self, "name", value)
|
|
3062
|
-
|
|
3063
|
-
@_builtins.property
|
|
3064
|
-
@pulumi.getter
|
|
3065
|
-
def action(self) -> Optional[_builtins.str]:
|
|
3066
|
-
"""
|
|
3067
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
3068
|
-
"""
|
|
3069
|
-
return pulumi.get(self, "action")
|
|
3070
|
-
|
|
3071
|
-
@action.setter
|
|
3072
|
-
def action(self, value: Optional[_builtins.str]):
|
|
3073
|
-
pulumi.set(self, "action", value)
|
|
3074
|
-
|
|
3075
|
-
@_builtins.property
|
|
3076
|
-
@pulumi.getter(name="ipAddress")
|
|
3077
|
-
def ip_address(self) -> Optional[_builtins.str]:
|
|
3078
|
-
"""
|
|
3079
|
-
The IP Address used for this IP Restriction in CIDR notation.
|
|
3080
|
-
"""
|
|
3081
|
-
return pulumi.get(self, "ip_address")
|
|
3082
|
-
|
|
3083
|
-
@ip_address.setter
|
|
3084
|
-
def ip_address(self, value: Optional[_builtins.str]):
|
|
3085
|
-
pulumi.set(self, "ip_address", value)
|
|
3086
|
-
|
|
3087
|
-
@_builtins.property
|
|
3088
|
-
@pulumi.getter
|
|
3089
|
-
def priority(self) -> Optional[_builtins.int]:
|
|
3090
|
-
"""
|
|
3091
|
-
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
3092
|
-
"""
|
|
3093
|
-
return pulumi.get(self, "priority")
|
|
3094
|
-
|
|
3095
|
-
@priority.setter
|
|
3096
|
-
def priority(self, value: Optional[_builtins.int]):
|
|
3097
|
-
pulumi.set(self, "priority", value)
|
|
3098
|
-
|
|
3099
|
-
@_builtins.property
|
|
3100
|
-
@pulumi.getter(name="serviceTag")
|
|
3101
|
-
def service_tag(self) -> Optional[_builtins.str]:
|
|
3102
|
-
"""
|
|
3103
|
-
The Service Tag used for this IP Restriction.
|
|
3104
|
-
"""
|
|
3105
|
-
return pulumi.get(self, "service_tag")
|
|
3106
|
-
|
|
3107
|
-
@service_tag.setter
|
|
3108
|
-
def service_tag(self, value: Optional[_builtins.str]):
|
|
3109
|
-
pulumi.set(self, "service_tag", value)
|
|
3110
|
-
|
|
3111
|
-
@_builtins.property
|
|
3112
|
-
@pulumi.getter(name="virtualNetworkSubnetId")
|
|
3113
|
-
def virtual_network_subnet_id(self) -> Optional[_builtins.str]:
|
|
3114
|
-
"""
|
|
3115
|
-
The Virtual Network Subnet ID used for this IP Restriction.
|
|
3116
|
-
"""
|
|
3117
|
-
return pulumi.get(self, "virtual_network_subnet_id")
|
|
3118
|
-
|
|
3119
|
-
@virtual_network_subnet_id.setter
|
|
3120
|
-
def virtual_network_subnet_id(self, value: Optional[_builtins.str]):
|
|
3121
|
-
pulumi.set(self, "virtual_network_subnet_id", value)
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
if not MYPY:
|
|
3125
|
-
class GetStandardSiteConfigIpRestrictionHeadersArgsDict(TypedDict):
|
|
3126
|
-
x_azure_fdids: NotRequired[Sequence[_builtins.str]]
|
|
3127
|
-
"""
|
|
3128
|
-
A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3129
|
-
"""
|
|
3130
|
-
x_fd_health_probe: NotRequired[_builtins.str]
|
|
3131
|
-
"""
|
|
3132
|
-
A list to allow the Azure FrontDoor health probe header.
|
|
3133
|
-
"""
|
|
3134
|
-
x_forwarded_fors: NotRequired[Sequence[_builtins.str]]
|
|
3135
|
-
"""
|
|
3136
|
-
A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3137
|
-
"""
|
|
3138
|
-
x_forwarded_hosts: NotRequired[Sequence[_builtins.str]]
|
|
3139
|
-
"""
|
|
3140
|
-
A list of allowed 'X-Forwarded-Host' domains.
|
|
3141
|
-
"""
|
|
3142
|
-
elif False:
|
|
3143
|
-
GetStandardSiteConfigIpRestrictionHeadersArgsDict: TypeAlias = Mapping[str, Any]
|
|
3144
|
-
|
|
3145
|
-
@pulumi.input_type
|
|
3146
|
-
class GetStandardSiteConfigIpRestrictionHeadersArgs:
|
|
3147
|
-
def __init__(__self__, *,
|
|
3148
|
-
x_azure_fdids: Optional[Sequence[_builtins.str]] = None,
|
|
3149
|
-
x_fd_health_probe: Optional[_builtins.str] = None,
|
|
3150
|
-
x_forwarded_fors: Optional[Sequence[_builtins.str]] = None,
|
|
3151
|
-
x_forwarded_hosts: Optional[Sequence[_builtins.str]] = None):
|
|
3152
|
-
"""
|
|
3153
|
-
:param Sequence[_builtins.str] x_azure_fdids: A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3154
|
-
:param _builtins.str x_fd_health_probe: A list to allow the Azure FrontDoor health probe header.
|
|
3155
|
-
:param Sequence[_builtins.str] x_forwarded_fors: A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3156
|
-
:param Sequence[_builtins.str] x_forwarded_hosts: A list of allowed 'X-Forwarded-Host' domains.
|
|
3157
|
-
"""
|
|
3158
|
-
if x_azure_fdids is not None:
|
|
3159
|
-
pulumi.set(__self__, "x_azure_fdids", x_azure_fdids)
|
|
3160
|
-
if x_fd_health_probe is not None:
|
|
3161
|
-
pulumi.set(__self__, "x_fd_health_probe", x_fd_health_probe)
|
|
3162
|
-
if x_forwarded_fors is not None:
|
|
3163
|
-
pulumi.set(__self__, "x_forwarded_fors", x_forwarded_fors)
|
|
3164
|
-
if x_forwarded_hosts is not None:
|
|
3165
|
-
pulumi.set(__self__, "x_forwarded_hosts", x_forwarded_hosts)
|
|
3166
|
-
|
|
3167
|
-
@_builtins.property
|
|
3168
|
-
@pulumi.getter(name="xAzureFdids")
|
|
3169
|
-
def x_azure_fdids(self) -> Optional[Sequence[_builtins.str]]:
|
|
3170
|
-
"""
|
|
3171
|
-
A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3172
|
-
"""
|
|
3173
|
-
return pulumi.get(self, "x_azure_fdids")
|
|
3174
|
-
|
|
3175
|
-
@x_azure_fdids.setter
|
|
3176
|
-
def x_azure_fdids(self, value: Optional[Sequence[_builtins.str]]):
|
|
3177
|
-
pulumi.set(self, "x_azure_fdids", value)
|
|
3178
|
-
|
|
3179
|
-
@_builtins.property
|
|
3180
|
-
@pulumi.getter(name="xFdHealthProbe")
|
|
3181
|
-
def x_fd_health_probe(self) -> Optional[_builtins.str]:
|
|
3182
|
-
"""
|
|
3183
|
-
A list to allow the Azure FrontDoor health probe header.
|
|
3184
|
-
"""
|
|
3185
|
-
return pulumi.get(self, "x_fd_health_probe")
|
|
3186
|
-
|
|
3187
|
-
@x_fd_health_probe.setter
|
|
3188
|
-
def x_fd_health_probe(self, value: Optional[_builtins.str]):
|
|
3189
|
-
pulumi.set(self, "x_fd_health_probe", value)
|
|
3190
|
-
|
|
3191
|
-
@_builtins.property
|
|
3192
|
-
@pulumi.getter(name="xForwardedFors")
|
|
3193
|
-
def x_forwarded_fors(self) -> Optional[Sequence[_builtins.str]]:
|
|
3194
|
-
"""
|
|
3195
|
-
A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3196
|
-
"""
|
|
3197
|
-
return pulumi.get(self, "x_forwarded_fors")
|
|
3198
|
-
|
|
3199
|
-
@x_forwarded_fors.setter
|
|
3200
|
-
def x_forwarded_fors(self, value: Optional[Sequence[_builtins.str]]):
|
|
3201
|
-
pulumi.set(self, "x_forwarded_fors", value)
|
|
3202
|
-
|
|
3203
|
-
@_builtins.property
|
|
3204
|
-
@pulumi.getter(name="xForwardedHosts")
|
|
3205
|
-
def x_forwarded_hosts(self) -> Optional[Sequence[_builtins.str]]:
|
|
3206
|
-
"""
|
|
3207
|
-
A list of allowed 'X-Forwarded-Host' domains.
|
|
3208
|
-
"""
|
|
3209
|
-
return pulumi.get(self, "x_forwarded_hosts")
|
|
3210
|
-
|
|
3211
|
-
@x_forwarded_hosts.setter
|
|
3212
|
-
def x_forwarded_hosts(self, value: Optional[Sequence[_builtins.str]]):
|
|
3213
|
-
pulumi.set(self, "x_forwarded_hosts", value)
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
if not MYPY:
|
|
3217
|
-
class GetStandardSiteConfigScmIpRestrictionArgsDict(TypedDict):
|
|
3218
|
-
headers: 'GetStandardSiteConfigScmIpRestrictionHeadersArgsDict'
|
|
3219
|
-
"""
|
|
3220
|
-
The `headers` block for this specific `ip_restriction` as defined below.
|
|
3221
|
-
"""
|
|
3222
|
-
name: _builtins.str
|
|
3223
|
-
"""
|
|
3224
|
-
The name of the Logic App.
|
|
3225
|
-
"""
|
|
3226
|
-
action: NotRequired[_builtins.str]
|
|
3227
|
-
"""
|
|
3228
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
3229
|
-
"""
|
|
3230
|
-
ip_address: NotRequired[_builtins.str]
|
|
3231
|
-
"""
|
|
3232
|
-
The IP Address used for this IP Restriction in CIDR notation.
|
|
3233
|
-
"""
|
|
3234
|
-
priority: NotRequired[_builtins.int]
|
|
3235
|
-
"""
|
|
3236
|
-
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
3237
|
-
"""
|
|
3238
|
-
service_tag: NotRequired[_builtins.str]
|
|
3239
|
-
"""
|
|
3240
|
-
The Service Tag used for this IP Restriction.
|
|
3241
|
-
"""
|
|
3242
|
-
virtual_network_subnet_id: NotRequired[_builtins.str]
|
|
3243
|
-
"""
|
|
3244
|
-
The Virtual Network Subnet ID used for this IP Restriction.
|
|
3245
|
-
"""
|
|
3246
|
-
elif False:
|
|
3247
|
-
GetStandardSiteConfigScmIpRestrictionArgsDict: TypeAlias = Mapping[str, Any]
|
|
3248
|
-
|
|
3249
|
-
@pulumi.input_type
|
|
3250
|
-
class GetStandardSiteConfigScmIpRestrictionArgs:
|
|
3251
|
-
def __init__(__self__, *,
|
|
3252
|
-
headers: 'GetStandardSiteConfigScmIpRestrictionHeadersArgs',
|
|
3253
|
-
name: _builtins.str,
|
|
3254
|
-
action: Optional[_builtins.str] = None,
|
|
3255
|
-
ip_address: Optional[_builtins.str] = None,
|
|
3256
|
-
priority: Optional[_builtins.int] = None,
|
|
3257
|
-
service_tag: Optional[_builtins.str] = None,
|
|
3258
|
-
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
3259
|
-
"""
|
|
3260
|
-
:param 'GetStandardSiteConfigScmIpRestrictionHeadersArgs' headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
3261
|
-
:param _builtins.str name: The name of the Logic App.
|
|
3262
|
-
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
3263
|
-
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
3264
|
-
:param _builtins.int priority: The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
3265
|
-
:param _builtins.str service_tag: The Service Tag used for this IP Restriction.
|
|
3266
|
-
:param _builtins.str virtual_network_subnet_id: The Virtual Network Subnet ID used for this IP Restriction.
|
|
3267
|
-
"""
|
|
3268
|
-
pulumi.set(__self__, "headers", headers)
|
|
3269
|
-
pulumi.set(__self__, "name", name)
|
|
3270
|
-
if action is not None:
|
|
3271
|
-
pulumi.set(__self__, "action", action)
|
|
3272
|
-
if ip_address is not None:
|
|
3273
|
-
pulumi.set(__self__, "ip_address", ip_address)
|
|
3274
|
-
if priority is not None:
|
|
3275
|
-
pulumi.set(__self__, "priority", priority)
|
|
3276
|
-
if service_tag is not None:
|
|
3277
|
-
pulumi.set(__self__, "service_tag", service_tag)
|
|
3278
|
-
if virtual_network_subnet_id is not None:
|
|
3279
|
-
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
3280
|
-
|
|
3281
|
-
@_builtins.property
|
|
3282
|
-
@pulumi.getter
|
|
3283
|
-
def headers(self) -> 'GetStandardSiteConfigScmIpRestrictionHeadersArgs':
|
|
3284
|
-
"""
|
|
3285
|
-
The `headers` block for this specific `ip_restriction` as defined below.
|
|
3286
|
-
"""
|
|
3287
|
-
return pulumi.get(self, "headers")
|
|
3288
|
-
|
|
3289
|
-
@headers.setter
|
|
3290
|
-
def headers(self, value: 'GetStandardSiteConfigScmIpRestrictionHeadersArgs'):
|
|
3291
|
-
pulumi.set(self, "headers", value)
|
|
3292
|
-
|
|
3293
|
-
@_builtins.property
|
|
3294
|
-
@pulumi.getter
|
|
3295
|
-
def name(self) -> _builtins.str:
|
|
3296
|
-
"""
|
|
3297
|
-
The name of the Logic App.
|
|
3298
|
-
"""
|
|
3299
|
-
return pulumi.get(self, "name")
|
|
3300
|
-
|
|
3301
|
-
@name.setter
|
|
3302
|
-
def name(self, value: _builtins.str):
|
|
3303
|
-
pulumi.set(self, "name", value)
|
|
3304
|
-
|
|
3305
|
-
@_builtins.property
|
|
3306
|
-
@pulumi.getter
|
|
3307
|
-
def action(self) -> Optional[_builtins.str]:
|
|
3308
|
-
"""
|
|
3309
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
3310
|
-
"""
|
|
3311
|
-
return pulumi.get(self, "action")
|
|
3312
|
-
|
|
3313
|
-
@action.setter
|
|
3314
|
-
def action(self, value: Optional[_builtins.str]):
|
|
3315
|
-
pulumi.set(self, "action", value)
|
|
3316
|
-
|
|
3317
|
-
@_builtins.property
|
|
3318
|
-
@pulumi.getter(name="ipAddress")
|
|
3319
|
-
def ip_address(self) -> Optional[_builtins.str]:
|
|
3320
|
-
"""
|
|
3321
|
-
The IP Address used for this IP Restriction in CIDR notation.
|
|
3322
|
-
"""
|
|
3323
|
-
return pulumi.get(self, "ip_address")
|
|
3324
|
-
|
|
3325
|
-
@ip_address.setter
|
|
3326
|
-
def ip_address(self, value: Optional[_builtins.str]):
|
|
3327
|
-
pulumi.set(self, "ip_address", value)
|
|
3328
|
-
|
|
3329
|
-
@_builtins.property
|
|
3330
|
-
@pulumi.getter
|
|
3331
|
-
def priority(self) -> Optional[_builtins.int]:
|
|
3332
|
-
"""
|
|
3333
|
-
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
3334
|
-
"""
|
|
3335
|
-
return pulumi.get(self, "priority")
|
|
3336
|
-
|
|
3337
|
-
@priority.setter
|
|
3338
|
-
def priority(self, value: Optional[_builtins.int]):
|
|
3339
|
-
pulumi.set(self, "priority", value)
|
|
3340
|
-
|
|
3341
|
-
@_builtins.property
|
|
3342
|
-
@pulumi.getter(name="serviceTag")
|
|
3343
|
-
def service_tag(self) -> Optional[_builtins.str]:
|
|
3344
|
-
"""
|
|
3345
|
-
The Service Tag used for this IP Restriction.
|
|
3346
|
-
"""
|
|
3347
|
-
return pulumi.get(self, "service_tag")
|
|
3348
|
-
|
|
3349
|
-
@service_tag.setter
|
|
3350
|
-
def service_tag(self, value: Optional[_builtins.str]):
|
|
3351
|
-
pulumi.set(self, "service_tag", value)
|
|
3352
|
-
|
|
3353
|
-
@_builtins.property
|
|
3354
|
-
@pulumi.getter(name="virtualNetworkSubnetId")
|
|
3355
|
-
def virtual_network_subnet_id(self) -> Optional[_builtins.str]:
|
|
3356
|
-
"""
|
|
3357
|
-
The Virtual Network Subnet ID used for this IP Restriction.
|
|
3358
|
-
"""
|
|
3359
|
-
return pulumi.get(self, "virtual_network_subnet_id")
|
|
3360
|
-
|
|
3361
|
-
@virtual_network_subnet_id.setter
|
|
3362
|
-
def virtual_network_subnet_id(self, value: Optional[_builtins.str]):
|
|
3363
|
-
pulumi.set(self, "virtual_network_subnet_id", value)
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
if not MYPY:
|
|
3367
|
-
class GetStandardSiteConfigScmIpRestrictionHeadersArgsDict(TypedDict):
|
|
3368
|
-
x_azure_fdids: NotRequired[Sequence[_builtins.str]]
|
|
3369
|
-
"""
|
|
3370
|
-
A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3371
|
-
"""
|
|
3372
|
-
x_fd_health_probe: NotRequired[_builtins.str]
|
|
3373
|
-
"""
|
|
3374
|
-
A list to allow the Azure FrontDoor health probe header.
|
|
3375
|
-
"""
|
|
3376
|
-
x_forwarded_fors: NotRequired[Sequence[_builtins.str]]
|
|
3377
|
-
"""
|
|
3378
|
-
A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3379
|
-
"""
|
|
3380
|
-
x_forwarded_hosts: NotRequired[Sequence[_builtins.str]]
|
|
3381
|
-
"""
|
|
3382
|
-
A list of allowed 'X-Forwarded-Host' domains.
|
|
3383
|
-
"""
|
|
3384
|
-
elif False:
|
|
3385
|
-
GetStandardSiteConfigScmIpRestrictionHeadersArgsDict: TypeAlias = Mapping[str, Any]
|
|
3386
|
-
|
|
3387
|
-
@pulumi.input_type
|
|
3388
|
-
class GetStandardSiteConfigScmIpRestrictionHeadersArgs:
|
|
3389
|
-
def __init__(__self__, *,
|
|
3390
|
-
x_azure_fdids: Optional[Sequence[_builtins.str]] = None,
|
|
3391
|
-
x_fd_health_probe: Optional[_builtins.str] = None,
|
|
3392
|
-
x_forwarded_fors: Optional[Sequence[_builtins.str]] = None,
|
|
3393
|
-
x_forwarded_hosts: Optional[Sequence[_builtins.str]] = None):
|
|
3394
|
-
"""
|
|
3395
|
-
:param Sequence[_builtins.str] x_azure_fdids: A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3396
|
-
:param _builtins.str x_fd_health_probe: A list to allow the Azure FrontDoor health probe header.
|
|
3397
|
-
:param Sequence[_builtins.str] x_forwarded_fors: A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3398
|
-
:param Sequence[_builtins.str] x_forwarded_hosts: A list of allowed 'X-Forwarded-Host' domains.
|
|
3399
|
-
"""
|
|
3400
|
-
if x_azure_fdids is not None:
|
|
3401
|
-
pulumi.set(__self__, "x_azure_fdids", x_azure_fdids)
|
|
3402
|
-
if x_fd_health_probe is not None:
|
|
3403
|
-
pulumi.set(__self__, "x_fd_health_probe", x_fd_health_probe)
|
|
3404
|
-
if x_forwarded_fors is not None:
|
|
3405
|
-
pulumi.set(__self__, "x_forwarded_fors", x_forwarded_fors)
|
|
3406
|
-
if x_forwarded_hosts is not None:
|
|
3407
|
-
pulumi.set(__self__, "x_forwarded_hosts", x_forwarded_hosts)
|
|
3408
|
-
|
|
3409
|
-
@_builtins.property
|
|
3410
|
-
@pulumi.getter(name="xAzureFdids")
|
|
3411
|
-
def x_azure_fdids(self) -> Optional[Sequence[_builtins.str]]:
|
|
3412
|
-
"""
|
|
3413
|
-
A list of allowed Azure FrontDoor IDs in UUID notation.
|
|
3414
|
-
"""
|
|
3415
|
-
return pulumi.get(self, "x_azure_fdids")
|
|
3416
|
-
|
|
3417
|
-
@x_azure_fdids.setter
|
|
3418
|
-
def x_azure_fdids(self, value: Optional[Sequence[_builtins.str]]):
|
|
3419
|
-
pulumi.set(self, "x_azure_fdids", value)
|
|
3420
|
-
|
|
3421
|
-
@_builtins.property
|
|
3422
|
-
@pulumi.getter(name="xFdHealthProbe")
|
|
3423
|
-
def x_fd_health_probe(self) -> Optional[_builtins.str]:
|
|
3424
|
-
"""
|
|
3425
|
-
A list to allow the Azure FrontDoor health probe header.
|
|
3426
|
-
"""
|
|
3427
|
-
return pulumi.get(self, "x_fd_health_probe")
|
|
3428
|
-
|
|
3429
|
-
@x_fd_health_probe.setter
|
|
3430
|
-
def x_fd_health_probe(self, value: Optional[_builtins.str]):
|
|
3431
|
-
pulumi.set(self, "x_fd_health_probe", value)
|
|
3432
|
-
|
|
3433
|
-
@_builtins.property
|
|
3434
|
-
@pulumi.getter(name="xForwardedFors")
|
|
3435
|
-
def x_forwarded_fors(self) -> Optional[Sequence[_builtins.str]]:
|
|
3436
|
-
"""
|
|
3437
|
-
A list of allowed 'X-Forwarded-For' IPs in CIDR notation.
|
|
3438
|
-
"""
|
|
3439
|
-
return pulumi.get(self, "x_forwarded_fors")
|
|
3440
|
-
|
|
3441
|
-
@x_forwarded_fors.setter
|
|
3442
|
-
def x_forwarded_fors(self, value: Optional[Sequence[_builtins.str]]):
|
|
3443
|
-
pulumi.set(self, "x_forwarded_fors", value)
|
|
3444
|
-
|
|
3445
|
-
@_builtins.property
|
|
3446
|
-
@pulumi.getter(name="xForwardedHosts")
|
|
3447
|
-
def x_forwarded_hosts(self) -> Optional[Sequence[_builtins.str]]:
|
|
3448
|
-
"""
|
|
3449
|
-
A list of allowed 'X-Forwarded-Host' domains.
|
|
3450
|
-
"""
|
|
3451
|
-
return pulumi.get(self, "x_forwarded_hosts")
|
|
3452
|
-
|
|
3453
|
-
@x_forwarded_hosts.setter
|
|
3454
|
-
def x_forwarded_hosts(self, value: Optional[Sequence[_builtins.str]]):
|
|
3455
|
-
pulumi.set(self, "x_forwarded_hosts", value)
|
|
3456
|
-
|
|
3457
|
-
|