pulumi-azure 6.27.0a1758868424__py3-none-any.whl → 6.27.0a1759511969__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure might be problematic. Click here for more details.
- pulumi_azure/__init__.py +32 -0
- pulumi_azure/apimanagement/backend.py +2 -2
- pulumi_azure/appservice/_inputs.py +78 -6
- pulumi_azure/appservice/app_flex_consumption.py +61 -0
- pulumi_azure/appservice/outputs.py +52 -4
- pulumi_azure/appservice/service_plan.py +14 -14
- pulumi_azure/billing/account_cost_management_export.py +2 -2
- pulumi_azure/cdn/_inputs.py +57 -95
- pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
- pulumi_azure/cdn/frontdoor_profile.py +87 -2
- pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
- pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
- pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
- pulumi_azure/cdn/outputs.py +79 -21
- pulumi_azure/cognitive/account.py +7 -7
- pulumi_azure/compute/__init__.py +1 -0
- pulumi_azure/compute/_inputs.py +79 -47
- pulumi_azure/compute/get_managed_disks.py +140 -0
- pulumi_azure/compute/linux_virtual_machine.py +97 -23
- pulumi_azure/compute/outputs.py +362 -34
- pulumi_azure/compute/windows_virtual_machine.py +172 -42
- pulumi_azure/containerservice/_inputs.py +209 -17
- pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
- pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
- pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
- pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
- pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
- pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
- pulumi_azure/containerservice/outputs.py +173 -11
- pulumi_azure/core/_inputs.py +0 -54
- pulumi_azure/core/outputs.py +0 -36
- pulumi_azure/core/resource_group_cost_management_export.py +2 -2
- pulumi_azure/core/resource_group_policy_assignment.py +7 -7
- pulumi_azure/core/resource_policy_assignment.py +7 -7
- pulumi_azure/core/subscription_cost_management_export.py +2 -2
- pulumi_azure/core/subscription_policy_assignment.py +7 -7
- pulumi_azure/datafactory/__init__.py +1 -0
- pulumi_azure/datafactory/customer_managed_key.py +439 -0
- pulumi_azure/datafactory/factory.py +2 -2
- pulumi_azure/dataprotection/_inputs.py +36 -6
- pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
- pulumi_azure/dataprotection/outputs.py +24 -4
- pulumi_azure/devcenter/get_project_pool.py +15 -1
- pulumi_azure/devcenter/project_pool.py +47 -0
- pulumi_azure/eventgrid/domain.py +2 -2
- pulumi_azure/eventgrid/domain_topic.py +2 -2
- pulumi_azure/eventgrid/event_subscription.py +2 -2
- pulumi_azure/eventgrid/get_domain.py +2 -2
- pulumi_azure/eventgrid/get_domain_topic.py +2 -2
- pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
- pulumi_azure/eventgrid/get_partner_registration.py +2 -2
- pulumi_azure/eventgrid/get_system_topic.py +28 -6
- pulumi_azure/eventgrid/get_topic.py +2 -2
- pulumi_azure/eventgrid/partner_configuration.py +2 -2
- pulumi_azure/eventgrid/partner_namespace.py +2 -2
- pulumi_azure/eventgrid/partner_registration.py +2 -2
- pulumi_azure/eventgrid/system_topic.py +97 -35
- pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
- pulumi_azure/eventgrid/topic.py +2 -2
- pulumi_azure/eventhub/domain.py +2 -2
- pulumi_azure/eventhub/event_grid_topic.py +2 -2
- pulumi_azure/eventhub/event_subscription.py +2 -2
- pulumi_azure/hpc/cache_blob_target.py +2 -2
- pulumi_azure/iot/_inputs.py +27 -1
- pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
- pulumi_azure/iot/endpoint_eventhub.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
- pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
- pulumi_azure/iot/endpoint_storage_container.py +64 -3
- pulumi_azure/iot/outputs.py +19 -1
- pulumi_azure/keyvault/_inputs.py +3 -17
- pulumi_azure/keyvault/get_key_vault.py +13 -1
- pulumi_azure/keyvault/key_vault.py +78 -35
- pulumi_azure/keyvault/outputs.py +2 -10
- pulumi_azure/kusto/_inputs.py +16 -6
- pulumi_azure/kusto/cluster.py +95 -66
- pulumi_azure/kusto/outputs.py +10 -4
- pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
- pulumi_azure/lb/get_lb_rule.py +28 -4
- pulumi_azure/lb/load_balancer.py +94 -0
- pulumi_azure/lb/nat_rule.py +115 -29
- pulumi_azure/lb/outbound_rule.py +60 -17
- pulumi_azure/lb/rule.py +116 -30
- pulumi_azure/loadtest/_inputs.py +6 -3
- pulumi_azure/loadtest/load_test.py +0 -4
- pulumi_azure/loadtest/outputs.py +4 -2
- pulumi_azure/logicapps/_inputs.py +46 -987
- pulumi_azure/logicapps/get_standard.py +0 -7
- pulumi_azure/logicapps/outputs.py +117 -101
- pulumi_azure/logicapps/standard.py +7 -7
- pulumi_azure/machinelearning/_inputs.py +24 -4
- pulumi_azure/machinelearning/compute_instance.py +35 -7
- pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
- pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
- pulumi_azure/machinelearning/inference_cluster.py +2 -2
- pulumi_azure/machinelearning/outputs.py +17 -3
- pulumi_azure/machinelearning/workspace.py +61 -0
- pulumi_azure/management/_inputs.py +0 -18
- pulumi_azure/management/group_policy_assignment.py +7 -7
- pulumi_azure/management/outputs.py +0 -12
- pulumi_azure/management/private_link_association.py +0 -70
- pulumi_azure/mobile/_inputs.py +14 -6
- pulumi_azure/mobile/network_sim.py +2 -6
- pulumi_azure/mobile/network_sim_policy.py +2 -6
- pulumi_azure/mobile/network_slice.py +116 -31
- pulumi_azure/mobile/outputs.py +6 -4
- pulumi_azure/monitoring/_inputs.py +15 -9
- pulumi_azure/monitoring/activity_log_alert.py +7 -7
- pulumi_azure/monitoring/outputs.py +10 -6
- pulumi_azure/mssql/job_step.py +11 -11
- pulumi_azure/mysql/_inputs.py +20 -0
- pulumi_azure/mysql/outputs.py +14 -0
- pulumi_azure/netapp/_inputs.py +18 -6
- pulumi_azure/netapp/account.py +2 -2
- pulumi_azure/netapp/account_encryption.py +132 -4
- pulumi_azure/netapp/backup_policy.py +2 -2
- pulumi_azure/netapp/backup_vault.py +2 -2
- pulumi_azure/netapp/get_account.py +2 -2
- pulumi_azure/netapp/get_account_encryption.py +25 -3
- pulumi_azure/netapp/get_backup_policy.py +2 -2
- pulumi_azure/netapp/get_backup_vault.py +2 -2
- pulumi_azure/netapp/get_pool.py +17 -3
- pulumi_azure/netapp/get_snapshot.py +2 -2
- pulumi_azure/netapp/get_snapshot_policy.py +2 -2
- pulumi_azure/netapp/get_volume.py +17 -3
- pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
- pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
- pulumi_azure/netapp/outputs.py +12 -4
- pulumi_azure/netapp/pool.py +104 -9
- pulumi_azure/netapp/snapshot.py +2 -2
- pulumi_azure/netapp/snapshot_policy.py +2 -2
- pulumi_azure/netapp/volume.py +82 -7
- pulumi_azure/netapp/volume_group_oracle.py +2 -2
- pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
- pulumi_azure/netapp/volume_quota_rule.py +2 -2
- pulumi_azure/network/__init__.py +2 -0
- pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
- pulumi_azure/network/network_manager_routing_configuration.py +7 -7
- pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
- pulumi_azure/network/subnet.py +76 -1
- pulumi_azure/oracle/__init__.py +3 -0
- pulumi_azure/oracle/autonomous_database_backup.py +310 -0
- pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
- pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
- pulumi_azure/oracle/outputs.py +191 -0
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
- pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
- pulumi_azure/policy/_inputs.py +6 -0
- pulumi_azure/policy/outputs.py +4 -0
- pulumi_azure/postgresql/flexible_server.py +7 -7
- pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/search/service.py +7 -7
- pulumi_azure/sentinel/_inputs.py +144 -0
- pulumi_azure/sentinel/authomation_rule.py +47 -0
- pulumi_azure/sentinel/automation_rule.py +47 -0
- pulumi_azure/sentinel/outputs.py +84 -0
- pulumi_azure/storage/_inputs.py +3 -3
- pulumi_azure/storage/container_immutability_policy.py +2 -2
- pulumi_azure/storage/get_queue.py +59 -8
- pulumi_azure/storage/outputs.py +2 -2
- pulumi_azure/storage/queue.py +159 -27
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
|
@@ -152,7 +152,7 @@ def get_volume_group_oracle(account_name: Optional[_builtins.str] = None,
|
|
|
152
152
|
<!-- This section is generated, changes will be overwritten -->
|
|
153
153
|
This data source uses the following Azure API Providers:
|
|
154
154
|
|
|
155
|
-
* `Microsoft.NetApp` - 2025-
|
|
155
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
:param _builtins.str account_name: Name of the account where the application volume group belong to.
|
|
@@ -199,7 +199,7 @@ def get_volume_group_oracle_output(account_name: Optional[pulumi.Input[_builtins
|
|
|
199
199
|
<!-- This section is generated, changes will be overwritten -->
|
|
200
200
|
This data source uses the following Azure API Providers:
|
|
201
201
|
|
|
202
|
-
* `Microsoft.NetApp` - 2025-
|
|
202
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
203
203
|
|
|
204
204
|
|
|
205
205
|
:param _builtins.str account_name: Name of the account where the application volume group belong to.
|
|
@@ -152,7 +152,7 @@ def get_volume_group_sap_hana(account_name: Optional[_builtins.str] = None,
|
|
|
152
152
|
<!-- This section is generated, changes will be overwritten -->
|
|
153
153
|
This data source uses the following Azure API Providers:
|
|
154
154
|
|
|
155
|
-
* `Microsoft.NetApp` - 2025-
|
|
155
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
156
156
|
|
|
157
157
|
|
|
158
158
|
:param _builtins.str account_name: Name of the account where the application volume group belong to.
|
|
@@ -199,7 +199,7 @@ def get_volume_group_sap_hana_output(account_name: Optional[pulumi.Input[_builti
|
|
|
199
199
|
<!-- This section is generated, changes will be overwritten -->
|
|
200
200
|
This data source uses the following Azure API Providers:
|
|
201
201
|
|
|
202
|
-
* `Microsoft.NetApp` - 2025-
|
|
202
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
203
203
|
|
|
204
204
|
|
|
205
205
|
:param _builtins.str account_name: Name of the account where the application volume group belong to.
|
|
@@ -137,7 +137,7 @@ def get_volume_quota_rule(name: Optional[_builtins.str] = None,
|
|
|
137
137
|
<!-- This section is generated, changes will be overwritten -->
|
|
138
138
|
This data source uses the following Azure API Providers:
|
|
139
139
|
|
|
140
|
-
* `Microsoft.NetApp` - 2025-
|
|
140
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
141
141
|
|
|
142
142
|
|
|
143
143
|
:param _builtins.str name: The name of this Volume Quota Rule.
|
|
@@ -179,7 +179,7 @@ def get_volume_quota_rule_output(name: Optional[pulumi.Input[_builtins.str]] = N
|
|
|
179
179
|
<!-- This section is generated, changes will be overwritten -->
|
|
180
180
|
This data source uses the following Azure API Providers:
|
|
181
181
|
|
|
182
|
-
* `Microsoft.NetApp` - 2025-
|
|
182
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param _builtins.str name: The name of this Volume Quota Rule.
|
pulumi_azure/netapp/outputs.py
CHANGED
|
@@ -1101,7 +1101,9 @@ class VolumeGroupOracleVolume(dict):
|
|
|
1101
1101
|
:param _builtins.str capacity_pool_id: The ID of the Capacity Pool. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1102
1102
|
:param Sequence['VolumeGroupOracleVolumeExportPolicyRuleArgs'] export_policy_rules: One or more `export_policy_rule` blocks as defined below.
|
|
1103
1103
|
:param _builtins.str name: The name which should be used for this volume. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1104
|
-
:param _builtins.str protocols: The target volume protocol expressed as a list.
|
|
1104
|
+
:param _builtins.str protocols: The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`.
|
|
1105
|
+
|
|
1106
|
+
> **Note:** When converting protocols between NFSv3 and NFSv4.1, ensure that export policy rules are updated accordingly to avoid configuration drift. Update the `nfsv3_enabled` and `nfsv41_enabled` flags to match the new protocol.
|
|
1105
1107
|
:param _builtins.str security_style: Volume security style. Possible values are `ntfs` and `unix`. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1106
1108
|
:param _builtins.str service_level: Volume security style. Possible values are `Premium`, `Standard` and `Ultra`. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1107
1109
|
:param _builtins.bool snapshot_directory_visible: Specifies whether the .snapshot (NFS clients) path of a volume is visible. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
@@ -1183,7 +1185,9 @@ class VolumeGroupOracleVolume(dict):
|
|
|
1183
1185
|
@pulumi.getter
|
|
1184
1186
|
def protocols(self) -> _builtins.str:
|
|
1185
1187
|
"""
|
|
1186
|
-
The target volume protocol expressed as a list.
|
|
1188
|
+
The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`.
|
|
1189
|
+
|
|
1190
|
+
> **Note:** When converting protocols between NFSv3 and NFSv4.1, ensure that export policy rules are updated accordingly to avoid configuration drift. Update the `nfsv3_enabled` and `nfsv41_enabled` flags to match the new protocol.
|
|
1187
1191
|
"""
|
|
1188
1192
|
return pulumi.get(self, "protocols")
|
|
1189
1193
|
|
|
@@ -1625,7 +1629,9 @@ class VolumeGroupSapHanaVolume(dict):
|
|
|
1625
1629
|
:param _builtins.str capacity_pool_id: The ID of the Capacity Pool. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1626
1630
|
:param Sequence['VolumeGroupSapHanaVolumeExportPolicyRuleArgs'] export_policy_rules: One or more `export_policy_rule` blocks as defined below.
|
|
1627
1631
|
:param _builtins.str name: The name which should be used for this volume. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1628
|
-
:param _builtins.str protocols: The target volume protocol expressed as a list.
|
|
1632
|
+
:param _builtins.str protocols: The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`, multi-protocol is not supported. Please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
|
|
1633
|
+
|
|
1634
|
+
> **Note:** NFSv3 protocol is only supported for backup volumes (`data-backup`, `log-backup`) in SAP HANA volume groups. Critical volumes (`data`, `log`, `shared`) must use NFSv4.1. When converting protocols on backup volumes, ensure export policy rules are updated accordingly to avoid configuration drift.
|
|
1629
1635
|
:param _builtins.str security_style: Volume security style. Possible values are `ntfs` and `unix`. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1630
1636
|
:param _builtins.str service_level: Volume security style. Possible values are `Premium`, `Standard` and `Ultra`. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
1631
1637
|
:param _builtins.bool snapshot_directory_visible: Specifies whether the .snapshot (NFS clients) path of a volume is visible. Changing this forces a new Application Volume Group to be created and data will be lost.
|
|
@@ -1693,7 +1699,9 @@ class VolumeGroupSapHanaVolume(dict):
|
|
|
1693
1699
|
@pulumi.getter
|
|
1694
1700
|
def protocols(self) -> _builtins.str:
|
|
1695
1701
|
"""
|
|
1696
|
-
The target volume protocol expressed as a list.
|
|
1702
|
+
The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`, multi-protocol is not supported. Please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
|
|
1703
|
+
|
|
1704
|
+
> **Note:** NFSv3 protocol is only supported for backup volumes (`data-backup`, `log-backup`) in SAP HANA volume groups. Critical volumes (`data`, `log`, `shared`) must use NFSv4.1. When converting protocols on backup volumes, ensure export policy rules are updated accordingly to avoid configuration drift.
|
|
1697
1705
|
"""
|
|
1698
1706
|
return pulumi.get(self, "protocols")
|
|
1699
1707
|
|
pulumi_azure/netapp/pool.py
CHANGED
|
@@ -24,6 +24,7 @@ class PoolArgs:
|
|
|
24
24
|
service_level: pulumi.Input[_builtins.str],
|
|
25
25
|
size_in_tb: pulumi.Input[_builtins.int],
|
|
26
26
|
cool_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
27
|
+
custom_throughput_mibps: Optional[pulumi.Input[_builtins.int]] = None,
|
|
27
28
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
29
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -33,7 +34,7 @@ class PoolArgs:
|
|
|
33
34
|
The set of arguments for constructing a Pool resource.
|
|
34
35
|
:param pulumi.Input[_builtins.str] account_name: The name of the NetApp account in which the NetApp Pool should be created. Changing this forces a new resource to be created.
|
|
35
36
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
|
|
36
|
-
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
37
|
+
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
37
38
|
:param pulumi.Input[_builtins.int] size_in_tb: Provisioned size of the pool in TB. Value must be between `1` and `2048`.
|
|
38
39
|
|
|
39
40
|
> **Note:** `2` TB capacity pool sizing is currently in preview. You can only take advantage of the `2` TB minimum if all the volumes in the capacity pool are using `Standard` network features. If any volume is using `Basic` network features, the minimum size is `4` TB. Please see the product [documentation](https://learn.microsoft.com/azure/azure-netapp-files/azure-netapp-files-set-up-capacity-pool) for more information.
|
|
@@ -42,6 +43,7 @@ class PoolArgs:
|
|
|
42
43
|
:param pulumi.Input[_builtins.bool] cool_access_enabled: Whether the NetApp Pool can hold cool access enabled volumes. Defaults to `false`.
|
|
43
44
|
|
|
44
45
|
> **Note:** Disabling `cool_access_enabled` is not allowed and forces a new resource to be created.
|
|
46
|
+
:param pulumi.Input[_builtins.int] custom_throughput_mibps: The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
45
47
|
:param pulumi.Input[_builtins.str] encryption_type: The encryption type of the pool. Valid values include `Single`, and `Double`. Defaults to `Single`. Changing this forces a new resource to be created.
|
|
46
48
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
47
49
|
:param pulumi.Input[_builtins.str] name: The name of the NetApp Pool. Changing this forces a new resource to be created.
|
|
@@ -54,6 +56,8 @@ class PoolArgs:
|
|
|
54
56
|
pulumi.set(__self__, "size_in_tb", size_in_tb)
|
|
55
57
|
if cool_access_enabled is not None:
|
|
56
58
|
pulumi.set(__self__, "cool_access_enabled", cool_access_enabled)
|
|
59
|
+
if custom_throughput_mibps is not None:
|
|
60
|
+
pulumi.set(__self__, "custom_throughput_mibps", custom_throughput_mibps)
|
|
57
61
|
if encryption_type is not None:
|
|
58
62
|
pulumi.set(__self__, "encryption_type", encryption_type)
|
|
59
63
|
if location is not None:
|
|
@@ -93,7 +97,7 @@ class PoolArgs:
|
|
|
93
97
|
@pulumi.getter(name="serviceLevel")
|
|
94
98
|
def service_level(self) -> pulumi.Input[_builtins.str]:
|
|
95
99
|
"""
|
|
96
|
-
The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
100
|
+
The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
97
101
|
"""
|
|
98
102
|
return pulumi.get(self, "service_level")
|
|
99
103
|
|
|
@@ -131,6 +135,18 @@ class PoolArgs:
|
|
|
131
135
|
def cool_access_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
132
136
|
pulumi.set(self, "cool_access_enabled", value)
|
|
133
137
|
|
|
138
|
+
@_builtins.property
|
|
139
|
+
@pulumi.getter(name="customThroughputMibps")
|
|
140
|
+
def custom_throughput_mibps(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
141
|
+
"""
|
|
142
|
+
The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "custom_throughput_mibps")
|
|
145
|
+
|
|
146
|
+
@custom_throughput_mibps.setter
|
|
147
|
+
def custom_throughput_mibps(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
148
|
+
pulumi.set(self, "custom_throughput_mibps", value)
|
|
149
|
+
|
|
134
150
|
@_builtins.property
|
|
135
151
|
@pulumi.getter(name="encryptionType")
|
|
136
152
|
def encryption_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -197,6 +213,7 @@ class _PoolState:
|
|
|
197
213
|
def __init__(__self__, *,
|
|
198
214
|
account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
199
215
|
cool_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
216
|
+
custom_throughput_mibps: Optional[pulumi.Input[_builtins.int]] = None,
|
|
200
217
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
201
218
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
202
219
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -211,12 +228,13 @@ class _PoolState:
|
|
|
211
228
|
:param pulumi.Input[_builtins.bool] cool_access_enabled: Whether the NetApp Pool can hold cool access enabled volumes. Defaults to `false`.
|
|
212
229
|
|
|
213
230
|
> **Note:** Disabling `cool_access_enabled` is not allowed and forces a new resource to be created.
|
|
231
|
+
:param pulumi.Input[_builtins.int] custom_throughput_mibps: The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
214
232
|
:param pulumi.Input[_builtins.str] encryption_type: The encryption type of the pool. Valid values include `Single`, and `Double`. Defaults to `Single`. Changing this forces a new resource to be created.
|
|
215
233
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
216
234
|
:param pulumi.Input[_builtins.str] name: The name of the NetApp Pool. Changing this forces a new resource to be created.
|
|
217
235
|
:param pulumi.Input[_builtins.str] qos_type: QoS Type of the pool. Valid values include `Auto` or `Manual`. Defaults to `Auto`.
|
|
218
236
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
|
|
219
|
-
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
237
|
+
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
220
238
|
:param pulumi.Input[_builtins.int] size_in_tb: Provisioned size of the pool in TB. Value must be between `1` and `2048`.
|
|
221
239
|
|
|
222
240
|
> **Note:** `2` TB capacity pool sizing is currently in preview. You can only take advantage of the `2` TB minimum if all the volumes in the capacity pool are using `Standard` network features. If any volume is using `Basic` network features, the minimum size is `4` TB. Please see the product [documentation](https://learn.microsoft.com/azure/azure-netapp-files/azure-netapp-files-set-up-capacity-pool) for more information.
|
|
@@ -228,6 +246,8 @@ class _PoolState:
|
|
|
228
246
|
pulumi.set(__self__, "account_name", account_name)
|
|
229
247
|
if cool_access_enabled is not None:
|
|
230
248
|
pulumi.set(__self__, "cool_access_enabled", cool_access_enabled)
|
|
249
|
+
if custom_throughput_mibps is not None:
|
|
250
|
+
pulumi.set(__self__, "custom_throughput_mibps", custom_throughput_mibps)
|
|
231
251
|
if encryption_type is not None:
|
|
232
252
|
pulumi.set(__self__, "encryption_type", encryption_type)
|
|
233
253
|
if location is not None:
|
|
@@ -271,6 +291,18 @@ class _PoolState:
|
|
|
271
291
|
def cool_access_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
272
292
|
pulumi.set(self, "cool_access_enabled", value)
|
|
273
293
|
|
|
294
|
+
@_builtins.property
|
|
295
|
+
@pulumi.getter(name="customThroughputMibps")
|
|
296
|
+
def custom_throughput_mibps(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
297
|
+
"""
|
|
298
|
+
The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "custom_throughput_mibps")
|
|
301
|
+
|
|
302
|
+
@custom_throughput_mibps.setter
|
|
303
|
+
def custom_throughput_mibps(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
304
|
+
pulumi.set(self, "custom_throughput_mibps", value)
|
|
305
|
+
|
|
274
306
|
@_builtins.property
|
|
275
307
|
@pulumi.getter(name="encryptionType")
|
|
276
308
|
def encryption_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -335,7 +367,7 @@ class _PoolState:
|
|
|
335
367
|
@pulumi.getter(name="serviceLevel")
|
|
336
368
|
def service_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
337
369
|
"""
|
|
338
|
-
The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
370
|
+
The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
339
371
|
"""
|
|
340
372
|
return pulumi.get(self, "service_level")
|
|
341
373
|
|
|
@@ -380,6 +412,7 @@ class Pool(pulumi.CustomResource):
|
|
|
380
412
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
381
413
|
account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
382
414
|
cool_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
415
|
+
custom_throughput_mibps: Optional[pulumi.Input[_builtins.int]] = None,
|
|
383
416
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
384
417
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
385
418
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -414,12 +447,36 @@ class Pool(pulumi.CustomResource):
|
|
|
414
447
|
size_in_tb=4)
|
|
415
448
|
```
|
|
416
449
|
|
|
450
|
+
## NetApp Pool with Flexible Service Level Usage
|
|
451
|
+
|
|
452
|
+
```python
|
|
453
|
+
import pulumi
|
|
454
|
+
import pulumi_azure as azure
|
|
455
|
+
|
|
456
|
+
example = azure.core.ResourceGroup("example",
|
|
457
|
+
name="example-resources",
|
|
458
|
+
location="West Europe")
|
|
459
|
+
example_account = azure.netapp.Account("example",
|
|
460
|
+
name="example-netappaccount",
|
|
461
|
+
location=example.location,
|
|
462
|
+
resource_group_name=example.name)
|
|
463
|
+
example_pool = azure.netapp.Pool("example",
|
|
464
|
+
name="example-netapppool",
|
|
465
|
+
account_name=example_account.name,
|
|
466
|
+
location=example.location,
|
|
467
|
+
resource_group_name=example.name,
|
|
468
|
+
service_level="Flexible",
|
|
469
|
+
size_in_tb=4,
|
|
470
|
+
qos_type="Manual",
|
|
471
|
+
custom_throughput_mibps=256)
|
|
472
|
+
```
|
|
473
|
+
|
|
417
474
|
## API Providers
|
|
418
475
|
|
|
419
476
|
<!-- This section is generated, changes will be overwritten -->
|
|
420
477
|
This resource uses the following Azure API Providers:
|
|
421
478
|
|
|
422
|
-
* `Microsoft.NetApp` - 2025-
|
|
479
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
423
480
|
|
|
424
481
|
## Import
|
|
425
482
|
|
|
@@ -435,12 +492,13 @@ class Pool(pulumi.CustomResource):
|
|
|
435
492
|
:param pulumi.Input[_builtins.bool] cool_access_enabled: Whether the NetApp Pool can hold cool access enabled volumes. Defaults to `false`.
|
|
436
493
|
|
|
437
494
|
> **Note:** Disabling `cool_access_enabled` is not allowed and forces a new resource to be created.
|
|
495
|
+
:param pulumi.Input[_builtins.int] custom_throughput_mibps: The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
438
496
|
:param pulumi.Input[_builtins.str] encryption_type: The encryption type of the pool. Valid values include `Single`, and `Double`. Defaults to `Single`. Changing this forces a new resource to be created.
|
|
439
497
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
440
498
|
:param pulumi.Input[_builtins.str] name: The name of the NetApp Pool. Changing this forces a new resource to be created.
|
|
441
499
|
:param pulumi.Input[_builtins.str] qos_type: QoS Type of the pool. Valid values include `Auto` or `Manual`. Defaults to `Auto`.
|
|
442
500
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
|
|
443
|
-
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
501
|
+
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
444
502
|
:param pulumi.Input[_builtins.int] size_in_tb: Provisioned size of the pool in TB. Value must be between `1` and `2048`.
|
|
445
503
|
|
|
446
504
|
> **Note:** `2` TB capacity pool sizing is currently in preview. You can only take advantage of the `2` TB minimum if all the volumes in the capacity pool are using `Standard` network features. If any volume is using `Basic` network features, the minimum size is `4` TB. Please see the product [documentation](https://learn.microsoft.com/azure/azure-netapp-files/azure-netapp-files-set-up-capacity-pool) for more information.
|
|
@@ -479,12 +537,36 @@ class Pool(pulumi.CustomResource):
|
|
|
479
537
|
size_in_tb=4)
|
|
480
538
|
```
|
|
481
539
|
|
|
540
|
+
## NetApp Pool with Flexible Service Level Usage
|
|
541
|
+
|
|
542
|
+
```python
|
|
543
|
+
import pulumi
|
|
544
|
+
import pulumi_azure as azure
|
|
545
|
+
|
|
546
|
+
example = azure.core.ResourceGroup("example",
|
|
547
|
+
name="example-resources",
|
|
548
|
+
location="West Europe")
|
|
549
|
+
example_account = azure.netapp.Account("example",
|
|
550
|
+
name="example-netappaccount",
|
|
551
|
+
location=example.location,
|
|
552
|
+
resource_group_name=example.name)
|
|
553
|
+
example_pool = azure.netapp.Pool("example",
|
|
554
|
+
name="example-netapppool",
|
|
555
|
+
account_name=example_account.name,
|
|
556
|
+
location=example.location,
|
|
557
|
+
resource_group_name=example.name,
|
|
558
|
+
service_level="Flexible",
|
|
559
|
+
size_in_tb=4,
|
|
560
|
+
qos_type="Manual",
|
|
561
|
+
custom_throughput_mibps=256)
|
|
562
|
+
```
|
|
563
|
+
|
|
482
564
|
## API Providers
|
|
483
565
|
|
|
484
566
|
<!-- This section is generated, changes will be overwritten -->
|
|
485
567
|
This resource uses the following Azure API Providers:
|
|
486
568
|
|
|
487
|
-
* `Microsoft.NetApp` - 2025-
|
|
569
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
488
570
|
|
|
489
571
|
## Import
|
|
490
572
|
|
|
@@ -511,6 +593,7 @@ class Pool(pulumi.CustomResource):
|
|
|
511
593
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
512
594
|
account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
513
595
|
cool_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
596
|
+
custom_throughput_mibps: Optional[pulumi.Input[_builtins.int]] = None,
|
|
514
597
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
515
598
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
516
599
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -532,6 +615,7 @@ class Pool(pulumi.CustomResource):
|
|
|
532
615
|
raise TypeError("Missing required property 'account_name'")
|
|
533
616
|
__props__.__dict__["account_name"] = account_name
|
|
534
617
|
__props__.__dict__["cool_access_enabled"] = cool_access_enabled
|
|
618
|
+
__props__.__dict__["custom_throughput_mibps"] = custom_throughput_mibps
|
|
535
619
|
__props__.__dict__["encryption_type"] = encryption_type
|
|
536
620
|
__props__.__dict__["location"] = location
|
|
537
621
|
__props__.__dict__["name"] = name
|
|
@@ -558,6 +642,7 @@ class Pool(pulumi.CustomResource):
|
|
|
558
642
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
559
643
|
account_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
560
644
|
cool_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
645
|
+
custom_throughput_mibps: Optional[pulumi.Input[_builtins.int]] = None,
|
|
561
646
|
encryption_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
562
647
|
location: Optional[pulumi.Input[_builtins.str]] = None,
|
|
563
648
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -577,12 +662,13 @@ class Pool(pulumi.CustomResource):
|
|
|
577
662
|
:param pulumi.Input[_builtins.bool] cool_access_enabled: Whether the NetApp Pool can hold cool access enabled volumes. Defaults to `false`.
|
|
578
663
|
|
|
579
664
|
> **Note:** Disabling `cool_access_enabled` is not allowed and forces a new resource to be created.
|
|
665
|
+
:param pulumi.Input[_builtins.int] custom_throughput_mibps: The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
580
666
|
:param pulumi.Input[_builtins.str] encryption_type: The encryption type of the pool. Valid values include `Single`, and `Double`. Defaults to `Single`. Changing this forces a new resource to be created.
|
|
581
667
|
:param pulumi.Input[_builtins.str] location: Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
|
|
582
668
|
:param pulumi.Input[_builtins.str] name: The name of the NetApp Pool. Changing this forces a new resource to be created.
|
|
583
669
|
:param pulumi.Input[_builtins.str] qos_type: QoS Type of the pool. Valid values include `Auto` or `Manual`. Defaults to `Auto`.
|
|
584
670
|
:param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group where the NetApp Pool should be created. Changing this forces a new resource to be created.
|
|
585
|
-
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
671
|
+
:param pulumi.Input[_builtins.str] service_level: The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
586
672
|
:param pulumi.Input[_builtins.int] size_in_tb: Provisioned size of the pool in TB. Value must be between `1` and `2048`.
|
|
587
673
|
|
|
588
674
|
> **Note:** `2` TB capacity pool sizing is currently in preview. You can only take advantage of the `2` TB minimum if all the volumes in the capacity pool are using `Standard` network features. If any volume is using `Basic` network features, the minimum size is `4` TB. Please see the product [documentation](https://learn.microsoft.com/azure/azure-netapp-files/azure-netapp-files-set-up-capacity-pool) for more information.
|
|
@@ -596,6 +682,7 @@ class Pool(pulumi.CustomResource):
|
|
|
596
682
|
|
|
597
683
|
__props__.__dict__["account_name"] = account_name
|
|
598
684
|
__props__.__dict__["cool_access_enabled"] = cool_access_enabled
|
|
685
|
+
__props__.__dict__["custom_throughput_mibps"] = custom_throughput_mibps
|
|
599
686
|
__props__.__dict__["encryption_type"] = encryption_type
|
|
600
687
|
__props__.__dict__["location"] = location
|
|
601
688
|
__props__.__dict__["name"] = name
|
|
@@ -624,6 +711,14 @@ class Pool(pulumi.CustomResource):
|
|
|
624
711
|
"""
|
|
625
712
|
return pulumi.get(self, "cool_access_enabled")
|
|
626
713
|
|
|
714
|
+
@_builtins.property
|
|
715
|
+
@pulumi.getter(name="customThroughputMibps")
|
|
716
|
+
def custom_throughput_mibps(self) -> pulumi.Output[Optional[_builtins.int]]:
|
|
717
|
+
"""
|
|
718
|
+
The custom throughput for the pool in MiB/s. Minimum value is `128`. This field can only be set when `service_level` is set to `Flexible` and `qos_type` is set to `Manual`.
|
|
719
|
+
"""
|
|
720
|
+
return pulumi.get(self, "custom_throughput_mibps")
|
|
721
|
+
|
|
627
722
|
@_builtins.property
|
|
628
723
|
@pulumi.getter(name="encryptionType")
|
|
629
724
|
def encryption_type(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -668,7 +763,7 @@ class Pool(pulumi.CustomResource):
|
|
|
668
763
|
@pulumi.getter(name="serviceLevel")
|
|
669
764
|
def service_level(self) -> pulumi.Output[_builtins.str]:
|
|
670
765
|
"""
|
|
671
|
-
The service level of the file system. Valid values include `Premium`, `Standard`, and `
|
|
766
|
+
The service level of the file system. Valid values include `Premium`, `Standard`, `Ultra`, and `Flexible`. Changing this forces a new resource to be created.
|
|
672
767
|
"""
|
|
673
768
|
return pulumi.get(self, "service_level")
|
|
674
769
|
|
pulumi_azure/netapp/snapshot.py
CHANGED
|
@@ -300,7 +300,7 @@ class Snapshot(pulumi.CustomResource):
|
|
|
300
300
|
<!-- This section is generated, changes will be overwritten -->
|
|
301
301
|
This resource uses the following Azure API Providers:
|
|
302
302
|
|
|
303
|
-
* `Microsoft.NetApp` - 2025-
|
|
303
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
304
304
|
|
|
305
305
|
## Import
|
|
306
306
|
|
|
@@ -392,7 +392,7 @@ class Snapshot(pulumi.CustomResource):
|
|
|
392
392
|
<!-- This section is generated, changes will be overwritten -->
|
|
393
393
|
This resource uses the following Azure API Providers:
|
|
394
394
|
|
|
395
|
-
* `Microsoft.NetApp` - 2025-
|
|
395
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
396
396
|
|
|
397
397
|
## Import
|
|
398
398
|
|
|
@@ -426,7 +426,7 @@ class SnapshotPolicy(pulumi.CustomResource):
|
|
|
426
426
|
<!-- This section is generated, changes will be overwritten -->
|
|
427
427
|
This resource uses the following Azure API Providers:
|
|
428
428
|
|
|
429
|
-
* `Microsoft.NetApp` - 2025-
|
|
429
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
430
430
|
|
|
431
431
|
## Import
|
|
432
432
|
|
|
@@ -513,7 +513,7 @@ class SnapshotPolicy(pulumi.CustomResource):
|
|
|
513
513
|
<!-- This section is generated, changes will be overwritten -->
|
|
514
514
|
This resource uses the following Azure API Providers:
|
|
515
515
|
|
|
516
|
-
* `Microsoft.NetApp` - 2025-
|
|
516
|
+
* `Microsoft.NetApp` - 2025-06-01
|
|
517
517
|
|
|
518
518
|
## Import
|
|
519
519
|
|