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
|
@@ -167,7 +167,7 @@ def get_attached_network_by_dev_center(attached_network_connection_name: Optiona
|
|
|
167
167
|
|
|
168
168
|
Uses Azure REST API version 2024-02-01.
|
|
169
169
|
|
|
170
|
-
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.
|
|
170
|
+
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.
|
|
171
171
|
|
|
172
172
|
|
|
173
173
|
:param str attached_network_connection_name: The name of the attached NetworkConnection.
|
|
@@ -201,7 +201,7 @@ def get_attached_network_by_dev_center_output(attached_network_connection_name:
|
|
|
201
201
|
|
|
202
202
|
Uses Azure REST API version 2024-02-01.
|
|
203
203
|
|
|
204
|
-
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.
|
|
204
|
+
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.
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
:param str attached_network_connection_name: The name of the attached NetworkConnection.
|
|
@@ -227,7 +227,7 @@ def get_catalog(catalog_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 catalog_name: The name of the Catalog.
|
|
@@ -266,7 +266,7 @@ def get_catalog_output(catalog_name: Optional[pulumi.Input[str]] = None,
|
|
|
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 catalog_name: The name of the Catalog.
|
|
@@ -83,7 +83,7 @@ def get_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: 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.
|
|
86
|
+
Other available API versions: 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.
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -110,7 +110,7 @@ def get_catalog_sync_error_details_output(catalog_name: Optional[pulumi.Input[st
|
|
|
110
110
|
|
|
111
111
|
Uses Azure REST API version 2024-02-01.
|
|
112
112
|
|
|
113
|
-
Other available API versions: 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.
|
|
113
|
+
Other available API versions: 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.
|
|
114
114
|
|
|
115
115
|
|
|
116
116
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -60,7 +60,7 @@ def get_customization_task_error_details(catalog_name: Optional[str] = None,
|
|
|
60
60
|
|
|
61
61
|
Uses Azure REST API version 2024-10-01-preview.
|
|
62
62
|
|
|
63
|
-
Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 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.
|
|
63
|
+
Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 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.
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -88,7 +88,7 @@ def get_customization_task_error_details_output(catalog_name: Optional[pulumi.In
|
|
|
88
88
|
|
|
89
89
|
Uses Azure REST API version 2024-10-01-preview.
|
|
90
90
|
|
|
91
|
-
Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 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.
|
|
91
|
+
Other available API versions: 2023-08-01-preview, 2023-10-01-preview, 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.
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -239,7 +239,7 @@ def get_dev_box_definition(dev_box_definition_name: Optional[str] = None,
|
|
|
239
239
|
|
|
240
240
|
Uses Azure REST API version 2024-02-01.
|
|
241
241
|
|
|
242
|
-
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.
|
|
242
|
+
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.
|
|
243
243
|
|
|
244
244
|
|
|
245
245
|
:param str dev_box_definition_name: The name of the Dev Box definition.
|
|
@@ -279,7 +279,7 @@ def get_dev_box_definition_output(dev_box_definition_name: Optional[pulumi.Input
|
|
|
279
279
|
|
|
280
280
|
Uses Azure REST API version 2024-02-01.
|
|
281
281
|
|
|
282
|
-
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.
|
|
282
|
+
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.
|
|
283
283
|
|
|
284
284
|
|
|
285
285
|
:param str dev_box_definition_name: The name of the Dev Box definition.
|
|
@@ -202,7 +202,7 @@ def get_dev_center(dev_center_name: Optional[str] = None,
|
|
|
202
202
|
|
|
203
203
|
Uses Azure REST API version 2024-02-01.
|
|
204
204
|
|
|
205
|
-
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.
|
|
205
|
+
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.
|
|
206
206
|
|
|
207
207
|
|
|
208
208
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -236,7 +236,7 @@ def get_dev_center_output(dev_center_name: Optional[pulumi.Input[str]] = None,
|
|
|
236
236
|
|
|
237
237
|
Uses Azure REST API version 2024-02-01.
|
|
238
238
|
|
|
239
|
-
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.
|
|
239
|
+
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.
|
|
240
240
|
|
|
241
241
|
|
|
242
242
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetDevCenterCatalogImageDefinitionBuildDetailsResult',
|
|
20
|
+
'AwaitableGetDevCenterCatalogImageDefinitionBuildDetailsResult',
|
|
21
|
+
'get_dev_center_catalog_image_definition_build_details',
|
|
22
|
+
'get_dev_center_catalog_image_definition_build_details_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDevCenterCatalogImageDefinitionBuildDetailsResult:
|
|
27
|
+
"""
|
|
28
|
+
Represents a specific build of an Image Definition.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, end_time=None, error_details=None, id=None, image_reference=None, name=None, start_time=None, status=None, system_data=None, task_groups=None, type=None):
|
|
31
|
+
if end_time and not isinstance(end_time, str):
|
|
32
|
+
raise TypeError("Expected argument 'end_time' to be a str")
|
|
33
|
+
pulumi.set(__self__, "end_time", end_time)
|
|
34
|
+
if error_details and not isinstance(error_details, dict):
|
|
35
|
+
raise TypeError("Expected argument 'error_details' to be a dict")
|
|
36
|
+
pulumi.set(__self__, "error_details", error_details)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if image_reference and not isinstance(image_reference, dict):
|
|
41
|
+
raise TypeError("Expected argument 'image_reference' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "image_reference", image_reference)
|
|
43
|
+
if name and not isinstance(name, str):
|
|
44
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
45
|
+
pulumi.set(__self__, "name", name)
|
|
46
|
+
if start_time and not isinstance(start_time, str):
|
|
47
|
+
raise TypeError("Expected argument 'start_time' to be a str")
|
|
48
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
49
|
+
if status and not isinstance(status, str):
|
|
50
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
51
|
+
pulumi.set(__self__, "status", status)
|
|
52
|
+
if system_data and not isinstance(system_data, dict):
|
|
53
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
55
|
+
if task_groups and not isinstance(task_groups, list):
|
|
56
|
+
raise TypeError("Expected argument 'task_groups' to be a list")
|
|
57
|
+
pulumi.set(__self__, "task_groups", task_groups)
|
|
58
|
+
if type and not isinstance(type, str):
|
|
59
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
60
|
+
pulumi.set(__self__, "type", type)
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter(name="endTime")
|
|
64
|
+
def end_time(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
End time of the task group.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "end_time")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="errorDetails")
|
|
72
|
+
def error_details(self) -> 'outputs.ImageCreationErrorDetailsResponse':
|
|
73
|
+
"""
|
|
74
|
+
Details for image creation error. Populated when the image creation is not successful.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "error_details")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter
|
|
80
|
+
def id(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "id")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="imageReference")
|
|
88
|
+
def image_reference(self) -> 'outputs.ImageReferenceResponse':
|
|
89
|
+
"""
|
|
90
|
+
The specific image version used by the build.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "image_reference")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def name(self) -> str:
|
|
97
|
+
"""
|
|
98
|
+
The name of the resource
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "name")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="startTime")
|
|
104
|
+
def start_time(self) -> str:
|
|
105
|
+
"""
|
|
106
|
+
Start time of the task group.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "start_time")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def status(self) -> str:
|
|
113
|
+
"""
|
|
114
|
+
The status of the build.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "status")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="systemData")
|
|
120
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
121
|
+
"""
|
|
122
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "system_data")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="taskGroups")
|
|
128
|
+
def task_groups(self) -> Sequence['outputs.ImageDefinitionBuildTaskGroupResponse']:
|
|
129
|
+
"""
|
|
130
|
+
The list of task groups executed during the image definition build.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "task_groups")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter
|
|
136
|
+
def type(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "type")
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class AwaitableGetDevCenterCatalogImageDefinitionBuildDetailsResult(GetDevCenterCatalogImageDefinitionBuildDetailsResult):
|
|
144
|
+
# pylint: disable=using-constant-test
|
|
145
|
+
def __await__(self):
|
|
146
|
+
if False:
|
|
147
|
+
yield self
|
|
148
|
+
return GetDevCenterCatalogImageDefinitionBuildDetailsResult(
|
|
149
|
+
end_time=self.end_time,
|
|
150
|
+
error_details=self.error_details,
|
|
151
|
+
id=self.id,
|
|
152
|
+
image_reference=self.image_reference,
|
|
153
|
+
name=self.name,
|
|
154
|
+
start_time=self.start_time,
|
|
155
|
+
status=self.status,
|
|
156
|
+
system_data=self.system_data,
|
|
157
|
+
task_groups=self.task_groups,
|
|
158
|
+
type=self.type)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
def get_dev_center_catalog_image_definition_build_details(build_name: Optional[str] = None,
|
|
162
|
+
catalog_name: Optional[str] = None,
|
|
163
|
+
dev_center_name: Optional[str] = None,
|
|
164
|
+
image_definition_name: Optional[str] = None,
|
|
165
|
+
resource_group_name: Optional[str] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDevCenterCatalogImageDefinitionBuildDetailsResult:
|
|
167
|
+
"""
|
|
168
|
+
Gets Build details
|
|
169
|
+
|
|
170
|
+
Uses Azure REST API version 2025-04-01-preview.
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
:param str build_name: The ID of the Image Definition Build.
|
|
174
|
+
:param str catalog_name: The name of the Catalog.
|
|
175
|
+
:param str dev_center_name: The name of the devcenter.
|
|
176
|
+
:param str image_definition_name: The name of the Image Definition.
|
|
177
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
178
|
+
"""
|
|
179
|
+
__args__ = dict()
|
|
180
|
+
__args__['buildName'] = build_name
|
|
181
|
+
__args__['catalogName'] = catalog_name
|
|
182
|
+
__args__['devCenterName'] = dev_center_name
|
|
183
|
+
__args__['imageDefinitionName'] = image_definition_name
|
|
184
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
185
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
186
|
+
__ret__ = pulumi.runtime.invoke('azure-native:devcenter:getDevCenterCatalogImageDefinitionBuildDetails', __args__, opts=opts, typ=GetDevCenterCatalogImageDefinitionBuildDetailsResult).value
|
|
187
|
+
|
|
188
|
+
return AwaitableGetDevCenterCatalogImageDefinitionBuildDetailsResult(
|
|
189
|
+
end_time=pulumi.get(__ret__, 'end_time'),
|
|
190
|
+
error_details=pulumi.get(__ret__, 'error_details'),
|
|
191
|
+
id=pulumi.get(__ret__, 'id'),
|
|
192
|
+
image_reference=pulumi.get(__ret__, 'image_reference'),
|
|
193
|
+
name=pulumi.get(__ret__, 'name'),
|
|
194
|
+
start_time=pulumi.get(__ret__, 'start_time'),
|
|
195
|
+
status=pulumi.get(__ret__, 'status'),
|
|
196
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
197
|
+
task_groups=pulumi.get(__ret__, 'task_groups'),
|
|
198
|
+
type=pulumi.get(__ret__, 'type'))
|
|
199
|
+
def get_dev_center_catalog_image_definition_build_details_output(build_name: Optional[pulumi.Input[str]] = None,
|
|
200
|
+
catalog_name: Optional[pulumi.Input[str]] = None,
|
|
201
|
+
dev_center_name: Optional[pulumi.Input[str]] = None,
|
|
202
|
+
image_definition_name: Optional[pulumi.Input[str]] = None,
|
|
203
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
204
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDevCenterCatalogImageDefinitionBuildDetailsResult]:
|
|
205
|
+
"""
|
|
206
|
+
Gets Build details
|
|
207
|
+
|
|
208
|
+
Uses Azure REST API version 2025-04-01-preview.
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
:param str build_name: The ID of the Image Definition Build.
|
|
212
|
+
:param str catalog_name: The name of the Catalog.
|
|
213
|
+
:param str dev_center_name: The name of the devcenter.
|
|
214
|
+
:param str image_definition_name: The name of the Image Definition.
|
|
215
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
216
|
+
"""
|
|
217
|
+
__args__ = dict()
|
|
218
|
+
__args__['buildName'] = build_name
|
|
219
|
+
__args__['catalogName'] = catalog_name
|
|
220
|
+
__args__['devCenterName'] = dev_center_name
|
|
221
|
+
__args__['imageDefinitionName'] = image_definition_name
|
|
222
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
223
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
224
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:devcenter:getDevCenterCatalogImageDefinitionBuildDetails', __args__, opts=opts, typ=GetDevCenterCatalogImageDefinitionBuildDetailsResult)
|
|
225
|
+
return __ret__.apply(lambda __response__: GetDevCenterCatalogImageDefinitionBuildDetailsResult(
|
|
226
|
+
end_time=pulumi.get(__response__, 'end_time'),
|
|
227
|
+
error_details=pulumi.get(__response__, 'error_details'),
|
|
228
|
+
id=pulumi.get(__response__, 'id'),
|
|
229
|
+
image_reference=pulumi.get(__response__, 'image_reference'),
|
|
230
|
+
name=pulumi.get(__response__, 'name'),
|
|
231
|
+
start_time=pulumi.get(__response__, 'start_time'),
|
|
232
|
+
status=pulumi.get(__response__, 'status'),
|
|
233
|
+
system_data=pulumi.get(__response__, 'system_data'),
|
|
234
|
+
task_groups=pulumi.get(__response__, 'task_groups'),
|
|
235
|
+
type=pulumi.get(__response__, 'type')))
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetDevCenterCatalogImageDefinitionErrorDetailsResult',
|
|
20
|
+
'AwaitableGetDevCenterCatalogImageDefinitionErrorDetailsResult',
|
|
21
|
+
'get_dev_center_catalog_image_definition_error_details',
|
|
22
|
+
'get_dev_center_catalog_image_definition_error_details_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDevCenterCatalogImageDefinitionErrorDetailsResult:
|
|
27
|
+
"""
|
|
28
|
+
List of validator error details. Populated when changes are made to the resource or its dependent resources that impact the validity of the Catalog resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, errors=None):
|
|
31
|
+
if errors and not isinstance(errors, list):
|
|
32
|
+
raise TypeError("Expected argument 'errors' to be a list")
|
|
33
|
+
pulumi.set(__self__, "errors", errors)
|
|
34
|
+
|
|
35
|
+
@property
|
|
36
|
+
@pulumi.getter
|
|
37
|
+
def errors(self) -> Sequence['outputs.CatalogErrorDetailsResponse']:
|
|
38
|
+
"""
|
|
39
|
+
Errors associated with resources synchronized from the catalog.
|
|
40
|
+
"""
|
|
41
|
+
return pulumi.get(self, "errors")
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class AwaitableGetDevCenterCatalogImageDefinitionErrorDetailsResult(GetDevCenterCatalogImageDefinitionErrorDetailsResult):
|
|
45
|
+
# pylint: disable=using-constant-test
|
|
46
|
+
def __await__(self):
|
|
47
|
+
if False:
|
|
48
|
+
yield self
|
|
49
|
+
return GetDevCenterCatalogImageDefinitionErrorDetailsResult(
|
|
50
|
+
errors=self.errors)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def get_dev_center_catalog_image_definition_error_details(catalog_name: Optional[str] = None,
|
|
54
|
+
dev_center_name: Optional[str] = None,
|
|
55
|
+
image_definition_name: Optional[str] = None,
|
|
56
|
+
resource_group_name: Optional[str] = None,
|
|
57
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDevCenterCatalogImageDefinitionErrorDetailsResult:
|
|
58
|
+
"""
|
|
59
|
+
Gets Image Definition error details
|
|
60
|
+
|
|
61
|
+
Uses Azure REST API version 2025-04-01-preview.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
:param str catalog_name: The name of the Catalog.
|
|
65
|
+
:param str dev_center_name: The name of the devcenter.
|
|
66
|
+
:param str image_definition_name: The name of the Image Definition.
|
|
67
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
68
|
+
"""
|
|
69
|
+
__args__ = dict()
|
|
70
|
+
__args__['catalogName'] = catalog_name
|
|
71
|
+
__args__['devCenterName'] = dev_center_name
|
|
72
|
+
__args__['imageDefinitionName'] = image_definition_name
|
|
73
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
74
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
75
|
+
__ret__ = pulumi.runtime.invoke('azure-native:devcenter:getDevCenterCatalogImageDefinitionErrorDetails', __args__, opts=opts, typ=GetDevCenterCatalogImageDefinitionErrorDetailsResult).value
|
|
76
|
+
|
|
77
|
+
return AwaitableGetDevCenterCatalogImageDefinitionErrorDetailsResult(
|
|
78
|
+
errors=pulumi.get(__ret__, 'errors'))
|
|
79
|
+
def get_dev_center_catalog_image_definition_error_details_output(catalog_name: Optional[pulumi.Input[str]] = None,
|
|
80
|
+
dev_center_name: Optional[pulumi.Input[str]] = None,
|
|
81
|
+
image_definition_name: Optional[pulumi.Input[str]] = None,
|
|
82
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
83
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDevCenterCatalogImageDefinitionErrorDetailsResult]:
|
|
84
|
+
"""
|
|
85
|
+
Gets Image Definition error details
|
|
86
|
+
|
|
87
|
+
Uses Azure REST API version 2025-04-01-preview.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
:param str catalog_name: The name of the Catalog.
|
|
91
|
+
:param str dev_center_name: The name of the devcenter.
|
|
92
|
+
:param str image_definition_name: The name of the Image Definition.
|
|
93
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
94
|
+
"""
|
|
95
|
+
__args__ = dict()
|
|
96
|
+
__args__['catalogName'] = catalog_name
|
|
97
|
+
__args__['devCenterName'] = dev_center_name
|
|
98
|
+
__args__['imageDefinitionName'] = image_definition_name
|
|
99
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
100
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
101
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:devcenter:getDevCenterCatalogImageDefinitionErrorDetails', __args__, opts=opts, typ=GetDevCenterCatalogImageDefinitionErrorDetailsResult)
|
|
102
|
+
return __ret__.apply(lambda __response__: GetDevCenterCatalogImageDefinitionErrorDetailsResult(
|
|
103
|
+
errors=pulumi.get(__response__, 'errors')))
|
|
@@ -179,7 +179,7 @@ def get_encryption_set(dev_center_name: Optional[str] = None,
|
|
|
179
179
|
|
|
180
180
|
Uses Azure REST API version 2024-10-01-preview.
|
|
181
181
|
|
|
182
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-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
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 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.
|
|
183
183
|
|
|
184
184
|
|
|
185
185
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -214,7 +214,7 @@ def get_encryption_set_output(dev_center_name: Optional[pulumi.Input[str]] = Non
|
|
|
214
214
|
|
|
215
215
|
Uses Azure REST API version 2024-10-01-preview.
|
|
216
216
|
|
|
217
|
-
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-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.
|
|
217
|
+
Other available API versions: 2024-05-01-preview, 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 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.
|
|
218
218
|
|
|
219
219
|
|
|
220
220
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -60,7 +60,7 @@ def get_environment_definition_error_details(catalog_name: Optional[str] = None,
|
|
|
60
60
|
|
|
61
61
|
Uses Azure REST API version 2024-02-01.
|
|
62
62
|
|
|
63
|
-
Other available API versions: 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.
|
|
63
|
+
Other available API versions: 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.
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -88,7 +88,7 @@ def get_environment_definition_error_details_output(catalog_name: Optional[pulum
|
|
|
88
88
|
|
|
89
89
|
Uses Azure REST API version 2024-02-01.
|
|
90
90
|
|
|
91
|
-
Other available API versions: 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.
|
|
91
|
+
Other available API versions: 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.
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -143,7 +143,7 @@ def get_environment_type(dev_center_name: Optional[str] = None,
|
|
|
143
143
|
|
|
144
144
|
Uses Azure REST API version 2024-02-01.
|
|
145
145
|
|
|
146
|
-
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.
|
|
146
|
+
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.
|
|
147
147
|
|
|
148
148
|
|
|
149
149
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -175,7 +175,7 @@ def get_environment_type_output(dev_center_name: Optional[pulumi.Input[str]] = N
|
|
|
175
175
|
|
|
176
176
|
Uses Azure REST API version 2024-02-01.
|
|
177
177
|
|
|
178
|
-
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.
|
|
178
|
+
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.
|
|
179
179
|
|
|
180
180
|
|
|
181
181
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -131,7 +131,7 @@ def get_gallery(dev_center_name: Optional[str] = None,
|
|
|
131
131
|
|
|
132
132
|
Uses Azure REST API version 2024-02-01.
|
|
133
133
|
|
|
134
|
-
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.
|
|
134
|
+
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.
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -162,7 +162,7 @@ def get_gallery_output(dev_center_name: Optional[pulumi.Input[str]] = None,
|
|
|
162
162
|
|
|
163
163
|
Uses Azure REST API version 2024-02-01.
|
|
164
164
|
|
|
165
|
-
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.
|
|
165
|
+
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.
|
|
166
166
|
|
|
167
167
|
|
|
168
168
|
:param str dev_center_name: The name of the devcenter.
|
|
@@ -238,7 +238,7 @@ def get_network_connection(network_connection_name: Optional[str] = None,
|
|
|
238
238
|
|
|
239
239
|
Uses Azure REST API version 2024-02-01.
|
|
240
240
|
|
|
241
|
-
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.
|
|
241
|
+
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.
|
|
242
242
|
|
|
243
243
|
|
|
244
244
|
:param str network_connection_name: Name of the Network Connection that can be applied to a Pool.
|
|
@@ -275,7 +275,7 @@ def get_network_connection_output(network_connection_name: Optional[pulumi.Input
|
|
|
275
275
|
|
|
276
276
|
Uses Azure REST API version 2024-02-01.
|
|
277
277
|
|
|
278
|
-
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.
|
|
278
|
+
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.
|
|
279
279
|
|
|
280
280
|
|
|
281
281
|
:param str network_connection_name: Name of the Network Connection that can be applied to a Pool.
|
|
@@ -287,7 +287,7 @@ def get_pool(pool_name: Optional[str] = None,
|
|
|
287
287
|
|
|
288
288
|
Uses Azure REST API version 2024-02-01.
|
|
289
289
|
|
|
290
|
-
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.
|
|
290
|
+
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.
|
|
291
291
|
|
|
292
292
|
|
|
293
293
|
:param str pool_name: Name of the pool.
|
|
@@ -331,7 +331,7 @@ def get_pool_output(pool_name: Optional[pulumi.Input[str]] = None,
|
|
|
331
331
|
|
|
332
332
|
Uses Azure REST API version 2024-02-01.
|
|
333
333
|
|
|
334
|
-
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.
|
|
334
|
+
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.
|
|
335
335
|
|
|
336
336
|
|
|
337
337
|
:param str pool_name: Name of the pool.
|
|
@@ -226,7 +226,7 @@ def get_project(project_name: Optional[str] = None,
|
|
|
226
226
|
|
|
227
227
|
Uses Azure REST API version 2024-02-01.
|
|
228
228
|
|
|
229
|
-
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.
|
|
229
|
+
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.
|
|
230
230
|
|
|
231
231
|
|
|
232
232
|
:param str project_name: The name of the project.
|
|
@@ -262,7 +262,7 @@ def get_project_output(project_name: Optional[pulumi.Input[str]] = None,
|
|
|
262
262
|
|
|
263
263
|
Uses Azure REST API version 2024-02-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
|
|
|
268
268
|
:param str project_name: The name of the project.
|
|
@@ -227,7 +227,7 @@ def get_project_catalog(catalog_name: Optional[str] = None,
|
|
|
227
227
|
|
|
228
228
|
Uses Azure REST API version 2024-02-01.
|
|
229
229
|
|
|
230
|
-
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.
|
|
230
|
+
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.
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
:param str catalog_name: The name of the Catalog.
|
|
@@ -266,7 +266,7 @@ def get_project_catalog_output(catalog_name: Optional[pulumi.Input[str]] = None,
|
|
|
266
266
|
|
|
267
267
|
Uses Azure REST API version 2024-02-01.
|
|
268
268
|
|
|
269
|
-
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.
|
|
269
|
+
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.
|
|
270
270
|
|
|
271
271
|
|
|
272
272
|
:param str catalog_name: The name of the Catalog.
|