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
|
@@ -5000,6 +5000,8 @@ class AppServiceLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
5000
5000
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
5001
5001
|
:param _builtins.int retention_in_days: The number of days to retain logs for.
|
|
5002
5002
|
:param _builtins.str sas_url: The URL to the storage container with a shared access signature token appended.
|
|
5003
|
+
|
|
5004
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
5003
5005
|
"""
|
|
5004
5006
|
pulumi.set(__self__, "level", level)
|
|
5005
5007
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -5026,6 +5028,8 @@ class AppServiceLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
5026
5028
|
def sas_url(self) -> _builtins.str:
|
|
5027
5029
|
"""
|
|
5028
5030
|
The URL to the storage container with a shared access signature token appended.
|
|
5031
|
+
|
|
5032
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
5029
5033
|
"""
|
|
5030
5034
|
return pulumi.get(self, "sas_url")
|
|
5031
5035
|
|
|
@@ -5107,6 +5111,8 @@ class AppServiceLogsHttpLogsAzureBlobStorage(dict):
|
|
|
5107
5111
|
"""
|
|
5108
5112
|
:param _builtins.int retention_in_days: The number of days to retain logs for.
|
|
5109
5113
|
:param _builtins.str sas_url: The URL to the storage container with a shared access signature token appended.
|
|
5114
|
+
|
|
5115
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
5110
5116
|
"""
|
|
5111
5117
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
5112
5118
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -5124,6 +5130,8 @@ class AppServiceLogsHttpLogsAzureBlobStorage(dict):
|
|
|
5124
5130
|
def sas_url(self) -> _builtins.str:
|
|
5125
5131
|
"""
|
|
5126
5132
|
The URL to the storage container with a shared access signature token appended.
|
|
5133
|
+
|
|
5134
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
5127
5135
|
"""
|
|
5128
5136
|
return pulumi.get(self, "sas_url")
|
|
5129
5137
|
|
|
@@ -19665,6 +19673,8 @@ class LinuxWebAppLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
19665
19673
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
19666
19674
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
19667
19675
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
19676
|
+
|
|
19677
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
19668
19678
|
"""
|
|
19669
19679
|
pulumi.set(__self__, "level", level)
|
|
19670
19680
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -19691,6 +19701,8 @@ class LinuxWebAppLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
19691
19701
|
def sas_url(self) -> _builtins.str:
|
|
19692
19702
|
"""
|
|
19693
19703
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
19704
|
+
|
|
19705
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
19694
19706
|
"""
|
|
19695
19707
|
return pulumi.get(self, "sas_url")
|
|
19696
19708
|
|
|
@@ -19771,6 +19783,8 @@ class LinuxWebAppLogsHttpLogsAzureBlobStorage(dict):
|
|
|
19771
19783
|
retention_in_days: Optional[_builtins.int] = None):
|
|
19772
19784
|
"""
|
|
19773
19785
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
19786
|
+
|
|
19787
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
19774
19788
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
19775
19789
|
"""
|
|
19776
19790
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -19782,6 +19796,8 @@ class LinuxWebAppLogsHttpLogsAzureBlobStorage(dict):
|
|
|
19782
19796
|
def sas_url(self) -> _builtins.str:
|
|
19783
19797
|
"""
|
|
19784
19798
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
19799
|
+
|
|
19800
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
19785
19801
|
"""
|
|
19786
19802
|
return pulumi.get(self, "sas_url")
|
|
19787
19803
|
|
|
@@ -23925,6 +23941,8 @@ class LinuxWebAppSlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
23925
23941
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
23926
23942
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
23927
23943
|
:param _builtins.str sas_url: SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
23944
|
+
|
|
23945
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
23928
23946
|
"""
|
|
23929
23947
|
pulumi.set(__self__, "level", level)
|
|
23930
23948
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -23951,6 +23969,8 @@ class LinuxWebAppSlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
23951
23969
|
def sas_url(self) -> _builtins.str:
|
|
23952
23970
|
"""
|
|
23953
23971
|
SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
23972
|
+
|
|
23973
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
23954
23974
|
"""
|
|
23955
23975
|
return pulumi.get(self, "sas_url")
|
|
23956
23976
|
|
|
@@ -24031,6 +24051,8 @@ class LinuxWebAppSlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
24031
24051
|
retention_in_days: Optional[_builtins.int] = None):
|
|
24032
24052
|
"""
|
|
24033
24053
|
:param _builtins.str sas_url: SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
24054
|
+
|
|
24055
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
24034
24056
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
24035
24057
|
"""
|
|
24036
24058
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -24042,6 +24064,8 @@ class LinuxWebAppSlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
24042
24064
|
def sas_url(self) -> _builtins.str:
|
|
24043
24065
|
"""
|
|
24044
24066
|
SAS URL to an Azure blob container with read/write/list/delete permissions.
|
|
24067
|
+
|
|
24068
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
24045
24069
|
"""
|
|
24046
24070
|
return pulumi.get(self, "sas_url")
|
|
24047
24071
|
|
|
@@ -26777,7 +26801,9 @@ class SlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
26777
26801
|
"""
|
|
26778
26802
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
26779
26803
|
:param _builtins.int retention_in_days: The number of days to retain logs for.
|
|
26780
|
-
:param _builtins.str sas_url: The URL to the storage container, with a Service SAS token appended.
|
|
26804
|
+
:param _builtins.str sas_url: The URL to the storage container, with a Service SAS token appended.
|
|
26805
|
+
|
|
26806
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
26781
26807
|
"""
|
|
26782
26808
|
pulumi.set(__self__, "level", level)
|
|
26783
26809
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -26803,7 +26829,9 @@ class SlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
26803
26829
|
@pulumi.getter(name="sasUrl")
|
|
26804
26830
|
def sas_url(self) -> _builtins.str:
|
|
26805
26831
|
"""
|
|
26806
|
-
The URL to the storage container, with a Service SAS token appended.
|
|
26832
|
+
The URL to the storage container, with a Service SAS token appended.
|
|
26833
|
+
|
|
26834
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
26807
26835
|
"""
|
|
26808
26836
|
return pulumi.get(self, "sas_url")
|
|
26809
26837
|
|
|
@@ -26884,7 +26912,9 @@ class SlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
26884
26912
|
sas_url: _builtins.str):
|
|
26885
26913
|
"""
|
|
26886
26914
|
:param _builtins.int retention_in_days: The number of days to retain logs for.
|
|
26887
|
-
:param _builtins.str sas_url: The URL to the storage container, with a Service SAS token appended.
|
|
26915
|
+
:param _builtins.str sas_url: The URL to the storage container, with a Service SAS token appended.
|
|
26916
|
+
|
|
26917
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
26888
26918
|
"""
|
|
26889
26919
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
26890
26920
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -26901,7 +26931,9 @@ class SlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
26901
26931
|
@pulumi.getter(name="sasUrl")
|
|
26902
26932
|
def sas_url(self) -> _builtins.str:
|
|
26903
26933
|
"""
|
|
26904
|
-
The URL to the storage container, with a Service SAS token appended.
|
|
26934
|
+
The URL to the storage container, with a Service SAS token appended.
|
|
26935
|
+
|
|
26936
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
26905
26937
|
"""
|
|
26906
26938
|
return pulumi.get(self, "sas_url")
|
|
26907
26939
|
|
|
@@ -38348,6 +38380,8 @@ class WindowsWebAppLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
38348
38380
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
38349
38381
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
38350
38382
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
38383
|
+
|
|
38384
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
38351
38385
|
"""
|
|
38352
38386
|
pulumi.set(__self__, "level", level)
|
|
38353
38387
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -38374,6 +38408,8 @@ class WindowsWebAppLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
38374
38408
|
def sas_url(self) -> _builtins.str:
|
|
38375
38409
|
"""
|
|
38376
38410
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
38411
|
+
|
|
38412
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
38377
38413
|
"""
|
|
38378
38414
|
return pulumi.get(self, "sas_url")
|
|
38379
38415
|
|
|
@@ -38454,6 +38490,8 @@ class WindowsWebAppLogsHttpLogsAzureBlobStorage(dict):
|
|
|
38454
38490
|
retention_in_days: Optional[_builtins.int] = None):
|
|
38455
38491
|
"""
|
|
38456
38492
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
38493
|
+
|
|
38494
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
38457
38495
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
38458
38496
|
"""
|
|
38459
38497
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -38465,6 +38503,8 @@ class WindowsWebAppLogsHttpLogsAzureBlobStorage(dict):
|
|
|
38465
38503
|
def sas_url(self) -> _builtins.str:
|
|
38466
38504
|
"""
|
|
38467
38505
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
38506
|
+
|
|
38507
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
38468
38508
|
"""
|
|
38469
38509
|
return pulumi.get(self, "sas_url")
|
|
38470
38510
|
|
|
@@ -42927,6 +42967,8 @@ class WindowsWebAppSlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
42927
42967
|
:param _builtins.str level: The level at which to log. Possible values include `Error`, `Warning`, `Information`, `Verbose` and `Off`. **NOTE:** this field is not available for `http_logs`
|
|
42928
42968
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
42929
42969
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
42970
|
+
|
|
42971
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
42930
42972
|
"""
|
|
42931
42973
|
pulumi.set(__self__, "level", level)
|
|
42932
42974
|
pulumi.set(__self__, "retention_in_days", retention_in_days)
|
|
@@ -42953,6 +42995,8 @@ class WindowsWebAppSlotLogsApplicationLogsAzureBlobStorage(dict):
|
|
|
42953
42995
|
def sas_url(self) -> _builtins.str:
|
|
42954
42996
|
"""
|
|
42955
42997
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
42998
|
+
|
|
42999
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
42956
43000
|
"""
|
|
42957
43001
|
return pulumi.get(self, "sas_url")
|
|
42958
43002
|
|
|
@@ -43033,6 +43077,8 @@ class WindowsWebAppSlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
43033
43077
|
retention_in_days: Optional[_builtins.int] = None):
|
|
43034
43078
|
"""
|
|
43035
43079
|
:param _builtins.str sas_url: SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
43080
|
+
|
|
43081
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
43036
43082
|
:param _builtins.int retention_in_days: The time in days after which to remove blobs. A value of `0` means no retention.
|
|
43037
43083
|
"""
|
|
43038
43084
|
pulumi.set(__self__, "sas_url", sas_url)
|
|
@@ -43044,6 +43090,8 @@ class WindowsWebAppSlotLogsHttpLogsAzureBlobStorage(dict):
|
|
|
43044
43090
|
def sas_url(self) -> _builtins.str:
|
|
43045
43091
|
"""
|
|
43046
43092
|
SAS url to an Azure blob container with read/write/list/delete permissions.
|
|
43093
|
+
|
|
43094
|
+
> **Note:** There isn't enough information to for the provider to generate the `sas_url` from `data.azurerm_storage_account_sas` and it should be built by hand (i.e. `https://${azurerm_storage_account.example.name}.blob.core.windows.net/${azurerm_storage_container.example.name}${data.azurerm_storage_account_sas.example.sas}&sr=b`).
|
|
43047
43095
|
"""
|
|
43048
43096
|
return pulumi.get(self, "sas_url")
|
|
43049
43097
|
|
|
@@ -35,7 +35,7 @@ class ServicePlanArgs:
|
|
|
35
35
|
The set of arguments for constructing a ServicePlan resource.
|
|
36
36
|
:param pulumi.Input[_builtins.str] os_type: The O/S type for the App Services to be hosted in this plan. Possible values include `Windows`, `Linux`, and `WindowsContainer`. Changing this forces a new resource to be created.
|
|
37
37
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Service Plan should exist. Changing this forces a new Service Plan to be created.
|
|
38
|
-
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
38
|
+
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
39
39
|
|
|
40
40
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
41
41
|
|
|
@@ -50,7 +50,7 @@ class ServicePlanArgs:
|
|
|
50
50
|
:param pulumi.Input[_builtins.bool] premium_plan_auto_scale_enabled: Should automatic scaling be enabled for the Premium SKU Plan. Defaults to `false`. Cannot be set unless using a Premium SKU.
|
|
51
51
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the AppService.
|
|
52
52
|
:param pulumi.Input[_builtins.int] worker_count: The number of Workers (instances) to be allocated.
|
|
53
|
-
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
53
|
+
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
54
54
|
|
|
55
55
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
56
56
|
|
|
@@ -106,7 +106,7 @@ class ServicePlanArgs:
|
|
|
106
106
|
@pulumi.getter(name="skuName")
|
|
107
107
|
def sku_name(self) -> pulumi.Input[_builtins.str]:
|
|
108
108
|
"""
|
|
109
|
-
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
109
|
+
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
110
110
|
|
|
111
111
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
112
112
|
|
|
@@ -220,7 +220,7 @@ class ServicePlanArgs:
|
|
|
220
220
|
@pulumi.getter(name="zoneBalancingEnabled")
|
|
221
221
|
def zone_balancing_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
222
222
|
"""
|
|
223
|
-
Should the Service Plan balance across Availability Zones in the region.
|
|
223
|
+
Should the Service Plan balance across Availability Zones in the region.
|
|
224
224
|
|
|
225
225
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
226
226
|
|
|
@@ -264,14 +264,14 @@ class _ServicePlanState:
|
|
|
264
264
|
:param pulumi.Input[_builtins.bool] premium_plan_auto_scale_enabled: Should automatic scaling be enabled for the Premium SKU Plan. Defaults to `false`. Cannot be set unless using a Premium SKU.
|
|
265
265
|
:param pulumi.Input[_builtins.bool] reserved: Whether this is a reserved Service Plan Type. `true` if `os_type` is `Linux`, otherwise `false`.
|
|
266
266
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Service Plan should exist. Changing this forces a new Service Plan to be created.
|
|
267
|
-
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
267
|
+
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
268
268
|
|
|
269
269
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
270
270
|
|
|
271
271
|
> **Note:** Elastic and Consumption SKUs (`Y1`, `FC1`, `EP1`, `EP2`, and `EP3`) are for use with Function Apps.
|
|
272
272
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the AppService.
|
|
273
273
|
:param pulumi.Input[_builtins.int] worker_count: The number of Workers (instances) to be allocated.
|
|
274
|
-
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
274
|
+
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
275
275
|
|
|
276
276
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
277
277
|
|
|
@@ -432,7 +432,7 @@ class _ServicePlanState:
|
|
|
432
432
|
@pulumi.getter(name="skuName")
|
|
433
433
|
def sku_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
434
434
|
"""
|
|
435
|
-
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
435
|
+
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
436
436
|
|
|
437
437
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
438
438
|
|
|
@@ -472,7 +472,7 @@ class _ServicePlanState:
|
|
|
472
472
|
@pulumi.getter(name="zoneBalancingEnabled")
|
|
473
473
|
def zone_balancing_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
474
474
|
"""
|
|
475
|
-
Should the Service Plan balance across Availability Zones in the region.
|
|
475
|
+
Should the Service Plan balance across Availability Zones in the region.
|
|
476
476
|
|
|
477
477
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
478
478
|
|
|
@@ -551,14 +551,14 @@ class ServicePlan(pulumi.CustomResource):
|
|
|
551
551
|
:param pulumi.Input[_builtins.bool] per_site_scaling_enabled: Should Per Site Scaling be enabled. Defaults to `false`.
|
|
552
552
|
:param pulumi.Input[_builtins.bool] premium_plan_auto_scale_enabled: Should automatic scaling be enabled for the Premium SKU Plan. Defaults to `false`. Cannot be set unless using a Premium SKU.
|
|
553
553
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Service Plan should exist. Changing this forces a new Service Plan to be created.
|
|
554
|
-
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
554
|
+
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
555
555
|
|
|
556
556
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
557
557
|
|
|
558
558
|
> **Note:** Elastic and Consumption SKUs (`Y1`, `FC1`, `EP1`, `EP2`, and `EP3`) are for use with Function Apps.
|
|
559
559
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the AppService.
|
|
560
560
|
:param pulumi.Input[_builtins.int] worker_count: The number of Workers (instances) to be allocated.
|
|
561
|
-
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
561
|
+
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
562
562
|
|
|
563
563
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
564
564
|
|
|
@@ -704,14 +704,14 @@ class ServicePlan(pulumi.CustomResource):
|
|
|
704
704
|
:param pulumi.Input[_builtins.bool] premium_plan_auto_scale_enabled: Should automatic scaling be enabled for the Premium SKU Plan. Defaults to `false`. Cannot be set unless using a Premium SKU.
|
|
705
705
|
:param pulumi.Input[_builtins.bool] reserved: Whether this is a reserved Service Plan Type. `true` if `os_type` is `Linux`, otherwise `false`.
|
|
706
706
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the Resource Group where the Service Plan should exist. Changing this forces a new Service Plan to be created.
|
|
707
|
-
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
707
|
+
:param pulumi.Input[_builtins.str] sku_name: The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
708
708
|
|
|
709
709
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
710
710
|
|
|
711
711
|
> **Note:** Elastic and Consumption SKUs (`Y1`, `FC1`, `EP1`, `EP2`, and `EP3`) are for use with Function Apps.
|
|
712
712
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the AppService.
|
|
713
713
|
:param pulumi.Input[_builtins.int] worker_count: The number of Workers (instances) to be allocated.
|
|
714
|
-
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
714
|
+
:param pulumi.Input[_builtins.bool] zone_balancing_enabled: Should the Service Plan balance across Availability Zones in the region.
|
|
715
715
|
|
|
716
716
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
717
717
|
|
|
@@ -823,7 +823,7 @@ class ServicePlan(pulumi.CustomResource):
|
|
|
823
823
|
@pulumi.getter(name="skuName")
|
|
824
824
|
def sku_name(self) -> pulumi.Output[_builtins.str]:
|
|
825
825
|
"""
|
|
826
|
-
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
826
|
+
The SKU for the plan. Possible values include `B1`, `B2`, `B3`, `D1`, `F1`, `I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`, `I4v2`, `I4mv2`, `I5v2`, `I5mv2`, `I6v2`, `P1v2`, `P2v2`, `P3v2`, `P0v3`, `P1v3`, `P2v3`, `P3v3`, `P1mv3`, `P2mv3`, `P3mv3`, `P4mv3`, `P5mv3`, `P0v4`, `P1v4`, `P2v4`, `P3v4`, `P1mv4`, `P2mv4`, `P3mv4`, `P4mv4`, `P5mv4`, `S1`, `S2`, `S3`, `SHARED`, `EP1`, `EP2`, `EP3`, `FC1`, `WS1`, `WS2`, `WS3`, and `Y1`.
|
|
827
827
|
|
|
828
828
|
> **Note:** Isolated SKUs (`I1`, `I2`, `I3`, `I1v2`, `I1mv2`, `I2v2`, `I2mv2`, `I3v2`, `I3mv2`) can only be used with App Service Environments
|
|
829
829
|
|
|
@@ -851,7 +851,7 @@ class ServicePlan(pulumi.CustomResource):
|
|
|
851
851
|
@pulumi.getter(name="zoneBalancingEnabled")
|
|
852
852
|
def zone_balancing_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
853
853
|
"""
|
|
854
|
-
Should the Service Plan balance across Availability Zones in the region.
|
|
854
|
+
Should the Service Plan balance across Availability Zones in the region.
|
|
855
855
|
|
|
856
856
|
> **Note:** If this setting is set to `true` and the `worker_count` value is specified, it should be set to a multiple of the number of availability zones in the region. Please see the Azure documentation for the number of Availability Zones in your region.
|
|
857
857
|
|
|
@@ -361,7 +361,7 @@ class AccountCostManagementExport(pulumi.CustomResource):
|
|
|
361
361
|
recurrence_period_end_date="2020-09-18T00:00:00Z",
|
|
362
362
|
file_format="Csv",
|
|
363
363
|
export_data_storage_location={
|
|
364
|
-
"container_id": example_container.
|
|
364
|
+
"container_id": example_container.id,
|
|
365
365
|
"root_folder_path": "/root/updated",
|
|
366
366
|
},
|
|
367
367
|
export_data_options={
|
|
@@ -433,7 +433,7 @@ class AccountCostManagementExport(pulumi.CustomResource):
|
|
|
433
433
|
recurrence_period_end_date="2020-09-18T00:00:00Z",
|
|
434
434
|
file_format="Csv",
|
|
435
435
|
export_data_storage_location={
|
|
436
|
-
"container_id": example_container.
|
|
436
|
+
"container_id": example_container.id,
|
|
437
437
|
"root_folder_path": "/root/updated",
|
|
438
438
|
},
|
|
439
439
|
export_data_options={
|