pulumi-azure-native 2.64.3__py3-none-any.whl → 2.65.0__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.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/RECORD +273 -164
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,188 @@
|
|
|
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
|
+
'GetCodeSigningAccountResult',
|
|
20
|
+
'AwaitableGetCodeSigningAccountResult',
|
|
21
|
+
'get_code_signing_account',
|
|
22
|
+
'get_code_signing_account_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetCodeSigningAccountResult:
|
|
27
|
+
"""
|
|
28
|
+
Trusted signing account resource.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, account_uri=None, id=None, location=None, name=None, provisioning_state=None, sku=None, system_data=None, tags=None, type=None):
|
|
31
|
+
if account_uri and not isinstance(account_uri, str):
|
|
32
|
+
raise TypeError("Expected argument 'account_uri' to be a str")
|
|
33
|
+
pulumi.set(__self__, "account_uri", account_uri)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if location and not isinstance(location, str):
|
|
38
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
39
|
+
pulumi.set(__self__, "location", location)
|
|
40
|
+
if name and not isinstance(name, str):
|
|
41
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
42
|
+
pulumi.set(__self__, "name", name)
|
|
43
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
44
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
45
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
46
|
+
if sku and not isinstance(sku, dict):
|
|
47
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
48
|
+
pulumi.set(__self__, "sku", sku)
|
|
49
|
+
if system_data and not isinstance(system_data, dict):
|
|
50
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
52
|
+
if tags and not isinstance(tags, dict):
|
|
53
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
54
|
+
pulumi.set(__self__, "tags", tags)
|
|
55
|
+
if type and not isinstance(type, str):
|
|
56
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
57
|
+
pulumi.set(__self__, "type", type)
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="accountUri")
|
|
61
|
+
def account_uri(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
The URI of the trusted signing account which is used during signing files.
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "account_uri")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def id(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "id")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def location(self) -> str:
|
|
78
|
+
"""
|
|
79
|
+
The geo-location where the resource lives
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "location")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter
|
|
85
|
+
def name(self) -> str:
|
|
86
|
+
"""
|
|
87
|
+
The name of the resource
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "name")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="provisioningState")
|
|
93
|
+
def provisioning_state(self) -> str:
|
|
94
|
+
"""
|
|
95
|
+
Status of the current operation on trusted signing account.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "provisioning_state")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter
|
|
101
|
+
def sku(self) -> Optional['outputs.AccountSkuResponse']:
|
|
102
|
+
"""
|
|
103
|
+
SKU of the trusted signing account.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "sku")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter(name="systemData")
|
|
109
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
110
|
+
"""
|
|
111
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "system_data")
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
@pulumi.getter
|
|
117
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
118
|
+
"""
|
|
119
|
+
Resource tags.
|
|
120
|
+
"""
|
|
121
|
+
return pulumi.get(self, "tags")
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter
|
|
125
|
+
def type(self) -> str:
|
|
126
|
+
"""
|
|
127
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "type")
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class AwaitableGetCodeSigningAccountResult(GetCodeSigningAccountResult):
|
|
133
|
+
# pylint: disable=using-constant-test
|
|
134
|
+
def __await__(self):
|
|
135
|
+
if False:
|
|
136
|
+
yield self
|
|
137
|
+
return GetCodeSigningAccountResult(
|
|
138
|
+
account_uri=self.account_uri,
|
|
139
|
+
id=self.id,
|
|
140
|
+
location=self.location,
|
|
141
|
+
name=self.name,
|
|
142
|
+
provisioning_state=self.provisioning_state,
|
|
143
|
+
sku=self.sku,
|
|
144
|
+
system_data=self.system_data,
|
|
145
|
+
tags=self.tags,
|
|
146
|
+
type=self.type)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
def get_code_signing_account(account_name: Optional[str] = None,
|
|
150
|
+
resource_group_name: Optional[str] = None,
|
|
151
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCodeSigningAccountResult:
|
|
152
|
+
"""
|
|
153
|
+
Get a trusted Signing Account.
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
:param str account_name: Trusted Signing account name.
|
|
157
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
158
|
+
"""
|
|
159
|
+
__args__ = dict()
|
|
160
|
+
__args__['accountName'] = account_name
|
|
161
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
162
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
163
|
+
__ret__ = pulumi.runtime.invoke('azure-native:codesigning/v20240930preview:getCodeSigningAccount', __args__, opts=opts, typ=GetCodeSigningAccountResult).value
|
|
164
|
+
|
|
165
|
+
return AwaitableGetCodeSigningAccountResult(
|
|
166
|
+
account_uri=pulumi.get(__ret__, 'account_uri'),
|
|
167
|
+
id=pulumi.get(__ret__, 'id'),
|
|
168
|
+
location=pulumi.get(__ret__, 'location'),
|
|
169
|
+
name=pulumi.get(__ret__, 'name'),
|
|
170
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
171
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
172
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
173
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
174
|
+
type=pulumi.get(__ret__, 'type'))
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
@_utilities.lift_output_func(get_code_signing_account)
|
|
178
|
+
def get_code_signing_account_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
179
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
180
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetCodeSigningAccountResult]:
|
|
181
|
+
"""
|
|
182
|
+
Get a trusted Signing Account.
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
:param str account_name: Trusted Signing account name.
|
|
186
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
187
|
+
"""
|
|
188
|
+
...
|
|
@@ -0,0 +1,154 @@
|
|
|
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 ._enums import *
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'AccountSkuResponse',
|
|
20
|
+
'SystemDataResponse',
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
@pulumi.output_type
|
|
24
|
+
class AccountSkuResponse(dict):
|
|
25
|
+
"""
|
|
26
|
+
SKU of the trusted signing account.
|
|
27
|
+
"""
|
|
28
|
+
def __init__(__self__, *,
|
|
29
|
+
name: str):
|
|
30
|
+
"""
|
|
31
|
+
SKU of the trusted signing account.
|
|
32
|
+
:param str name: Name of the SKU.
|
|
33
|
+
"""
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
@pulumi.getter
|
|
38
|
+
def name(self) -> str:
|
|
39
|
+
"""
|
|
40
|
+
Name of the SKU.
|
|
41
|
+
"""
|
|
42
|
+
return pulumi.get(self, "name")
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
@pulumi.output_type
|
|
46
|
+
class SystemDataResponse(dict):
|
|
47
|
+
"""
|
|
48
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
49
|
+
"""
|
|
50
|
+
@staticmethod
|
|
51
|
+
def __key_warning(key: str):
|
|
52
|
+
suggest = None
|
|
53
|
+
if key == "createdAt":
|
|
54
|
+
suggest = "created_at"
|
|
55
|
+
elif key == "createdBy":
|
|
56
|
+
suggest = "created_by"
|
|
57
|
+
elif key == "createdByType":
|
|
58
|
+
suggest = "created_by_type"
|
|
59
|
+
elif key == "lastModifiedAt":
|
|
60
|
+
suggest = "last_modified_at"
|
|
61
|
+
elif key == "lastModifiedBy":
|
|
62
|
+
suggest = "last_modified_by"
|
|
63
|
+
elif key == "lastModifiedByType":
|
|
64
|
+
suggest = "last_modified_by_type"
|
|
65
|
+
|
|
66
|
+
if suggest:
|
|
67
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
68
|
+
|
|
69
|
+
def __getitem__(self, key: str) -> Any:
|
|
70
|
+
SystemDataResponse.__key_warning(key)
|
|
71
|
+
return super().__getitem__(key)
|
|
72
|
+
|
|
73
|
+
def get(self, key: str, default = None) -> Any:
|
|
74
|
+
SystemDataResponse.__key_warning(key)
|
|
75
|
+
return super().get(key, default)
|
|
76
|
+
|
|
77
|
+
def __init__(__self__, *,
|
|
78
|
+
created_at: Optional[str] = None,
|
|
79
|
+
created_by: Optional[str] = None,
|
|
80
|
+
created_by_type: Optional[str] = None,
|
|
81
|
+
last_modified_at: Optional[str] = None,
|
|
82
|
+
last_modified_by: Optional[str] = None,
|
|
83
|
+
last_modified_by_type: Optional[str] = None):
|
|
84
|
+
"""
|
|
85
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
86
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
87
|
+
:param str created_by: The identity that created the resource.
|
|
88
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
89
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
90
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
91
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
92
|
+
"""
|
|
93
|
+
if created_at is not None:
|
|
94
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
95
|
+
if created_by is not None:
|
|
96
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
97
|
+
if created_by_type is not None:
|
|
98
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
99
|
+
if last_modified_at is not None:
|
|
100
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
101
|
+
if last_modified_by is not None:
|
|
102
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
103
|
+
if last_modified_by_type is not None:
|
|
104
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="createdAt")
|
|
108
|
+
def created_at(self) -> Optional[str]:
|
|
109
|
+
"""
|
|
110
|
+
The timestamp of resource creation (UTC).
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "created_at")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="createdBy")
|
|
116
|
+
def created_by(self) -> Optional[str]:
|
|
117
|
+
"""
|
|
118
|
+
The identity that created the resource.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "created_by")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="createdByType")
|
|
124
|
+
def created_by_type(self) -> Optional[str]:
|
|
125
|
+
"""
|
|
126
|
+
The type of identity that created the resource.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "created_by_type")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
132
|
+
def last_modified_at(self) -> Optional[str]:
|
|
133
|
+
"""
|
|
134
|
+
The timestamp of resource last modification (UTC)
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "last_modified_at")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
140
|
+
def last_modified_by(self) -> Optional[str]:
|
|
141
|
+
"""
|
|
142
|
+
The identity that last modified the resource.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "last_modified_by")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
148
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
149
|
+
"""
|
|
150
|
+
The type of identity that last modified the resource.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
153
|
+
|
|
154
|
+
|
|
@@ -10,6 +10,8 @@ from .container_group import *
|
|
|
10
10
|
from .container_group_profile import *
|
|
11
11
|
from .get_container_group import *
|
|
12
12
|
from .get_container_group_profile import *
|
|
13
|
+
from .get_n_group import *
|
|
14
|
+
from .n_group import *
|
|
13
15
|
from ._inputs import *
|
|
14
16
|
from . import outputs
|
|
15
17
|
|
|
@@ -25,10 +27,16 @@ if typing.TYPE_CHECKING:
|
|
|
25
27
|
v20230501 = __v20230501
|
|
26
28
|
import pulumi_azure_native.containerinstance.v20240501preview as __v20240501preview
|
|
27
29
|
v20240501preview = __v20240501preview
|
|
30
|
+
import pulumi_azure_native.containerinstance.v20240901preview as __v20240901preview
|
|
31
|
+
v20240901preview = __v20240901preview
|
|
32
|
+
import pulumi_azure_native.containerinstance.v20241001preview as __v20241001preview
|
|
33
|
+
v20241001preview = __v20241001preview
|
|
28
34
|
else:
|
|
29
35
|
v20210301 = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20210301')
|
|
30
36
|
v20210701 = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20210701')
|
|
31
37
|
v20230201preview = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20230201preview')
|
|
32
38
|
v20230501 = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20230501')
|
|
33
39
|
v20240501preview = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20240501preview')
|
|
40
|
+
v20240901preview = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20240901preview')
|
|
41
|
+
v20241001preview = _utilities.lazy_import('pulumi_azure_native.containerinstance.v20241001preview')
|
|
34
42
|
|
|
@@ -111,7 +111,7 @@ class OperatingSystemTypes(str, Enum):
|
|
|
111
111
|
|
|
112
112
|
class ResourceIdentityType(str, Enum):
|
|
113
113
|
"""
|
|
114
|
-
The type of identity used for the container
|
|
114
|
+
The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
|
|
115
115
|
"""
|
|
116
116
|
SYSTEM_ASSIGNED = "SystemAssigned"
|
|
117
117
|
USER_ASSIGNED = "UserAssigned"
|
|
@@ -16,6 +16,8 @@ from .. import _utilities
|
|
|
16
16
|
from ._enums import *
|
|
17
17
|
|
|
18
18
|
__all__ = [
|
|
19
|
+
'ApiEntityReferenceArgs',
|
|
20
|
+
'ApiEntityReferenceArgsDict',
|
|
19
21
|
'AzureFileVolumeArgs',
|
|
20
22
|
'AzureFileVolumeArgsDict',
|
|
21
23
|
'ConfidentialComputePropertiesArgs',
|
|
@@ -28,6 +30,8 @@ __all__ = [
|
|
|
28
30
|
'ContainerGroupDiagnosticsArgsDict',
|
|
29
31
|
'ContainerGroupIdentityArgs',
|
|
30
32
|
'ContainerGroupIdentityArgsDict',
|
|
33
|
+
'ContainerGroupProfileStubArgs',
|
|
34
|
+
'ContainerGroupProfileStubArgsDict',
|
|
31
35
|
'ContainerGroupSubnetIdArgs',
|
|
32
36
|
'ContainerGroupSubnetIdArgsDict',
|
|
33
37
|
'ContainerHttpGetArgs',
|
|
@@ -42,6 +46,8 @@ __all__ = [
|
|
|
42
46
|
'DeploymentExtensionSpecArgsDict',
|
|
43
47
|
'DnsConfigurationArgs',
|
|
44
48
|
'DnsConfigurationArgsDict',
|
|
49
|
+
'ElasticProfileArgs',
|
|
50
|
+
'ElasticProfileArgsDict',
|
|
45
51
|
'EncryptionPropertiesArgs',
|
|
46
52
|
'EncryptionPropertiesArgsDict',
|
|
47
53
|
'EnvironmentVariableArgs',
|
|
@@ -60,6 +66,8 @@ __all__ = [
|
|
|
60
66
|
'IpAddressArgsDict',
|
|
61
67
|
'LogAnalyticsArgs',
|
|
62
68
|
'LogAnalyticsArgsDict',
|
|
69
|
+
'NGroupIdentityArgs',
|
|
70
|
+
'NGroupIdentityArgsDict',
|
|
63
71
|
'PortArgs',
|
|
64
72
|
'PortArgsDict',
|
|
65
73
|
'ResourceLimitsArgs',
|
|
@@ -80,6 +88,42 @@ __all__ = [
|
|
|
80
88
|
|
|
81
89
|
MYPY = False
|
|
82
90
|
|
|
91
|
+
if not MYPY:
|
|
92
|
+
class ApiEntityReferenceArgsDict(TypedDict):
|
|
93
|
+
"""
|
|
94
|
+
The API entity reference.
|
|
95
|
+
"""
|
|
96
|
+
id: NotRequired[pulumi.Input[str]]
|
|
97
|
+
"""
|
|
98
|
+
The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
99
|
+
"""
|
|
100
|
+
elif False:
|
|
101
|
+
ApiEntityReferenceArgsDict: TypeAlias = Mapping[str, Any]
|
|
102
|
+
|
|
103
|
+
@pulumi.input_type
|
|
104
|
+
class ApiEntityReferenceArgs:
|
|
105
|
+
def __init__(__self__, *,
|
|
106
|
+
id: Optional[pulumi.Input[str]] = None):
|
|
107
|
+
"""
|
|
108
|
+
The API entity reference.
|
|
109
|
+
:param pulumi.Input[str] id: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
110
|
+
"""
|
|
111
|
+
if id is not None:
|
|
112
|
+
pulumi.set(__self__, "id", id)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter
|
|
116
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
117
|
+
"""
|
|
118
|
+
The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "id")
|
|
121
|
+
|
|
122
|
+
@id.setter
|
|
123
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
124
|
+
pulumi.set(self, "id", value)
|
|
125
|
+
|
|
126
|
+
|
|
83
127
|
if not MYPY:
|
|
84
128
|
class AzureFileVolumeArgsDict(TypedDict):
|
|
85
129
|
"""
|
|
@@ -374,6 +418,42 @@ class ContainerGroupIdentityArgs:
|
|
|
374
418
|
pulumi.set(self, "user_assigned_identities", value)
|
|
375
419
|
|
|
376
420
|
|
|
421
|
+
if not MYPY:
|
|
422
|
+
class ContainerGroupProfileStubArgsDict(TypedDict):
|
|
423
|
+
"""
|
|
424
|
+
The object that contains a reference to a Container Group Profile
|
|
425
|
+
"""
|
|
426
|
+
resource: NotRequired[pulumi.Input['ApiEntityReferenceArgsDict']]
|
|
427
|
+
"""
|
|
428
|
+
The API entity reference.
|
|
429
|
+
"""
|
|
430
|
+
elif False:
|
|
431
|
+
ContainerGroupProfileStubArgsDict: TypeAlias = Mapping[str, Any]
|
|
432
|
+
|
|
433
|
+
@pulumi.input_type
|
|
434
|
+
class ContainerGroupProfileStubArgs:
|
|
435
|
+
def __init__(__self__, *,
|
|
436
|
+
resource: Optional[pulumi.Input['ApiEntityReferenceArgs']] = None):
|
|
437
|
+
"""
|
|
438
|
+
The object that contains a reference to a Container Group Profile
|
|
439
|
+
:param pulumi.Input['ApiEntityReferenceArgs'] resource: The API entity reference.
|
|
440
|
+
"""
|
|
441
|
+
if resource is not None:
|
|
442
|
+
pulumi.set(__self__, "resource", resource)
|
|
443
|
+
|
|
444
|
+
@property
|
|
445
|
+
@pulumi.getter
|
|
446
|
+
def resource(self) -> Optional[pulumi.Input['ApiEntityReferenceArgs']]:
|
|
447
|
+
"""
|
|
448
|
+
The API entity reference.
|
|
449
|
+
"""
|
|
450
|
+
return pulumi.get(self, "resource")
|
|
451
|
+
|
|
452
|
+
@resource.setter
|
|
453
|
+
def resource(self, value: Optional[pulumi.Input['ApiEntityReferenceArgs']]):
|
|
454
|
+
pulumi.set(self, "resource", value)
|
|
455
|
+
|
|
456
|
+
|
|
377
457
|
if not MYPY:
|
|
378
458
|
class ContainerGroupSubnetIdArgsDict(TypedDict):
|
|
379
459
|
"""
|
|
@@ -1158,6 +1238,35 @@ class DnsConfigurationArgs:
|
|
|
1158
1238
|
pulumi.set(self, "search_domains", value)
|
|
1159
1239
|
|
|
1160
1240
|
|
|
1241
|
+
if not MYPY:
|
|
1242
|
+
class ElasticProfileArgsDict(TypedDict):
|
|
1243
|
+
"""
|
|
1244
|
+
Describes the elastic profile of the Container Scale Set
|
|
1245
|
+
"""
|
|
1246
|
+
desired_count: NotRequired[pulumi.Input[int]]
|
|
1247
|
+
elif False:
|
|
1248
|
+
ElasticProfileArgsDict: TypeAlias = Mapping[str, Any]
|
|
1249
|
+
|
|
1250
|
+
@pulumi.input_type
|
|
1251
|
+
class ElasticProfileArgs:
|
|
1252
|
+
def __init__(__self__, *,
|
|
1253
|
+
desired_count: Optional[pulumi.Input[int]] = None):
|
|
1254
|
+
"""
|
|
1255
|
+
Describes the elastic profile of the Container Scale Set
|
|
1256
|
+
"""
|
|
1257
|
+
if desired_count is not None:
|
|
1258
|
+
pulumi.set(__self__, "desired_count", desired_count)
|
|
1259
|
+
|
|
1260
|
+
@property
|
|
1261
|
+
@pulumi.getter(name="desiredCount")
|
|
1262
|
+
def desired_count(self) -> Optional[pulumi.Input[int]]:
|
|
1263
|
+
return pulumi.get(self, "desired_count")
|
|
1264
|
+
|
|
1265
|
+
@desired_count.setter
|
|
1266
|
+
def desired_count(self, value: Optional[pulumi.Input[int]]):
|
|
1267
|
+
pulumi.set(self, "desired_count", value)
|
|
1268
|
+
|
|
1269
|
+
|
|
1161
1270
|
if not MYPY:
|
|
1162
1271
|
class EncryptionPropertiesArgsDict(TypedDict):
|
|
1163
1272
|
"""
|
|
@@ -1991,6 +2100,62 @@ class LogAnalyticsArgs:
|
|
|
1991
2100
|
pulumi.set(self, "workspace_resource_id", value)
|
|
1992
2101
|
|
|
1993
2102
|
|
|
2103
|
+
if not MYPY:
|
|
2104
|
+
class NGroupIdentityArgsDict(TypedDict):
|
|
2105
|
+
"""
|
|
2106
|
+
Identity for the nGroup.
|
|
2107
|
+
"""
|
|
2108
|
+
type: NotRequired[pulumi.Input['ResourceIdentityType']]
|
|
2109
|
+
"""
|
|
2110
|
+
The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
|
|
2111
|
+
"""
|
|
2112
|
+
user_assigned_identities: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
2113
|
+
"""
|
|
2114
|
+
The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
2115
|
+
"""
|
|
2116
|
+
elif False:
|
|
2117
|
+
NGroupIdentityArgsDict: TypeAlias = Mapping[str, Any]
|
|
2118
|
+
|
|
2119
|
+
@pulumi.input_type
|
|
2120
|
+
class NGroupIdentityArgs:
|
|
2121
|
+
def __init__(__self__, *,
|
|
2122
|
+
type: Optional[pulumi.Input['ResourceIdentityType']] = None,
|
|
2123
|
+
user_assigned_identities: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
2124
|
+
"""
|
|
2125
|
+
Identity for the nGroup.
|
|
2126
|
+
:param pulumi.Input['ResourceIdentityType'] type: The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
|
|
2127
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_assigned_identities: The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
2128
|
+
"""
|
|
2129
|
+
if type is not None:
|
|
2130
|
+
pulumi.set(__self__, "type", type)
|
|
2131
|
+
if user_assigned_identities is not None:
|
|
2132
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
2133
|
+
|
|
2134
|
+
@property
|
|
2135
|
+
@pulumi.getter
|
|
2136
|
+
def type(self) -> Optional[pulumi.Input['ResourceIdentityType']]:
|
|
2137
|
+
"""
|
|
2138
|
+
The type of identity used for the container scale set. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the nGroup.
|
|
2139
|
+
"""
|
|
2140
|
+
return pulumi.get(self, "type")
|
|
2141
|
+
|
|
2142
|
+
@type.setter
|
|
2143
|
+
def type(self, value: Optional[pulumi.Input['ResourceIdentityType']]):
|
|
2144
|
+
pulumi.set(self, "type", value)
|
|
2145
|
+
|
|
2146
|
+
@property
|
|
2147
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
2148
|
+
def user_assigned_identities(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
2149
|
+
"""
|
|
2150
|
+
The list of user identities associated with the container scale set. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
2151
|
+
"""
|
|
2152
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
2153
|
+
|
|
2154
|
+
@user_assigned_identities.setter
|
|
2155
|
+
def user_assigned_identities(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
2156
|
+
pulumi.set(self, "user_assigned_identities", value)
|
|
2157
|
+
|
|
2158
|
+
|
|
1994
2159
|
if not MYPY:
|
|
1995
2160
|
class PortArgsDict(TypedDict):
|
|
1996
2161
|
"""
|
|
@@ -397,7 +397,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
397
397
|
A container group.
|
|
398
398
|
Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2021-03-01.
|
|
399
399
|
|
|
400
|
-
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview.
|
|
400
|
+
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview, 2024-09-01-preview, 2024-10-01-preview.
|
|
401
401
|
|
|
402
402
|
:param str resource_name: The name of the resource.
|
|
403
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -436,7 +436,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
436
436
|
A container group.
|
|
437
437
|
Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2021-03-01.
|
|
438
438
|
|
|
439
|
-
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview.
|
|
439
|
+
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview, 2024-09-01-preview, 2024-10-01-preview.
|
|
440
440
|
|
|
441
441
|
:param str resource_name: The name of the resource.
|
|
442
442
|
:param ContainerGroupArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -514,7 +514,7 @@ class ContainerGroup(pulumi.CustomResource):
|
|
|
514
514
|
__props__.__dict__["name"] = None
|
|
515
515
|
__props__.__dict__["provisioning_state"] = None
|
|
516
516
|
__props__.__dict__["type"] = None
|
|
517
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerinstance/v20170801preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20171001preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20171201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180401:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180601:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20181001:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20191201:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20201101:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210301:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210701:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20211001:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20220901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20221001preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20230201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20230501:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20240501preview:ContainerGroup")])
|
|
517
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:containerinstance/v20170801preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20171001preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20171201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180401:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180601:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20180901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20181001:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20191201:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20201101:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210301:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210701:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20210901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20211001:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20220901:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20221001preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20230201preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20230501:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20240501preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20240901preview:ContainerGroup"), pulumi.Alias(type_="azure-native:containerinstance/v20241001preview:ContainerGroup")])
|
|
518
518
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
519
519
|
super(ContainerGroup, __self__).__init__(
|
|
520
520
|
'azure-native:containerinstance:ContainerGroup',
|
|
@@ -336,7 +336,7 @@ def get_container_group(container_group_name: Optional[str] = None,
|
|
|
336
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
337
|
Azure REST API version: 2023-05-01.
|
|
338
338
|
|
|
339
|
-
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview.
|
|
339
|
+
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview, 2024-09-01-preview, 2024-10-01-preview.
|
|
340
340
|
|
|
341
341
|
|
|
342
342
|
:param str container_group_name: The name of the container group.
|
|
@@ -383,7 +383,7 @@ def get_container_group_output(container_group_name: Optional[pulumi.Input[str]]
|
|
|
383
383
|
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.
|
|
384
384
|
Azure REST API version: 2023-05-01.
|
|
385
385
|
|
|
386
|
-
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview.
|
|
386
|
+
Other available API versions: 2017-08-01-preview, 2017-12-01-preview, 2021-03-01, 2021-07-01, 2023-02-01-preview, 2024-05-01-preview, 2024-09-01-preview, 2024-10-01-preview.
|
|
387
387
|
|
|
388
388
|
|
|
389
389
|
:param str container_group_name: The name of the container group.
|