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
|
@@ -14,7 +14,6 @@ else:
|
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from .. import _utilities
|
|
16
16
|
from . import outputs
|
|
17
|
-
from ._inputs import *
|
|
18
17
|
|
|
19
18
|
__all__ = [
|
|
20
19
|
'GetStandardResult',
|
|
@@ -398,7 +397,6 @@ class AwaitableGetStandardResult(GetStandardResult):
|
|
|
398
397
|
|
|
399
398
|
def get_standard(name: Optional[_builtins.str] = None,
|
|
400
399
|
resource_group_name: Optional[_builtins.str] = None,
|
|
401
|
-
site_config: Optional[Union['GetStandardSiteConfigArgs', 'GetStandardSiteConfigArgsDict']] = None,
|
|
402
400
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStandardResult:
|
|
403
401
|
"""
|
|
404
402
|
Use this data source to access information about an existing Logic App Standard instance.
|
|
@@ -424,12 +422,10 @@ def get_standard(name: Optional[_builtins.str] = None,
|
|
|
424
422
|
|
|
425
423
|
:param _builtins.str name: The name of the Logic App.
|
|
426
424
|
:param _builtins.str resource_group_name: The name of the Resource Group where the Logic App exists.
|
|
427
|
-
:param Union['GetStandardSiteConfigArgs', 'GetStandardSiteConfigArgsDict'] site_config: A `site_config` object as defined below.
|
|
428
425
|
"""
|
|
429
426
|
__args__ = dict()
|
|
430
427
|
__args__['name'] = name
|
|
431
428
|
__args__['resourceGroupName'] = resource_group_name
|
|
432
|
-
__args__['siteConfig'] = site_config
|
|
433
429
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
434
430
|
__ret__ = pulumi.runtime.invoke('azure:logicapps/getStandard:getStandard', __args__, opts=opts, typ=GetStandardResult).value
|
|
435
431
|
|
|
@@ -466,7 +462,6 @@ def get_standard(name: Optional[_builtins.str] = None,
|
|
|
466
462
|
virtual_network_subnet_id=pulumi.get(__ret__, 'virtual_network_subnet_id'))
|
|
467
463
|
def get_standard_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
468
464
|
resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
469
|
-
site_config: Optional[pulumi.Input[Optional[Union['GetStandardSiteConfigArgs', 'GetStandardSiteConfigArgsDict']]]] = None,
|
|
470
465
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStandardResult]:
|
|
471
466
|
"""
|
|
472
467
|
Use this data source to access information about an existing Logic App Standard instance.
|
|
@@ -492,12 +487,10 @@ def get_standard_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
492
487
|
|
|
493
488
|
:param _builtins.str name: The name of the Logic App.
|
|
494
489
|
:param _builtins.str resource_group_name: The name of the Resource Group where the Logic App exists.
|
|
495
|
-
:param Union['GetStandardSiteConfigArgs', 'GetStandardSiteConfigArgsDict'] site_config: A `site_config` object as defined below.
|
|
496
490
|
"""
|
|
497
491
|
__args__ = dict()
|
|
498
492
|
__args__['name'] = name
|
|
499
493
|
__args__['resourceGroupName'] = resource_group_name
|
|
500
|
-
__args__['siteConfig'] = site_config
|
|
501
494
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
502
495
|
__ret__ = pulumi.runtime.invoke_output('azure:logicapps/getStandard:getStandard', __args__, opts=opts, typ=GetStandardResult)
|
|
503
496
|
return __ret__.apply(lambda __response__: GetStandardResult(
|
|
@@ -1021,19 +1021,20 @@ class StandardSiteConfigCors(dict):
|
|
|
1021
1021
|
return super().get(key, default)
|
|
1022
1022
|
|
|
1023
1023
|
def __init__(__self__, *,
|
|
1024
|
-
allowed_origins: Sequence[_builtins.str],
|
|
1024
|
+
allowed_origins: Optional[Sequence[_builtins.str]] = None,
|
|
1025
1025
|
support_credentials: Optional[_builtins.bool] = None):
|
|
1026
1026
|
"""
|
|
1027
1027
|
:param Sequence[_builtins.str] allowed_origins: A list of origins which should be able to make cross-origin calls. `*` can be used to allow all calls.
|
|
1028
1028
|
:param _builtins.bool support_credentials: Are credentials supported?
|
|
1029
1029
|
"""
|
|
1030
|
-
|
|
1030
|
+
if allowed_origins is not None:
|
|
1031
|
+
pulumi.set(__self__, "allowed_origins", allowed_origins)
|
|
1031
1032
|
if support_credentials is not None:
|
|
1032
1033
|
pulumi.set(__self__, "support_credentials", support_credentials)
|
|
1033
1034
|
|
|
1034
1035
|
@_builtins.property
|
|
1035
1036
|
@pulumi.getter(name="allowedOrigins")
|
|
1036
|
-
def allowed_origins(self) -> Sequence[_builtins.str]:
|
|
1037
|
+
def allowed_origins(self) -> Optional[Sequence[_builtins.str]]:
|
|
1037
1038
|
"""
|
|
1038
1039
|
A list of origins which should be able to make cross-origin calls. `*` can be used to allow all calls.
|
|
1039
1040
|
"""
|
|
@@ -1073,6 +1074,7 @@ class StandardSiteConfigIpRestriction(dict):
|
|
|
1073
1074
|
|
|
1074
1075
|
def __init__(__self__, *,
|
|
1075
1076
|
action: Optional[_builtins.str] = None,
|
|
1077
|
+
description: Optional[_builtins.str] = None,
|
|
1076
1078
|
headers: Optional['outputs.StandardSiteConfigIpRestrictionHeaders'] = None,
|
|
1077
1079
|
ip_address: Optional[_builtins.str] = None,
|
|
1078
1080
|
name: Optional[_builtins.str] = None,
|
|
@@ -1081,6 +1083,7 @@ class StandardSiteConfigIpRestriction(dict):
|
|
|
1081
1083
|
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
1082
1084
|
"""
|
|
1083
1085
|
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1086
|
+
:param _builtins.str description: The Description of this IP Restriction.
|
|
1084
1087
|
:param 'StandardSiteConfigIpRestrictionHeadersArgs' headers: The `headers` block for this specific as a `ip_restriction` block as defined below.
|
|
1085
1088
|
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
1086
1089
|
:param _builtins.str name: The name for this IP Restriction.
|
|
@@ -1092,6 +1095,8 @@ class StandardSiteConfigIpRestriction(dict):
|
|
|
1092
1095
|
"""
|
|
1093
1096
|
if action is not None:
|
|
1094
1097
|
pulumi.set(__self__, "action", action)
|
|
1098
|
+
if description is not None:
|
|
1099
|
+
pulumi.set(__self__, "description", description)
|
|
1095
1100
|
if headers is not None:
|
|
1096
1101
|
pulumi.set(__self__, "headers", headers)
|
|
1097
1102
|
if ip_address is not None:
|
|
@@ -1113,6 +1118,14 @@ class StandardSiteConfigIpRestriction(dict):
|
|
|
1113
1118
|
"""
|
|
1114
1119
|
return pulumi.get(self, "action")
|
|
1115
1120
|
|
|
1121
|
+
@_builtins.property
|
|
1122
|
+
@pulumi.getter
|
|
1123
|
+
def description(self) -> Optional[_builtins.str]:
|
|
1124
|
+
"""
|
|
1125
|
+
The Description of this IP Restriction.
|
|
1126
|
+
"""
|
|
1127
|
+
return pulumi.get(self, "description")
|
|
1128
|
+
|
|
1116
1129
|
@_builtins.property
|
|
1117
1130
|
@pulumi.getter
|
|
1118
1131
|
def headers(self) -> Optional['outputs.StandardSiteConfigIpRestrictionHeaders']:
|
|
@@ -1267,6 +1280,7 @@ class StandardSiteConfigScmIpRestriction(dict):
|
|
|
1267
1280
|
|
|
1268
1281
|
def __init__(__self__, *,
|
|
1269
1282
|
action: Optional[_builtins.str] = None,
|
|
1283
|
+
description: Optional[_builtins.str] = None,
|
|
1270
1284
|
headers: Optional['outputs.StandardSiteConfigScmIpRestrictionHeaders'] = None,
|
|
1271
1285
|
ip_address: Optional[_builtins.str] = None,
|
|
1272
1286
|
name: Optional[_builtins.str] = None,
|
|
@@ -1275,6 +1289,7 @@ class StandardSiteConfigScmIpRestriction(dict):
|
|
|
1275
1289
|
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
1276
1290
|
"""
|
|
1277
1291
|
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range. Defaults to `Allow`.
|
|
1292
|
+
:param _builtins.str description: The Description of this IP Restriction.
|
|
1278
1293
|
:param 'StandardSiteConfigScmIpRestrictionHeadersArgs' headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
1279
1294
|
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
1280
1295
|
:param _builtins.str name: The name for this IP Restriction.
|
|
@@ -1286,6 +1301,8 @@ class StandardSiteConfigScmIpRestriction(dict):
|
|
|
1286
1301
|
"""
|
|
1287
1302
|
if action is not None:
|
|
1288
1303
|
pulumi.set(__self__, "action", action)
|
|
1304
|
+
if description is not None:
|
|
1305
|
+
pulumi.set(__self__, "description", description)
|
|
1289
1306
|
if headers is not None:
|
|
1290
1307
|
pulumi.set(__self__, "headers", headers)
|
|
1291
1308
|
if ip_address is not None:
|
|
@@ -1307,6 +1324,14 @@ class StandardSiteConfigScmIpRestriction(dict):
|
|
|
1307
1324
|
"""
|
|
1308
1325
|
return pulumi.get(self, "action")
|
|
1309
1326
|
|
|
1327
|
+
@_builtins.property
|
|
1328
|
+
@pulumi.getter
|
|
1329
|
+
def description(self) -> Optional[_builtins.str]:
|
|
1330
|
+
"""
|
|
1331
|
+
The Description of this IP Restriction.
|
|
1332
|
+
"""
|
|
1333
|
+
return pulumi.get(self, "description")
|
|
1334
|
+
|
|
1310
1335
|
@_builtins.property
|
|
1311
1336
|
@pulumi.getter
|
|
1312
1337
|
def headers(self) -> Optional['outputs.StandardSiteConfigScmIpRestrictionHeaders']:
|
|
@@ -1981,11 +2006,13 @@ class GetStandardIdentityResult(dict):
|
|
|
1981
2006
|
@pulumi.output_type
|
|
1982
2007
|
class GetStandardSiteConfigResult(dict):
|
|
1983
2008
|
def __init__(__self__, *,
|
|
2009
|
+
always_on: _builtins.bool,
|
|
1984
2010
|
app_scale_limit: _builtins.int,
|
|
1985
2011
|
auto_swap_slot_name: _builtins.str,
|
|
1986
2012
|
cors: 'outputs.GetStandardSiteConfigCorsResult',
|
|
1987
2013
|
elastic_instance_minimum: _builtins.int,
|
|
1988
2014
|
ftps_state: _builtins.str,
|
|
2015
|
+
http2_enabled: _builtins.bool,
|
|
1989
2016
|
ip_restrictions: Sequence['outputs.GetStandardSiteConfigIpRestrictionResult'],
|
|
1990
2017
|
linux_fx_version: _builtins.str,
|
|
1991
2018
|
min_tls_version: _builtins.str,
|
|
@@ -1995,20 +2022,20 @@ class GetStandardSiteConfigResult(dict):
|
|
|
1995
2022
|
scm_min_tls_version: _builtins.str,
|
|
1996
2023
|
scm_type: _builtins.str,
|
|
1997
2024
|
vnet_route_all_enabled: _builtins.bool,
|
|
1998
|
-
always_on: Optional[_builtins.bool] = None,
|
|
1999
2025
|
dotnet_framework_version: Optional[_builtins.str] = None,
|
|
2000
2026
|
health_check_path: Optional[_builtins.str] = None,
|
|
2001
|
-
http2_enabled: Optional[_builtins.bool] = None,
|
|
2002
2027
|
runtime_scale_monitoring_enabled: Optional[_builtins.bool] = None,
|
|
2003
2028
|
scm_use_main_ip_restriction: Optional[_builtins.bool] = None,
|
|
2004
2029
|
use32_bit_worker_process: Optional[_builtins.bool] = None,
|
|
2005
2030
|
websockets_enabled: Optional[_builtins.bool] = None):
|
|
2006
2031
|
"""
|
|
2032
|
+
:param _builtins.bool always_on: Should the Logic App be loaded at all times?
|
|
2007
2033
|
: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.
|
|
2008
2034
|
:param _builtins.str auto_swap_slot_name: The Auto-swap slot name.
|
|
2009
2035
|
:param 'GetStandardSiteConfigCorsArgs' cors: A `cors` block as defined below.
|
|
2010
2036
|
:param _builtins.int elastic_instance_minimum: The number of minimum instances for this Logic App Only affects apps on the Premium plan.
|
|
2011
2037
|
:param _builtins.str ftps_state: The state of FTP / FTPS service for this Logic App.
|
|
2038
|
+
:param _builtins.bool http2_enabled: Specifies whether the HTTP2 protocol should be enabled.
|
|
2012
2039
|
:param Sequence['GetStandardSiteConfigIpRestrictionArgs'] ip_restrictions: A list of `ip_restriction` objects representing IP restrictions as defined below.
|
|
2013
2040
|
:param _builtins.str linux_fx_version: Linux App Framework and version for the Logic App.
|
|
2014
2041
|
:param _builtins.str min_tls_version: The minimum supported TLS version for the Logic App.
|
|
@@ -2017,20 +2044,20 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2017
2044
|
:param _builtins.str scm_min_tls_version: The minimum version of TLS required for SSL requests to the SCM site.
|
|
2018
2045
|
:param _builtins.str scm_type: The type of Source Control used by the Logic App in use by the Windows Function App.
|
|
2019
2046
|
:param _builtins.bool vnet_route_all_enabled: Should all outbound traffic to have Virtual Network Security Groups and User Defined Routes applied.
|
|
2020
|
-
:param _builtins.bool always_on: Should the Logic App be loaded at all times?
|
|
2021
2047
|
:param _builtins.str dotnet_framework_version: The version of the .NET framework's CLR used in this Logic App.
|
|
2022
2048
|
:param _builtins.str health_check_path: Path which will be checked for this Logic App health.
|
|
2023
|
-
:param _builtins.bool http2_enabled: Specifies whether the HTTP2 protocol should be enabled.
|
|
2024
2049
|
:param _builtins.bool runtime_scale_monitoring_enabled: Should Runtime Scale Monitoring be enabled?. Only applicable to apps on the Premium plan.
|
|
2025
2050
|
:param _builtins.bool scm_use_main_ip_restriction: Should the Logic App `ip_restriction` configuration be used for the SCM too.
|
|
2026
2051
|
:param _builtins.bool use32_bit_worker_process: Should the Logic App run in 32 bit mode, rather than 64 bit mode?
|
|
2027
2052
|
:param _builtins.bool websockets_enabled: Should WebSockets be enabled?
|
|
2028
2053
|
"""
|
|
2054
|
+
pulumi.set(__self__, "always_on", always_on)
|
|
2029
2055
|
pulumi.set(__self__, "app_scale_limit", app_scale_limit)
|
|
2030
2056
|
pulumi.set(__self__, "auto_swap_slot_name", auto_swap_slot_name)
|
|
2031
2057
|
pulumi.set(__self__, "cors", cors)
|
|
2032
2058
|
pulumi.set(__self__, "elastic_instance_minimum", elastic_instance_minimum)
|
|
2033
2059
|
pulumi.set(__self__, "ftps_state", ftps_state)
|
|
2060
|
+
pulumi.set(__self__, "http2_enabled", http2_enabled)
|
|
2034
2061
|
pulumi.set(__self__, "ip_restrictions", ip_restrictions)
|
|
2035
2062
|
pulumi.set(__self__, "linux_fx_version", linux_fx_version)
|
|
2036
2063
|
pulumi.set(__self__, "min_tls_version", min_tls_version)
|
|
@@ -2040,14 +2067,10 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2040
2067
|
pulumi.set(__self__, "scm_min_tls_version", scm_min_tls_version)
|
|
2041
2068
|
pulumi.set(__self__, "scm_type", scm_type)
|
|
2042
2069
|
pulumi.set(__self__, "vnet_route_all_enabled", vnet_route_all_enabled)
|
|
2043
|
-
if always_on is not None:
|
|
2044
|
-
pulumi.set(__self__, "always_on", always_on)
|
|
2045
2070
|
if dotnet_framework_version is not None:
|
|
2046
2071
|
pulumi.set(__self__, "dotnet_framework_version", dotnet_framework_version)
|
|
2047
2072
|
if health_check_path is not None:
|
|
2048
2073
|
pulumi.set(__self__, "health_check_path", health_check_path)
|
|
2049
|
-
if http2_enabled is not None:
|
|
2050
|
-
pulumi.set(__self__, "http2_enabled", http2_enabled)
|
|
2051
2074
|
if runtime_scale_monitoring_enabled is not None:
|
|
2052
2075
|
pulumi.set(__self__, "runtime_scale_monitoring_enabled", runtime_scale_monitoring_enabled)
|
|
2053
2076
|
if scm_use_main_ip_restriction is not None:
|
|
@@ -2057,6 +2080,14 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2057
2080
|
if websockets_enabled is not None:
|
|
2058
2081
|
pulumi.set(__self__, "websockets_enabled", websockets_enabled)
|
|
2059
2082
|
|
|
2083
|
+
@_builtins.property
|
|
2084
|
+
@pulumi.getter(name="alwaysOn")
|
|
2085
|
+
def always_on(self) -> _builtins.bool:
|
|
2086
|
+
"""
|
|
2087
|
+
Should the Logic App be loaded at all times?
|
|
2088
|
+
"""
|
|
2089
|
+
return pulumi.get(self, "always_on")
|
|
2090
|
+
|
|
2060
2091
|
@_builtins.property
|
|
2061
2092
|
@pulumi.getter(name="appScaleLimit")
|
|
2062
2093
|
def app_scale_limit(self) -> _builtins.int:
|
|
@@ -2097,6 +2128,14 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2097
2128
|
"""
|
|
2098
2129
|
return pulumi.get(self, "ftps_state")
|
|
2099
2130
|
|
|
2131
|
+
@_builtins.property
|
|
2132
|
+
@pulumi.getter(name="http2Enabled")
|
|
2133
|
+
def http2_enabled(self) -> _builtins.bool:
|
|
2134
|
+
"""
|
|
2135
|
+
Specifies whether the HTTP2 protocol should be enabled.
|
|
2136
|
+
"""
|
|
2137
|
+
return pulumi.get(self, "http2_enabled")
|
|
2138
|
+
|
|
2100
2139
|
@_builtins.property
|
|
2101
2140
|
@pulumi.getter(name="ipRestrictions")
|
|
2102
2141
|
def ip_restrictions(self) -> Sequence['outputs.GetStandardSiteConfigIpRestrictionResult']:
|
|
@@ -2167,14 +2206,6 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2167
2206
|
"""
|
|
2168
2207
|
return pulumi.get(self, "vnet_route_all_enabled")
|
|
2169
2208
|
|
|
2170
|
-
@_builtins.property
|
|
2171
|
-
@pulumi.getter(name="alwaysOn")
|
|
2172
|
-
def always_on(self) -> Optional[_builtins.bool]:
|
|
2173
|
-
"""
|
|
2174
|
-
Should the Logic App be loaded at all times?
|
|
2175
|
-
"""
|
|
2176
|
-
return pulumi.get(self, "always_on")
|
|
2177
|
-
|
|
2178
2209
|
@_builtins.property
|
|
2179
2210
|
@pulumi.getter(name="dotnetFrameworkVersion")
|
|
2180
2211
|
def dotnet_framework_version(self) -> Optional[_builtins.str]:
|
|
@@ -2191,14 +2222,6 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2191
2222
|
"""
|
|
2192
2223
|
return pulumi.get(self, "health_check_path")
|
|
2193
2224
|
|
|
2194
|
-
@_builtins.property
|
|
2195
|
-
@pulumi.getter(name="http2Enabled")
|
|
2196
|
-
def http2_enabled(self) -> Optional[_builtins.bool]:
|
|
2197
|
-
"""
|
|
2198
|
-
Specifies whether the HTTP2 protocol should be enabled.
|
|
2199
|
-
"""
|
|
2200
|
-
return pulumi.get(self, "http2_enabled")
|
|
2201
|
-
|
|
2202
2225
|
@_builtins.property
|
|
2203
2226
|
@pulumi.getter(name="runtimeScaleMonitoringEnabled")
|
|
2204
2227
|
def runtime_scale_monitoring_enabled(self) -> Optional[_builtins.bool]:
|
|
@@ -2236,14 +2259,13 @@ class GetStandardSiteConfigResult(dict):
|
|
|
2236
2259
|
class GetStandardSiteConfigCorsResult(dict):
|
|
2237
2260
|
def __init__(__self__, *,
|
|
2238
2261
|
allowed_origins: Sequence[_builtins.str],
|
|
2239
|
-
support_credentials:
|
|
2262
|
+
support_credentials: _builtins.bool):
|
|
2240
2263
|
"""
|
|
2241
2264
|
:param Sequence[_builtins.str] allowed_origins: A list of origins which should be able to make cross-origin calls.
|
|
2242
2265
|
:param _builtins.bool support_credentials: Are credentials supported?
|
|
2243
2266
|
"""
|
|
2244
2267
|
pulumi.set(__self__, "allowed_origins", allowed_origins)
|
|
2245
|
-
|
|
2246
|
-
pulumi.set(__self__, "support_credentials", support_credentials)
|
|
2268
|
+
pulumi.set(__self__, "support_credentials", support_credentials)
|
|
2247
2269
|
|
|
2248
2270
|
@_builtins.property
|
|
2249
2271
|
@pulumi.getter(name="allowedOrigins")
|
|
@@ -2255,7 +2277,7 @@ class GetStandardSiteConfigCorsResult(dict):
|
|
|
2255
2277
|
|
|
2256
2278
|
@_builtins.property
|
|
2257
2279
|
@pulumi.getter(name="supportCredentials")
|
|
2258
|
-
def support_credentials(self) ->
|
|
2280
|
+
def support_credentials(self) -> _builtins.bool:
|
|
2259
2281
|
"""
|
|
2260
2282
|
Are credentials supported?
|
|
2261
2283
|
"""
|
|
@@ -2266,33 +2288,30 @@ class GetStandardSiteConfigCorsResult(dict):
|
|
|
2266
2288
|
class GetStandardSiteConfigIpRestrictionResult(dict):
|
|
2267
2289
|
def __init__(__self__, *,
|
|
2268
2290
|
headers: 'outputs.GetStandardSiteConfigIpRestrictionHeadersResult',
|
|
2291
|
+
ip_address: _builtins.str,
|
|
2269
2292
|
name: _builtins.str,
|
|
2293
|
+
service_tag: _builtins.str,
|
|
2294
|
+
virtual_network_subnet_id: _builtins.str,
|
|
2270
2295
|
action: Optional[_builtins.str] = None,
|
|
2271
|
-
|
|
2272
|
-
priority: Optional[_builtins.int] = None,
|
|
2273
|
-
service_tag: Optional[_builtins.str] = None,
|
|
2274
|
-
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
2296
|
+
priority: Optional[_builtins.int] = None):
|
|
2275
2297
|
"""
|
|
2276
2298
|
:param 'GetStandardSiteConfigIpRestrictionHeadersArgs' headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
2277
|
-
:param _builtins.str name: The name of the Logic App.
|
|
2278
|
-
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2279
2299
|
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
2280
|
-
:param _builtins.
|
|
2300
|
+
:param _builtins.str name: The name of the Logic App.
|
|
2281
2301
|
:param _builtins.str service_tag: The Service Tag used for this IP Restriction.
|
|
2282
2302
|
:param _builtins.str virtual_network_subnet_id: The Virtual Network Subnet ID used for this IP Restriction.
|
|
2303
|
+
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2304
|
+
:param _builtins.int priority: The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
2283
2305
|
"""
|
|
2284
2306
|
pulumi.set(__self__, "headers", headers)
|
|
2307
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
|
2285
2308
|
pulumi.set(__self__, "name", name)
|
|
2309
|
+
pulumi.set(__self__, "service_tag", service_tag)
|
|
2310
|
+
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
2286
2311
|
if action is not None:
|
|
2287
2312
|
pulumi.set(__self__, "action", action)
|
|
2288
|
-
if ip_address is not None:
|
|
2289
|
-
pulumi.set(__self__, "ip_address", ip_address)
|
|
2290
2313
|
if priority is not None:
|
|
2291
2314
|
pulumi.set(__self__, "priority", priority)
|
|
2292
|
-
if service_tag is not None:
|
|
2293
|
-
pulumi.set(__self__, "service_tag", service_tag)
|
|
2294
|
-
if virtual_network_subnet_id is not None:
|
|
2295
|
-
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
2296
2315
|
|
|
2297
2316
|
@_builtins.property
|
|
2298
2317
|
@pulumi.getter
|
|
@@ -2302,25 +2321,9 @@ class GetStandardSiteConfigIpRestrictionResult(dict):
|
|
|
2302
2321
|
"""
|
|
2303
2322
|
return pulumi.get(self, "headers")
|
|
2304
2323
|
|
|
2305
|
-
@_builtins.property
|
|
2306
|
-
@pulumi.getter
|
|
2307
|
-
def name(self) -> _builtins.str:
|
|
2308
|
-
"""
|
|
2309
|
-
The name of the Logic App.
|
|
2310
|
-
"""
|
|
2311
|
-
return pulumi.get(self, "name")
|
|
2312
|
-
|
|
2313
|
-
@_builtins.property
|
|
2314
|
-
@pulumi.getter
|
|
2315
|
-
def action(self) -> Optional[_builtins.str]:
|
|
2316
|
-
"""
|
|
2317
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2318
|
-
"""
|
|
2319
|
-
return pulumi.get(self, "action")
|
|
2320
|
-
|
|
2321
2324
|
@_builtins.property
|
|
2322
2325
|
@pulumi.getter(name="ipAddress")
|
|
2323
|
-
def ip_address(self) ->
|
|
2326
|
+
def ip_address(self) -> _builtins.str:
|
|
2324
2327
|
"""
|
|
2325
2328
|
The IP Address used for this IP Restriction in CIDR notation.
|
|
2326
2329
|
"""
|
|
@@ -2328,15 +2331,15 @@ class GetStandardSiteConfigIpRestrictionResult(dict):
|
|
|
2328
2331
|
|
|
2329
2332
|
@_builtins.property
|
|
2330
2333
|
@pulumi.getter
|
|
2331
|
-
def
|
|
2334
|
+
def name(self) -> _builtins.str:
|
|
2332
2335
|
"""
|
|
2333
|
-
The
|
|
2336
|
+
The name of the Logic App.
|
|
2334
2337
|
"""
|
|
2335
|
-
return pulumi.get(self, "
|
|
2338
|
+
return pulumi.get(self, "name")
|
|
2336
2339
|
|
|
2337
2340
|
@_builtins.property
|
|
2338
2341
|
@pulumi.getter(name="serviceTag")
|
|
2339
|
-
def service_tag(self) ->
|
|
2342
|
+
def service_tag(self) -> _builtins.str:
|
|
2340
2343
|
"""
|
|
2341
2344
|
The Service Tag used for this IP Restriction.
|
|
2342
2345
|
"""
|
|
@@ -2344,12 +2347,28 @@ class GetStandardSiteConfigIpRestrictionResult(dict):
|
|
|
2344
2347
|
|
|
2345
2348
|
@_builtins.property
|
|
2346
2349
|
@pulumi.getter(name="virtualNetworkSubnetId")
|
|
2347
|
-
def virtual_network_subnet_id(self) ->
|
|
2350
|
+
def virtual_network_subnet_id(self) -> _builtins.str:
|
|
2348
2351
|
"""
|
|
2349
2352
|
The Virtual Network Subnet ID used for this IP Restriction.
|
|
2350
2353
|
"""
|
|
2351
2354
|
return pulumi.get(self, "virtual_network_subnet_id")
|
|
2352
2355
|
|
|
2356
|
+
@_builtins.property
|
|
2357
|
+
@pulumi.getter
|
|
2358
|
+
def action(self) -> Optional[_builtins.str]:
|
|
2359
|
+
"""
|
|
2360
|
+
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2361
|
+
"""
|
|
2362
|
+
return pulumi.get(self, "action")
|
|
2363
|
+
|
|
2364
|
+
@_builtins.property
|
|
2365
|
+
@pulumi.getter
|
|
2366
|
+
def priority(self) -> Optional[_builtins.int]:
|
|
2367
|
+
"""
|
|
2368
|
+
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
2369
|
+
"""
|
|
2370
|
+
return pulumi.get(self, "priority")
|
|
2371
|
+
|
|
2353
2372
|
|
|
2354
2373
|
@pulumi.output_type
|
|
2355
2374
|
class GetStandardSiteConfigIpRestrictionHeadersResult(dict):
|
|
@@ -2410,33 +2429,30 @@ class GetStandardSiteConfigIpRestrictionHeadersResult(dict):
|
|
|
2410
2429
|
class GetStandardSiteConfigScmIpRestrictionResult(dict):
|
|
2411
2430
|
def __init__(__self__, *,
|
|
2412
2431
|
headers: 'outputs.GetStandardSiteConfigScmIpRestrictionHeadersResult',
|
|
2432
|
+
ip_address: _builtins.str,
|
|
2413
2433
|
name: _builtins.str,
|
|
2434
|
+
service_tag: _builtins.str,
|
|
2435
|
+
virtual_network_subnet_id: _builtins.str,
|
|
2414
2436
|
action: Optional[_builtins.str] = None,
|
|
2415
|
-
|
|
2416
|
-
priority: Optional[_builtins.int] = None,
|
|
2417
|
-
service_tag: Optional[_builtins.str] = None,
|
|
2418
|
-
virtual_network_subnet_id: Optional[_builtins.str] = None):
|
|
2437
|
+
priority: Optional[_builtins.int] = None):
|
|
2419
2438
|
"""
|
|
2420
2439
|
:param 'GetStandardSiteConfigScmIpRestrictionHeadersArgs' headers: The `headers` block for this specific `ip_restriction` as defined below.
|
|
2421
|
-
:param _builtins.str name: The name of the Logic App.
|
|
2422
|
-
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2423
2440
|
:param _builtins.str ip_address: The IP Address used for this IP Restriction in CIDR notation.
|
|
2424
|
-
:param _builtins.
|
|
2441
|
+
:param _builtins.str name: The name of the Logic App.
|
|
2425
2442
|
:param _builtins.str service_tag: The Service Tag used for this IP Restriction.
|
|
2426
2443
|
:param _builtins.str virtual_network_subnet_id: The Virtual Network Subnet ID used for this IP Restriction.
|
|
2444
|
+
:param _builtins.str action: Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2445
|
+
:param _builtins.int priority: The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
2427
2446
|
"""
|
|
2428
2447
|
pulumi.set(__self__, "headers", headers)
|
|
2448
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
|
2429
2449
|
pulumi.set(__self__, "name", name)
|
|
2450
|
+
pulumi.set(__self__, "service_tag", service_tag)
|
|
2451
|
+
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
2430
2452
|
if action is not None:
|
|
2431
2453
|
pulumi.set(__self__, "action", action)
|
|
2432
|
-
if ip_address is not None:
|
|
2433
|
-
pulumi.set(__self__, "ip_address", ip_address)
|
|
2434
2454
|
if priority is not None:
|
|
2435
2455
|
pulumi.set(__self__, "priority", priority)
|
|
2436
|
-
if service_tag is not None:
|
|
2437
|
-
pulumi.set(__self__, "service_tag", service_tag)
|
|
2438
|
-
if virtual_network_subnet_id is not None:
|
|
2439
|
-
pulumi.set(__self__, "virtual_network_subnet_id", virtual_network_subnet_id)
|
|
2440
2456
|
|
|
2441
2457
|
@_builtins.property
|
|
2442
2458
|
@pulumi.getter
|
|
@@ -2446,25 +2462,9 @@ class GetStandardSiteConfigScmIpRestrictionResult(dict):
|
|
|
2446
2462
|
"""
|
|
2447
2463
|
return pulumi.get(self, "headers")
|
|
2448
2464
|
|
|
2449
|
-
@_builtins.property
|
|
2450
|
-
@pulumi.getter
|
|
2451
|
-
def name(self) -> _builtins.str:
|
|
2452
|
-
"""
|
|
2453
|
-
The name of the Logic App.
|
|
2454
|
-
"""
|
|
2455
|
-
return pulumi.get(self, "name")
|
|
2456
|
-
|
|
2457
|
-
@_builtins.property
|
|
2458
|
-
@pulumi.getter
|
|
2459
|
-
def action(self) -> Optional[_builtins.str]:
|
|
2460
|
-
"""
|
|
2461
|
-
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2462
|
-
"""
|
|
2463
|
-
return pulumi.get(self, "action")
|
|
2464
|
-
|
|
2465
2465
|
@_builtins.property
|
|
2466
2466
|
@pulumi.getter(name="ipAddress")
|
|
2467
|
-
def ip_address(self) ->
|
|
2467
|
+
def ip_address(self) -> _builtins.str:
|
|
2468
2468
|
"""
|
|
2469
2469
|
The IP Address used for this IP Restriction in CIDR notation.
|
|
2470
2470
|
"""
|
|
@@ -2472,15 +2472,15 @@ class GetStandardSiteConfigScmIpRestrictionResult(dict):
|
|
|
2472
2472
|
|
|
2473
2473
|
@_builtins.property
|
|
2474
2474
|
@pulumi.getter
|
|
2475
|
-
def
|
|
2475
|
+
def name(self) -> _builtins.str:
|
|
2476
2476
|
"""
|
|
2477
|
-
The
|
|
2477
|
+
The name of the Logic App.
|
|
2478
2478
|
"""
|
|
2479
|
-
return pulumi.get(self, "
|
|
2479
|
+
return pulumi.get(self, "name")
|
|
2480
2480
|
|
|
2481
2481
|
@_builtins.property
|
|
2482
2482
|
@pulumi.getter(name="serviceTag")
|
|
2483
|
-
def service_tag(self) ->
|
|
2483
|
+
def service_tag(self) -> _builtins.str:
|
|
2484
2484
|
"""
|
|
2485
2485
|
The Service Tag used for this IP Restriction.
|
|
2486
2486
|
"""
|
|
@@ -2488,12 +2488,28 @@ class GetStandardSiteConfigScmIpRestrictionResult(dict):
|
|
|
2488
2488
|
|
|
2489
2489
|
@_builtins.property
|
|
2490
2490
|
@pulumi.getter(name="virtualNetworkSubnetId")
|
|
2491
|
-
def virtual_network_subnet_id(self) ->
|
|
2491
|
+
def virtual_network_subnet_id(self) -> _builtins.str:
|
|
2492
2492
|
"""
|
|
2493
2493
|
The Virtual Network Subnet ID used for this IP Restriction.
|
|
2494
2494
|
"""
|
|
2495
2495
|
return pulumi.get(self, "virtual_network_subnet_id")
|
|
2496
2496
|
|
|
2497
|
+
@_builtins.property
|
|
2498
|
+
@pulumi.getter
|
|
2499
|
+
def action(self) -> Optional[_builtins.str]:
|
|
2500
|
+
"""
|
|
2501
|
+
Does this restriction `Allow` or `Deny` access for this IP range.
|
|
2502
|
+
"""
|
|
2503
|
+
return pulumi.get(self, "action")
|
|
2504
|
+
|
|
2505
|
+
@_builtins.property
|
|
2506
|
+
@pulumi.getter
|
|
2507
|
+
def priority(self) -> Optional[_builtins.int]:
|
|
2508
|
+
"""
|
|
2509
|
+
The priority for this IP Restriction. Restrictions are enforced in priority order.
|
|
2510
|
+
"""
|
|
2511
|
+
return pulumi.get(self, "priority")
|
|
2512
|
+
|
|
2497
2513
|
|
|
2498
2514
|
@pulumi.output_type
|
|
2499
2515
|
class GetStandardSiteConfigScmIpRestrictionHeadersResult(dict):
|
|
@@ -56,7 +56,7 @@ class StandardArgs:
|
|
|
56
56
|
> **Note:** There are a number of application settings that will be managed for you by this resource type and *shouldn't* be configured separately as part of the app_settings you specify. `AzureWebJobsStorage` is filled based on `storage_account_name` and `storage_account_access_key`. `WEBSITE_CONTENTSHARE` is detailed below. `FUNCTIONS_EXTENSION_VERSION` is filled based on `version`. `APP_KIND` is set to workflowApp and `AzureFunctionsJobHost__extensionBundle__id` and `AzureFunctionsJobHost__extensionBundle__version` are set as detailed below.
|
|
57
57
|
:param pulumi.Input[_builtins.str] bundle_version: If `use_extension_bundle` is set to `true` this controls the allowed range for bundle versions. Defaults to `[1.*, 2.0.0)`.
|
|
58
58
|
:param pulumi.Input[_builtins.bool] client_affinity_enabled: Should the Logic App send session affinity cookies, which route client requests in the same session to the same instance?
|
|
59
|
-
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
59
|
+
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
60
60
|
:param pulumi.Input[Sequence[pulumi.Input['StandardConnectionStringArgs']]] connection_strings: A `connection_string` block as defined below.
|
|
61
61
|
:param pulumi.Input[_builtins.bool] enabled: Is the Logic App enabled? Defaults to `true`.
|
|
62
62
|
:param pulumi.Input[_builtins.bool] ftp_publish_basic_authentication_enabled: Whether the FTP basic authentication publishing profile is enabled. Defaults to `true`.
|
|
@@ -209,7 +209,7 @@ class StandardArgs:
|
|
|
209
209
|
@pulumi.getter(name="clientCertificateMode")
|
|
210
210
|
def client_certificate_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
211
211
|
"""
|
|
212
|
-
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
212
|
+
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
213
213
|
"""
|
|
214
214
|
return pulumi.get(self, "client_certificate_mode")
|
|
215
215
|
|
|
@@ -447,7 +447,7 @@ class _StandardState:
|
|
|
447
447
|
> **Note:** There are a number of application settings that will be managed for you by this resource type and *shouldn't* be configured separately as part of the app_settings you specify. `AzureWebJobsStorage` is filled based on `storage_account_name` and `storage_account_access_key`. `WEBSITE_CONTENTSHARE` is detailed below. `FUNCTIONS_EXTENSION_VERSION` is filled based on `version`. `APP_KIND` is set to workflowApp and `AzureFunctionsJobHost__extensionBundle__id` and `AzureFunctionsJobHost__extensionBundle__version` are set as detailed below.
|
|
448
448
|
:param pulumi.Input[_builtins.str] bundle_version: If `use_extension_bundle` is set to `true` this controls the allowed range for bundle versions. Defaults to `[1.*, 2.0.0)`.
|
|
449
449
|
:param pulumi.Input[_builtins.bool] client_affinity_enabled: Should the Logic App send session affinity cookies, which route client requests in the same session to the same instance?
|
|
450
|
-
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
450
|
+
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
451
451
|
:param pulumi.Input[Sequence[pulumi.Input['StandardConnectionStringArgs']]] connection_strings: A `connection_string` block as defined below.
|
|
452
452
|
:param pulumi.Input[_builtins.str] custom_domain_verification_id: An identifier used by App Service to perform domain ownership verification via DNS TXT record.
|
|
453
453
|
:param pulumi.Input[_builtins.str] default_hostname: The default hostname associated with the Logic App - such as `mysite.azurewebsites.net`.
|
|
@@ -589,7 +589,7 @@ class _StandardState:
|
|
|
589
589
|
@pulumi.getter(name="clientCertificateMode")
|
|
590
590
|
def client_certificate_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
591
591
|
"""
|
|
592
|
-
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
592
|
+
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
593
593
|
"""
|
|
594
594
|
return pulumi.get(self, "client_certificate_mode")
|
|
595
595
|
|
|
@@ -1029,7 +1029,7 @@ class Standard(pulumi.CustomResource):
|
|
|
1029
1029
|
> **Note:** There are a number of application settings that will be managed for you by this resource type and *shouldn't* be configured separately as part of the app_settings you specify. `AzureWebJobsStorage` is filled based on `storage_account_name` and `storage_account_access_key`. `WEBSITE_CONTENTSHARE` is detailed below. `FUNCTIONS_EXTENSION_VERSION` is filled based on `version`. `APP_KIND` is set to workflowApp and `AzureFunctionsJobHost__extensionBundle__id` and `AzureFunctionsJobHost__extensionBundle__version` are set as detailed below.
|
|
1030
1030
|
:param pulumi.Input[_builtins.str] bundle_version: If `use_extension_bundle` is set to `true` this controls the allowed range for bundle versions. Defaults to `[1.*, 2.0.0)`.
|
|
1031
1031
|
:param pulumi.Input[_builtins.bool] client_affinity_enabled: Should the Logic App send session affinity cookies, which route client requests in the same session to the same instance?
|
|
1032
|
-
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
1032
|
+
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
1033
1033
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StandardConnectionStringArgs', 'StandardConnectionStringArgsDict']]]] connection_strings: A `connection_string` block as defined below.
|
|
1034
1034
|
:param pulumi.Input[_builtins.bool] enabled: Is the Logic App enabled? Defaults to `true`.
|
|
1035
1035
|
:param pulumi.Input[_builtins.bool] ftp_publish_basic_authentication_enabled: Whether the FTP basic authentication publishing profile is enabled. Defaults to `true`.
|
|
@@ -1293,7 +1293,7 @@ class Standard(pulumi.CustomResource):
|
|
|
1293
1293
|
> **Note:** There are a number of application settings that will be managed for you by this resource type and *shouldn't* be configured separately as part of the app_settings you specify. `AzureWebJobsStorage` is filled based on `storage_account_name` and `storage_account_access_key`. `WEBSITE_CONTENTSHARE` is detailed below. `FUNCTIONS_EXTENSION_VERSION` is filled based on `version`. `APP_KIND` is set to workflowApp and `AzureFunctionsJobHost__extensionBundle__id` and `AzureFunctionsJobHost__extensionBundle__version` are set as detailed below.
|
|
1294
1294
|
:param pulumi.Input[_builtins.str] bundle_version: If `use_extension_bundle` is set to `true` this controls the allowed range for bundle versions. Defaults to `[1.*, 2.0.0)`.
|
|
1295
1295
|
:param pulumi.Input[_builtins.bool] client_affinity_enabled: Should the Logic App send session affinity cookies, which route client requests in the same session to the same instance?
|
|
1296
|
-
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
1296
|
+
:param pulumi.Input[_builtins.str] client_certificate_mode: The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
1297
1297
|
:param pulumi.Input[Sequence[pulumi.Input[Union['StandardConnectionStringArgs', 'StandardConnectionStringArgsDict']]]] connection_strings: A `connection_string` block as defined below.
|
|
1298
1298
|
:param pulumi.Input[_builtins.str] custom_domain_verification_id: An identifier used by App Service to perform domain ownership verification via DNS TXT record.
|
|
1299
1299
|
:param pulumi.Input[_builtins.str] default_hostname: The default hostname associated with the Logic App - such as `mysite.azurewebsites.net`.
|
|
@@ -1394,7 +1394,7 @@ class Standard(pulumi.CustomResource):
|
|
|
1394
1394
|
@pulumi.getter(name="clientCertificateMode")
|
|
1395
1395
|
def client_certificate_mode(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
1396
1396
|
"""
|
|
1397
|
-
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required` and `
|
|
1397
|
+
The mode of the Logic App's client certificates requirement for incoming requests. Possible values are `Required`, `Optional`, and `OptionalInteractiveUser`.
|
|
1398
1398
|
"""
|
|
1399
1399
|
return pulumi.get(self, "client_certificate_mode")
|
|
1400
1400
|
|