pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.1__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 +95 -2
- pulumi_azure_native/authorization/__init__.py +3 -0
- pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
- pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
- pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
- pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
- pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
- pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
- pulumi_azure_native/azurearcdata/__init__.py +8 -0
- pulumi_azure_native/azurearcdata/_enums.py +55 -0
- pulumi_azure_native/azurearcdata/_inputs.py +226 -0
- pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
- pulumi_azure_native/azurearcdata/data_controller.py +3 -3
- pulumi_azure_native/azurearcdata/failover_group.py +3 -3
- pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
- pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
- pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
- pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
- pulumi_azure_native/azurearcdata/outputs.py +489 -0
- pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
- pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
- pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
- pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
- pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
- pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
- pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
- pulumi_azure_native/azurefleet/__init__.py +3 -0
- pulumi_azure_native/azurefleet/fleet.py +3 -3
- pulumi_azure_native/azurefleet/get_fleet.py +2 -2
- pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
- pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
- pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
- pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
- pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
- pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
- pulumi_azure_native/codesigning/__init__.py +3 -0
- pulumi_azure_native/codesigning/certificate_profile.py +5 -1
- pulumi_azure_native/codesigning/code_signing_account.py +5 -1
- pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
- pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
- pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
- pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
- pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
- pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
- pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
- pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
- pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
- pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
- pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
- pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
- pulumi_azure_native/containerinstance/__init__.py +8 -0
- pulumi_azure_native/containerinstance/_enums.py +1 -1
- pulumi_azure_native/containerinstance/_inputs.py +165 -0
- pulumi_azure_native/containerinstance/container_group.py +3 -3
- pulumi_azure_native/containerinstance/get_container_group.py +2 -2
- pulumi_azure_native/containerinstance/get_n_group.py +216 -0
- pulumi_azure_native/containerinstance/n_group.py +357 -0
- pulumi_azure_native/containerinstance/outputs.py +328 -0
- pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
- pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
- pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
- pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
- pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
- pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
- pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
- pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
- pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
- pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
- pulumi_azure_native/dbforpostgresql/backup.py +5 -1
- pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
- pulumi_azure_native/dbforpostgresql/database.py +3 -3
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
- pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
- pulumi_azure_native/dbforpostgresql/migration.py +3 -3
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/server.py +3 -3
- pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
- pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
- pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
- pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
- pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
- pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
- pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
- pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
- pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
- pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
- pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
- pulumi_azure_native/iotoperations/__init__.py +3 -0
- pulumi_azure_native/iotoperations/broker.py +3 -3
- pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
- pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
- pulumi_azure_native/iotoperations/broker_listener.py +3 -3
- pulumi_azure_native/iotoperations/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/get_broker.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
- pulumi_azure_native/iotoperations/get_instance.py +2 -2
- pulumi_azure_native/iotoperations/instance.py +3 -3
- pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
- pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
- pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
- pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
- pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/RECORD +273 -164
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,386 @@
|
|
|
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
|
+
'GetContainerGroupResult',
|
|
20
|
+
'AwaitableGetContainerGroupResult',
|
|
21
|
+
'get_container_group',
|
|
22
|
+
'get_container_group_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetContainerGroupResult:
|
|
27
|
+
"""
|
|
28
|
+
A container group.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, confidential_compute_properties=None, containers=None, diagnostics=None, dns_config=None, encryption_properties=None, extensions=None, id=None, identity=None, image_registry_credentials=None, init_containers=None, instance_view=None, ip_address=None, location=None, name=None, os_type=None, priority=None, provisioning_state=None, restart_policy=None, sku=None, subnet_ids=None, tags=None, type=None, volumes=None, zones=None):
|
|
31
|
+
if confidential_compute_properties and not isinstance(confidential_compute_properties, dict):
|
|
32
|
+
raise TypeError("Expected argument 'confidential_compute_properties' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "confidential_compute_properties", confidential_compute_properties)
|
|
34
|
+
if containers and not isinstance(containers, list):
|
|
35
|
+
raise TypeError("Expected argument 'containers' to be a list")
|
|
36
|
+
pulumi.set(__self__, "containers", containers)
|
|
37
|
+
if diagnostics and not isinstance(diagnostics, dict):
|
|
38
|
+
raise TypeError("Expected argument 'diagnostics' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "diagnostics", diagnostics)
|
|
40
|
+
if dns_config and not isinstance(dns_config, dict):
|
|
41
|
+
raise TypeError("Expected argument 'dns_config' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "dns_config", dns_config)
|
|
43
|
+
if encryption_properties and not isinstance(encryption_properties, dict):
|
|
44
|
+
raise TypeError("Expected argument 'encryption_properties' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "encryption_properties", encryption_properties)
|
|
46
|
+
if extensions and not isinstance(extensions, list):
|
|
47
|
+
raise TypeError("Expected argument 'extensions' to be a list")
|
|
48
|
+
pulumi.set(__self__, "extensions", extensions)
|
|
49
|
+
if id and not isinstance(id, str):
|
|
50
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
51
|
+
pulumi.set(__self__, "id", id)
|
|
52
|
+
if identity and not isinstance(identity, dict):
|
|
53
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "identity", identity)
|
|
55
|
+
if image_registry_credentials and not isinstance(image_registry_credentials, list):
|
|
56
|
+
raise TypeError("Expected argument 'image_registry_credentials' to be a list")
|
|
57
|
+
pulumi.set(__self__, "image_registry_credentials", image_registry_credentials)
|
|
58
|
+
if init_containers and not isinstance(init_containers, list):
|
|
59
|
+
raise TypeError("Expected argument 'init_containers' to be a list")
|
|
60
|
+
pulumi.set(__self__, "init_containers", init_containers)
|
|
61
|
+
if instance_view and not isinstance(instance_view, dict):
|
|
62
|
+
raise TypeError("Expected argument 'instance_view' to be a dict")
|
|
63
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
64
|
+
if ip_address and not isinstance(ip_address, dict):
|
|
65
|
+
raise TypeError("Expected argument 'ip_address' to be a dict")
|
|
66
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
|
67
|
+
if location and not isinstance(location, str):
|
|
68
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
69
|
+
pulumi.set(__self__, "location", location)
|
|
70
|
+
if name and not isinstance(name, str):
|
|
71
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
72
|
+
pulumi.set(__self__, "name", name)
|
|
73
|
+
if os_type and not isinstance(os_type, str):
|
|
74
|
+
raise TypeError("Expected argument 'os_type' to be a str")
|
|
75
|
+
pulumi.set(__self__, "os_type", os_type)
|
|
76
|
+
if priority and not isinstance(priority, str):
|
|
77
|
+
raise TypeError("Expected argument 'priority' to be a str")
|
|
78
|
+
pulumi.set(__self__, "priority", priority)
|
|
79
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
80
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
81
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
82
|
+
if restart_policy and not isinstance(restart_policy, str):
|
|
83
|
+
raise TypeError("Expected argument 'restart_policy' to be a str")
|
|
84
|
+
pulumi.set(__self__, "restart_policy", restart_policy)
|
|
85
|
+
if sku and not isinstance(sku, str):
|
|
86
|
+
raise TypeError("Expected argument 'sku' to be a str")
|
|
87
|
+
pulumi.set(__self__, "sku", sku)
|
|
88
|
+
if subnet_ids and not isinstance(subnet_ids, list):
|
|
89
|
+
raise TypeError("Expected argument 'subnet_ids' to be a list")
|
|
90
|
+
pulumi.set(__self__, "subnet_ids", subnet_ids)
|
|
91
|
+
if tags and not isinstance(tags, dict):
|
|
92
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
93
|
+
pulumi.set(__self__, "tags", tags)
|
|
94
|
+
if type and not isinstance(type, str):
|
|
95
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
96
|
+
pulumi.set(__self__, "type", type)
|
|
97
|
+
if volumes and not isinstance(volumes, list):
|
|
98
|
+
raise TypeError("Expected argument 'volumes' to be a list")
|
|
99
|
+
pulumi.set(__self__, "volumes", volumes)
|
|
100
|
+
if zones and not isinstance(zones, list):
|
|
101
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
102
|
+
pulumi.set(__self__, "zones", zones)
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter(name="confidentialComputeProperties")
|
|
106
|
+
def confidential_compute_properties(self) -> Optional['outputs.ConfidentialComputePropertiesResponse']:
|
|
107
|
+
"""
|
|
108
|
+
The properties for confidential container group
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "confidential_compute_properties")
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def containers(self) -> Sequence['outputs.ContainerResponse']:
|
|
115
|
+
"""
|
|
116
|
+
The containers within the container group.
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "containers")
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter
|
|
122
|
+
def diagnostics(self) -> Optional['outputs.ContainerGroupDiagnosticsResponse']:
|
|
123
|
+
"""
|
|
124
|
+
The diagnostic information for a container group.
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "diagnostics")
|
|
127
|
+
|
|
128
|
+
@property
|
|
129
|
+
@pulumi.getter(name="dnsConfig")
|
|
130
|
+
def dns_config(self) -> Optional['outputs.DnsConfigurationResponse']:
|
|
131
|
+
"""
|
|
132
|
+
The DNS config information for a container group.
|
|
133
|
+
"""
|
|
134
|
+
return pulumi.get(self, "dns_config")
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter(name="encryptionProperties")
|
|
138
|
+
def encryption_properties(self) -> Optional['outputs.EncryptionPropertiesResponse']:
|
|
139
|
+
"""
|
|
140
|
+
The encryption properties for a container group.
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "encryption_properties")
|
|
143
|
+
|
|
144
|
+
@property
|
|
145
|
+
@pulumi.getter
|
|
146
|
+
def extensions(self) -> Optional[Sequence['outputs.DeploymentExtensionSpecResponse']]:
|
|
147
|
+
"""
|
|
148
|
+
extensions used by virtual kubelet
|
|
149
|
+
"""
|
|
150
|
+
return pulumi.get(self, "extensions")
|
|
151
|
+
|
|
152
|
+
@property
|
|
153
|
+
@pulumi.getter
|
|
154
|
+
def id(self) -> str:
|
|
155
|
+
"""
|
|
156
|
+
The resource id.
|
|
157
|
+
"""
|
|
158
|
+
return pulumi.get(self, "id")
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter
|
|
162
|
+
def identity(self) -> Optional['outputs.ContainerGroupIdentityResponse']:
|
|
163
|
+
"""
|
|
164
|
+
The identity of the container group, if configured.
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "identity")
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="imageRegistryCredentials")
|
|
170
|
+
def image_registry_credentials(self) -> Optional[Sequence['outputs.ImageRegistryCredentialResponse']]:
|
|
171
|
+
"""
|
|
172
|
+
The image registry credentials by which the container group is created from.
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "image_registry_credentials")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter(name="initContainers")
|
|
178
|
+
def init_containers(self) -> Optional[Sequence['outputs.InitContainerDefinitionResponse']]:
|
|
179
|
+
"""
|
|
180
|
+
The init containers for a container group.
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "init_containers")
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
@pulumi.getter(name="instanceView")
|
|
186
|
+
def instance_view(self) -> 'outputs.ContainerGroupPropertiesResponseInstanceView':
|
|
187
|
+
"""
|
|
188
|
+
The instance view of the container group. Only valid in response.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "instance_view")
|
|
191
|
+
|
|
192
|
+
@property
|
|
193
|
+
@pulumi.getter(name="ipAddress")
|
|
194
|
+
def ip_address(self) -> Optional['outputs.IpAddressResponse']:
|
|
195
|
+
"""
|
|
196
|
+
The IP address type of the container group.
|
|
197
|
+
"""
|
|
198
|
+
return pulumi.get(self, "ip_address")
|
|
199
|
+
|
|
200
|
+
@property
|
|
201
|
+
@pulumi.getter
|
|
202
|
+
def location(self) -> Optional[str]:
|
|
203
|
+
"""
|
|
204
|
+
The resource location.
|
|
205
|
+
"""
|
|
206
|
+
return pulumi.get(self, "location")
|
|
207
|
+
|
|
208
|
+
@property
|
|
209
|
+
@pulumi.getter
|
|
210
|
+
def name(self) -> str:
|
|
211
|
+
"""
|
|
212
|
+
The resource name.
|
|
213
|
+
"""
|
|
214
|
+
return pulumi.get(self, "name")
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
@pulumi.getter(name="osType")
|
|
218
|
+
def os_type(self) -> str:
|
|
219
|
+
"""
|
|
220
|
+
The operating system type required by the containers in the container group.
|
|
221
|
+
"""
|
|
222
|
+
return pulumi.get(self, "os_type")
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
@pulumi.getter
|
|
226
|
+
def priority(self) -> Optional[str]:
|
|
227
|
+
"""
|
|
228
|
+
The priority of the container group.
|
|
229
|
+
"""
|
|
230
|
+
return pulumi.get(self, "priority")
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
@pulumi.getter(name="provisioningState")
|
|
234
|
+
def provisioning_state(self) -> str:
|
|
235
|
+
"""
|
|
236
|
+
The provisioning state of the container group. This only appears in the response.
|
|
237
|
+
"""
|
|
238
|
+
return pulumi.get(self, "provisioning_state")
|
|
239
|
+
|
|
240
|
+
@property
|
|
241
|
+
@pulumi.getter(name="restartPolicy")
|
|
242
|
+
def restart_policy(self) -> Optional[str]:
|
|
243
|
+
"""
|
|
244
|
+
Restart policy for all containers within the container group.
|
|
245
|
+
- `Always` Always restart
|
|
246
|
+
- `OnFailure` Restart on failure
|
|
247
|
+
- `Never` Never restart
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "restart_policy")
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
@pulumi.getter
|
|
253
|
+
def sku(self) -> Optional[str]:
|
|
254
|
+
"""
|
|
255
|
+
The SKU for a container group.
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "sku")
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter(name="subnetIds")
|
|
261
|
+
def subnet_ids(self) -> Optional[Sequence['outputs.ContainerGroupSubnetIdResponse']]:
|
|
262
|
+
"""
|
|
263
|
+
The subnet resource IDs for a container group.
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "subnet_ids")
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter
|
|
269
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
270
|
+
"""
|
|
271
|
+
The resource tags.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "tags")
|
|
274
|
+
|
|
275
|
+
@property
|
|
276
|
+
@pulumi.getter
|
|
277
|
+
def type(self) -> str:
|
|
278
|
+
"""
|
|
279
|
+
The resource type.
|
|
280
|
+
"""
|
|
281
|
+
return pulumi.get(self, "type")
|
|
282
|
+
|
|
283
|
+
@property
|
|
284
|
+
@pulumi.getter
|
|
285
|
+
def volumes(self) -> Optional[Sequence['outputs.VolumeResponse']]:
|
|
286
|
+
"""
|
|
287
|
+
The list of volumes that can be mounted by containers in this container group.
|
|
288
|
+
"""
|
|
289
|
+
return pulumi.get(self, "volumes")
|
|
290
|
+
|
|
291
|
+
@property
|
|
292
|
+
@pulumi.getter
|
|
293
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
294
|
+
"""
|
|
295
|
+
The zones for the container group.
|
|
296
|
+
"""
|
|
297
|
+
return pulumi.get(self, "zones")
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
class AwaitableGetContainerGroupResult(GetContainerGroupResult):
|
|
301
|
+
# pylint: disable=using-constant-test
|
|
302
|
+
def __await__(self):
|
|
303
|
+
if False:
|
|
304
|
+
yield self
|
|
305
|
+
return GetContainerGroupResult(
|
|
306
|
+
confidential_compute_properties=self.confidential_compute_properties,
|
|
307
|
+
containers=self.containers,
|
|
308
|
+
diagnostics=self.diagnostics,
|
|
309
|
+
dns_config=self.dns_config,
|
|
310
|
+
encryption_properties=self.encryption_properties,
|
|
311
|
+
extensions=self.extensions,
|
|
312
|
+
id=self.id,
|
|
313
|
+
identity=self.identity,
|
|
314
|
+
image_registry_credentials=self.image_registry_credentials,
|
|
315
|
+
init_containers=self.init_containers,
|
|
316
|
+
instance_view=self.instance_view,
|
|
317
|
+
ip_address=self.ip_address,
|
|
318
|
+
location=self.location,
|
|
319
|
+
name=self.name,
|
|
320
|
+
os_type=self.os_type,
|
|
321
|
+
priority=self.priority,
|
|
322
|
+
provisioning_state=self.provisioning_state,
|
|
323
|
+
restart_policy=self.restart_policy,
|
|
324
|
+
sku=self.sku,
|
|
325
|
+
subnet_ids=self.subnet_ids,
|
|
326
|
+
tags=self.tags,
|
|
327
|
+
type=self.type,
|
|
328
|
+
volumes=self.volumes,
|
|
329
|
+
zones=self.zones)
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
def get_container_group(container_group_name: Optional[str] = None,
|
|
333
|
+
resource_group_name: Optional[str] = None,
|
|
334
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetContainerGroupResult:
|
|
335
|
+
"""
|
|
336
|
+
Gets the properties of the specified container group in the specified subscription and resource group. The operation returns the properties of each container group including containers, image registry credentials, restart policy, IP address type, OS type, state, and volumes.
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
:param str container_group_name: The name of the container group.
|
|
340
|
+
:param str resource_group_name: The name of the resource group.
|
|
341
|
+
"""
|
|
342
|
+
__args__ = dict()
|
|
343
|
+
__args__['containerGroupName'] = container_group_name
|
|
344
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
345
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
346
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerinstance/v20240901preview:getContainerGroup', __args__, opts=opts, typ=GetContainerGroupResult).value
|
|
347
|
+
|
|
348
|
+
return AwaitableGetContainerGroupResult(
|
|
349
|
+
confidential_compute_properties=pulumi.get(__ret__, 'confidential_compute_properties'),
|
|
350
|
+
containers=pulumi.get(__ret__, 'containers'),
|
|
351
|
+
diagnostics=pulumi.get(__ret__, 'diagnostics'),
|
|
352
|
+
dns_config=pulumi.get(__ret__, 'dns_config'),
|
|
353
|
+
encryption_properties=pulumi.get(__ret__, 'encryption_properties'),
|
|
354
|
+
extensions=pulumi.get(__ret__, 'extensions'),
|
|
355
|
+
id=pulumi.get(__ret__, 'id'),
|
|
356
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
357
|
+
image_registry_credentials=pulumi.get(__ret__, 'image_registry_credentials'),
|
|
358
|
+
init_containers=pulumi.get(__ret__, 'init_containers'),
|
|
359
|
+
instance_view=pulumi.get(__ret__, 'instance_view'),
|
|
360
|
+
ip_address=pulumi.get(__ret__, 'ip_address'),
|
|
361
|
+
location=pulumi.get(__ret__, 'location'),
|
|
362
|
+
name=pulumi.get(__ret__, 'name'),
|
|
363
|
+
os_type=pulumi.get(__ret__, 'os_type'),
|
|
364
|
+
priority=pulumi.get(__ret__, 'priority'),
|
|
365
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
366
|
+
restart_policy=pulumi.get(__ret__, 'restart_policy'),
|
|
367
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
368
|
+
subnet_ids=pulumi.get(__ret__, 'subnet_ids'),
|
|
369
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
370
|
+
type=pulumi.get(__ret__, 'type'),
|
|
371
|
+
volumes=pulumi.get(__ret__, 'volumes'),
|
|
372
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
@_utilities.lift_output_func(get_container_group)
|
|
376
|
+
def get_container_group_output(container_group_name: Optional[pulumi.Input[str]] = None,
|
|
377
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
378
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetContainerGroupResult]:
|
|
379
|
+
"""
|
|
380
|
+
Gets the properties of the specified container group in the specified subscription and resource group. The operation returns the properties of each container group including containers, image registry credentials, restart policy, IP address type, OS type, state, and volumes.
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
:param str container_group_name: The name of the container group.
|
|
384
|
+
:param str resource_group_name: The name of the resource group.
|
|
385
|
+
"""
|
|
386
|
+
...
|
|
@@ -0,0 +1,214 @@
|
|
|
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
|
+
'GetNGroupResult',
|
|
20
|
+
'AwaitableGetNGroupResult',
|
|
21
|
+
'get_n_group',
|
|
22
|
+
'get_n_group_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetNGroupResult:
|
|
27
|
+
"""
|
|
28
|
+
Describes a nGroup.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, container_group_profiles=None, elastic_profile=None, id=None, identity=None, location=None, name=None, provisioning_state=None, system_data=None, tags=None, type=None, zones=None):
|
|
31
|
+
if container_group_profiles and not isinstance(container_group_profiles, list):
|
|
32
|
+
raise TypeError("Expected argument 'container_group_profiles' to be a list")
|
|
33
|
+
pulumi.set(__self__, "container_group_profiles", container_group_profiles)
|
|
34
|
+
if elastic_profile and not isinstance(elastic_profile, dict):
|
|
35
|
+
raise TypeError("Expected argument 'elastic_profile' to be a dict")
|
|
36
|
+
pulumi.set(__self__, "elastic_profile", elastic_profile)
|
|
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 identity and not isinstance(identity, dict):
|
|
41
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "identity", identity)
|
|
43
|
+
if location and not isinstance(location, str):
|
|
44
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
45
|
+
pulumi.set(__self__, "location", location)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
50
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
51
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
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 tags and not isinstance(tags, dict):
|
|
56
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
57
|
+
pulumi.set(__self__, "tags", tags)
|
|
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
|
+
if zones and not isinstance(zones, list):
|
|
62
|
+
raise TypeError("Expected argument 'zones' to be a list")
|
|
63
|
+
pulumi.set(__self__, "zones", zones)
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="containerGroupProfiles")
|
|
67
|
+
def container_group_profiles(self) -> Optional[Sequence['outputs.ContainerGroupProfileStubResponse']]:
|
|
68
|
+
"""
|
|
69
|
+
The Container Group Profiles that could be used in a nGroup.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "container_group_profiles")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="elasticProfile")
|
|
75
|
+
def elastic_profile(self) -> Optional['outputs.ElasticProfileResponse']:
|
|
76
|
+
"""
|
|
77
|
+
The elastic profile.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "elastic_profile")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def id(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The resource id.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "id")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def identity(self) -> Optional['outputs.NGroupIdentityResponse']:
|
|
92
|
+
"""
|
|
93
|
+
The identity of the nGroup, if configured.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "identity")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def location(self) -> Optional[str]:
|
|
100
|
+
"""
|
|
101
|
+
The resource location.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "location")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def name(self) -> str:
|
|
108
|
+
"""
|
|
109
|
+
The resource name.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "name")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="provisioningState")
|
|
115
|
+
def provisioning_state(self) -> str:
|
|
116
|
+
"""
|
|
117
|
+
The provisioning state, which only appears in the response.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "provisioning_state")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="systemData")
|
|
123
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
124
|
+
"""
|
|
125
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "system_data")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
132
|
+
"""
|
|
133
|
+
The resource tags.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "tags")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter
|
|
139
|
+
def type(self) -> str:
|
|
140
|
+
"""
|
|
141
|
+
The resource type.
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "type")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter
|
|
147
|
+
def zones(self) -> Optional[Sequence[str]]:
|
|
148
|
+
"""
|
|
149
|
+
The zones for the container group.
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "zones")
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
class AwaitableGetNGroupResult(GetNGroupResult):
|
|
155
|
+
# pylint: disable=using-constant-test
|
|
156
|
+
def __await__(self):
|
|
157
|
+
if False:
|
|
158
|
+
yield self
|
|
159
|
+
return GetNGroupResult(
|
|
160
|
+
container_group_profiles=self.container_group_profiles,
|
|
161
|
+
elastic_profile=self.elastic_profile,
|
|
162
|
+
id=self.id,
|
|
163
|
+
identity=self.identity,
|
|
164
|
+
location=self.location,
|
|
165
|
+
name=self.name,
|
|
166
|
+
provisioning_state=self.provisioning_state,
|
|
167
|
+
system_data=self.system_data,
|
|
168
|
+
tags=self.tags,
|
|
169
|
+
type=self.type,
|
|
170
|
+
zones=self.zones)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
def get_n_group(ngroups_name: Optional[str] = None,
|
|
174
|
+
resource_group_name: Optional[str] = None,
|
|
175
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNGroupResult:
|
|
176
|
+
"""
|
|
177
|
+
Get the properties of the specified n group.
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
:param str ngroups_name: The N Groups name.
|
|
181
|
+
:param str resource_group_name: The name of the resource group.
|
|
182
|
+
"""
|
|
183
|
+
__args__ = dict()
|
|
184
|
+
__args__['ngroupsName'] = ngroups_name
|
|
185
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
186
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
187
|
+
__ret__ = pulumi.runtime.invoke('azure-native:containerinstance/v20240901preview:getNGroup', __args__, opts=opts, typ=GetNGroupResult).value
|
|
188
|
+
|
|
189
|
+
return AwaitableGetNGroupResult(
|
|
190
|
+
container_group_profiles=pulumi.get(__ret__, 'container_group_profiles'),
|
|
191
|
+
elastic_profile=pulumi.get(__ret__, 'elastic_profile'),
|
|
192
|
+
id=pulumi.get(__ret__, 'id'),
|
|
193
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
194
|
+
location=pulumi.get(__ret__, 'location'),
|
|
195
|
+
name=pulumi.get(__ret__, 'name'),
|
|
196
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
197
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
198
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
199
|
+
type=pulumi.get(__ret__, 'type'),
|
|
200
|
+
zones=pulumi.get(__ret__, 'zones'))
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
@_utilities.lift_output_func(get_n_group)
|
|
204
|
+
def get_n_group_output(ngroups_name: Optional[pulumi.Input[str]] = None,
|
|
205
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
206
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetNGroupResult]:
|
|
207
|
+
"""
|
|
208
|
+
Get the properties of the specified n group.
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
:param str ngroups_name: The N Groups name.
|
|
212
|
+
:param str resource_group_name: The name of the resource group.
|
|
213
|
+
"""
|
|
214
|
+
...
|