pulumi-azure-native 3.3.0a1745626403__py3-none-any.whl → 3.3.0a1745856299__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-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +11 -0
- pulumi_azure_native/containerservice/__init__.py +3 -0
- pulumi_azure_native/containerservice/_enums.py +53 -0
- pulumi_azure_native/containerservice/_inputs.py +298 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_namespace.py +209 -0
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_namespace_credential.py +97 -0
- pulumi_azure_native/containerservice/load_balancer.py +3 -3
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/namespace.py +303 -0
- pulumi_azure_native/containerservice/outputs.py +243 -0
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/cosmosdb/__init__.py +20 -0
- pulumi_azure_native/cosmosdb/_enums.py +26 -0
- pulumi_azure_native/cosmosdb/_inputs.py +98 -0
- pulumi_azure_native/cosmosdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/cosmosdb/database_account.py +3 -3
- pulumi_azure_native/cosmosdb/database_account_cassandra_keyspace.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_cassandra_table.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_graph.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_collection.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_container.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_table.py +1 -1
- pulumi_azure_native/cosmosdb/fleet.py +251 -0
- pulumi_azure_native/cosmosdb/fleet_analytic.py +273 -0
- pulumi_azure_native/cosmosdb/fleetspace.py +274 -0
- pulumi_azure_native/cosmosdb/fleetspace_account.py +293 -0
- pulumi_azure_native/cosmosdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/cosmosdb/get_database_account.py +2 -2
- pulumi_azure_native/cosmosdb/get_fleet.py +189 -0
- pulumi_azure_native/cosmosdb/get_fleet_analytic.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace_account.py +201 -0
- pulumi_azure_native/cosmosdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/cosmosdb/get_service.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_assignment.py +4 -0
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_definition.py +4 -0
- pulumi_azure_native/cosmosdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/cosmosdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/cosmosdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/cosmosdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/cosmosdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/notebook_workspace.py +3 -3
- pulumi_azure_native/cosmosdb/outputs.py +83 -0
- pulumi_azure_native/cosmosdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/cosmosdb/service.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table_role_assignment.py +5 -1
- pulumi_azure_native/cosmosdb/table_resource_table_role_definition.py +5 -1
- pulumi_azure_native/cosmosdb/throughput_pool.py +3 -3
- pulumi_azure_native/cosmosdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/datafactory/_enums.py +8 -0
- pulumi_azure_native/datafactory/_inputs.py +322 -21
- pulumi_azure_native/datafactory/outputs.py +222 -15
- pulumi_azure_native/devcenter/__init__.py +2 -0
- pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
- pulumi_azure_native/devcenter/catalog.py +3 -3
- pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
- pulumi_azure_native/devcenter/dev_center.py +3 -3
- pulumi_azure_native/devcenter/encryption_set.py +3 -3
- pulumi_azure_native/devcenter/environment_type.py +3 -3
- pulumi_azure_native/devcenter/gallery.py +3 -3
- pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_build_details.py +235 -0
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_error_details.py +103 -0
- pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
- pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_gallery.py +2 -2
- pulumi_azure_native/devcenter/get_network_connection.py +2 -2
- pulumi_azure_native/devcenter/get_pool.py +2 -2
- pulumi_azure_native/devcenter/get_project.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_error_details.py +4 -0
- pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
- pulumi_azure_native/devcenter/get_project_policy.py +2 -2
- pulumi_azure_native/devcenter/get_schedule.py +2 -2
- pulumi_azure_native/devcenter/list_skus_by_project.py +2 -2
- pulumi_azure_native/devcenter/network_connection.py +3 -3
- pulumi_azure_native/devcenter/pool.py +3 -3
- pulumi_azure_native/devcenter/project.py +3 -3
- pulumi_azure_native/devcenter/project_catalog.py +3 -3
- pulumi_azure_native/devcenter/project_environment_type.py +3 -3
- pulumi_azure_native/devcenter/project_policy.py +3 -3
- pulumi_azure_native/devcenter/schedule.py +3 -3
- pulumi_azure_native/frontdoor/get_policy.py +2 -2
- pulumi_azure_native/frontdoor/policy.py +3 -3
- pulumi_azure_native/hybridcompute/gateway.py +3 -3
- pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/networkcloud/agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/cluster.py +2 -2
- pulumi_azure_native/networkcloud/cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/console.py +2 -2
- pulumi_azure_native/networkcloud/get_agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/get_console.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/get_l2_network.py +2 -2
- pulumi_azure_native/networkcloud/get_l3_network.py +2 -2
- pulumi_azure_native/networkcloud/get_metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/get_rack.py +2 -2
- pulumi_azure_native/networkcloud/get_storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/get_trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/get_virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_volume.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/l2_network.py +2 -2
- pulumi_azure_native/networkcloud/l3_network.py +2 -2
- pulumi_azure_native/networkcloud/metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/rack.py +2 -2
- pulumi_azure_native/networkcloud/storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/volume.py +2 -2
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +2 -2
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +2 -2
- pulumi_azure_native/resources/deployment.py +3 -3
- pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
- pulumi_azure_native/resources/get_deployment.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
- pulumi_azure_native/resources/get_resource.py +2 -2
- pulumi_azure_native/resources/get_resource_group.py +2 -2
- pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
- pulumi_azure_native/resources/resource.py +3 -3
- pulumi_azure_native/resources/resource_group.py +3 -3
- pulumi_azure_native/resources/tag_at_scope.py +3 -3
- pulumi_azure_native/search/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/search/get_service.py +2 -2
- pulumi_azure_native/search/get_shared_private_link_resource.py +2 -2
- pulumi_azure_native/search/list_admin_key.py +2 -2
- pulumi_azure_native/search/list_query_key_by_search_service.py +2 -2
- pulumi_azure_native/search/private_endpoint_connection.py +3 -3
- pulumi_azure_native/search/service.py +3 -3
- pulumi_azure_native/search/shared_private_link_resource.py +3 -3
- pulumi_azure_native/weightsandbiases/get_instance.py +4 -0
- pulumi_azure_native/weightsandbiases/instance.py +5 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/RECORD +261 -236
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/top_level.txt +0 -0
|
@@ -260,7 +260,7 @@ def get_bmc_key_set(bmc_key_set_name: Optional[str] = None,
|
|
|
260
260
|
|
|
261
261
|
Uses Azure REST API version 2025-02-01.
|
|
262
262
|
|
|
263
|
-
Other available API versions:
|
|
263
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
264
264
|
|
|
265
265
|
|
|
266
266
|
:param str bmc_key_set_name: The name of the baseboard management controller key set.
|
|
@@ -302,7 +302,7 @@ def get_bmc_key_set_output(bmc_key_set_name: Optional[pulumi.Input[str]] = None,
|
|
|
302
302
|
|
|
303
303
|
Uses Azure REST API version 2025-02-01.
|
|
304
304
|
|
|
305
|
-
Other available API versions:
|
|
305
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
306
306
|
|
|
307
307
|
|
|
308
308
|
:param str bmc_key_set_name: The name of the baseboard management controller key set.
|
|
@@ -289,7 +289,7 @@ def get_cloud_services_network(cloud_services_network_name: Optional[str] = None
|
|
|
289
289
|
|
|
290
290
|
Uses Azure REST API version 2025-02-01.
|
|
291
291
|
|
|
292
|
-
Other available API versions:
|
|
292
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
293
293
|
|
|
294
294
|
|
|
295
295
|
:param str cloud_services_network_name: The name of the cloud services network.
|
|
@@ -330,7 +330,7 @@ def get_cloud_services_network_output(cloud_services_network_name: Optional[pulu
|
|
|
330
330
|
|
|
331
331
|
Uses Azure REST API version 2025-02-01.
|
|
332
332
|
|
|
333
|
-
Other available API versions:
|
|
333
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
:param str cloud_services_network_name: The name of the cloud services network.
|
|
@@ -524,7 +524,7 @@ def get_cluster(cluster_name: Optional[str] = None,
|
|
|
524
524
|
|
|
525
525
|
Uses Azure REST API version 2025-02-01.
|
|
526
526
|
|
|
527
|
-
Other available API versions:
|
|
527
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
528
528
|
|
|
529
529
|
|
|
530
530
|
:param str cluster_name: The name of the cluster.
|
|
@@ -585,7 +585,7 @@ def get_cluster_output(cluster_name: Optional[pulumi.Input[str]] = None,
|
|
|
585
585
|
|
|
586
586
|
Uses Azure REST API version 2025-02-01.
|
|
587
587
|
|
|
588
|
-
Other available API versions:
|
|
588
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
589
589
|
|
|
590
590
|
|
|
591
591
|
:param str cluster_name: The name of the cluster.
|
|
@@ -271,7 +271,7 @@ def get_cluster_manager(cluster_manager_name: Optional[str] = None,
|
|
|
271
271
|
|
|
272
272
|
Uses Azure REST API version 2025-02-01.
|
|
273
273
|
|
|
274
|
-
Other available API versions:
|
|
274
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
:param str cluster_manager_name: The name of the cluster manager.
|
|
@@ -311,7 +311,7 @@ def get_cluster_manager_output(cluster_manager_name: Optional[pulumi.Input[str]]
|
|
|
311
311
|
|
|
312
312
|
Uses Azure REST API version 2025-02-01.
|
|
313
313
|
|
|
314
|
-
Other available API versions:
|
|
314
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
315
315
|
|
|
316
316
|
|
|
317
317
|
:param str cluster_manager_name: The name of the cluster manager.
|
|
@@ -248,7 +248,7 @@ def get_console(console_name: Optional[str] = None,
|
|
|
248
248
|
|
|
249
249
|
Uses Azure REST API version 2025-02-01.
|
|
250
250
|
|
|
251
|
-
Other available API versions:
|
|
251
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
252
252
|
|
|
253
253
|
|
|
254
254
|
:param str console_name: The name of the virtual machine console.
|
|
@@ -289,7 +289,7 @@ def get_console_output(console_name: Optional[pulumi.Input[str]] = None,
|
|
|
289
289
|
|
|
290
290
|
Uses Azure REST API version 2025-02-01.
|
|
291
291
|
|
|
292
|
-
Other available API versions:
|
|
292
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
293
293
|
|
|
294
294
|
|
|
295
295
|
:param str console_name: The name of the virtual machine console.
|
|
@@ -355,7 +355,7 @@ def get_kubernetes_cluster(kubernetes_cluster_name: Optional[str] = None,
|
|
|
355
355
|
|
|
356
356
|
Uses Azure REST API version 2025-02-01.
|
|
357
357
|
|
|
358
|
-
Other available API versions:
|
|
358
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
359
359
|
|
|
360
360
|
|
|
361
361
|
:param str kubernetes_cluster_name: The name of the Kubernetes cluster.
|
|
@@ -402,7 +402,7 @@ def get_kubernetes_cluster_output(kubernetes_cluster_name: Optional[pulumi.Input
|
|
|
402
402
|
|
|
403
403
|
Uses Azure REST API version 2025-02-01.
|
|
404
404
|
|
|
405
|
-
Other available API versions:
|
|
405
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
406
406
|
|
|
407
407
|
|
|
408
408
|
:param str kubernetes_cluster_name: The name of the Kubernetes cluster.
|
|
@@ -224,7 +224,7 @@ def get_kubernetes_cluster_feature(feature_name: Optional[str] = None,
|
|
|
224
224
|
|
|
225
225
|
Uses Azure REST API version 2025-02-01.
|
|
226
226
|
|
|
227
|
-
Other available API versions: 2024-
|
|
227
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
228
228
|
|
|
229
229
|
|
|
230
230
|
:param str feature_name: The name of the feature.
|
|
@@ -263,7 +263,7 @@ def get_kubernetes_cluster_feature_output(feature_name: Optional[pulumi.Input[st
|
|
|
263
263
|
|
|
264
264
|
Uses Azure REST API version 2025-02-01.
|
|
265
265
|
|
|
266
|
-
Other available API versions: 2024-
|
|
266
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
267
267
|
|
|
268
268
|
|
|
269
269
|
:param str feature_name: The name of the feature.
|
|
@@ -271,7 +271,7 @@ def get_l2_network(l2_network_name: Optional[str] = None,
|
|
|
271
271
|
|
|
272
272
|
Uses Azure REST API version 2025-02-01.
|
|
273
273
|
|
|
274
|
-
Other available API versions:
|
|
274
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
275
275
|
|
|
276
276
|
|
|
277
277
|
:param str l2_network_name: The name of the L2 network.
|
|
@@ -311,7 +311,7 @@ def get_l2_network_output(l2_network_name: Optional[pulumi.Input[str]] = None,
|
|
|
311
311
|
|
|
312
312
|
Uses Azure REST API version 2025-02-01.
|
|
313
313
|
|
|
314
|
-
Other available API versions:
|
|
314
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
315
315
|
|
|
316
316
|
|
|
317
317
|
:param str l2_network_name: The name of the L2 network.
|
|
@@ -333,7 +333,7 @@ def get_l3_network(l3_network_name: Optional[str] = None,
|
|
|
333
333
|
|
|
334
334
|
Uses Azure REST API version 2025-02-01.
|
|
335
335
|
|
|
336
|
-
Other available API versions:
|
|
336
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
337
337
|
|
|
338
338
|
|
|
339
339
|
:param str l3_network_name: The name of the L3 network.
|
|
@@ -378,7 +378,7 @@ def get_l3_network_output(l3_network_name: Optional[pulumi.Input[str]] = None,
|
|
|
378
378
|
|
|
379
379
|
Uses Azure REST API version 2025-02-01.
|
|
380
380
|
|
|
381
|
-
Other available API versions:
|
|
381
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
382
382
|
|
|
383
383
|
|
|
384
384
|
:param str l3_network_name: The name of the L3 network.
|
|
@@ -224,7 +224,7 @@ def get_metrics_configuration(cluster_name: Optional[str] = None,
|
|
|
224
224
|
|
|
225
225
|
Uses Azure REST API version 2025-02-01.
|
|
226
226
|
|
|
227
|
-
Other available API versions:
|
|
227
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
228
228
|
|
|
229
229
|
|
|
230
230
|
:param str cluster_name: The name of the cluster.
|
|
@@ -263,7 +263,7 @@ def get_metrics_configuration_output(cluster_name: Optional[pulumi.Input[str]] =
|
|
|
263
263
|
|
|
264
264
|
Uses Azure REST API version 2025-02-01.
|
|
265
265
|
|
|
266
|
-
Other available API versions:
|
|
266
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
267
267
|
|
|
268
268
|
|
|
269
269
|
:param str cluster_name: The name of the cluster.
|
|
@@ -247,7 +247,7 @@ def get_rack(rack_name: Optional[str] = None,
|
|
|
247
247
|
|
|
248
248
|
Uses Azure REST API version 2025-02-01.
|
|
249
249
|
|
|
250
|
-
Other available API versions:
|
|
250
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
251
251
|
|
|
252
252
|
|
|
253
253
|
:param str rack_name: The name of the rack.
|
|
@@ -285,7 +285,7 @@ def get_rack_output(rack_name: Optional[pulumi.Input[str]] = None,
|
|
|
285
285
|
|
|
286
286
|
Uses Azure REST API version 2025-02-01.
|
|
287
287
|
|
|
288
|
-
Other available API versions:
|
|
288
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
289
289
|
|
|
290
290
|
|
|
291
291
|
:param str rack_name: The name of the rack.
|
|
@@ -367,7 +367,7 @@ def get_storage_appliance(resource_group_name: Optional[str] = None,
|
|
|
367
367
|
|
|
368
368
|
Uses Azure REST API version 2025-02-01.
|
|
369
369
|
|
|
370
|
-
Other available API versions:
|
|
370
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
371
371
|
|
|
372
372
|
|
|
373
373
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -415,7 +415,7 @@ def get_storage_appliance_output(resource_group_name: Optional[pulumi.Input[str]
|
|
|
415
415
|
|
|
416
416
|
Uses Azure REST API version 2025-02-01.
|
|
417
417
|
|
|
418
|
-
Other available API versions:
|
|
418
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
419
419
|
|
|
420
420
|
|
|
421
421
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -283,7 +283,7 @@ def get_trunked_network(resource_group_name: Optional[str] = None,
|
|
|
283
283
|
|
|
284
284
|
Uses Azure REST API version 2025-02-01.
|
|
285
285
|
|
|
286
|
-
Other available API versions:
|
|
286
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
287
287
|
|
|
288
288
|
|
|
289
289
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -324,7 +324,7 @@ def get_trunked_network_output(resource_group_name: Optional[pulumi.Input[str]]
|
|
|
324
324
|
|
|
325
325
|
Uses Azure REST API version 2025-02-01.
|
|
326
326
|
|
|
327
|
-
Other available API versions:
|
|
327
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
328
328
|
|
|
329
329
|
|
|
330
330
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -451,7 +451,7 @@ def get_virtual_machine(resource_group_name: Optional[str] = None,
|
|
|
451
451
|
|
|
452
452
|
Uses Azure REST API version 2025-02-01.
|
|
453
453
|
|
|
454
|
-
Other available API versions:
|
|
454
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -506,7 +506,7 @@ def get_virtual_machine_output(resource_group_name: Optional[pulumi.Input[str]]
|
|
|
506
506
|
|
|
507
507
|
Uses Azure REST API version 2025-02-01.
|
|
508
508
|
|
|
509
|
-
Other available API versions:
|
|
509
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
510
510
|
|
|
511
511
|
|
|
512
512
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -223,7 +223,7 @@ def get_volume(resource_group_name: Optional[str] = None,
|
|
|
223
223
|
|
|
224
224
|
Uses Azure REST API version 2025-02-01.
|
|
225
225
|
|
|
226
|
-
Other available API versions:
|
|
226
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
227
227
|
|
|
228
228
|
|
|
229
229
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -259,7 +259,7 @@ def get_volume_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
|
259
259
|
|
|
260
260
|
Uses Azure REST API version 2025-02-01.
|
|
261
261
|
|
|
262
|
-
Other available API versions:
|
|
262
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
263
263
|
|
|
264
264
|
|
|
265
265
|
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
@@ -234,7 +234,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
234
234
|
"""
|
|
235
235
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
236
236
|
|
|
237
|
-
Other available API versions:
|
|
237
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
238
238
|
|
|
239
239
|
:param str resource_name: The name of the resource.
|
|
240
240
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -260,7 +260,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
260
260
|
"""
|
|
261
261
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
262
262
|
|
|
263
|
-
Other available API versions:
|
|
263
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
264
264
|
|
|
265
265
|
:param str resource_name: The name of the resource.
|
|
266
266
|
:param KubernetesClusterArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -135,7 +135,7 @@ class KubernetesClusterFeature(pulumi.CustomResource):
|
|
|
135
135
|
"""
|
|
136
136
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2024-06-01-preview.
|
|
137
137
|
|
|
138
|
-
Other available API versions: 2024-
|
|
138
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
139
139
|
|
|
140
140
|
:param str resource_name: The name of the resource.
|
|
141
141
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -155,7 +155,7 @@ class KubernetesClusterFeature(pulumi.CustomResource):
|
|
|
155
155
|
"""
|
|
156
156
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2024-06-01-preview.
|
|
157
157
|
|
|
158
|
-
Other available API versions: 2024-
|
|
158
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
159
159
|
|
|
160
160
|
:param str resource_name: The name of the resource.
|
|
161
161
|
:param KubernetesClusterFeatureArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -171,7 +171,7 @@ class L2Network(pulumi.CustomResource):
|
|
|
171
171
|
"""
|
|
172
172
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
173
173
|
|
|
174
|
-
Other available API versions:
|
|
174
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
175
175
|
|
|
176
176
|
:param str resource_name: The name of the resource.
|
|
177
177
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -193,7 +193,7 @@ class L2Network(pulumi.CustomResource):
|
|
|
193
193
|
"""
|
|
194
194
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
195
195
|
|
|
196
|
-
Other available API versions:
|
|
196
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
197
197
|
|
|
198
198
|
:param str resource_name: The name of the resource.
|
|
199
199
|
:param L2NetworkArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -263,7 +263,7 @@ class L3Network(pulumi.CustomResource):
|
|
|
263
263
|
"""
|
|
264
264
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
265
265
|
|
|
266
|
-
Other available API versions:
|
|
266
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
267
267
|
|
|
268
268
|
:param str resource_name: The name of the resource.
|
|
269
269
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -292,7 +292,7 @@ class L3Network(pulumi.CustomResource):
|
|
|
292
292
|
"""
|
|
293
293
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
294
294
|
|
|
295
|
-
Other available API versions:
|
|
295
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
296
296
|
|
|
297
297
|
:param str resource_name: The name of the resource.
|
|
298
298
|
:param L3NetworkArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -167,7 +167,7 @@ class MetricsConfiguration(pulumi.CustomResource):
|
|
|
167
167
|
"""
|
|
168
168
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
169
169
|
|
|
170
|
-
Other available API versions:
|
|
170
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
171
171
|
|
|
172
172
|
:param str resource_name: The name of the resource.
|
|
173
173
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -189,7 +189,7 @@ class MetricsConfiguration(pulumi.CustomResource):
|
|
|
189
189
|
"""
|
|
190
190
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
191
191
|
|
|
192
|
-
Other available API versions:
|
|
192
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
193
193
|
|
|
194
194
|
:param str resource_name: The name of the resource.
|
|
195
195
|
:param MetricsConfigurationArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -182,7 +182,7 @@ class Rack(pulumi.CustomResource):
|
|
|
182
182
|
"""
|
|
183
183
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
184
184
|
|
|
185
|
-
Other available API versions:
|
|
185
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
186
186
|
|
|
187
187
|
:param str resource_name: The name of the resource.
|
|
188
188
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -205,7 +205,7 @@ class Rack(pulumi.CustomResource):
|
|
|
205
205
|
"""
|
|
206
206
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
207
207
|
|
|
208
|
-
Other available API versions:
|
|
208
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
209
209
|
|
|
210
210
|
:param str resource_name: The name of the resource.
|
|
211
211
|
:param RackArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -198,7 +198,7 @@ class StorageAppliance(pulumi.CustomResource):
|
|
|
198
198
|
"""
|
|
199
199
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
200
200
|
|
|
201
|
-
Other available API versions:
|
|
201
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
202
202
|
|
|
203
203
|
:param str resource_name: The name of the resource.
|
|
204
204
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -222,7 +222,7 @@ class StorageAppliance(pulumi.CustomResource):
|
|
|
222
222
|
"""
|
|
223
223
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
224
224
|
|
|
225
|
-
Other available API versions:
|
|
225
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
226
226
|
|
|
227
227
|
:param str resource_name: The name of the resource.
|
|
228
228
|
:param StorageApplianceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -187,7 +187,7 @@ class TrunkedNetwork(pulumi.CustomResource):
|
|
|
187
187
|
"""
|
|
188
188
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
189
189
|
|
|
190
|
-
Other available API versions:
|
|
190
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
191
191
|
|
|
192
192
|
:param str resource_name: The name of the resource.
|
|
193
193
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -210,7 +210,7 @@ class TrunkedNetwork(pulumi.CustomResource):
|
|
|
210
210
|
"""
|
|
211
211
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
212
212
|
|
|
213
|
-
Other available API versions:
|
|
213
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
214
214
|
|
|
215
215
|
:param str resource_name: The name of the resource.
|
|
216
216
|
:param TrunkedNetworkArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -410,7 +410,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
410
410
|
"""
|
|
411
411
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
412
412
|
|
|
413
|
-
Other available API versions:
|
|
413
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
414
414
|
|
|
415
415
|
:param str resource_name: The name of the resource.
|
|
416
416
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -446,7 +446,7 @@ class VirtualMachine(pulumi.CustomResource):
|
|
|
446
446
|
"""
|
|
447
447
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
448
448
|
|
|
449
|
-
Other available API versions:
|
|
449
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
450
450
|
|
|
451
451
|
:param str resource_name: The name of the resource.
|
|
452
452
|
:param VirtualMachineArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -134,7 +134,7 @@ class Volume(pulumi.CustomResource):
|
|
|
134
134
|
"""
|
|
135
135
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
136
136
|
|
|
137
|
-
Other available API versions:
|
|
137
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
138
138
|
|
|
139
139
|
:param str resource_name: The name of the resource.
|
|
140
140
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -154,7 +154,7 @@ class Volume(pulumi.CustomResource):
|
|
|
154
154
|
"""
|
|
155
155
|
Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.
|
|
156
156
|
|
|
157
|
-
Other available API versions:
|
|
157
|
+
Other available API versions: 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native networkcloud [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
158
158
|
|
|
159
159
|
:param str resource_name: The name of the resource.
|
|
160
160
|
:param VolumeArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -143,7 +143,7 @@ def get_private_endpoint_connection(private_endpoint_connection_name: Optional[s
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2024-10-01.
|
|
145
145
|
|
|
146
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
@@ -175,7 +175,7 @@ def get_private_endpoint_connection_output(private_endpoint_connection_name: Opt
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2024-10-01.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
178
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str private_endpoint_connection_name: The name of the private endpoint connection.
|
|
@@ -147,7 +147,7 @@ def get_protected_item(container_name: Optional[str] = None,
|
|
|
147
147
|
|
|
148
148
|
Uses Azure REST API version 2024-10-01.
|
|
149
149
|
|
|
150
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
150
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
151
151
|
|
|
152
152
|
|
|
153
153
|
:param str container_name: Container name associated with the backed up item.
|
|
@@ -189,7 +189,7 @@ def get_protected_item_output(container_name: Optional[pulumi.Input[str]] = None
|
|
|
189
189
|
|
|
190
190
|
Uses Azure REST API version 2024-10-01.
|
|
191
191
|
|
|
192
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
192
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
193
193
|
|
|
194
194
|
|
|
195
195
|
:param str container_name: Container name associated with the backed up item.
|
|
@@ -144,7 +144,7 @@ def get_protection_container(container_name: Optional[str] = None,
|
|
|
144
144
|
|
|
145
145
|
Uses Azure REST API version 2024-10-01.
|
|
146
146
|
|
|
147
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
148
148
|
|
|
149
149
|
|
|
150
150
|
:param str container_name: Name of the container whose details need to be fetched.
|
|
@@ -179,7 +179,7 @@ def get_protection_container_output(container_name: Optional[pulumi.Input[str]]
|
|
|
179
179
|
|
|
180
180
|
Uses Azure REST API version 2024-10-01.
|
|
181
181
|
|
|
182
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param str container_name: Name of the container whose details need to be fetched.
|
|
@@ -145,7 +145,7 @@ def get_protection_intent(fabric_name: Optional[str] = None,
|
|
|
145
145
|
|
|
146
146
|
Uses Azure REST API version 2024-10-01.
|
|
147
147
|
|
|
148
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
148
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
149
149
|
|
|
150
150
|
|
|
151
151
|
:param str fabric_name: Fabric name associated with the backed up item.
|
|
@@ -181,7 +181,7 @@ def get_protection_intent_output(fabric_name: Optional[pulumi.Input[str]] = None
|
|
|
181
181
|
|
|
182
182
|
Uses Azure REST API version 2024-10-01.
|
|
183
183
|
|
|
184
|
-
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
184
|
+
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native recoveryservices [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
185
185
|
|
|
186
186
|
|
|
187
187
|
:param str fabric_name: Fabric name associated with the backed up item.
|