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
|
@@ -60,7 +60,7 @@ def get_project_catalog_environment_definition_error_details(catalog_name: Optio
|
|
|
60
60
|
|
|
61
61
|
Uses Azure REST API version 2024-02-01.
|
|
62
62
|
|
|
63
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
63
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -88,7 +88,7 @@ def get_project_catalog_environment_definition_error_details_output(catalog_name
|
|
|
88
88
|
|
|
89
89
|
Uses Azure REST API version 2024-02-01.
|
|
90
90
|
|
|
91
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
91
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -169,7 +169,7 @@ def get_project_catalog_image_definition_build_details(build_name: Optional[str]
|
|
|
169
169
|
|
|
170
170
|
Uses Azure REST API version 2024-10-01-preview.
|
|
171
171
|
|
|
172
|
-
Other available API versions: 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
172
|
+
Other available API versions: 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
173
173
|
|
|
174
174
|
|
|
175
175
|
:param str build_name: The ID of the Image Definition Build.
|
|
@@ -209,7 +209,7 @@ def get_project_catalog_image_definition_build_details_output(build_name: Option
|
|
|
209
209
|
|
|
210
210
|
Uses Azure REST API version 2024-10-01-preview.
|
|
211
211
|
|
|
212
|
-
Other available API versions: 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
212
|
+
Other available API versions: 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
213
213
|
|
|
214
214
|
|
|
215
215
|
:param str build_name: The ID of the Image Definition Build.
|
|
@@ -60,6 +60,8 @@ def get_project_catalog_image_definition_error_details(catalog_name: Optional[st
|
|
|
60
60
|
|
|
61
61
|
Uses Azure REST API version 2025-02-01.
|
|
62
62
|
|
|
63
|
+
Other available API versions: 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
64
|
+
|
|
63
65
|
|
|
64
66
|
:param str catalog_name: The name of the Catalog.
|
|
65
67
|
:param str image_definition_name: The name of the Image Definition.
|
|
@@ -86,6 +88,8 @@ def get_project_catalog_image_definition_error_details_output(catalog_name: Opti
|
|
|
86
88
|
|
|
87
89
|
Uses Azure REST API version 2025-02-01.
|
|
88
90
|
|
|
91
|
+
Other available API versions: 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
92
|
+
|
|
89
93
|
|
|
90
94
|
:param str catalog_name: The name of the Catalog.
|
|
91
95
|
:param str image_definition_name: The name of the Image Definition.
|
|
@@ -83,7 +83,7 @@ def get_project_catalog_sync_error_details(catalog_name: Optional[str] = None,
|
|
|
83
83
|
|
|
84
84
|
Uses Azure REST API version 2024-02-01.
|
|
85
85
|
|
|
86
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
86
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -110,7 +110,7 @@ def get_project_catalog_sync_error_details_output(catalog_name: Optional[pulumi.
|
|
|
110
110
|
|
|
111
111
|
Uses Azure REST API version 2024-02-01.
|
|
112
112
|
|
|
113
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
113
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -227,7 +227,7 @@ def get_project_environment_type(environment_type_name: Optional[str] = None,
|
|
|
227
227
|
|
|
228
228
|
Uses Azure REST API version 2024-02-01.
|
|
229
229
|
|
|
230
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
230
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
:param str environment_type_name: The name of the environment type.
|
|
@@ -266,7 +266,7 @@ def get_project_environment_type_output(environment_type_name: Optional[pulumi.I
|
|
|
266
266
|
|
|
267
267
|
Uses Azure REST API version 2024-02-01.
|
|
268
268
|
|
|
269
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
269
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
270
270
|
|
|
271
271
|
|
|
272
272
|
:param str environment_type_name: The name of the environment type.
|
|
@@ -70,7 +70,7 @@ def get_project_inherited_settings(project_name: Optional[str] = None,
|
|
|
70
70
|
|
|
71
71
|
Uses Azure REST API version 2024-10-01-preview.
|
|
72
72
|
|
|
73
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
73
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
:param str project_name: The name of the project.
|
|
@@ -93,7 +93,7 @@ def get_project_inherited_settings_output(project_name: Optional[pulumi.Input[st
|
|
|
93
93
|
|
|
94
94
|
Uses Azure REST API version 2024-10-01-preview.
|
|
95
95
|
|
|
96
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
96
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
:param str project_name: The name of the project.
|
|
@@ -143,7 +143,7 @@ def get_project_policy(dev_center_name: Optional[str] = None,
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2024-10-01-preview.
|
|
145
145
|
|
|
146
|
-
Other available API versions: 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
146
|
+
Other available API versions: 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -175,7 +175,7 @@ def get_project_policy_output(dev_center_name: Optional[pulumi.Input[str]] = Non
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2024-10-01-preview.
|
|
177
177
|
|
|
178
|
-
Other available API versions: 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
178
|
+
Other available API versions: 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -193,7 +193,7 @@ def get_schedule(pool_name: Optional[str] = None,
|
|
|
193
193
|
|
|
194
194
|
Uses Azure REST API version 2024-02-01.
|
|
195
195
|
|
|
196
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
196
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
197
197
|
|
|
198
198
|
|
|
199
199
|
:param str pool_name: Name of the pool.
|
|
@@ -235,7 +235,7 @@ def get_schedule_output(pool_name: Optional[pulumi.Input[str]] = None,
|
|
|
235
235
|
|
|
236
236
|
Uses Azure REST API version 2024-02-01.
|
|
237
237
|
|
|
238
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
238
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
239
239
|
|
|
240
240
|
|
|
241
241
|
:param str pool_name: Name of the pool.
|
|
@@ -70,7 +70,7 @@ def list_skus_by_project(project_name: Optional[str] = None,
|
|
|
70
70
|
|
|
71
71
|
Uses Azure REST API version 2024-10-01-preview.
|
|
72
72
|
|
|
73
|
-
Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
73
|
+
Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
:param str project_name: The name of the project.
|
|
@@ -93,7 +93,7 @@ def list_skus_by_project_output(project_name: Optional[pulumi.Input[str]] = None
|
|
|
93
93
|
|
|
94
94
|
Uses Azure REST API version 2024-10-01-preview.
|
|
95
95
|
|
|
96
|
-
Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
96
|
+
Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
97
97
|
|
|
98
98
|
|
|
99
99
|
:param str project_name: The name of the project.
|
|
@@ -221,7 +221,7 @@ class NetworkConnection(pulumi.CustomResource):
|
|
|
221
221
|
|
|
222
222
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
223
223
|
|
|
224
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
224
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
225
225
|
|
|
226
226
|
:param str resource_name: The name of the resource.
|
|
227
227
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -248,7 +248,7 @@ class NetworkConnection(pulumi.CustomResource):
|
|
|
248
248
|
|
|
249
249
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
250
250
|
|
|
251
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
251
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
252
252
|
|
|
253
253
|
:param str resource_name: The name of the resource.
|
|
254
254
|
:param NetworkConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -308,7 +308,7 @@ class NetworkConnection(pulumi.CustomResource):
|
|
|
308
308
|
__props__.__dict__["provisioning_state"] = None
|
|
309
309
|
__props__.__dict__["system_data"] = None
|
|
310
310
|
__props__.__dict__["type"] = None
|
|
311
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230401:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240201:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20250201:NetworkConnection")])
|
|
311
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230401:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240201:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20250201:NetworkConnection"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:NetworkConnection")])
|
|
312
312
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
313
313
|
super(NetworkConnection, __self__).__init__(
|
|
314
314
|
'azure-native:devcenter:NetworkConnection',
|
|
@@ -270,7 +270,7 @@ class Pool(pulumi.CustomResource):
|
|
|
270
270
|
|
|
271
271
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
272
272
|
|
|
273
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
273
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
274
274
|
|
|
275
275
|
:param str resource_name: The name of the resource.
|
|
276
276
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -300,7 +300,7 @@ class Pool(pulumi.CustomResource):
|
|
|
300
300
|
|
|
301
301
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
302
302
|
|
|
303
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
303
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
304
304
|
|
|
305
305
|
:param str resource_name: The name of the resource.
|
|
306
306
|
:param PoolArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -374,7 +374,7 @@ class Pool(pulumi.CustomResource):
|
|
|
374
374
|
__props__.__dict__["provisioning_state"] = None
|
|
375
375
|
__props__.__dict__["system_data"] = None
|
|
376
376
|
__props__.__dict__["type"] = None
|
|
377
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Pool")])
|
|
377
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Pool"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:Pool")])
|
|
378
378
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
379
379
|
super(Pool, __self__).__init__(
|
|
380
380
|
'azure-native:devcenter:Pool',
|
|
@@ -207,7 +207,7 @@ class Project(pulumi.CustomResource):
|
|
|
207
207
|
|
|
208
208
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
209
209
|
|
|
210
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
210
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
211
211
|
|
|
212
212
|
:param str resource_name: The name of the resource.
|
|
213
213
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -233,7 +233,7 @@ class Project(pulumi.CustomResource):
|
|
|
233
233
|
|
|
234
234
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
235
235
|
|
|
236
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
236
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
237
237
|
|
|
238
238
|
:param str resource_name: The name of the resource.
|
|
239
239
|
:param ProjectArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -287,7 +287,7 @@ class Project(pulumi.CustomResource):
|
|
|
287
287
|
__props__.__dict__["provisioning_state"] = None
|
|
288
288
|
__props__.__dict__["system_data"] = None
|
|
289
289
|
__props__.__dict__["type"] = None
|
|
290
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Project")])
|
|
290
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Project"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Project"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Project"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:Project")])
|
|
291
291
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
292
292
|
super(Project, __self__).__init__(
|
|
293
293
|
'azure-native:devcenter:Project',
|
|
@@ -155,7 +155,7 @@ class ProjectCatalog(pulumi.CustomResource):
|
|
|
155
155
|
|
|
156
156
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2024-02-01.
|
|
157
157
|
|
|
158
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
158
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [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 pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -178,7 +178,7 @@ class ProjectCatalog(pulumi.CustomResource):
|
|
|
178
178
|
|
|
179
179
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2024-02-01.
|
|
180
180
|
|
|
181
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
181
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
182
|
|
|
183
183
|
:param str resource_name: The name of the resource.
|
|
184
184
|
:param ProjectCatalogArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -232,7 +232,7 @@ class ProjectCatalog(pulumi.CustomResource):
|
|
|
232
232
|
__props__.__dict__["sync_state"] = None
|
|
233
233
|
__props__.__dict__["system_data"] = None
|
|
234
234
|
__props__.__dict__["type"] = None
|
|
235
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20240201:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectCatalog")])
|
|
235
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20240201:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectCatalog"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:ProjectCatalog")])
|
|
236
236
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
237
237
|
super(ProjectCatalog, __self__).__init__(
|
|
238
238
|
'azure-native:devcenter:ProjectCatalog',
|
|
@@ -223,7 +223,7 @@ class ProjectEnvironmentType(pulumi.CustomResource):
|
|
|
223
223
|
|
|
224
224
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
225
225
|
|
|
226
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
226
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
227
227
|
|
|
228
228
|
:param str resource_name: The name of the resource.
|
|
229
229
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -250,7 +250,7 @@ class ProjectEnvironmentType(pulumi.CustomResource):
|
|
|
250
250
|
|
|
251
251
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
252
252
|
|
|
253
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
253
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
254
254
|
|
|
255
255
|
:param str resource_name: The name of the resource.
|
|
256
256
|
:param ProjectEnvironmentTypeArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -308,7 +308,7 @@ class ProjectEnvironmentType(pulumi.CustomResource):
|
|
|
308
308
|
__props__.__dict__["provisioning_state"] = None
|
|
309
309
|
__props__.__dict__["system_data"] = None
|
|
310
310
|
__props__.__dict__["type"] = None
|
|
311
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230401:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240201:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectEnvironmentType")])
|
|
311
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230401:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240201:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectEnvironmentType"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:ProjectEnvironmentType")])
|
|
312
312
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
313
313
|
super(ProjectEnvironmentType, __self__).__init__(
|
|
314
314
|
'azure-native:devcenter:ProjectEnvironmentType',
|
|
@@ -120,7 +120,7 @@ class ProjectPolicy(pulumi.CustomResource):
|
|
|
120
120
|
|
|
121
121
|
Uses Azure REST API version 2024-10-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-10-01-preview.
|
|
122
122
|
|
|
123
|
-
Other available API versions: 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
123
|
+
Other available API versions: 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
124
124
|
|
|
125
125
|
:param str resource_name: The name of the resource.
|
|
126
126
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -141,7 +141,7 @@ class ProjectPolicy(pulumi.CustomResource):
|
|
|
141
141
|
|
|
142
142
|
Uses Azure REST API version 2024-10-01-preview. In version 2.x of the Azure Native provider, it used API version 2024-10-01-preview.
|
|
143
143
|
|
|
144
|
-
Other available API versions: 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
144
|
+
Other available API versions: 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
145
145
|
|
|
146
146
|
:param str resource_name: The name of the resource.
|
|
147
147
|
:param ProjectPolicyArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -186,7 +186,7 @@ class ProjectPolicy(pulumi.CustomResource):
|
|
|
186
186
|
__props__.__dict__["provisioning_state"] = None
|
|
187
187
|
__props__.__dict__["system_data"] = None
|
|
188
188
|
__props__.__dict__["type"] = None
|
|
189
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectPolicy"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectPolicy")])
|
|
189
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20241001preview:ProjectPolicy"), pulumi.Alias(type_="azure-native:devcenter/v20250201:ProjectPolicy"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:ProjectPolicy")])
|
|
190
190
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
191
191
|
super(ProjectPolicy, __self__).__init__(
|
|
192
192
|
'azure-native:devcenter:ProjectPolicy',
|
|
@@ -234,7 +234,7 @@ class Schedule(pulumi.CustomResource):
|
|
|
234
234
|
|
|
235
235
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
236
236
|
|
|
237
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
237
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [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.
|
|
@@ -262,7 +262,7 @@ class Schedule(pulumi.CustomResource):
|
|
|
262
262
|
|
|
263
263
|
Uses Azure REST API version 2024-02-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
|
|
264
264
|
|
|
265
|
-
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
265
|
+
Other available API versions: 2023-04-01, 2023-08-01-preview, 2023-10-01-preview, 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-02-01, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
266
266
|
|
|
267
267
|
:param str resource_name: The name of the resource.
|
|
268
268
|
:param ScheduleArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -330,7 +330,7 @@ class Schedule(pulumi.CustomResource):
|
|
|
330
330
|
__props__.__dict__["name"] = None
|
|
331
331
|
__props__.__dict__["provisioning_state"] = None
|
|
332
332
|
__props__.__dict__["system_data"] = None
|
|
333
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Schedule")])
|
|
333
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:devcenter/v20220801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20220901preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20221012preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20221111preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230101preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230401:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20230801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20231001preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240201:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240501preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240601preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240701preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20240801preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20241001preview:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20250201:Schedule"), pulumi.Alias(type_="azure-native:devcenter/v20250401preview:Schedule")])
|
|
334
334
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
335
335
|
super(Schedule, __self__).__init__(
|
|
336
336
|
'azure-native:devcenter:Schedule',
|
|
@@ -235,7 +235,7 @@ def get_policy(policy_name: Optional[str] = None,
|
|
|
235
235
|
|
|
236
236
|
Uses Azure REST API version 2024-02-01.
|
|
237
237
|
|
|
238
|
-
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
238
|
+
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
239
239
|
|
|
240
240
|
|
|
241
241
|
:param str policy_name: The name of the Web Application Firewall Policy.
|
|
@@ -272,7 +272,7 @@ def get_policy_output(policy_name: Optional[pulumi.Input[str]] = None,
|
|
|
272
272
|
|
|
273
273
|
Uses Azure REST API version 2024-02-01.
|
|
274
274
|
|
|
275
|
-
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
275
|
+
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
276
276
|
|
|
277
277
|
|
|
278
278
|
:param str policy_name: The name of the Web Application Firewall Policy.
|
|
@@ -173,7 +173,7 @@ class Policy(pulumi.CustomResource):
|
|
|
173
173
|
|
|
174
174
|
Uses Azure REST API version 2024-02-01.
|
|
175
175
|
|
|
176
|
-
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
176
|
+
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
177
177
|
|
|
178
178
|
:param str resource_name: The name of the resource.
|
|
179
179
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -197,7 +197,7 @@ class Policy(pulumi.CustomResource):
|
|
|
197
197
|
|
|
198
198
|
Uses Azure REST API version 2024-02-01.
|
|
199
199
|
|
|
200
|
-
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
200
|
+
Other available API versions: 2019-03-01, 2019-10-01, 2020-04-01, 2020-11-01, 2021-06-01, 2022-05-01, 2025-03-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native frontdoor [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
201
201
|
|
|
202
202
|
:param str resource_name: The name of the resource.
|
|
203
203
|
:param PolicyArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -250,7 +250,7 @@ class Policy(pulumi.CustomResource):
|
|
|
250
250
|
__props__.__dict__["routing_rule_links"] = None
|
|
251
251
|
__props__.__dict__["security_policy_links"] = None
|
|
252
252
|
__props__.__dict__["type"] = None
|
|
253
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:frontdoor/v20190301:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20191001:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20200401:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20201101:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20210601:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20220501:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20240201:Policy"), pulumi.Alias(type_="azure-native:network/v20210601:Policy"), pulumi.Alias(type_="azure-native:network/v20220501:Policy"), pulumi.Alias(type_="azure-native:network/v20240201:Policy"), pulumi.Alias(type_="azure-native:network:Policy")])
|
|
253
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:frontdoor/v20190301:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20191001:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20200401:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20201101:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20210601:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20220501:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20240201:Policy"), pulumi.Alias(type_="azure-native:frontdoor/v20250301:Policy"), pulumi.Alias(type_="azure-native:network/v20210601:Policy"), pulumi.Alias(type_="azure-native:network/v20220501:Policy"), pulumi.Alias(type_="azure-native:network/v20240201:Policy"), pulumi.Alias(type_="azure-native:network:Policy")])
|
|
254
254
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
255
255
|
super(Policy, __self__).__init__(
|
|
256
256
|
'azure-native:frontdoor:Policy',
|
|
@@ -138,7 +138,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
138
138
|
|
|
139
139
|
Uses Azure REST API version 2024-07-31-preview. In version 2.x of the Azure Native provider, it used API version 2024-03-31-preview.
|
|
140
140
|
|
|
141
|
-
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
141
|
+
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
142
142
|
|
|
143
143
|
:param str resource_name: The name of the resource.
|
|
144
144
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -160,7 +160,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
160
160
|
|
|
161
161
|
Uses Azure REST API version 2024-07-31-preview. In version 2.x of the Azure Native provider, it used API version 2024-03-31-preview.
|
|
162
162
|
|
|
163
|
-
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
163
|
+
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
164
164
|
|
|
165
165
|
:param str resource_name: The name of the resource.
|
|
166
166
|
:param GatewayArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -207,7 +207,7 @@ class Gateway(pulumi.CustomResource):
|
|
|
207
207
|
__props__.__dict__["provisioning_state"] = None
|
|
208
208
|
__props__.__dict__["system_data"] = None
|
|
209
209
|
__props__.__dict__["type"] = None
|
|
210
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:hybridcompute/v20240331preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240520preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240731preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240910preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20241110preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20250113:Gateway")])
|
|
210
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:hybridcompute/v20240331preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240520preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240731preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20240910preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20241110preview:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20250113:Gateway"), pulumi.Alias(type_="azure-native:hybridcompute/v20250219preview:Gateway")])
|
|
211
211
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
212
212
|
super(Gateway, __self__).__init__(
|
|
213
213
|
'azure-native:hybridcompute:Gateway',
|
|
@@ -190,7 +190,7 @@ def get_gateway(gateway_name: Optional[str] = None,
|
|
|
190
190
|
|
|
191
191
|
Uses Azure REST API version 2024-07-31-preview.
|
|
192
192
|
|
|
193
|
-
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
193
|
+
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
:param str gateway_name: The name of the Gateway.
|
|
@@ -223,7 +223,7 @@ def get_gateway_output(gateway_name: Optional[pulumi.Input[str]] = None,
|
|
|
223
223
|
|
|
224
224
|
Uses Azure REST API version 2024-07-31-preview.
|
|
225
225
|
|
|
226
|
-
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
226
|
+
Other available API versions: 2024-03-31-preview, 2024-05-20-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
227
227
|
|
|
228
228
|
|
|
229
229
|
:param str gateway_name: The name of the Gateway.
|
|
@@ -178,7 +178,7 @@ def get_license(license_name: Optional[str] = None,
|
|
|
178
178
|
|
|
179
179
|
Uses Azure REST API version 2024-07-10.
|
|
180
180
|
|
|
181
|
-
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
181
|
+
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
182
182
|
|
|
183
183
|
|
|
184
184
|
:param str license_name: The name of the license.
|
|
@@ -210,7 +210,7 @@ def get_license_output(license_name: Optional[pulumi.Input[str]] = None,
|
|
|
210
210
|
|
|
211
211
|
Uses Azure REST API version 2024-07-10.
|
|
212
212
|
|
|
213
|
-
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
213
|
+
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
214
214
|
|
|
215
215
|
|
|
216
216
|
:param str license_name: The name of the license.
|
|
@@ -323,7 +323,7 @@ def get_license_profile(license_profile_name: Optional[str] = None,
|
|
|
323
323
|
|
|
324
324
|
Uses Azure REST API version 2024-07-10.
|
|
325
325
|
|
|
326
|
-
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
326
|
+
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
327
327
|
|
|
328
328
|
|
|
329
329
|
:param str license_profile_name: The name of the license profile.
|
|
@@ -370,7 +370,7 @@ def get_license_profile_output(license_profile_name: Optional[pulumi.Input[str]]
|
|
|
370
370
|
|
|
371
371
|
Uses Azure REST API version 2024-07-10.
|
|
372
372
|
|
|
373
|
-
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
373
|
+
Other available API versions: 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
374
374
|
|
|
375
375
|
|
|
376
376
|
:param str license_profile_name: The name of the license profile.
|
|
@@ -539,7 +539,7 @@ def get_machine(expand: Optional[str] = None,
|
|
|
539
539
|
|
|
540
540
|
Uses Azure REST API version 2024-07-10.
|
|
541
541
|
|
|
542
|
-
Other available API versions: 2020-08-15-preview, 2021-01-28-preview, 2021-03-25-preview, 2021-04-22-preview, 2021-05-17-preview, 2021-05-20, 2021-06-10-preview, 2021-12-10-preview, 2022-03-10, 2022-05-10-preview, 2022-08-11-preview, 2022-11-10, 2022-12-27, 2022-12-27-preview, 2023-03-15-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
542
|
+
Other available API versions: 2020-08-15-preview, 2021-01-28-preview, 2021-03-25-preview, 2021-04-22-preview, 2021-05-17-preview, 2021-05-20, 2021-06-10-preview, 2021-12-10-preview, 2022-03-10, 2022-05-10-preview, 2022-08-11-preview, 2022-11-10, 2022-12-27, 2022-12-27-preview, 2023-03-15-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
543
543
|
|
|
544
544
|
|
|
545
545
|
:param str expand: The expand expression to apply on the operation.
|
|
@@ -604,7 +604,7 @@ def get_machine_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
604
604
|
|
|
605
605
|
Uses Azure REST API version 2024-07-10.
|
|
606
606
|
|
|
607
|
-
Other available API versions: 2020-08-15-preview, 2021-01-28-preview, 2021-03-25-preview, 2021-04-22-preview, 2021-05-17-preview, 2021-05-20, 2021-06-10-preview, 2021-12-10-preview, 2022-03-10, 2022-05-10-preview, 2022-08-11-preview, 2022-11-10, 2022-12-27, 2022-12-27-preview, 2023-03-15-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
607
|
+
Other available API versions: 2020-08-15-preview, 2021-01-28-preview, 2021-03-25-preview, 2021-04-22-preview, 2021-05-17-preview, 2021-05-20, 2021-06-10-preview, 2021-12-10-preview, 2022-03-10, 2022-05-10-preview, 2022-08-11-preview, 2022-11-10, 2022-12-27, 2022-12-27-preview, 2023-03-15-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview, 2024-05-20-preview, 2024-07-31-preview, 2024-09-10-preview, 2024-11-10-preview, 2025-01-13, 2025-02-19-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridcompute [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
|
608
608
|
|
|
609
609
|
|
|
610
610
|
:param str expand: The expand expression to apply on the operation.
|