pulumi-azure-native 2.65.0a1728039140__py3-none-any.whl → 2.65.0a1728295684__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.0a1728295684.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/RECORD +273 -164
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.65.0a1728039140.dist-info → pulumi_azure_native-2.65.0a1728295684.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2792 @@
|
|
|
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
|
+
from ._enums import *
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'ApiEntityReferenceResponse',
|
|
21
|
+
'AzureFileVolumeResponse',
|
|
22
|
+
'ConfidentialComputePropertiesResponse',
|
|
23
|
+
'ContainerExecResponse',
|
|
24
|
+
'ContainerGroupDiagnosticsResponse',
|
|
25
|
+
'ContainerGroupIdentityResponse',
|
|
26
|
+
'ContainerGroupProfileStubResponse',
|
|
27
|
+
'ContainerGroupPropertiesResponseInstanceView',
|
|
28
|
+
'ContainerGroupSubnetIdResponse',
|
|
29
|
+
'ContainerHttpGetResponse',
|
|
30
|
+
'ContainerPortResponse',
|
|
31
|
+
'ContainerProbeResponse',
|
|
32
|
+
'ContainerPropertiesResponseInstanceView',
|
|
33
|
+
'ContainerResponse',
|
|
34
|
+
'ContainerStateResponse',
|
|
35
|
+
'DeploymentExtensionSpecResponse',
|
|
36
|
+
'DnsConfigurationResponse',
|
|
37
|
+
'ElasticProfileResponse',
|
|
38
|
+
'EncryptionPropertiesResponse',
|
|
39
|
+
'EnvironmentVariableResponse',
|
|
40
|
+
'EventResponse',
|
|
41
|
+
'GitRepoVolumeResponse',
|
|
42
|
+
'GpuResourceResponse',
|
|
43
|
+
'HttpHeaderResponse',
|
|
44
|
+
'ImageRegistryCredentialResponse',
|
|
45
|
+
'InitContainerDefinitionResponse',
|
|
46
|
+
'InitContainerPropertiesDefinitionResponseInstanceView',
|
|
47
|
+
'IpAddressResponse',
|
|
48
|
+
'LogAnalyticsResponse',
|
|
49
|
+
'NGroupIdentityResponse',
|
|
50
|
+
'PortResponse',
|
|
51
|
+
'ResourceLimitsResponse',
|
|
52
|
+
'ResourceRequestsResponse',
|
|
53
|
+
'ResourceRequirementsResponse',
|
|
54
|
+
'SecurityContextCapabilitiesDefinitionResponse',
|
|
55
|
+
'SecurityContextDefinitionResponse',
|
|
56
|
+
'SystemDataResponse',
|
|
57
|
+
'UserAssignedIdentitiesResponse',
|
|
58
|
+
'UserAssignedIdentityResponse',
|
|
59
|
+
'VolumeMountResponse',
|
|
60
|
+
'VolumeResponse',
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
@pulumi.output_type
|
|
64
|
+
class ApiEntityReferenceResponse(dict):
|
|
65
|
+
"""
|
|
66
|
+
The API entity reference.
|
|
67
|
+
"""
|
|
68
|
+
def __init__(__self__, *,
|
|
69
|
+
id: Optional[str] = None):
|
|
70
|
+
"""
|
|
71
|
+
The API entity reference.
|
|
72
|
+
:param str id: The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
73
|
+
"""
|
|
74
|
+
if id is not None:
|
|
75
|
+
pulumi.set(__self__, "id", id)
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def id(self) -> Optional[str]:
|
|
80
|
+
"""
|
|
81
|
+
The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "id")
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
@pulumi.output_type
|
|
87
|
+
class AzureFileVolumeResponse(dict):
|
|
88
|
+
"""
|
|
89
|
+
The properties of the Azure File volume. Azure File shares are mounted as volumes.
|
|
90
|
+
"""
|
|
91
|
+
@staticmethod
|
|
92
|
+
def __key_warning(key: str):
|
|
93
|
+
suggest = None
|
|
94
|
+
if key == "shareName":
|
|
95
|
+
suggest = "share_name"
|
|
96
|
+
elif key == "storageAccountName":
|
|
97
|
+
suggest = "storage_account_name"
|
|
98
|
+
elif key == "readOnly":
|
|
99
|
+
suggest = "read_only"
|
|
100
|
+
elif key == "storageAccountKey":
|
|
101
|
+
suggest = "storage_account_key"
|
|
102
|
+
|
|
103
|
+
if suggest:
|
|
104
|
+
pulumi.log.warn(f"Key '{key}' not found in AzureFileVolumeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
105
|
+
|
|
106
|
+
def __getitem__(self, key: str) -> Any:
|
|
107
|
+
AzureFileVolumeResponse.__key_warning(key)
|
|
108
|
+
return super().__getitem__(key)
|
|
109
|
+
|
|
110
|
+
def get(self, key: str, default = None) -> Any:
|
|
111
|
+
AzureFileVolumeResponse.__key_warning(key)
|
|
112
|
+
return super().get(key, default)
|
|
113
|
+
|
|
114
|
+
def __init__(__self__, *,
|
|
115
|
+
share_name: str,
|
|
116
|
+
storage_account_name: str,
|
|
117
|
+
read_only: Optional[bool] = None,
|
|
118
|
+
storage_account_key: Optional[str] = None):
|
|
119
|
+
"""
|
|
120
|
+
The properties of the Azure File volume. Azure File shares are mounted as volumes.
|
|
121
|
+
:param str share_name: The name of the Azure File share to be mounted as a volume.
|
|
122
|
+
:param str storage_account_name: The name of the storage account that contains the Azure File share.
|
|
123
|
+
:param bool read_only: The flag indicating whether the Azure File shared mounted as a volume is read-only.
|
|
124
|
+
:param str storage_account_key: The storage account access key used to access the Azure File share.
|
|
125
|
+
"""
|
|
126
|
+
pulumi.set(__self__, "share_name", share_name)
|
|
127
|
+
pulumi.set(__self__, "storage_account_name", storage_account_name)
|
|
128
|
+
if read_only is not None:
|
|
129
|
+
pulumi.set(__self__, "read_only", read_only)
|
|
130
|
+
if storage_account_key is not None:
|
|
131
|
+
pulumi.set(__self__, "storage_account_key", storage_account_key)
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter(name="shareName")
|
|
135
|
+
def share_name(self) -> str:
|
|
136
|
+
"""
|
|
137
|
+
The name of the Azure File share to be mounted as a volume.
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "share_name")
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
@pulumi.getter(name="storageAccountName")
|
|
143
|
+
def storage_account_name(self) -> str:
|
|
144
|
+
"""
|
|
145
|
+
The name of the storage account that contains the Azure File share.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "storage_account_name")
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="readOnly")
|
|
151
|
+
def read_only(self) -> Optional[bool]:
|
|
152
|
+
"""
|
|
153
|
+
The flag indicating whether the Azure File shared mounted as a volume is read-only.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "read_only")
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter(name="storageAccountKey")
|
|
159
|
+
def storage_account_key(self) -> Optional[str]:
|
|
160
|
+
"""
|
|
161
|
+
The storage account access key used to access the Azure File share.
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "storage_account_key")
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
@pulumi.output_type
|
|
167
|
+
class ConfidentialComputePropertiesResponse(dict):
|
|
168
|
+
"""
|
|
169
|
+
The properties for confidential container group
|
|
170
|
+
"""
|
|
171
|
+
@staticmethod
|
|
172
|
+
def __key_warning(key: str):
|
|
173
|
+
suggest = None
|
|
174
|
+
if key == "ccePolicy":
|
|
175
|
+
suggest = "cce_policy"
|
|
176
|
+
|
|
177
|
+
if suggest:
|
|
178
|
+
pulumi.log.warn(f"Key '{key}' not found in ConfidentialComputePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
179
|
+
|
|
180
|
+
def __getitem__(self, key: str) -> Any:
|
|
181
|
+
ConfidentialComputePropertiesResponse.__key_warning(key)
|
|
182
|
+
return super().__getitem__(key)
|
|
183
|
+
|
|
184
|
+
def get(self, key: str, default = None) -> Any:
|
|
185
|
+
ConfidentialComputePropertiesResponse.__key_warning(key)
|
|
186
|
+
return super().get(key, default)
|
|
187
|
+
|
|
188
|
+
def __init__(__self__, *,
|
|
189
|
+
cce_policy: Optional[str] = None):
|
|
190
|
+
"""
|
|
191
|
+
The properties for confidential container group
|
|
192
|
+
:param str cce_policy: The base64 encoded confidential compute enforcement policy
|
|
193
|
+
"""
|
|
194
|
+
if cce_policy is not None:
|
|
195
|
+
pulumi.set(__self__, "cce_policy", cce_policy)
|
|
196
|
+
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter(name="ccePolicy")
|
|
199
|
+
def cce_policy(self) -> Optional[str]:
|
|
200
|
+
"""
|
|
201
|
+
The base64 encoded confidential compute enforcement policy
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "cce_policy")
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
@pulumi.output_type
|
|
207
|
+
class ContainerExecResponse(dict):
|
|
208
|
+
"""
|
|
209
|
+
The container execution command, for liveness or readiness probe
|
|
210
|
+
"""
|
|
211
|
+
def __init__(__self__, *,
|
|
212
|
+
command: Optional[Sequence[str]] = None):
|
|
213
|
+
"""
|
|
214
|
+
The container execution command, for liveness or readiness probe
|
|
215
|
+
:param Sequence[str] command: The commands to execute within the container.
|
|
216
|
+
"""
|
|
217
|
+
if command is not None:
|
|
218
|
+
pulumi.set(__self__, "command", command)
|
|
219
|
+
|
|
220
|
+
@property
|
|
221
|
+
@pulumi.getter
|
|
222
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
223
|
+
"""
|
|
224
|
+
The commands to execute within the container.
|
|
225
|
+
"""
|
|
226
|
+
return pulumi.get(self, "command")
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
@pulumi.output_type
|
|
230
|
+
class ContainerGroupDiagnosticsResponse(dict):
|
|
231
|
+
"""
|
|
232
|
+
Container group diagnostic information.
|
|
233
|
+
"""
|
|
234
|
+
@staticmethod
|
|
235
|
+
def __key_warning(key: str):
|
|
236
|
+
suggest = None
|
|
237
|
+
if key == "logAnalytics":
|
|
238
|
+
suggest = "log_analytics"
|
|
239
|
+
|
|
240
|
+
if suggest:
|
|
241
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerGroupDiagnosticsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
242
|
+
|
|
243
|
+
def __getitem__(self, key: str) -> Any:
|
|
244
|
+
ContainerGroupDiagnosticsResponse.__key_warning(key)
|
|
245
|
+
return super().__getitem__(key)
|
|
246
|
+
|
|
247
|
+
def get(self, key: str, default = None) -> Any:
|
|
248
|
+
ContainerGroupDiagnosticsResponse.__key_warning(key)
|
|
249
|
+
return super().get(key, default)
|
|
250
|
+
|
|
251
|
+
def __init__(__self__, *,
|
|
252
|
+
log_analytics: Optional['outputs.LogAnalyticsResponse'] = None):
|
|
253
|
+
"""
|
|
254
|
+
Container group diagnostic information.
|
|
255
|
+
:param 'LogAnalyticsResponse' log_analytics: Container group log analytics information.
|
|
256
|
+
"""
|
|
257
|
+
if log_analytics is not None:
|
|
258
|
+
pulumi.set(__self__, "log_analytics", log_analytics)
|
|
259
|
+
|
|
260
|
+
@property
|
|
261
|
+
@pulumi.getter(name="logAnalytics")
|
|
262
|
+
def log_analytics(self) -> Optional['outputs.LogAnalyticsResponse']:
|
|
263
|
+
"""
|
|
264
|
+
Container group log analytics information.
|
|
265
|
+
"""
|
|
266
|
+
return pulumi.get(self, "log_analytics")
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
@pulumi.output_type
|
|
270
|
+
class ContainerGroupIdentityResponse(dict):
|
|
271
|
+
"""
|
|
272
|
+
Identity for the container group.
|
|
273
|
+
"""
|
|
274
|
+
@staticmethod
|
|
275
|
+
def __key_warning(key: str):
|
|
276
|
+
suggest = None
|
|
277
|
+
if key == "principalId":
|
|
278
|
+
suggest = "principal_id"
|
|
279
|
+
elif key == "tenantId":
|
|
280
|
+
suggest = "tenant_id"
|
|
281
|
+
elif key == "userAssignedIdentities":
|
|
282
|
+
suggest = "user_assigned_identities"
|
|
283
|
+
|
|
284
|
+
if suggest:
|
|
285
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerGroupIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
286
|
+
|
|
287
|
+
def __getitem__(self, key: str) -> Any:
|
|
288
|
+
ContainerGroupIdentityResponse.__key_warning(key)
|
|
289
|
+
return super().__getitem__(key)
|
|
290
|
+
|
|
291
|
+
def get(self, key: str, default = None) -> Any:
|
|
292
|
+
ContainerGroupIdentityResponse.__key_warning(key)
|
|
293
|
+
return super().get(key, default)
|
|
294
|
+
|
|
295
|
+
def __init__(__self__, *,
|
|
296
|
+
principal_id: str,
|
|
297
|
+
tenant_id: str,
|
|
298
|
+
type: Optional[str] = None,
|
|
299
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']] = None):
|
|
300
|
+
"""
|
|
301
|
+
Identity for the container group.
|
|
302
|
+
:param str principal_id: The principal id of the container group identity. This property will only be provided for a system assigned identity.
|
|
303
|
+
:param str tenant_id: The tenant id associated with the container group. This property will only be provided for a system assigned identity.
|
|
304
|
+
:param str type: The type of identity used for the container group. 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 container group.
|
|
305
|
+
:param Mapping[str, 'UserAssignedIdentitiesResponse'] user_assigned_identities: The list of user identities associated with the container group.
|
|
306
|
+
"""
|
|
307
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
308
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
309
|
+
if type is not None:
|
|
310
|
+
pulumi.set(__self__, "type", type)
|
|
311
|
+
if user_assigned_identities is not None:
|
|
312
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
313
|
+
|
|
314
|
+
@property
|
|
315
|
+
@pulumi.getter(name="principalId")
|
|
316
|
+
def principal_id(self) -> str:
|
|
317
|
+
"""
|
|
318
|
+
The principal id of the container group identity. This property will only be provided for a system assigned identity.
|
|
319
|
+
"""
|
|
320
|
+
return pulumi.get(self, "principal_id")
|
|
321
|
+
|
|
322
|
+
@property
|
|
323
|
+
@pulumi.getter(name="tenantId")
|
|
324
|
+
def tenant_id(self) -> str:
|
|
325
|
+
"""
|
|
326
|
+
The tenant id associated with the container group. This property will only be provided for a system assigned identity.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "tenant_id")
|
|
329
|
+
|
|
330
|
+
@property
|
|
331
|
+
@pulumi.getter
|
|
332
|
+
def type(self) -> Optional[str]:
|
|
333
|
+
"""
|
|
334
|
+
The type of identity used for the container group. 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 container group.
|
|
335
|
+
"""
|
|
336
|
+
return pulumi.get(self, "type")
|
|
337
|
+
|
|
338
|
+
@property
|
|
339
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
340
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentitiesResponse']]:
|
|
341
|
+
"""
|
|
342
|
+
The list of user identities associated with the container group.
|
|
343
|
+
"""
|
|
344
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
@pulumi.output_type
|
|
348
|
+
class ContainerGroupProfileStubResponse(dict):
|
|
349
|
+
"""
|
|
350
|
+
The object that contains a reference to a Container Group Profile
|
|
351
|
+
"""
|
|
352
|
+
def __init__(__self__, *,
|
|
353
|
+
resource: Optional['outputs.ApiEntityReferenceResponse'] = None):
|
|
354
|
+
"""
|
|
355
|
+
The object that contains a reference to a Container Group Profile
|
|
356
|
+
:param 'ApiEntityReferenceResponse' resource: The API entity reference.
|
|
357
|
+
"""
|
|
358
|
+
if resource is not None:
|
|
359
|
+
pulumi.set(__self__, "resource", resource)
|
|
360
|
+
|
|
361
|
+
@property
|
|
362
|
+
@pulumi.getter
|
|
363
|
+
def resource(self) -> Optional['outputs.ApiEntityReferenceResponse']:
|
|
364
|
+
"""
|
|
365
|
+
The API entity reference.
|
|
366
|
+
"""
|
|
367
|
+
return pulumi.get(self, "resource")
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
@pulumi.output_type
|
|
371
|
+
class ContainerGroupPropertiesResponseInstanceView(dict):
|
|
372
|
+
"""
|
|
373
|
+
The instance view of the container group. Only valid in response.
|
|
374
|
+
"""
|
|
375
|
+
def __init__(__self__, *,
|
|
376
|
+
events: Sequence['outputs.EventResponse'],
|
|
377
|
+
state: str):
|
|
378
|
+
"""
|
|
379
|
+
The instance view of the container group. Only valid in response.
|
|
380
|
+
:param Sequence['EventResponse'] events: The events of this container group.
|
|
381
|
+
:param str state: The state of the container group. Only valid in response.
|
|
382
|
+
"""
|
|
383
|
+
pulumi.set(__self__, "events", events)
|
|
384
|
+
pulumi.set(__self__, "state", state)
|
|
385
|
+
|
|
386
|
+
@property
|
|
387
|
+
@pulumi.getter
|
|
388
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
389
|
+
"""
|
|
390
|
+
The events of this container group.
|
|
391
|
+
"""
|
|
392
|
+
return pulumi.get(self, "events")
|
|
393
|
+
|
|
394
|
+
@property
|
|
395
|
+
@pulumi.getter
|
|
396
|
+
def state(self) -> str:
|
|
397
|
+
"""
|
|
398
|
+
The state of the container group. Only valid in response.
|
|
399
|
+
"""
|
|
400
|
+
return pulumi.get(self, "state")
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
@pulumi.output_type
|
|
404
|
+
class ContainerGroupSubnetIdResponse(dict):
|
|
405
|
+
"""
|
|
406
|
+
Container group subnet information.
|
|
407
|
+
"""
|
|
408
|
+
def __init__(__self__, *,
|
|
409
|
+
id: str,
|
|
410
|
+
name: Optional[str] = None):
|
|
411
|
+
"""
|
|
412
|
+
Container group subnet information.
|
|
413
|
+
:param str id: Resource ID of virtual network and subnet.
|
|
414
|
+
:param str name: Friendly name for the subnet.
|
|
415
|
+
"""
|
|
416
|
+
pulumi.set(__self__, "id", id)
|
|
417
|
+
if name is not None:
|
|
418
|
+
pulumi.set(__self__, "name", name)
|
|
419
|
+
|
|
420
|
+
@property
|
|
421
|
+
@pulumi.getter
|
|
422
|
+
def id(self) -> str:
|
|
423
|
+
"""
|
|
424
|
+
Resource ID of virtual network and subnet.
|
|
425
|
+
"""
|
|
426
|
+
return pulumi.get(self, "id")
|
|
427
|
+
|
|
428
|
+
@property
|
|
429
|
+
@pulumi.getter
|
|
430
|
+
def name(self) -> Optional[str]:
|
|
431
|
+
"""
|
|
432
|
+
Friendly name for the subnet.
|
|
433
|
+
"""
|
|
434
|
+
return pulumi.get(self, "name")
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
@pulumi.output_type
|
|
438
|
+
class ContainerHttpGetResponse(dict):
|
|
439
|
+
"""
|
|
440
|
+
The container Http Get settings, for liveness or readiness probe
|
|
441
|
+
"""
|
|
442
|
+
@staticmethod
|
|
443
|
+
def __key_warning(key: str):
|
|
444
|
+
suggest = None
|
|
445
|
+
if key == "httpHeaders":
|
|
446
|
+
suggest = "http_headers"
|
|
447
|
+
|
|
448
|
+
if suggest:
|
|
449
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerHttpGetResponse. Access the value via the '{suggest}' property getter instead.")
|
|
450
|
+
|
|
451
|
+
def __getitem__(self, key: str) -> Any:
|
|
452
|
+
ContainerHttpGetResponse.__key_warning(key)
|
|
453
|
+
return super().__getitem__(key)
|
|
454
|
+
|
|
455
|
+
def get(self, key: str, default = None) -> Any:
|
|
456
|
+
ContainerHttpGetResponse.__key_warning(key)
|
|
457
|
+
return super().get(key, default)
|
|
458
|
+
|
|
459
|
+
def __init__(__self__, *,
|
|
460
|
+
port: int,
|
|
461
|
+
http_headers: Optional[Sequence['outputs.HttpHeaderResponse']] = None,
|
|
462
|
+
path: Optional[str] = None,
|
|
463
|
+
scheme: Optional[str] = None):
|
|
464
|
+
"""
|
|
465
|
+
The container Http Get settings, for liveness or readiness probe
|
|
466
|
+
:param int port: The port number to probe.
|
|
467
|
+
:param Sequence['HttpHeaderResponse'] http_headers: The HTTP headers.
|
|
468
|
+
:param str path: The path to probe.
|
|
469
|
+
:param str scheme: The scheme.
|
|
470
|
+
"""
|
|
471
|
+
pulumi.set(__self__, "port", port)
|
|
472
|
+
if http_headers is not None:
|
|
473
|
+
pulumi.set(__self__, "http_headers", http_headers)
|
|
474
|
+
if path is not None:
|
|
475
|
+
pulumi.set(__self__, "path", path)
|
|
476
|
+
if scheme is not None:
|
|
477
|
+
pulumi.set(__self__, "scheme", scheme)
|
|
478
|
+
|
|
479
|
+
@property
|
|
480
|
+
@pulumi.getter
|
|
481
|
+
def port(self) -> int:
|
|
482
|
+
"""
|
|
483
|
+
The port number to probe.
|
|
484
|
+
"""
|
|
485
|
+
return pulumi.get(self, "port")
|
|
486
|
+
|
|
487
|
+
@property
|
|
488
|
+
@pulumi.getter(name="httpHeaders")
|
|
489
|
+
def http_headers(self) -> Optional[Sequence['outputs.HttpHeaderResponse']]:
|
|
490
|
+
"""
|
|
491
|
+
The HTTP headers.
|
|
492
|
+
"""
|
|
493
|
+
return pulumi.get(self, "http_headers")
|
|
494
|
+
|
|
495
|
+
@property
|
|
496
|
+
@pulumi.getter
|
|
497
|
+
def path(self) -> Optional[str]:
|
|
498
|
+
"""
|
|
499
|
+
The path to probe.
|
|
500
|
+
"""
|
|
501
|
+
return pulumi.get(self, "path")
|
|
502
|
+
|
|
503
|
+
@property
|
|
504
|
+
@pulumi.getter
|
|
505
|
+
def scheme(self) -> Optional[str]:
|
|
506
|
+
"""
|
|
507
|
+
The scheme.
|
|
508
|
+
"""
|
|
509
|
+
return pulumi.get(self, "scheme")
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
@pulumi.output_type
|
|
513
|
+
class ContainerPortResponse(dict):
|
|
514
|
+
"""
|
|
515
|
+
The port exposed on the container instance.
|
|
516
|
+
"""
|
|
517
|
+
def __init__(__self__, *,
|
|
518
|
+
port: int,
|
|
519
|
+
protocol: Optional[str] = None):
|
|
520
|
+
"""
|
|
521
|
+
The port exposed on the container instance.
|
|
522
|
+
:param int port: The port number exposed within the container group.
|
|
523
|
+
:param str protocol: The protocol associated with the port.
|
|
524
|
+
"""
|
|
525
|
+
pulumi.set(__self__, "port", port)
|
|
526
|
+
if protocol is not None:
|
|
527
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
528
|
+
|
|
529
|
+
@property
|
|
530
|
+
@pulumi.getter
|
|
531
|
+
def port(self) -> int:
|
|
532
|
+
"""
|
|
533
|
+
The port number exposed within the container group.
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "port")
|
|
536
|
+
|
|
537
|
+
@property
|
|
538
|
+
@pulumi.getter
|
|
539
|
+
def protocol(self) -> Optional[str]:
|
|
540
|
+
"""
|
|
541
|
+
The protocol associated with the port.
|
|
542
|
+
"""
|
|
543
|
+
return pulumi.get(self, "protocol")
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
@pulumi.output_type
|
|
547
|
+
class ContainerProbeResponse(dict):
|
|
548
|
+
"""
|
|
549
|
+
The container probe, for liveness or readiness
|
|
550
|
+
"""
|
|
551
|
+
@staticmethod
|
|
552
|
+
def __key_warning(key: str):
|
|
553
|
+
suggest = None
|
|
554
|
+
if key == "exec":
|
|
555
|
+
suggest = "exec_"
|
|
556
|
+
elif key == "failureThreshold":
|
|
557
|
+
suggest = "failure_threshold"
|
|
558
|
+
elif key == "httpGet":
|
|
559
|
+
suggest = "http_get"
|
|
560
|
+
elif key == "initialDelaySeconds":
|
|
561
|
+
suggest = "initial_delay_seconds"
|
|
562
|
+
elif key == "periodSeconds":
|
|
563
|
+
suggest = "period_seconds"
|
|
564
|
+
elif key == "successThreshold":
|
|
565
|
+
suggest = "success_threshold"
|
|
566
|
+
elif key == "timeoutSeconds":
|
|
567
|
+
suggest = "timeout_seconds"
|
|
568
|
+
|
|
569
|
+
if suggest:
|
|
570
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerProbeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
571
|
+
|
|
572
|
+
def __getitem__(self, key: str) -> Any:
|
|
573
|
+
ContainerProbeResponse.__key_warning(key)
|
|
574
|
+
return super().__getitem__(key)
|
|
575
|
+
|
|
576
|
+
def get(self, key: str, default = None) -> Any:
|
|
577
|
+
ContainerProbeResponse.__key_warning(key)
|
|
578
|
+
return super().get(key, default)
|
|
579
|
+
|
|
580
|
+
def __init__(__self__, *,
|
|
581
|
+
exec_: Optional['outputs.ContainerExecResponse'] = None,
|
|
582
|
+
failure_threshold: Optional[int] = None,
|
|
583
|
+
http_get: Optional['outputs.ContainerHttpGetResponse'] = None,
|
|
584
|
+
initial_delay_seconds: Optional[int] = None,
|
|
585
|
+
period_seconds: Optional[int] = None,
|
|
586
|
+
success_threshold: Optional[int] = None,
|
|
587
|
+
timeout_seconds: Optional[int] = None):
|
|
588
|
+
"""
|
|
589
|
+
The container probe, for liveness or readiness
|
|
590
|
+
:param 'ContainerExecResponse' exec_: The execution command to probe
|
|
591
|
+
:param int failure_threshold: The failure threshold.
|
|
592
|
+
:param 'ContainerHttpGetResponse' http_get: The Http Get settings to probe
|
|
593
|
+
:param int initial_delay_seconds: The initial delay seconds.
|
|
594
|
+
:param int period_seconds: The period seconds.
|
|
595
|
+
:param int success_threshold: The success threshold.
|
|
596
|
+
:param int timeout_seconds: The timeout seconds.
|
|
597
|
+
"""
|
|
598
|
+
if exec_ is not None:
|
|
599
|
+
pulumi.set(__self__, "exec_", exec_)
|
|
600
|
+
if failure_threshold is not None:
|
|
601
|
+
pulumi.set(__self__, "failure_threshold", failure_threshold)
|
|
602
|
+
if http_get is not None:
|
|
603
|
+
pulumi.set(__self__, "http_get", http_get)
|
|
604
|
+
if initial_delay_seconds is not None:
|
|
605
|
+
pulumi.set(__self__, "initial_delay_seconds", initial_delay_seconds)
|
|
606
|
+
if period_seconds is not None:
|
|
607
|
+
pulumi.set(__self__, "period_seconds", period_seconds)
|
|
608
|
+
if success_threshold is not None:
|
|
609
|
+
pulumi.set(__self__, "success_threshold", success_threshold)
|
|
610
|
+
if timeout_seconds is not None:
|
|
611
|
+
pulumi.set(__self__, "timeout_seconds", timeout_seconds)
|
|
612
|
+
|
|
613
|
+
@property
|
|
614
|
+
@pulumi.getter(name="exec")
|
|
615
|
+
def exec_(self) -> Optional['outputs.ContainerExecResponse']:
|
|
616
|
+
"""
|
|
617
|
+
The execution command to probe
|
|
618
|
+
"""
|
|
619
|
+
return pulumi.get(self, "exec_")
|
|
620
|
+
|
|
621
|
+
@property
|
|
622
|
+
@pulumi.getter(name="failureThreshold")
|
|
623
|
+
def failure_threshold(self) -> Optional[int]:
|
|
624
|
+
"""
|
|
625
|
+
The failure threshold.
|
|
626
|
+
"""
|
|
627
|
+
return pulumi.get(self, "failure_threshold")
|
|
628
|
+
|
|
629
|
+
@property
|
|
630
|
+
@pulumi.getter(name="httpGet")
|
|
631
|
+
def http_get(self) -> Optional['outputs.ContainerHttpGetResponse']:
|
|
632
|
+
"""
|
|
633
|
+
The Http Get settings to probe
|
|
634
|
+
"""
|
|
635
|
+
return pulumi.get(self, "http_get")
|
|
636
|
+
|
|
637
|
+
@property
|
|
638
|
+
@pulumi.getter(name="initialDelaySeconds")
|
|
639
|
+
def initial_delay_seconds(self) -> Optional[int]:
|
|
640
|
+
"""
|
|
641
|
+
The initial delay seconds.
|
|
642
|
+
"""
|
|
643
|
+
return pulumi.get(self, "initial_delay_seconds")
|
|
644
|
+
|
|
645
|
+
@property
|
|
646
|
+
@pulumi.getter(name="periodSeconds")
|
|
647
|
+
def period_seconds(self) -> Optional[int]:
|
|
648
|
+
"""
|
|
649
|
+
The period seconds.
|
|
650
|
+
"""
|
|
651
|
+
return pulumi.get(self, "period_seconds")
|
|
652
|
+
|
|
653
|
+
@property
|
|
654
|
+
@pulumi.getter(name="successThreshold")
|
|
655
|
+
def success_threshold(self) -> Optional[int]:
|
|
656
|
+
"""
|
|
657
|
+
The success threshold.
|
|
658
|
+
"""
|
|
659
|
+
return pulumi.get(self, "success_threshold")
|
|
660
|
+
|
|
661
|
+
@property
|
|
662
|
+
@pulumi.getter(name="timeoutSeconds")
|
|
663
|
+
def timeout_seconds(self) -> Optional[int]:
|
|
664
|
+
"""
|
|
665
|
+
The timeout seconds.
|
|
666
|
+
"""
|
|
667
|
+
return pulumi.get(self, "timeout_seconds")
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
@pulumi.output_type
|
|
671
|
+
class ContainerPropertiesResponseInstanceView(dict):
|
|
672
|
+
"""
|
|
673
|
+
The instance view of the container instance. Only valid in response.
|
|
674
|
+
"""
|
|
675
|
+
@staticmethod
|
|
676
|
+
def __key_warning(key: str):
|
|
677
|
+
suggest = None
|
|
678
|
+
if key == "currentState":
|
|
679
|
+
suggest = "current_state"
|
|
680
|
+
elif key == "previousState":
|
|
681
|
+
suggest = "previous_state"
|
|
682
|
+
elif key == "restartCount":
|
|
683
|
+
suggest = "restart_count"
|
|
684
|
+
|
|
685
|
+
if suggest:
|
|
686
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerPropertiesResponseInstanceView. Access the value via the '{suggest}' property getter instead.")
|
|
687
|
+
|
|
688
|
+
def __getitem__(self, key: str) -> Any:
|
|
689
|
+
ContainerPropertiesResponseInstanceView.__key_warning(key)
|
|
690
|
+
return super().__getitem__(key)
|
|
691
|
+
|
|
692
|
+
def get(self, key: str, default = None) -> Any:
|
|
693
|
+
ContainerPropertiesResponseInstanceView.__key_warning(key)
|
|
694
|
+
return super().get(key, default)
|
|
695
|
+
|
|
696
|
+
def __init__(__self__, *,
|
|
697
|
+
current_state: 'outputs.ContainerStateResponse',
|
|
698
|
+
events: Sequence['outputs.EventResponse'],
|
|
699
|
+
previous_state: 'outputs.ContainerStateResponse',
|
|
700
|
+
restart_count: int):
|
|
701
|
+
"""
|
|
702
|
+
The instance view of the container instance. Only valid in response.
|
|
703
|
+
:param 'ContainerStateResponse' current_state: Current container instance state.
|
|
704
|
+
:param Sequence['EventResponse'] events: The events of the container instance.
|
|
705
|
+
:param 'ContainerStateResponse' previous_state: Previous container instance state.
|
|
706
|
+
:param int restart_count: The number of times that the container instance has been restarted.
|
|
707
|
+
"""
|
|
708
|
+
pulumi.set(__self__, "current_state", current_state)
|
|
709
|
+
pulumi.set(__self__, "events", events)
|
|
710
|
+
pulumi.set(__self__, "previous_state", previous_state)
|
|
711
|
+
pulumi.set(__self__, "restart_count", restart_count)
|
|
712
|
+
|
|
713
|
+
@property
|
|
714
|
+
@pulumi.getter(name="currentState")
|
|
715
|
+
def current_state(self) -> 'outputs.ContainerStateResponse':
|
|
716
|
+
"""
|
|
717
|
+
Current container instance state.
|
|
718
|
+
"""
|
|
719
|
+
return pulumi.get(self, "current_state")
|
|
720
|
+
|
|
721
|
+
@property
|
|
722
|
+
@pulumi.getter
|
|
723
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
724
|
+
"""
|
|
725
|
+
The events of the container instance.
|
|
726
|
+
"""
|
|
727
|
+
return pulumi.get(self, "events")
|
|
728
|
+
|
|
729
|
+
@property
|
|
730
|
+
@pulumi.getter(name="previousState")
|
|
731
|
+
def previous_state(self) -> 'outputs.ContainerStateResponse':
|
|
732
|
+
"""
|
|
733
|
+
Previous container instance state.
|
|
734
|
+
"""
|
|
735
|
+
return pulumi.get(self, "previous_state")
|
|
736
|
+
|
|
737
|
+
@property
|
|
738
|
+
@pulumi.getter(name="restartCount")
|
|
739
|
+
def restart_count(self) -> int:
|
|
740
|
+
"""
|
|
741
|
+
The number of times that the container instance has been restarted.
|
|
742
|
+
"""
|
|
743
|
+
return pulumi.get(self, "restart_count")
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
@pulumi.output_type
|
|
747
|
+
class ContainerResponse(dict):
|
|
748
|
+
"""
|
|
749
|
+
A container instance.
|
|
750
|
+
"""
|
|
751
|
+
@staticmethod
|
|
752
|
+
def __key_warning(key: str):
|
|
753
|
+
suggest = None
|
|
754
|
+
if key == "instanceView":
|
|
755
|
+
suggest = "instance_view"
|
|
756
|
+
elif key == "environmentVariables":
|
|
757
|
+
suggest = "environment_variables"
|
|
758
|
+
elif key == "livenessProbe":
|
|
759
|
+
suggest = "liveness_probe"
|
|
760
|
+
elif key == "readinessProbe":
|
|
761
|
+
suggest = "readiness_probe"
|
|
762
|
+
elif key == "securityContext":
|
|
763
|
+
suggest = "security_context"
|
|
764
|
+
elif key == "volumeMounts":
|
|
765
|
+
suggest = "volume_mounts"
|
|
766
|
+
|
|
767
|
+
if suggest:
|
|
768
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerResponse. Access the value via the '{suggest}' property getter instead.")
|
|
769
|
+
|
|
770
|
+
def __getitem__(self, key: str) -> Any:
|
|
771
|
+
ContainerResponse.__key_warning(key)
|
|
772
|
+
return super().__getitem__(key)
|
|
773
|
+
|
|
774
|
+
def get(self, key: str, default = None) -> Any:
|
|
775
|
+
ContainerResponse.__key_warning(key)
|
|
776
|
+
return super().get(key, default)
|
|
777
|
+
|
|
778
|
+
def __init__(__self__, *,
|
|
779
|
+
image: str,
|
|
780
|
+
instance_view: 'outputs.ContainerPropertiesResponseInstanceView',
|
|
781
|
+
name: str,
|
|
782
|
+
resources: 'outputs.ResourceRequirementsResponse',
|
|
783
|
+
command: Optional[Sequence[str]] = None,
|
|
784
|
+
environment_variables: Optional[Sequence['outputs.EnvironmentVariableResponse']] = None,
|
|
785
|
+
liveness_probe: Optional['outputs.ContainerProbeResponse'] = None,
|
|
786
|
+
ports: Optional[Sequence['outputs.ContainerPortResponse']] = None,
|
|
787
|
+
readiness_probe: Optional['outputs.ContainerProbeResponse'] = None,
|
|
788
|
+
security_context: Optional['outputs.SecurityContextDefinitionResponse'] = None,
|
|
789
|
+
volume_mounts: Optional[Sequence['outputs.VolumeMountResponse']] = None):
|
|
790
|
+
"""
|
|
791
|
+
A container instance.
|
|
792
|
+
:param str image: The name of the image used to create the container instance.
|
|
793
|
+
:param 'ContainerPropertiesResponseInstanceView' instance_view: The instance view of the container instance. Only valid in response.
|
|
794
|
+
:param str name: The user-provided name of the container instance.
|
|
795
|
+
:param 'ResourceRequirementsResponse' resources: The resource requirements of the container instance.
|
|
796
|
+
:param Sequence[str] command: The commands to execute within the container instance in exec form.
|
|
797
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: The environment variables to set in the container instance.
|
|
798
|
+
:param 'ContainerProbeResponse' liveness_probe: The liveness probe.
|
|
799
|
+
:param Sequence['ContainerPortResponse'] ports: The exposed ports on the container instance.
|
|
800
|
+
:param 'ContainerProbeResponse' readiness_probe: The readiness probe.
|
|
801
|
+
:param 'SecurityContextDefinitionResponse' security_context: The container security properties.
|
|
802
|
+
:param Sequence['VolumeMountResponse'] volume_mounts: The volume mounts available to the container instance.
|
|
803
|
+
"""
|
|
804
|
+
pulumi.set(__self__, "image", image)
|
|
805
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
806
|
+
pulumi.set(__self__, "name", name)
|
|
807
|
+
pulumi.set(__self__, "resources", resources)
|
|
808
|
+
if command is not None:
|
|
809
|
+
pulumi.set(__self__, "command", command)
|
|
810
|
+
if environment_variables is not None:
|
|
811
|
+
pulumi.set(__self__, "environment_variables", environment_variables)
|
|
812
|
+
if liveness_probe is not None:
|
|
813
|
+
pulumi.set(__self__, "liveness_probe", liveness_probe)
|
|
814
|
+
if ports is not None:
|
|
815
|
+
pulumi.set(__self__, "ports", ports)
|
|
816
|
+
if readiness_probe is not None:
|
|
817
|
+
pulumi.set(__self__, "readiness_probe", readiness_probe)
|
|
818
|
+
if security_context is not None:
|
|
819
|
+
pulumi.set(__self__, "security_context", security_context)
|
|
820
|
+
if volume_mounts is not None:
|
|
821
|
+
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
822
|
+
|
|
823
|
+
@property
|
|
824
|
+
@pulumi.getter
|
|
825
|
+
def image(self) -> str:
|
|
826
|
+
"""
|
|
827
|
+
The name of the image used to create the container instance.
|
|
828
|
+
"""
|
|
829
|
+
return pulumi.get(self, "image")
|
|
830
|
+
|
|
831
|
+
@property
|
|
832
|
+
@pulumi.getter(name="instanceView")
|
|
833
|
+
def instance_view(self) -> 'outputs.ContainerPropertiesResponseInstanceView':
|
|
834
|
+
"""
|
|
835
|
+
The instance view of the container instance. Only valid in response.
|
|
836
|
+
"""
|
|
837
|
+
return pulumi.get(self, "instance_view")
|
|
838
|
+
|
|
839
|
+
@property
|
|
840
|
+
@pulumi.getter
|
|
841
|
+
def name(self) -> str:
|
|
842
|
+
"""
|
|
843
|
+
The user-provided name of the container instance.
|
|
844
|
+
"""
|
|
845
|
+
return pulumi.get(self, "name")
|
|
846
|
+
|
|
847
|
+
@property
|
|
848
|
+
@pulumi.getter
|
|
849
|
+
def resources(self) -> 'outputs.ResourceRequirementsResponse':
|
|
850
|
+
"""
|
|
851
|
+
The resource requirements of the container instance.
|
|
852
|
+
"""
|
|
853
|
+
return pulumi.get(self, "resources")
|
|
854
|
+
|
|
855
|
+
@property
|
|
856
|
+
@pulumi.getter
|
|
857
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
858
|
+
"""
|
|
859
|
+
The commands to execute within the container instance in exec form.
|
|
860
|
+
"""
|
|
861
|
+
return pulumi.get(self, "command")
|
|
862
|
+
|
|
863
|
+
@property
|
|
864
|
+
@pulumi.getter(name="environmentVariables")
|
|
865
|
+
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
866
|
+
"""
|
|
867
|
+
The environment variables to set in the container instance.
|
|
868
|
+
"""
|
|
869
|
+
return pulumi.get(self, "environment_variables")
|
|
870
|
+
|
|
871
|
+
@property
|
|
872
|
+
@pulumi.getter(name="livenessProbe")
|
|
873
|
+
def liveness_probe(self) -> Optional['outputs.ContainerProbeResponse']:
|
|
874
|
+
"""
|
|
875
|
+
The liveness probe.
|
|
876
|
+
"""
|
|
877
|
+
return pulumi.get(self, "liveness_probe")
|
|
878
|
+
|
|
879
|
+
@property
|
|
880
|
+
@pulumi.getter
|
|
881
|
+
def ports(self) -> Optional[Sequence['outputs.ContainerPortResponse']]:
|
|
882
|
+
"""
|
|
883
|
+
The exposed ports on the container instance.
|
|
884
|
+
"""
|
|
885
|
+
return pulumi.get(self, "ports")
|
|
886
|
+
|
|
887
|
+
@property
|
|
888
|
+
@pulumi.getter(name="readinessProbe")
|
|
889
|
+
def readiness_probe(self) -> Optional['outputs.ContainerProbeResponse']:
|
|
890
|
+
"""
|
|
891
|
+
The readiness probe.
|
|
892
|
+
"""
|
|
893
|
+
return pulumi.get(self, "readiness_probe")
|
|
894
|
+
|
|
895
|
+
@property
|
|
896
|
+
@pulumi.getter(name="securityContext")
|
|
897
|
+
def security_context(self) -> Optional['outputs.SecurityContextDefinitionResponse']:
|
|
898
|
+
"""
|
|
899
|
+
The container security properties.
|
|
900
|
+
"""
|
|
901
|
+
return pulumi.get(self, "security_context")
|
|
902
|
+
|
|
903
|
+
@property
|
|
904
|
+
@pulumi.getter(name="volumeMounts")
|
|
905
|
+
def volume_mounts(self) -> Optional[Sequence['outputs.VolumeMountResponse']]:
|
|
906
|
+
"""
|
|
907
|
+
The volume mounts available to the container instance.
|
|
908
|
+
"""
|
|
909
|
+
return pulumi.get(self, "volume_mounts")
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
@pulumi.output_type
|
|
913
|
+
class ContainerStateResponse(dict):
|
|
914
|
+
"""
|
|
915
|
+
The container instance state.
|
|
916
|
+
"""
|
|
917
|
+
@staticmethod
|
|
918
|
+
def __key_warning(key: str):
|
|
919
|
+
suggest = None
|
|
920
|
+
if key == "detailStatus":
|
|
921
|
+
suggest = "detail_status"
|
|
922
|
+
elif key == "exitCode":
|
|
923
|
+
suggest = "exit_code"
|
|
924
|
+
elif key == "finishTime":
|
|
925
|
+
suggest = "finish_time"
|
|
926
|
+
elif key == "startTime":
|
|
927
|
+
suggest = "start_time"
|
|
928
|
+
|
|
929
|
+
if suggest:
|
|
930
|
+
pulumi.log.warn(f"Key '{key}' not found in ContainerStateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
931
|
+
|
|
932
|
+
def __getitem__(self, key: str) -> Any:
|
|
933
|
+
ContainerStateResponse.__key_warning(key)
|
|
934
|
+
return super().__getitem__(key)
|
|
935
|
+
|
|
936
|
+
def get(self, key: str, default = None) -> Any:
|
|
937
|
+
ContainerStateResponse.__key_warning(key)
|
|
938
|
+
return super().get(key, default)
|
|
939
|
+
|
|
940
|
+
def __init__(__self__, *,
|
|
941
|
+
detail_status: str,
|
|
942
|
+
exit_code: int,
|
|
943
|
+
finish_time: str,
|
|
944
|
+
start_time: str,
|
|
945
|
+
state: str):
|
|
946
|
+
"""
|
|
947
|
+
The container instance state.
|
|
948
|
+
:param str detail_status: The human-readable status of the container instance state.
|
|
949
|
+
:param int exit_code: The container instance exit codes correspond to those from the `docker run` command.
|
|
950
|
+
:param str finish_time: The date-time when the container instance state finished.
|
|
951
|
+
:param str start_time: The date-time when the container instance state started.
|
|
952
|
+
:param str state: The state of the container instance.
|
|
953
|
+
"""
|
|
954
|
+
pulumi.set(__self__, "detail_status", detail_status)
|
|
955
|
+
pulumi.set(__self__, "exit_code", exit_code)
|
|
956
|
+
pulumi.set(__self__, "finish_time", finish_time)
|
|
957
|
+
pulumi.set(__self__, "start_time", start_time)
|
|
958
|
+
pulumi.set(__self__, "state", state)
|
|
959
|
+
|
|
960
|
+
@property
|
|
961
|
+
@pulumi.getter(name="detailStatus")
|
|
962
|
+
def detail_status(self) -> str:
|
|
963
|
+
"""
|
|
964
|
+
The human-readable status of the container instance state.
|
|
965
|
+
"""
|
|
966
|
+
return pulumi.get(self, "detail_status")
|
|
967
|
+
|
|
968
|
+
@property
|
|
969
|
+
@pulumi.getter(name="exitCode")
|
|
970
|
+
def exit_code(self) -> int:
|
|
971
|
+
"""
|
|
972
|
+
The container instance exit codes correspond to those from the `docker run` command.
|
|
973
|
+
"""
|
|
974
|
+
return pulumi.get(self, "exit_code")
|
|
975
|
+
|
|
976
|
+
@property
|
|
977
|
+
@pulumi.getter(name="finishTime")
|
|
978
|
+
def finish_time(self) -> str:
|
|
979
|
+
"""
|
|
980
|
+
The date-time when the container instance state finished.
|
|
981
|
+
"""
|
|
982
|
+
return pulumi.get(self, "finish_time")
|
|
983
|
+
|
|
984
|
+
@property
|
|
985
|
+
@pulumi.getter(name="startTime")
|
|
986
|
+
def start_time(self) -> str:
|
|
987
|
+
"""
|
|
988
|
+
The date-time when the container instance state started.
|
|
989
|
+
"""
|
|
990
|
+
return pulumi.get(self, "start_time")
|
|
991
|
+
|
|
992
|
+
@property
|
|
993
|
+
@pulumi.getter
|
|
994
|
+
def state(self) -> str:
|
|
995
|
+
"""
|
|
996
|
+
The state of the container instance.
|
|
997
|
+
"""
|
|
998
|
+
return pulumi.get(self, "state")
|
|
999
|
+
|
|
1000
|
+
|
|
1001
|
+
@pulumi.output_type
|
|
1002
|
+
class DeploymentExtensionSpecResponse(dict):
|
|
1003
|
+
"""
|
|
1004
|
+
Extension sidecars to be added to the deployment.
|
|
1005
|
+
"""
|
|
1006
|
+
@staticmethod
|
|
1007
|
+
def __key_warning(key: str):
|
|
1008
|
+
suggest = None
|
|
1009
|
+
if key == "extensionType":
|
|
1010
|
+
suggest = "extension_type"
|
|
1011
|
+
elif key == "protectedSettings":
|
|
1012
|
+
suggest = "protected_settings"
|
|
1013
|
+
|
|
1014
|
+
if suggest:
|
|
1015
|
+
pulumi.log.warn(f"Key '{key}' not found in DeploymentExtensionSpecResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1016
|
+
|
|
1017
|
+
def __getitem__(self, key: str) -> Any:
|
|
1018
|
+
DeploymentExtensionSpecResponse.__key_warning(key)
|
|
1019
|
+
return super().__getitem__(key)
|
|
1020
|
+
|
|
1021
|
+
def get(self, key: str, default = None) -> Any:
|
|
1022
|
+
DeploymentExtensionSpecResponse.__key_warning(key)
|
|
1023
|
+
return super().get(key, default)
|
|
1024
|
+
|
|
1025
|
+
def __init__(__self__, *,
|
|
1026
|
+
extension_type: str,
|
|
1027
|
+
name: str,
|
|
1028
|
+
version: str,
|
|
1029
|
+
protected_settings: Optional[Any] = None,
|
|
1030
|
+
settings: Optional[Any] = None):
|
|
1031
|
+
"""
|
|
1032
|
+
Extension sidecars to be added to the deployment.
|
|
1033
|
+
:param str extension_type: Type of extension to be added.
|
|
1034
|
+
:param str name: Name of the extension.
|
|
1035
|
+
:param str version: Version of the extension being used.
|
|
1036
|
+
:param Any protected_settings: Protected settings for the extension.
|
|
1037
|
+
:param Any settings: Settings for the extension.
|
|
1038
|
+
"""
|
|
1039
|
+
pulumi.set(__self__, "extension_type", extension_type)
|
|
1040
|
+
pulumi.set(__self__, "name", name)
|
|
1041
|
+
pulumi.set(__self__, "version", version)
|
|
1042
|
+
if protected_settings is not None:
|
|
1043
|
+
pulumi.set(__self__, "protected_settings", protected_settings)
|
|
1044
|
+
if settings is not None:
|
|
1045
|
+
pulumi.set(__self__, "settings", settings)
|
|
1046
|
+
|
|
1047
|
+
@property
|
|
1048
|
+
@pulumi.getter(name="extensionType")
|
|
1049
|
+
def extension_type(self) -> str:
|
|
1050
|
+
"""
|
|
1051
|
+
Type of extension to be added.
|
|
1052
|
+
"""
|
|
1053
|
+
return pulumi.get(self, "extension_type")
|
|
1054
|
+
|
|
1055
|
+
@property
|
|
1056
|
+
@pulumi.getter
|
|
1057
|
+
def name(self) -> str:
|
|
1058
|
+
"""
|
|
1059
|
+
Name of the extension.
|
|
1060
|
+
"""
|
|
1061
|
+
return pulumi.get(self, "name")
|
|
1062
|
+
|
|
1063
|
+
@property
|
|
1064
|
+
@pulumi.getter
|
|
1065
|
+
def version(self) -> str:
|
|
1066
|
+
"""
|
|
1067
|
+
Version of the extension being used.
|
|
1068
|
+
"""
|
|
1069
|
+
return pulumi.get(self, "version")
|
|
1070
|
+
|
|
1071
|
+
@property
|
|
1072
|
+
@pulumi.getter(name="protectedSettings")
|
|
1073
|
+
def protected_settings(self) -> Optional[Any]:
|
|
1074
|
+
"""
|
|
1075
|
+
Protected settings for the extension.
|
|
1076
|
+
"""
|
|
1077
|
+
return pulumi.get(self, "protected_settings")
|
|
1078
|
+
|
|
1079
|
+
@property
|
|
1080
|
+
@pulumi.getter
|
|
1081
|
+
def settings(self) -> Optional[Any]:
|
|
1082
|
+
"""
|
|
1083
|
+
Settings for the extension.
|
|
1084
|
+
"""
|
|
1085
|
+
return pulumi.get(self, "settings")
|
|
1086
|
+
|
|
1087
|
+
|
|
1088
|
+
@pulumi.output_type
|
|
1089
|
+
class DnsConfigurationResponse(dict):
|
|
1090
|
+
"""
|
|
1091
|
+
DNS configuration for the container group.
|
|
1092
|
+
"""
|
|
1093
|
+
@staticmethod
|
|
1094
|
+
def __key_warning(key: str):
|
|
1095
|
+
suggest = None
|
|
1096
|
+
if key == "nameServers":
|
|
1097
|
+
suggest = "name_servers"
|
|
1098
|
+
elif key == "searchDomains":
|
|
1099
|
+
suggest = "search_domains"
|
|
1100
|
+
|
|
1101
|
+
if suggest:
|
|
1102
|
+
pulumi.log.warn(f"Key '{key}' not found in DnsConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1103
|
+
|
|
1104
|
+
def __getitem__(self, key: str) -> Any:
|
|
1105
|
+
DnsConfigurationResponse.__key_warning(key)
|
|
1106
|
+
return super().__getitem__(key)
|
|
1107
|
+
|
|
1108
|
+
def get(self, key: str, default = None) -> Any:
|
|
1109
|
+
DnsConfigurationResponse.__key_warning(key)
|
|
1110
|
+
return super().get(key, default)
|
|
1111
|
+
|
|
1112
|
+
def __init__(__self__, *,
|
|
1113
|
+
name_servers: Sequence[str],
|
|
1114
|
+
options: Optional[str] = None,
|
|
1115
|
+
search_domains: Optional[str] = None):
|
|
1116
|
+
"""
|
|
1117
|
+
DNS configuration for the container group.
|
|
1118
|
+
:param Sequence[str] name_servers: The DNS servers for the container group.
|
|
1119
|
+
:param str options: The DNS options for the container group.
|
|
1120
|
+
:param str search_domains: The DNS search domains for hostname lookup in the container group.
|
|
1121
|
+
"""
|
|
1122
|
+
pulumi.set(__self__, "name_servers", name_servers)
|
|
1123
|
+
if options is not None:
|
|
1124
|
+
pulumi.set(__self__, "options", options)
|
|
1125
|
+
if search_domains is not None:
|
|
1126
|
+
pulumi.set(__self__, "search_domains", search_domains)
|
|
1127
|
+
|
|
1128
|
+
@property
|
|
1129
|
+
@pulumi.getter(name="nameServers")
|
|
1130
|
+
def name_servers(self) -> Sequence[str]:
|
|
1131
|
+
"""
|
|
1132
|
+
The DNS servers for the container group.
|
|
1133
|
+
"""
|
|
1134
|
+
return pulumi.get(self, "name_servers")
|
|
1135
|
+
|
|
1136
|
+
@property
|
|
1137
|
+
@pulumi.getter
|
|
1138
|
+
def options(self) -> Optional[str]:
|
|
1139
|
+
"""
|
|
1140
|
+
The DNS options for the container group.
|
|
1141
|
+
"""
|
|
1142
|
+
return pulumi.get(self, "options")
|
|
1143
|
+
|
|
1144
|
+
@property
|
|
1145
|
+
@pulumi.getter(name="searchDomains")
|
|
1146
|
+
def search_domains(self) -> Optional[str]:
|
|
1147
|
+
"""
|
|
1148
|
+
The DNS search domains for hostname lookup in the container group.
|
|
1149
|
+
"""
|
|
1150
|
+
return pulumi.get(self, "search_domains")
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
@pulumi.output_type
|
|
1154
|
+
class ElasticProfileResponse(dict):
|
|
1155
|
+
"""
|
|
1156
|
+
Describes the elastic profile of the Container Scale Set
|
|
1157
|
+
"""
|
|
1158
|
+
@staticmethod
|
|
1159
|
+
def __key_warning(key: str):
|
|
1160
|
+
suggest = None
|
|
1161
|
+
if key == "desiredCount":
|
|
1162
|
+
suggest = "desired_count"
|
|
1163
|
+
|
|
1164
|
+
if suggest:
|
|
1165
|
+
pulumi.log.warn(f"Key '{key}' not found in ElasticProfileResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1166
|
+
|
|
1167
|
+
def __getitem__(self, key: str) -> Any:
|
|
1168
|
+
ElasticProfileResponse.__key_warning(key)
|
|
1169
|
+
return super().__getitem__(key)
|
|
1170
|
+
|
|
1171
|
+
def get(self, key: str, default = None) -> Any:
|
|
1172
|
+
ElasticProfileResponse.__key_warning(key)
|
|
1173
|
+
return super().get(key, default)
|
|
1174
|
+
|
|
1175
|
+
def __init__(__self__, *,
|
|
1176
|
+
desired_count: Optional[int] = None):
|
|
1177
|
+
"""
|
|
1178
|
+
Describes the elastic profile of the Container Scale Set
|
|
1179
|
+
"""
|
|
1180
|
+
if desired_count is not None:
|
|
1181
|
+
pulumi.set(__self__, "desired_count", desired_count)
|
|
1182
|
+
|
|
1183
|
+
@property
|
|
1184
|
+
@pulumi.getter(name="desiredCount")
|
|
1185
|
+
def desired_count(self) -> Optional[int]:
|
|
1186
|
+
return pulumi.get(self, "desired_count")
|
|
1187
|
+
|
|
1188
|
+
|
|
1189
|
+
@pulumi.output_type
|
|
1190
|
+
class EncryptionPropertiesResponse(dict):
|
|
1191
|
+
"""
|
|
1192
|
+
The container group encryption properties.
|
|
1193
|
+
"""
|
|
1194
|
+
@staticmethod
|
|
1195
|
+
def __key_warning(key: str):
|
|
1196
|
+
suggest = None
|
|
1197
|
+
if key == "keyName":
|
|
1198
|
+
suggest = "key_name"
|
|
1199
|
+
elif key == "keyVersion":
|
|
1200
|
+
suggest = "key_version"
|
|
1201
|
+
elif key == "vaultBaseUrl":
|
|
1202
|
+
suggest = "vault_base_url"
|
|
1203
|
+
|
|
1204
|
+
if suggest:
|
|
1205
|
+
pulumi.log.warn(f"Key '{key}' not found in EncryptionPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1206
|
+
|
|
1207
|
+
def __getitem__(self, key: str) -> Any:
|
|
1208
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
1209
|
+
return super().__getitem__(key)
|
|
1210
|
+
|
|
1211
|
+
def get(self, key: str, default = None) -> Any:
|
|
1212
|
+
EncryptionPropertiesResponse.__key_warning(key)
|
|
1213
|
+
return super().get(key, default)
|
|
1214
|
+
|
|
1215
|
+
def __init__(__self__, *,
|
|
1216
|
+
key_name: str,
|
|
1217
|
+
key_version: str,
|
|
1218
|
+
vault_base_url: str,
|
|
1219
|
+
identity: Optional[str] = None):
|
|
1220
|
+
"""
|
|
1221
|
+
The container group encryption properties.
|
|
1222
|
+
:param str key_name: The encryption key name.
|
|
1223
|
+
:param str key_version: The encryption key version.
|
|
1224
|
+
:param str vault_base_url: The keyvault base url.
|
|
1225
|
+
:param str identity: The keyvault managed identity.
|
|
1226
|
+
"""
|
|
1227
|
+
pulumi.set(__self__, "key_name", key_name)
|
|
1228
|
+
pulumi.set(__self__, "key_version", key_version)
|
|
1229
|
+
pulumi.set(__self__, "vault_base_url", vault_base_url)
|
|
1230
|
+
if identity is not None:
|
|
1231
|
+
pulumi.set(__self__, "identity", identity)
|
|
1232
|
+
|
|
1233
|
+
@property
|
|
1234
|
+
@pulumi.getter(name="keyName")
|
|
1235
|
+
def key_name(self) -> str:
|
|
1236
|
+
"""
|
|
1237
|
+
The encryption key name.
|
|
1238
|
+
"""
|
|
1239
|
+
return pulumi.get(self, "key_name")
|
|
1240
|
+
|
|
1241
|
+
@property
|
|
1242
|
+
@pulumi.getter(name="keyVersion")
|
|
1243
|
+
def key_version(self) -> str:
|
|
1244
|
+
"""
|
|
1245
|
+
The encryption key version.
|
|
1246
|
+
"""
|
|
1247
|
+
return pulumi.get(self, "key_version")
|
|
1248
|
+
|
|
1249
|
+
@property
|
|
1250
|
+
@pulumi.getter(name="vaultBaseUrl")
|
|
1251
|
+
def vault_base_url(self) -> str:
|
|
1252
|
+
"""
|
|
1253
|
+
The keyvault base url.
|
|
1254
|
+
"""
|
|
1255
|
+
return pulumi.get(self, "vault_base_url")
|
|
1256
|
+
|
|
1257
|
+
@property
|
|
1258
|
+
@pulumi.getter
|
|
1259
|
+
def identity(self) -> Optional[str]:
|
|
1260
|
+
"""
|
|
1261
|
+
The keyvault managed identity.
|
|
1262
|
+
"""
|
|
1263
|
+
return pulumi.get(self, "identity")
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
@pulumi.output_type
|
|
1267
|
+
class EnvironmentVariableResponse(dict):
|
|
1268
|
+
"""
|
|
1269
|
+
The environment variable to set within the container instance.
|
|
1270
|
+
"""
|
|
1271
|
+
@staticmethod
|
|
1272
|
+
def __key_warning(key: str):
|
|
1273
|
+
suggest = None
|
|
1274
|
+
if key == "secureValue":
|
|
1275
|
+
suggest = "secure_value"
|
|
1276
|
+
|
|
1277
|
+
if suggest:
|
|
1278
|
+
pulumi.log.warn(f"Key '{key}' not found in EnvironmentVariableResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1279
|
+
|
|
1280
|
+
def __getitem__(self, key: str) -> Any:
|
|
1281
|
+
EnvironmentVariableResponse.__key_warning(key)
|
|
1282
|
+
return super().__getitem__(key)
|
|
1283
|
+
|
|
1284
|
+
def get(self, key: str, default = None) -> Any:
|
|
1285
|
+
EnvironmentVariableResponse.__key_warning(key)
|
|
1286
|
+
return super().get(key, default)
|
|
1287
|
+
|
|
1288
|
+
def __init__(__self__, *,
|
|
1289
|
+
name: str,
|
|
1290
|
+
secure_value: Optional[str] = None,
|
|
1291
|
+
value: Optional[str] = None):
|
|
1292
|
+
"""
|
|
1293
|
+
The environment variable to set within the container instance.
|
|
1294
|
+
:param str name: The name of the environment variable.
|
|
1295
|
+
:param str secure_value: The value of the secure environment variable.
|
|
1296
|
+
:param str value: The value of the environment variable.
|
|
1297
|
+
"""
|
|
1298
|
+
pulumi.set(__self__, "name", name)
|
|
1299
|
+
if secure_value is not None:
|
|
1300
|
+
pulumi.set(__self__, "secure_value", secure_value)
|
|
1301
|
+
if value is not None:
|
|
1302
|
+
pulumi.set(__self__, "value", value)
|
|
1303
|
+
|
|
1304
|
+
@property
|
|
1305
|
+
@pulumi.getter
|
|
1306
|
+
def name(self) -> str:
|
|
1307
|
+
"""
|
|
1308
|
+
The name of the environment variable.
|
|
1309
|
+
"""
|
|
1310
|
+
return pulumi.get(self, "name")
|
|
1311
|
+
|
|
1312
|
+
@property
|
|
1313
|
+
@pulumi.getter(name="secureValue")
|
|
1314
|
+
def secure_value(self) -> Optional[str]:
|
|
1315
|
+
"""
|
|
1316
|
+
The value of the secure environment variable.
|
|
1317
|
+
"""
|
|
1318
|
+
return pulumi.get(self, "secure_value")
|
|
1319
|
+
|
|
1320
|
+
@property
|
|
1321
|
+
@pulumi.getter
|
|
1322
|
+
def value(self) -> Optional[str]:
|
|
1323
|
+
"""
|
|
1324
|
+
The value of the environment variable.
|
|
1325
|
+
"""
|
|
1326
|
+
return pulumi.get(self, "value")
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
@pulumi.output_type
|
|
1330
|
+
class EventResponse(dict):
|
|
1331
|
+
"""
|
|
1332
|
+
A container group or container instance event.
|
|
1333
|
+
"""
|
|
1334
|
+
@staticmethod
|
|
1335
|
+
def __key_warning(key: str):
|
|
1336
|
+
suggest = None
|
|
1337
|
+
if key == "firstTimestamp":
|
|
1338
|
+
suggest = "first_timestamp"
|
|
1339
|
+
elif key == "lastTimestamp":
|
|
1340
|
+
suggest = "last_timestamp"
|
|
1341
|
+
|
|
1342
|
+
if suggest:
|
|
1343
|
+
pulumi.log.warn(f"Key '{key}' not found in EventResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1344
|
+
|
|
1345
|
+
def __getitem__(self, key: str) -> Any:
|
|
1346
|
+
EventResponse.__key_warning(key)
|
|
1347
|
+
return super().__getitem__(key)
|
|
1348
|
+
|
|
1349
|
+
def get(self, key: str, default = None) -> Any:
|
|
1350
|
+
EventResponse.__key_warning(key)
|
|
1351
|
+
return super().get(key, default)
|
|
1352
|
+
|
|
1353
|
+
def __init__(__self__, *,
|
|
1354
|
+
count: int,
|
|
1355
|
+
first_timestamp: str,
|
|
1356
|
+
last_timestamp: str,
|
|
1357
|
+
message: str,
|
|
1358
|
+
name: str,
|
|
1359
|
+
type: str):
|
|
1360
|
+
"""
|
|
1361
|
+
A container group or container instance event.
|
|
1362
|
+
:param int count: The count of the event.
|
|
1363
|
+
:param str first_timestamp: The date-time of the earliest logged event.
|
|
1364
|
+
:param str last_timestamp: The date-time of the latest logged event.
|
|
1365
|
+
:param str message: The event message.
|
|
1366
|
+
:param str name: The event name.
|
|
1367
|
+
:param str type: The event type.
|
|
1368
|
+
"""
|
|
1369
|
+
pulumi.set(__self__, "count", count)
|
|
1370
|
+
pulumi.set(__self__, "first_timestamp", first_timestamp)
|
|
1371
|
+
pulumi.set(__self__, "last_timestamp", last_timestamp)
|
|
1372
|
+
pulumi.set(__self__, "message", message)
|
|
1373
|
+
pulumi.set(__self__, "name", name)
|
|
1374
|
+
pulumi.set(__self__, "type", type)
|
|
1375
|
+
|
|
1376
|
+
@property
|
|
1377
|
+
@pulumi.getter
|
|
1378
|
+
def count(self) -> int:
|
|
1379
|
+
"""
|
|
1380
|
+
The count of the event.
|
|
1381
|
+
"""
|
|
1382
|
+
return pulumi.get(self, "count")
|
|
1383
|
+
|
|
1384
|
+
@property
|
|
1385
|
+
@pulumi.getter(name="firstTimestamp")
|
|
1386
|
+
def first_timestamp(self) -> str:
|
|
1387
|
+
"""
|
|
1388
|
+
The date-time of the earliest logged event.
|
|
1389
|
+
"""
|
|
1390
|
+
return pulumi.get(self, "first_timestamp")
|
|
1391
|
+
|
|
1392
|
+
@property
|
|
1393
|
+
@pulumi.getter(name="lastTimestamp")
|
|
1394
|
+
def last_timestamp(self) -> str:
|
|
1395
|
+
"""
|
|
1396
|
+
The date-time of the latest logged event.
|
|
1397
|
+
"""
|
|
1398
|
+
return pulumi.get(self, "last_timestamp")
|
|
1399
|
+
|
|
1400
|
+
@property
|
|
1401
|
+
@pulumi.getter
|
|
1402
|
+
def message(self) -> str:
|
|
1403
|
+
"""
|
|
1404
|
+
The event message.
|
|
1405
|
+
"""
|
|
1406
|
+
return pulumi.get(self, "message")
|
|
1407
|
+
|
|
1408
|
+
@property
|
|
1409
|
+
@pulumi.getter
|
|
1410
|
+
def name(self) -> str:
|
|
1411
|
+
"""
|
|
1412
|
+
The event name.
|
|
1413
|
+
"""
|
|
1414
|
+
return pulumi.get(self, "name")
|
|
1415
|
+
|
|
1416
|
+
@property
|
|
1417
|
+
@pulumi.getter
|
|
1418
|
+
def type(self) -> str:
|
|
1419
|
+
"""
|
|
1420
|
+
The event type.
|
|
1421
|
+
"""
|
|
1422
|
+
return pulumi.get(self, "type")
|
|
1423
|
+
|
|
1424
|
+
|
|
1425
|
+
@pulumi.output_type
|
|
1426
|
+
class GitRepoVolumeResponse(dict):
|
|
1427
|
+
"""
|
|
1428
|
+
Represents a volume that is populated with the contents of a git repository
|
|
1429
|
+
"""
|
|
1430
|
+
def __init__(__self__, *,
|
|
1431
|
+
repository: str,
|
|
1432
|
+
directory: Optional[str] = None,
|
|
1433
|
+
revision: Optional[str] = None):
|
|
1434
|
+
"""
|
|
1435
|
+
Represents a volume that is populated with the contents of a git repository
|
|
1436
|
+
:param str repository: Repository URL
|
|
1437
|
+
:param str directory: Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
|
|
1438
|
+
:param str revision: Commit hash for the specified revision.
|
|
1439
|
+
"""
|
|
1440
|
+
pulumi.set(__self__, "repository", repository)
|
|
1441
|
+
if directory is not None:
|
|
1442
|
+
pulumi.set(__self__, "directory", directory)
|
|
1443
|
+
if revision is not None:
|
|
1444
|
+
pulumi.set(__self__, "revision", revision)
|
|
1445
|
+
|
|
1446
|
+
@property
|
|
1447
|
+
@pulumi.getter
|
|
1448
|
+
def repository(self) -> str:
|
|
1449
|
+
"""
|
|
1450
|
+
Repository URL
|
|
1451
|
+
"""
|
|
1452
|
+
return pulumi.get(self, "repository")
|
|
1453
|
+
|
|
1454
|
+
@property
|
|
1455
|
+
@pulumi.getter
|
|
1456
|
+
def directory(self) -> Optional[str]:
|
|
1457
|
+
"""
|
|
1458
|
+
Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.
|
|
1459
|
+
"""
|
|
1460
|
+
return pulumi.get(self, "directory")
|
|
1461
|
+
|
|
1462
|
+
@property
|
|
1463
|
+
@pulumi.getter
|
|
1464
|
+
def revision(self) -> Optional[str]:
|
|
1465
|
+
"""
|
|
1466
|
+
Commit hash for the specified revision.
|
|
1467
|
+
"""
|
|
1468
|
+
return pulumi.get(self, "revision")
|
|
1469
|
+
|
|
1470
|
+
|
|
1471
|
+
@pulumi.output_type
|
|
1472
|
+
class GpuResourceResponse(dict):
|
|
1473
|
+
"""
|
|
1474
|
+
The GPU resource.
|
|
1475
|
+
"""
|
|
1476
|
+
def __init__(__self__, *,
|
|
1477
|
+
count: int,
|
|
1478
|
+
sku: str):
|
|
1479
|
+
"""
|
|
1480
|
+
The GPU resource.
|
|
1481
|
+
:param int count: The count of the GPU resource.
|
|
1482
|
+
:param str sku: The SKU of the GPU resource.
|
|
1483
|
+
"""
|
|
1484
|
+
pulumi.set(__self__, "count", count)
|
|
1485
|
+
pulumi.set(__self__, "sku", sku)
|
|
1486
|
+
|
|
1487
|
+
@property
|
|
1488
|
+
@pulumi.getter
|
|
1489
|
+
def count(self) -> int:
|
|
1490
|
+
"""
|
|
1491
|
+
The count of the GPU resource.
|
|
1492
|
+
"""
|
|
1493
|
+
return pulumi.get(self, "count")
|
|
1494
|
+
|
|
1495
|
+
@property
|
|
1496
|
+
@pulumi.getter
|
|
1497
|
+
def sku(self) -> str:
|
|
1498
|
+
"""
|
|
1499
|
+
The SKU of the GPU resource.
|
|
1500
|
+
"""
|
|
1501
|
+
return pulumi.get(self, "sku")
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
@pulumi.output_type
|
|
1505
|
+
class HttpHeaderResponse(dict):
|
|
1506
|
+
"""
|
|
1507
|
+
The HTTP header.
|
|
1508
|
+
"""
|
|
1509
|
+
def __init__(__self__, *,
|
|
1510
|
+
name: Optional[str] = None,
|
|
1511
|
+
value: Optional[str] = None):
|
|
1512
|
+
"""
|
|
1513
|
+
The HTTP header.
|
|
1514
|
+
:param str name: The header name.
|
|
1515
|
+
:param str value: The header value.
|
|
1516
|
+
"""
|
|
1517
|
+
if name is not None:
|
|
1518
|
+
pulumi.set(__self__, "name", name)
|
|
1519
|
+
if value is not None:
|
|
1520
|
+
pulumi.set(__self__, "value", value)
|
|
1521
|
+
|
|
1522
|
+
@property
|
|
1523
|
+
@pulumi.getter
|
|
1524
|
+
def name(self) -> Optional[str]:
|
|
1525
|
+
"""
|
|
1526
|
+
The header name.
|
|
1527
|
+
"""
|
|
1528
|
+
return pulumi.get(self, "name")
|
|
1529
|
+
|
|
1530
|
+
@property
|
|
1531
|
+
@pulumi.getter
|
|
1532
|
+
def value(self) -> Optional[str]:
|
|
1533
|
+
"""
|
|
1534
|
+
The header value.
|
|
1535
|
+
"""
|
|
1536
|
+
return pulumi.get(self, "value")
|
|
1537
|
+
|
|
1538
|
+
|
|
1539
|
+
@pulumi.output_type
|
|
1540
|
+
class ImageRegistryCredentialResponse(dict):
|
|
1541
|
+
"""
|
|
1542
|
+
Image registry credential.
|
|
1543
|
+
"""
|
|
1544
|
+
@staticmethod
|
|
1545
|
+
def __key_warning(key: str):
|
|
1546
|
+
suggest = None
|
|
1547
|
+
if key == "identityUrl":
|
|
1548
|
+
suggest = "identity_url"
|
|
1549
|
+
|
|
1550
|
+
if suggest:
|
|
1551
|
+
pulumi.log.warn(f"Key '{key}' not found in ImageRegistryCredentialResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1552
|
+
|
|
1553
|
+
def __getitem__(self, key: str) -> Any:
|
|
1554
|
+
ImageRegistryCredentialResponse.__key_warning(key)
|
|
1555
|
+
return super().__getitem__(key)
|
|
1556
|
+
|
|
1557
|
+
def get(self, key: str, default = None) -> Any:
|
|
1558
|
+
ImageRegistryCredentialResponse.__key_warning(key)
|
|
1559
|
+
return super().get(key, default)
|
|
1560
|
+
|
|
1561
|
+
def __init__(__self__, *,
|
|
1562
|
+
server: str,
|
|
1563
|
+
identity: Optional[str] = None,
|
|
1564
|
+
identity_url: Optional[str] = None,
|
|
1565
|
+
password: Optional[str] = None,
|
|
1566
|
+
username: Optional[str] = None):
|
|
1567
|
+
"""
|
|
1568
|
+
Image registry credential.
|
|
1569
|
+
:param str server: The Docker image registry server without a protocol such as "http" and "https".
|
|
1570
|
+
:param str identity: The identity for the private registry.
|
|
1571
|
+
:param str identity_url: The identity URL for the private registry.
|
|
1572
|
+
:param str password: The password for the private registry.
|
|
1573
|
+
:param str username: The username for the private registry.
|
|
1574
|
+
"""
|
|
1575
|
+
pulumi.set(__self__, "server", server)
|
|
1576
|
+
if identity is not None:
|
|
1577
|
+
pulumi.set(__self__, "identity", identity)
|
|
1578
|
+
if identity_url is not None:
|
|
1579
|
+
pulumi.set(__self__, "identity_url", identity_url)
|
|
1580
|
+
if password is not None:
|
|
1581
|
+
pulumi.set(__self__, "password", password)
|
|
1582
|
+
if username is not None:
|
|
1583
|
+
pulumi.set(__self__, "username", username)
|
|
1584
|
+
|
|
1585
|
+
@property
|
|
1586
|
+
@pulumi.getter
|
|
1587
|
+
def server(self) -> str:
|
|
1588
|
+
"""
|
|
1589
|
+
The Docker image registry server without a protocol such as "http" and "https".
|
|
1590
|
+
"""
|
|
1591
|
+
return pulumi.get(self, "server")
|
|
1592
|
+
|
|
1593
|
+
@property
|
|
1594
|
+
@pulumi.getter
|
|
1595
|
+
def identity(self) -> Optional[str]:
|
|
1596
|
+
"""
|
|
1597
|
+
The identity for the private registry.
|
|
1598
|
+
"""
|
|
1599
|
+
return pulumi.get(self, "identity")
|
|
1600
|
+
|
|
1601
|
+
@property
|
|
1602
|
+
@pulumi.getter(name="identityUrl")
|
|
1603
|
+
def identity_url(self) -> Optional[str]:
|
|
1604
|
+
"""
|
|
1605
|
+
The identity URL for the private registry.
|
|
1606
|
+
"""
|
|
1607
|
+
return pulumi.get(self, "identity_url")
|
|
1608
|
+
|
|
1609
|
+
@property
|
|
1610
|
+
@pulumi.getter
|
|
1611
|
+
def password(self) -> Optional[str]:
|
|
1612
|
+
"""
|
|
1613
|
+
The password for the private registry.
|
|
1614
|
+
"""
|
|
1615
|
+
return pulumi.get(self, "password")
|
|
1616
|
+
|
|
1617
|
+
@property
|
|
1618
|
+
@pulumi.getter
|
|
1619
|
+
def username(self) -> Optional[str]:
|
|
1620
|
+
"""
|
|
1621
|
+
The username for the private registry.
|
|
1622
|
+
"""
|
|
1623
|
+
return pulumi.get(self, "username")
|
|
1624
|
+
|
|
1625
|
+
|
|
1626
|
+
@pulumi.output_type
|
|
1627
|
+
class InitContainerDefinitionResponse(dict):
|
|
1628
|
+
"""
|
|
1629
|
+
The init container definition.
|
|
1630
|
+
"""
|
|
1631
|
+
@staticmethod
|
|
1632
|
+
def __key_warning(key: str):
|
|
1633
|
+
suggest = None
|
|
1634
|
+
if key == "instanceView":
|
|
1635
|
+
suggest = "instance_view"
|
|
1636
|
+
elif key == "environmentVariables":
|
|
1637
|
+
suggest = "environment_variables"
|
|
1638
|
+
elif key == "securityContext":
|
|
1639
|
+
suggest = "security_context"
|
|
1640
|
+
elif key == "volumeMounts":
|
|
1641
|
+
suggest = "volume_mounts"
|
|
1642
|
+
|
|
1643
|
+
if suggest:
|
|
1644
|
+
pulumi.log.warn(f"Key '{key}' not found in InitContainerDefinitionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1645
|
+
|
|
1646
|
+
def __getitem__(self, key: str) -> Any:
|
|
1647
|
+
InitContainerDefinitionResponse.__key_warning(key)
|
|
1648
|
+
return super().__getitem__(key)
|
|
1649
|
+
|
|
1650
|
+
def get(self, key: str, default = None) -> Any:
|
|
1651
|
+
InitContainerDefinitionResponse.__key_warning(key)
|
|
1652
|
+
return super().get(key, default)
|
|
1653
|
+
|
|
1654
|
+
def __init__(__self__, *,
|
|
1655
|
+
instance_view: 'outputs.InitContainerPropertiesDefinitionResponseInstanceView',
|
|
1656
|
+
name: str,
|
|
1657
|
+
command: Optional[Sequence[str]] = None,
|
|
1658
|
+
environment_variables: Optional[Sequence['outputs.EnvironmentVariableResponse']] = None,
|
|
1659
|
+
image: Optional[str] = None,
|
|
1660
|
+
security_context: Optional['outputs.SecurityContextDefinitionResponse'] = None,
|
|
1661
|
+
volume_mounts: Optional[Sequence['outputs.VolumeMountResponse']] = None):
|
|
1662
|
+
"""
|
|
1663
|
+
The init container definition.
|
|
1664
|
+
:param 'InitContainerPropertiesDefinitionResponseInstanceView' instance_view: The instance view of the init container. Only valid in response.
|
|
1665
|
+
:param str name: The name for the init container.
|
|
1666
|
+
:param Sequence[str] command: The command to execute within the init container in exec form.
|
|
1667
|
+
:param Sequence['EnvironmentVariableResponse'] environment_variables: The environment variables to set in the init container.
|
|
1668
|
+
:param str image: The image of the init container.
|
|
1669
|
+
:param 'SecurityContextDefinitionResponse' security_context: The container security properties.
|
|
1670
|
+
:param Sequence['VolumeMountResponse'] volume_mounts: The volume mounts available to the init container.
|
|
1671
|
+
"""
|
|
1672
|
+
pulumi.set(__self__, "instance_view", instance_view)
|
|
1673
|
+
pulumi.set(__self__, "name", name)
|
|
1674
|
+
if command is not None:
|
|
1675
|
+
pulumi.set(__self__, "command", command)
|
|
1676
|
+
if environment_variables is not None:
|
|
1677
|
+
pulumi.set(__self__, "environment_variables", environment_variables)
|
|
1678
|
+
if image is not None:
|
|
1679
|
+
pulumi.set(__self__, "image", image)
|
|
1680
|
+
if security_context is not None:
|
|
1681
|
+
pulumi.set(__self__, "security_context", security_context)
|
|
1682
|
+
if volume_mounts is not None:
|
|
1683
|
+
pulumi.set(__self__, "volume_mounts", volume_mounts)
|
|
1684
|
+
|
|
1685
|
+
@property
|
|
1686
|
+
@pulumi.getter(name="instanceView")
|
|
1687
|
+
def instance_view(self) -> 'outputs.InitContainerPropertiesDefinitionResponseInstanceView':
|
|
1688
|
+
"""
|
|
1689
|
+
The instance view of the init container. Only valid in response.
|
|
1690
|
+
"""
|
|
1691
|
+
return pulumi.get(self, "instance_view")
|
|
1692
|
+
|
|
1693
|
+
@property
|
|
1694
|
+
@pulumi.getter
|
|
1695
|
+
def name(self) -> str:
|
|
1696
|
+
"""
|
|
1697
|
+
The name for the init container.
|
|
1698
|
+
"""
|
|
1699
|
+
return pulumi.get(self, "name")
|
|
1700
|
+
|
|
1701
|
+
@property
|
|
1702
|
+
@pulumi.getter
|
|
1703
|
+
def command(self) -> Optional[Sequence[str]]:
|
|
1704
|
+
"""
|
|
1705
|
+
The command to execute within the init container in exec form.
|
|
1706
|
+
"""
|
|
1707
|
+
return pulumi.get(self, "command")
|
|
1708
|
+
|
|
1709
|
+
@property
|
|
1710
|
+
@pulumi.getter(name="environmentVariables")
|
|
1711
|
+
def environment_variables(self) -> Optional[Sequence['outputs.EnvironmentVariableResponse']]:
|
|
1712
|
+
"""
|
|
1713
|
+
The environment variables to set in the init container.
|
|
1714
|
+
"""
|
|
1715
|
+
return pulumi.get(self, "environment_variables")
|
|
1716
|
+
|
|
1717
|
+
@property
|
|
1718
|
+
@pulumi.getter
|
|
1719
|
+
def image(self) -> Optional[str]:
|
|
1720
|
+
"""
|
|
1721
|
+
The image of the init container.
|
|
1722
|
+
"""
|
|
1723
|
+
return pulumi.get(self, "image")
|
|
1724
|
+
|
|
1725
|
+
@property
|
|
1726
|
+
@pulumi.getter(name="securityContext")
|
|
1727
|
+
def security_context(self) -> Optional['outputs.SecurityContextDefinitionResponse']:
|
|
1728
|
+
"""
|
|
1729
|
+
The container security properties.
|
|
1730
|
+
"""
|
|
1731
|
+
return pulumi.get(self, "security_context")
|
|
1732
|
+
|
|
1733
|
+
@property
|
|
1734
|
+
@pulumi.getter(name="volumeMounts")
|
|
1735
|
+
def volume_mounts(self) -> Optional[Sequence['outputs.VolumeMountResponse']]:
|
|
1736
|
+
"""
|
|
1737
|
+
The volume mounts available to the init container.
|
|
1738
|
+
"""
|
|
1739
|
+
return pulumi.get(self, "volume_mounts")
|
|
1740
|
+
|
|
1741
|
+
|
|
1742
|
+
@pulumi.output_type
|
|
1743
|
+
class InitContainerPropertiesDefinitionResponseInstanceView(dict):
|
|
1744
|
+
"""
|
|
1745
|
+
The instance view of the init container. Only valid in response.
|
|
1746
|
+
"""
|
|
1747
|
+
@staticmethod
|
|
1748
|
+
def __key_warning(key: str):
|
|
1749
|
+
suggest = None
|
|
1750
|
+
if key == "currentState":
|
|
1751
|
+
suggest = "current_state"
|
|
1752
|
+
elif key == "previousState":
|
|
1753
|
+
suggest = "previous_state"
|
|
1754
|
+
elif key == "restartCount":
|
|
1755
|
+
suggest = "restart_count"
|
|
1756
|
+
|
|
1757
|
+
if suggest:
|
|
1758
|
+
pulumi.log.warn(f"Key '{key}' not found in InitContainerPropertiesDefinitionResponseInstanceView. Access the value via the '{suggest}' property getter instead.")
|
|
1759
|
+
|
|
1760
|
+
def __getitem__(self, key: str) -> Any:
|
|
1761
|
+
InitContainerPropertiesDefinitionResponseInstanceView.__key_warning(key)
|
|
1762
|
+
return super().__getitem__(key)
|
|
1763
|
+
|
|
1764
|
+
def get(self, key: str, default = None) -> Any:
|
|
1765
|
+
InitContainerPropertiesDefinitionResponseInstanceView.__key_warning(key)
|
|
1766
|
+
return super().get(key, default)
|
|
1767
|
+
|
|
1768
|
+
def __init__(__self__, *,
|
|
1769
|
+
current_state: 'outputs.ContainerStateResponse',
|
|
1770
|
+
events: Sequence['outputs.EventResponse'],
|
|
1771
|
+
previous_state: 'outputs.ContainerStateResponse',
|
|
1772
|
+
restart_count: int):
|
|
1773
|
+
"""
|
|
1774
|
+
The instance view of the init container. Only valid in response.
|
|
1775
|
+
:param 'ContainerStateResponse' current_state: The current state of the init container.
|
|
1776
|
+
:param Sequence['EventResponse'] events: The events of the init container.
|
|
1777
|
+
:param 'ContainerStateResponse' previous_state: The previous state of the init container.
|
|
1778
|
+
:param int restart_count: The number of times that the init container has been restarted.
|
|
1779
|
+
"""
|
|
1780
|
+
pulumi.set(__self__, "current_state", current_state)
|
|
1781
|
+
pulumi.set(__self__, "events", events)
|
|
1782
|
+
pulumi.set(__self__, "previous_state", previous_state)
|
|
1783
|
+
pulumi.set(__self__, "restart_count", restart_count)
|
|
1784
|
+
|
|
1785
|
+
@property
|
|
1786
|
+
@pulumi.getter(name="currentState")
|
|
1787
|
+
def current_state(self) -> 'outputs.ContainerStateResponse':
|
|
1788
|
+
"""
|
|
1789
|
+
The current state of the init container.
|
|
1790
|
+
"""
|
|
1791
|
+
return pulumi.get(self, "current_state")
|
|
1792
|
+
|
|
1793
|
+
@property
|
|
1794
|
+
@pulumi.getter
|
|
1795
|
+
def events(self) -> Sequence['outputs.EventResponse']:
|
|
1796
|
+
"""
|
|
1797
|
+
The events of the init container.
|
|
1798
|
+
"""
|
|
1799
|
+
return pulumi.get(self, "events")
|
|
1800
|
+
|
|
1801
|
+
@property
|
|
1802
|
+
@pulumi.getter(name="previousState")
|
|
1803
|
+
def previous_state(self) -> 'outputs.ContainerStateResponse':
|
|
1804
|
+
"""
|
|
1805
|
+
The previous state of the init container.
|
|
1806
|
+
"""
|
|
1807
|
+
return pulumi.get(self, "previous_state")
|
|
1808
|
+
|
|
1809
|
+
@property
|
|
1810
|
+
@pulumi.getter(name="restartCount")
|
|
1811
|
+
def restart_count(self) -> int:
|
|
1812
|
+
"""
|
|
1813
|
+
The number of times that the init container has been restarted.
|
|
1814
|
+
"""
|
|
1815
|
+
return pulumi.get(self, "restart_count")
|
|
1816
|
+
|
|
1817
|
+
|
|
1818
|
+
@pulumi.output_type
|
|
1819
|
+
class IpAddressResponse(dict):
|
|
1820
|
+
"""
|
|
1821
|
+
IP address for the container group.
|
|
1822
|
+
"""
|
|
1823
|
+
@staticmethod
|
|
1824
|
+
def __key_warning(key: str):
|
|
1825
|
+
suggest = None
|
|
1826
|
+
if key == "autoGeneratedDomainNameLabelScope":
|
|
1827
|
+
suggest = "auto_generated_domain_name_label_scope"
|
|
1828
|
+
elif key == "dnsNameLabel":
|
|
1829
|
+
suggest = "dns_name_label"
|
|
1830
|
+
|
|
1831
|
+
if suggest:
|
|
1832
|
+
pulumi.log.warn(f"Key '{key}' not found in IpAddressResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1833
|
+
|
|
1834
|
+
def __getitem__(self, key: str) -> Any:
|
|
1835
|
+
IpAddressResponse.__key_warning(key)
|
|
1836
|
+
return super().__getitem__(key)
|
|
1837
|
+
|
|
1838
|
+
def get(self, key: str, default = None) -> Any:
|
|
1839
|
+
IpAddressResponse.__key_warning(key)
|
|
1840
|
+
return super().get(key, default)
|
|
1841
|
+
|
|
1842
|
+
def __init__(__self__, *,
|
|
1843
|
+
fqdn: str,
|
|
1844
|
+
ports: Sequence['outputs.PortResponse'],
|
|
1845
|
+
type: str,
|
|
1846
|
+
auto_generated_domain_name_label_scope: Optional[str] = None,
|
|
1847
|
+
dns_name_label: Optional[str] = None,
|
|
1848
|
+
ip: Optional[str] = None):
|
|
1849
|
+
"""
|
|
1850
|
+
IP address for the container group.
|
|
1851
|
+
:param str fqdn: The FQDN for the IP.
|
|
1852
|
+
:param Sequence['PortResponse'] ports: The list of ports exposed on the container group.
|
|
1853
|
+
:param str type: Specifies if the IP is exposed to the public internet or private VNET.
|
|
1854
|
+
:param str auto_generated_domain_name_label_scope: The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
|
|
1855
|
+
:param str dns_name_label: The Dns name label for the IP.
|
|
1856
|
+
:param str ip: The IP exposed to the public internet.
|
|
1857
|
+
"""
|
|
1858
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
|
1859
|
+
pulumi.set(__self__, "ports", ports)
|
|
1860
|
+
pulumi.set(__self__, "type", type)
|
|
1861
|
+
if auto_generated_domain_name_label_scope is None:
|
|
1862
|
+
auto_generated_domain_name_label_scope = 'Unsecure'
|
|
1863
|
+
if auto_generated_domain_name_label_scope is not None:
|
|
1864
|
+
pulumi.set(__self__, "auto_generated_domain_name_label_scope", auto_generated_domain_name_label_scope)
|
|
1865
|
+
if dns_name_label is not None:
|
|
1866
|
+
pulumi.set(__self__, "dns_name_label", dns_name_label)
|
|
1867
|
+
if ip is not None:
|
|
1868
|
+
pulumi.set(__self__, "ip", ip)
|
|
1869
|
+
|
|
1870
|
+
@property
|
|
1871
|
+
@pulumi.getter
|
|
1872
|
+
def fqdn(self) -> str:
|
|
1873
|
+
"""
|
|
1874
|
+
The FQDN for the IP.
|
|
1875
|
+
"""
|
|
1876
|
+
return pulumi.get(self, "fqdn")
|
|
1877
|
+
|
|
1878
|
+
@property
|
|
1879
|
+
@pulumi.getter
|
|
1880
|
+
def ports(self) -> Sequence['outputs.PortResponse']:
|
|
1881
|
+
"""
|
|
1882
|
+
The list of ports exposed on the container group.
|
|
1883
|
+
"""
|
|
1884
|
+
return pulumi.get(self, "ports")
|
|
1885
|
+
|
|
1886
|
+
@property
|
|
1887
|
+
@pulumi.getter
|
|
1888
|
+
def type(self) -> str:
|
|
1889
|
+
"""
|
|
1890
|
+
Specifies if the IP is exposed to the public internet or private VNET.
|
|
1891
|
+
"""
|
|
1892
|
+
return pulumi.get(self, "type")
|
|
1893
|
+
|
|
1894
|
+
@property
|
|
1895
|
+
@pulumi.getter(name="autoGeneratedDomainNameLabelScope")
|
|
1896
|
+
def auto_generated_domain_name_label_scope(self) -> Optional[str]:
|
|
1897
|
+
"""
|
|
1898
|
+
The value representing the security enum. The 'Unsecure' value is the default value if not selected and means the object's domain name label is not secured against subdomain takeover. The 'TenantReuse' value is the default value if selected and means the object's domain name label can be reused within the same tenant. The 'SubscriptionReuse' value means the object's domain name label can be reused within the same subscription. The 'ResourceGroupReuse' value means the object's domain name label can be reused within the same resource group. The 'NoReuse' value means the object's domain name label cannot be reused within the same resource group, subscription, or tenant.
|
|
1899
|
+
"""
|
|
1900
|
+
return pulumi.get(self, "auto_generated_domain_name_label_scope")
|
|
1901
|
+
|
|
1902
|
+
@property
|
|
1903
|
+
@pulumi.getter(name="dnsNameLabel")
|
|
1904
|
+
def dns_name_label(self) -> Optional[str]:
|
|
1905
|
+
"""
|
|
1906
|
+
The Dns name label for the IP.
|
|
1907
|
+
"""
|
|
1908
|
+
return pulumi.get(self, "dns_name_label")
|
|
1909
|
+
|
|
1910
|
+
@property
|
|
1911
|
+
@pulumi.getter
|
|
1912
|
+
def ip(self) -> Optional[str]:
|
|
1913
|
+
"""
|
|
1914
|
+
The IP exposed to the public internet.
|
|
1915
|
+
"""
|
|
1916
|
+
return pulumi.get(self, "ip")
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
@pulumi.output_type
|
|
1920
|
+
class LogAnalyticsResponse(dict):
|
|
1921
|
+
"""
|
|
1922
|
+
Container group log analytics information.
|
|
1923
|
+
"""
|
|
1924
|
+
@staticmethod
|
|
1925
|
+
def __key_warning(key: str):
|
|
1926
|
+
suggest = None
|
|
1927
|
+
if key == "workspaceId":
|
|
1928
|
+
suggest = "workspace_id"
|
|
1929
|
+
elif key == "workspaceKey":
|
|
1930
|
+
suggest = "workspace_key"
|
|
1931
|
+
elif key == "logType":
|
|
1932
|
+
suggest = "log_type"
|
|
1933
|
+
elif key == "workspaceResourceId":
|
|
1934
|
+
suggest = "workspace_resource_id"
|
|
1935
|
+
|
|
1936
|
+
if suggest:
|
|
1937
|
+
pulumi.log.warn(f"Key '{key}' not found in LogAnalyticsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1938
|
+
|
|
1939
|
+
def __getitem__(self, key: str) -> Any:
|
|
1940
|
+
LogAnalyticsResponse.__key_warning(key)
|
|
1941
|
+
return super().__getitem__(key)
|
|
1942
|
+
|
|
1943
|
+
def get(self, key: str, default = None) -> Any:
|
|
1944
|
+
LogAnalyticsResponse.__key_warning(key)
|
|
1945
|
+
return super().get(key, default)
|
|
1946
|
+
|
|
1947
|
+
def __init__(__self__, *,
|
|
1948
|
+
workspace_id: str,
|
|
1949
|
+
workspace_key: str,
|
|
1950
|
+
log_type: Optional[str] = None,
|
|
1951
|
+
metadata: Optional[Mapping[str, str]] = None,
|
|
1952
|
+
workspace_resource_id: Optional[str] = None):
|
|
1953
|
+
"""
|
|
1954
|
+
Container group log analytics information.
|
|
1955
|
+
:param str workspace_id: The workspace id for log analytics
|
|
1956
|
+
:param str workspace_key: The workspace key for log analytics
|
|
1957
|
+
:param str log_type: The log type to be used.
|
|
1958
|
+
:param Mapping[str, str] metadata: Metadata for log analytics.
|
|
1959
|
+
:param str workspace_resource_id: The workspace resource id for log analytics
|
|
1960
|
+
"""
|
|
1961
|
+
pulumi.set(__self__, "workspace_id", workspace_id)
|
|
1962
|
+
pulumi.set(__self__, "workspace_key", workspace_key)
|
|
1963
|
+
if log_type is not None:
|
|
1964
|
+
pulumi.set(__self__, "log_type", log_type)
|
|
1965
|
+
if metadata is not None:
|
|
1966
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
1967
|
+
if workspace_resource_id is not None:
|
|
1968
|
+
pulumi.set(__self__, "workspace_resource_id", workspace_resource_id)
|
|
1969
|
+
|
|
1970
|
+
@property
|
|
1971
|
+
@pulumi.getter(name="workspaceId")
|
|
1972
|
+
def workspace_id(self) -> str:
|
|
1973
|
+
"""
|
|
1974
|
+
The workspace id for log analytics
|
|
1975
|
+
"""
|
|
1976
|
+
return pulumi.get(self, "workspace_id")
|
|
1977
|
+
|
|
1978
|
+
@property
|
|
1979
|
+
@pulumi.getter(name="workspaceKey")
|
|
1980
|
+
def workspace_key(self) -> str:
|
|
1981
|
+
"""
|
|
1982
|
+
The workspace key for log analytics
|
|
1983
|
+
"""
|
|
1984
|
+
return pulumi.get(self, "workspace_key")
|
|
1985
|
+
|
|
1986
|
+
@property
|
|
1987
|
+
@pulumi.getter(name="logType")
|
|
1988
|
+
def log_type(self) -> Optional[str]:
|
|
1989
|
+
"""
|
|
1990
|
+
The log type to be used.
|
|
1991
|
+
"""
|
|
1992
|
+
return pulumi.get(self, "log_type")
|
|
1993
|
+
|
|
1994
|
+
@property
|
|
1995
|
+
@pulumi.getter
|
|
1996
|
+
def metadata(self) -> Optional[Mapping[str, str]]:
|
|
1997
|
+
"""
|
|
1998
|
+
Metadata for log analytics.
|
|
1999
|
+
"""
|
|
2000
|
+
return pulumi.get(self, "metadata")
|
|
2001
|
+
|
|
2002
|
+
@property
|
|
2003
|
+
@pulumi.getter(name="workspaceResourceId")
|
|
2004
|
+
def workspace_resource_id(self) -> Optional[str]:
|
|
2005
|
+
"""
|
|
2006
|
+
The workspace resource id for log analytics
|
|
2007
|
+
"""
|
|
2008
|
+
return pulumi.get(self, "workspace_resource_id")
|
|
2009
|
+
|
|
2010
|
+
|
|
2011
|
+
@pulumi.output_type
|
|
2012
|
+
class NGroupIdentityResponse(dict):
|
|
2013
|
+
"""
|
|
2014
|
+
Identity for the nGroup.
|
|
2015
|
+
"""
|
|
2016
|
+
@staticmethod
|
|
2017
|
+
def __key_warning(key: str):
|
|
2018
|
+
suggest = None
|
|
2019
|
+
if key == "principalId":
|
|
2020
|
+
suggest = "principal_id"
|
|
2021
|
+
elif key == "tenantId":
|
|
2022
|
+
suggest = "tenant_id"
|
|
2023
|
+
elif key == "userAssignedIdentities":
|
|
2024
|
+
suggest = "user_assigned_identities"
|
|
2025
|
+
|
|
2026
|
+
if suggest:
|
|
2027
|
+
pulumi.log.warn(f"Key '{key}' not found in NGroupIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2028
|
+
|
|
2029
|
+
def __getitem__(self, key: str) -> Any:
|
|
2030
|
+
NGroupIdentityResponse.__key_warning(key)
|
|
2031
|
+
return super().__getitem__(key)
|
|
2032
|
+
|
|
2033
|
+
def get(self, key: str, default = None) -> Any:
|
|
2034
|
+
NGroupIdentityResponse.__key_warning(key)
|
|
2035
|
+
return super().get(key, default)
|
|
2036
|
+
|
|
2037
|
+
def __init__(__self__, *,
|
|
2038
|
+
principal_id: str,
|
|
2039
|
+
tenant_id: str,
|
|
2040
|
+
type: Optional[str] = None,
|
|
2041
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
2042
|
+
"""
|
|
2043
|
+
Identity for the nGroup.
|
|
2044
|
+
:param str principal_id: The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
|
|
2045
|
+
:param str tenant_id: The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
|
|
2046
|
+
:param str 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.
|
|
2047
|
+
:param Mapping[str, 'UserAssignedIdentityResponse'] 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}'.
|
|
2048
|
+
"""
|
|
2049
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
2050
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
2051
|
+
if type is not None:
|
|
2052
|
+
pulumi.set(__self__, "type", type)
|
|
2053
|
+
if user_assigned_identities is not None:
|
|
2054
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
2055
|
+
|
|
2056
|
+
@property
|
|
2057
|
+
@pulumi.getter(name="principalId")
|
|
2058
|
+
def principal_id(self) -> str:
|
|
2059
|
+
"""
|
|
2060
|
+
The principal id of the nGroup identity. This property will only be provided for a system assigned identity.
|
|
2061
|
+
"""
|
|
2062
|
+
return pulumi.get(self, "principal_id")
|
|
2063
|
+
|
|
2064
|
+
@property
|
|
2065
|
+
@pulumi.getter(name="tenantId")
|
|
2066
|
+
def tenant_id(self) -> str:
|
|
2067
|
+
"""
|
|
2068
|
+
The tenant id associated with the nGroup. This property will only be provided for a system assigned identity.
|
|
2069
|
+
"""
|
|
2070
|
+
return pulumi.get(self, "tenant_id")
|
|
2071
|
+
|
|
2072
|
+
@property
|
|
2073
|
+
@pulumi.getter
|
|
2074
|
+
def type(self) -> Optional[str]:
|
|
2075
|
+
"""
|
|
2076
|
+
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.
|
|
2077
|
+
"""
|
|
2078
|
+
return pulumi.get(self, "type")
|
|
2079
|
+
|
|
2080
|
+
@property
|
|
2081
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
2082
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
2083
|
+
"""
|
|
2084
|
+
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}'.
|
|
2085
|
+
"""
|
|
2086
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
@pulumi.output_type
|
|
2090
|
+
class PortResponse(dict):
|
|
2091
|
+
"""
|
|
2092
|
+
The port exposed on the container group.
|
|
2093
|
+
"""
|
|
2094
|
+
def __init__(__self__, *,
|
|
2095
|
+
port: int,
|
|
2096
|
+
protocol: Optional[str] = None):
|
|
2097
|
+
"""
|
|
2098
|
+
The port exposed on the container group.
|
|
2099
|
+
:param int port: The port number.
|
|
2100
|
+
:param str protocol: The protocol associated with the port.
|
|
2101
|
+
"""
|
|
2102
|
+
pulumi.set(__self__, "port", port)
|
|
2103
|
+
if protocol is not None:
|
|
2104
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
2105
|
+
|
|
2106
|
+
@property
|
|
2107
|
+
@pulumi.getter
|
|
2108
|
+
def port(self) -> int:
|
|
2109
|
+
"""
|
|
2110
|
+
The port number.
|
|
2111
|
+
"""
|
|
2112
|
+
return pulumi.get(self, "port")
|
|
2113
|
+
|
|
2114
|
+
@property
|
|
2115
|
+
@pulumi.getter
|
|
2116
|
+
def protocol(self) -> Optional[str]:
|
|
2117
|
+
"""
|
|
2118
|
+
The protocol associated with the port.
|
|
2119
|
+
"""
|
|
2120
|
+
return pulumi.get(self, "protocol")
|
|
2121
|
+
|
|
2122
|
+
|
|
2123
|
+
@pulumi.output_type
|
|
2124
|
+
class ResourceLimitsResponse(dict):
|
|
2125
|
+
"""
|
|
2126
|
+
The resource limits.
|
|
2127
|
+
"""
|
|
2128
|
+
@staticmethod
|
|
2129
|
+
def __key_warning(key: str):
|
|
2130
|
+
suggest = None
|
|
2131
|
+
if key == "memoryInGB":
|
|
2132
|
+
suggest = "memory_in_gb"
|
|
2133
|
+
|
|
2134
|
+
if suggest:
|
|
2135
|
+
pulumi.log.warn(f"Key '{key}' not found in ResourceLimitsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2136
|
+
|
|
2137
|
+
def __getitem__(self, key: str) -> Any:
|
|
2138
|
+
ResourceLimitsResponse.__key_warning(key)
|
|
2139
|
+
return super().__getitem__(key)
|
|
2140
|
+
|
|
2141
|
+
def get(self, key: str, default = None) -> Any:
|
|
2142
|
+
ResourceLimitsResponse.__key_warning(key)
|
|
2143
|
+
return super().get(key, default)
|
|
2144
|
+
|
|
2145
|
+
def __init__(__self__, *,
|
|
2146
|
+
cpu: Optional[float] = None,
|
|
2147
|
+
gpu: Optional['outputs.GpuResourceResponse'] = None,
|
|
2148
|
+
memory_in_gb: Optional[float] = None):
|
|
2149
|
+
"""
|
|
2150
|
+
The resource limits.
|
|
2151
|
+
:param float cpu: The CPU limit of this container instance.
|
|
2152
|
+
:param 'GpuResourceResponse' gpu: The GPU limit of this container instance.
|
|
2153
|
+
:param float memory_in_gb: The memory limit in GB of this container instance.
|
|
2154
|
+
"""
|
|
2155
|
+
if cpu is not None:
|
|
2156
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
2157
|
+
if gpu is not None:
|
|
2158
|
+
pulumi.set(__self__, "gpu", gpu)
|
|
2159
|
+
if memory_in_gb is not None:
|
|
2160
|
+
pulumi.set(__self__, "memory_in_gb", memory_in_gb)
|
|
2161
|
+
|
|
2162
|
+
@property
|
|
2163
|
+
@pulumi.getter
|
|
2164
|
+
def cpu(self) -> Optional[float]:
|
|
2165
|
+
"""
|
|
2166
|
+
The CPU limit of this container instance.
|
|
2167
|
+
"""
|
|
2168
|
+
return pulumi.get(self, "cpu")
|
|
2169
|
+
|
|
2170
|
+
@property
|
|
2171
|
+
@pulumi.getter
|
|
2172
|
+
def gpu(self) -> Optional['outputs.GpuResourceResponse']:
|
|
2173
|
+
"""
|
|
2174
|
+
The GPU limit of this container instance.
|
|
2175
|
+
"""
|
|
2176
|
+
return pulumi.get(self, "gpu")
|
|
2177
|
+
|
|
2178
|
+
@property
|
|
2179
|
+
@pulumi.getter(name="memoryInGB")
|
|
2180
|
+
def memory_in_gb(self) -> Optional[float]:
|
|
2181
|
+
"""
|
|
2182
|
+
The memory limit in GB of this container instance.
|
|
2183
|
+
"""
|
|
2184
|
+
return pulumi.get(self, "memory_in_gb")
|
|
2185
|
+
|
|
2186
|
+
|
|
2187
|
+
@pulumi.output_type
|
|
2188
|
+
class ResourceRequestsResponse(dict):
|
|
2189
|
+
"""
|
|
2190
|
+
The resource requests.
|
|
2191
|
+
"""
|
|
2192
|
+
@staticmethod
|
|
2193
|
+
def __key_warning(key: str):
|
|
2194
|
+
suggest = None
|
|
2195
|
+
if key == "memoryInGB":
|
|
2196
|
+
suggest = "memory_in_gb"
|
|
2197
|
+
|
|
2198
|
+
if suggest:
|
|
2199
|
+
pulumi.log.warn(f"Key '{key}' not found in ResourceRequestsResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2200
|
+
|
|
2201
|
+
def __getitem__(self, key: str) -> Any:
|
|
2202
|
+
ResourceRequestsResponse.__key_warning(key)
|
|
2203
|
+
return super().__getitem__(key)
|
|
2204
|
+
|
|
2205
|
+
def get(self, key: str, default = None) -> Any:
|
|
2206
|
+
ResourceRequestsResponse.__key_warning(key)
|
|
2207
|
+
return super().get(key, default)
|
|
2208
|
+
|
|
2209
|
+
def __init__(__self__, *,
|
|
2210
|
+
cpu: float,
|
|
2211
|
+
memory_in_gb: float,
|
|
2212
|
+
gpu: Optional['outputs.GpuResourceResponse'] = None):
|
|
2213
|
+
"""
|
|
2214
|
+
The resource requests.
|
|
2215
|
+
:param float cpu: The CPU request of this container instance.
|
|
2216
|
+
:param float memory_in_gb: The memory request in GB of this container instance.
|
|
2217
|
+
:param 'GpuResourceResponse' gpu: The GPU request of this container instance.
|
|
2218
|
+
"""
|
|
2219
|
+
pulumi.set(__self__, "cpu", cpu)
|
|
2220
|
+
pulumi.set(__self__, "memory_in_gb", memory_in_gb)
|
|
2221
|
+
if gpu is not None:
|
|
2222
|
+
pulumi.set(__self__, "gpu", gpu)
|
|
2223
|
+
|
|
2224
|
+
@property
|
|
2225
|
+
@pulumi.getter
|
|
2226
|
+
def cpu(self) -> float:
|
|
2227
|
+
"""
|
|
2228
|
+
The CPU request of this container instance.
|
|
2229
|
+
"""
|
|
2230
|
+
return pulumi.get(self, "cpu")
|
|
2231
|
+
|
|
2232
|
+
@property
|
|
2233
|
+
@pulumi.getter(name="memoryInGB")
|
|
2234
|
+
def memory_in_gb(self) -> float:
|
|
2235
|
+
"""
|
|
2236
|
+
The memory request in GB of this container instance.
|
|
2237
|
+
"""
|
|
2238
|
+
return pulumi.get(self, "memory_in_gb")
|
|
2239
|
+
|
|
2240
|
+
@property
|
|
2241
|
+
@pulumi.getter
|
|
2242
|
+
def gpu(self) -> Optional['outputs.GpuResourceResponse']:
|
|
2243
|
+
"""
|
|
2244
|
+
The GPU request of this container instance.
|
|
2245
|
+
"""
|
|
2246
|
+
return pulumi.get(self, "gpu")
|
|
2247
|
+
|
|
2248
|
+
|
|
2249
|
+
@pulumi.output_type
|
|
2250
|
+
class ResourceRequirementsResponse(dict):
|
|
2251
|
+
"""
|
|
2252
|
+
The resource requirements.
|
|
2253
|
+
"""
|
|
2254
|
+
def __init__(__self__, *,
|
|
2255
|
+
requests: 'outputs.ResourceRequestsResponse',
|
|
2256
|
+
limits: Optional['outputs.ResourceLimitsResponse'] = None):
|
|
2257
|
+
"""
|
|
2258
|
+
The resource requirements.
|
|
2259
|
+
:param 'ResourceRequestsResponse' requests: The resource requests of this container instance.
|
|
2260
|
+
:param 'ResourceLimitsResponse' limits: The resource limits of this container instance.
|
|
2261
|
+
"""
|
|
2262
|
+
pulumi.set(__self__, "requests", requests)
|
|
2263
|
+
if limits is not None:
|
|
2264
|
+
pulumi.set(__self__, "limits", limits)
|
|
2265
|
+
|
|
2266
|
+
@property
|
|
2267
|
+
@pulumi.getter
|
|
2268
|
+
def requests(self) -> 'outputs.ResourceRequestsResponse':
|
|
2269
|
+
"""
|
|
2270
|
+
The resource requests of this container instance.
|
|
2271
|
+
"""
|
|
2272
|
+
return pulumi.get(self, "requests")
|
|
2273
|
+
|
|
2274
|
+
@property
|
|
2275
|
+
@pulumi.getter
|
|
2276
|
+
def limits(self) -> Optional['outputs.ResourceLimitsResponse']:
|
|
2277
|
+
"""
|
|
2278
|
+
The resource limits of this container instance.
|
|
2279
|
+
"""
|
|
2280
|
+
return pulumi.get(self, "limits")
|
|
2281
|
+
|
|
2282
|
+
|
|
2283
|
+
@pulumi.output_type
|
|
2284
|
+
class SecurityContextCapabilitiesDefinitionResponse(dict):
|
|
2285
|
+
"""
|
|
2286
|
+
The capabilities to add or drop from a container.
|
|
2287
|
+
"""
|
|
2288
|
+
def __init__(__self__, *,
|
|
2289
|
+
add: Optional[Sequence[str]] = None,
|
|
2290
|
+
drop: Optional[Sequence[str]] = None):
|
|
2291
|
+
"""
|
|
2292
|
+
The capabilities to add or drop from a container.
|
|
2293
|
+
:param Sequence[str] add: The capabilities to add to the container.
|
|
2294
|
+
:param Sequence[str] drop: The capabilities to drop from the container.
|
|
2295
|
+
"""
|
|
2296
|
+
if add is not None:
|
|
2297
|
+
pulumi.set(__self__, "add", add)
|
|
2298
|
+
if drop is not None:
|
|
2299
|
+
pulumi.set(__self__, "drop", drop)
|
|
2300
|
+
|
|
2301
|
+
@property
|
|
2302
|
+
@pulumi.getter
|
|
2303
|
+
def add(self) -> Optional[Sequence[str]]:
|
|
2304
|
+
"""
|
|
2305
|
+
The capabilities to add to the container.
|
|
2306
|
+
"""
|
|
2307
|
+
return pulumi.get(self, "add")
|
|
2308
|
+
|
|
2309
|
+
@property
|
|
2310
|
+
@pulumi.getter
|
|
2311
|
+
def drop(self) -> Optional[Sequence[str]]:
|
|
2312
|
+
"""
|
|
2313
|
+
The capabilities to drop from the container.
|
|
2314
|
+
"""
|
|
2315
|
+
return pulumi.get(self, "drop")
|
|
2316
|
+
|
|
2317
|
+
|
|
2318
|
+
@pulumi.output_type
|
|
2319
|
+
class SecurityContextDefinitionResponse(dict):
|
|
2320
|
+
"""
|
|
2321
|
+
The security context for the container.
|
|
2322
|
+
"""
|
|
2323
|
+
@staticmethod
|
|
2324
|
+
def __key_warning(key: str):
|
|
2325
|
+
suggest = None
|
|
2326
|
+
if key == "allowPrivilegeEscalation":
|
|
2327
|
+
suggest = "allow_privilege_escalation"
|
|
2328
|
+
elif key == "runAsGroup":
|
|
2329
|
+
suggest = "run_as_group"
|
|
2330
|
+
elif key == "runAsUser":
|
|
2331
|
+
suggest = "run_as_user"
|
|
2332
|
+
elif key == "seccompProfile":
|
|
2333
|
+
suggest = "seccomp_profile"
|
|
2334
|
+
|
|
2335
|
+
if suggest:
|
|
2336
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityContextDefinitionResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2337
|
+
|
|
2338
|
+
def __getitem__(self, key: str) -> Any:
|
|
2339
|
+
SecurityContextDefinitionResponse.__key_warning(key)
|
|
2340
|
+
return super().__getitem__(key)
|
|
2341
|
+
|
|
2342
|
+
def get(self, key: str, default = None) -> Any:
|
|
2343
|
+
SecurityContextDefinitionResponse.__key_warning(key)
|
|
2344
|
+
return super().get(key, default)
|
|
2345
|
+
|
|
2346
|
+
def __init__(__self__, *,
|
|
2347
|
+
allow_privilege_escalation: Optional[bool] = None,
|
|
2348
|
+
capabilities: Optional['outputs.SecurityContextCapabilitiesDefinitionResponse'] = None,
|
|
2349
|
+
privileged: Optional[bool] = None,
|
|
2350
|
+
run_as_group: Optional[int] = None,
|
|
2351
|
+
run_as_user: Optional[int] = None,
|
|
2352
|
+
seccomp_profile: Optional[str] = None):
|
|
2353
|
+
"""
|
|
2354
|
+
The security context for the container.
|
|
2355
|
+
:param bool allow_privilege_escalation: A boolean value indicating whether the init process can elevate its privileges
|
|
2356
|
+
:param 'SecurityContextCapabilitiesDefinitionResponse' capabilities: The capabilities to add or drop from a container.
|
|
2357
|
+
:param bool privileged: The flag to determine if the container permissions is elevated to Privileged.
|
|
2358
|
+
:param int run_as_group: Sets the User GID for the container.
|
|
2359
|
+
:param int run_as_user: Sets the User UID for the container.
|
|
2360
|
+
:param str seccomp_profile: a base64 encoded string containing the contents of the JSON in the seccomp profile
|
|
2361
|
+
"""
|
|
2362
|
+
if allow_privilege_escalation is not None:
|
|
2363
|
+
pulumi.set(__self__, "allow_privilege_escalation", allow_privilege_escalation)
|
|
2364
|
+
if capabilities is not None:
|
|
2365
|
+
pulumi.set(__self__, "capabilities", capabilities)
|
|
2366
|
+
if privileged is not None:
|
|
2367
|
+
pulumi.set(__self__, "privileged", privileged)
|
|
2368
|
+
if run_as_group is not None:
|
|
2369
|
+
pulumi.set(__self__, "run_as_group", run_as_group)
|
|
2370
|
+
if run_as_user is not None:
|
|
2371
|
+
pulumi.set(__self__, "run_as_user", run_as_user)
|
|
2372
|
+
if seccomp_profile is not None:
|
|
2373
|
+
pulumi.set(__self__, "seccomp_profile", seccomp_profile)
|
|
2374
|
+
|
|
2375
|
+
@property
|
|
2376
|
+
@pulumi.getter(name="allowPrivilegeEscalation")
|
|
2377
|
+
def allow_privilege_escalation(self) -> Optional[bool]:
|
|
2378
|
+
"""
|
|
2379
|
+
A boolean value indicating whether the init process can elevate its privileges
|
|
2380
|
+
"""
|
|
2381
|
+
return pulumi.get(self, "allow_privilege_escalation")
|
|
2382
|
+
|
|
2383
|
+
@property
|
|
2384
|
+
@pulumi.getter
|
|
2385
|
+
def capabilities(self) -> Optional['outputs.SecurityContextCapabilitiesDefinitionResponse']:
|
|
2386
|
+
"""
|
|
2387
|
+
The capabilities to add or drop from a container.
|
|
2388
|
+
"""
|
|
2389
|
+
return pulumi.get(self, "capabilities")
|
|
2390
|
+
|
|
2391
|
+
@property
|
|
2392
|
+
@pulumi.getter
|
|
2393
|
+
def privileged(self) -> Optional[bool]:
|
|
2394
|
+
"""
|
|
2395
|
+
The flag to determine if the container permissions is elevated to Privileged.
|
|
2396
|
+
"""
|
|
2397
|
+
return pulumi.get(self, "privileged")
|
|
2398
|
+
|
|
2399
|
+
@property
|
|
2400
|
+
@pulumi.getter(name="runAsGroup")
|
|
2401
|
+
def run_as_group(self) -> Optional[int]:
|
|
2402
|
+
"""
|
|
2403
|
+
Sets the User GID for the container.
|
|
2404
|
+
"""
|
|
2405
|
+
return pulumi.get(self, "run_as_group")
|
|
2406
|
+
|
|
2407
|
+
@property
|
|
2408
|
+
@pulumi.getter(name="runAsUser")
|
|
2409
|
+
def run_as_user(self) -> Optional[int]:
|
|
2410
|
+
"""
|
|
2411
|
+
Sets the User UID for the container.
|
|
2412
|
+
"""
|
|
2413
|
+
return pulumi.get(self, "run_as_user")
|
|
2414
|
+
|
|
2415
|
+
@property
|
|
2416
|
+
@pulumi.getter(name="seccompProfile")
|
|
2417
|
+
def seccomp_profile(self) -> Optional[str]:
|
|
2418
|
+
"""
|
|
2419
|
+
a base64 encoded string containing the contents of the JSON in the seccomp profile
|
|
2420
|
+
"""
|
|
2421
|
+
return pulumi.get(self, "seccomp_profile")
|
|
2422
|
+
|
|
2423
|
+
|
|
2424
|
+
@pulumi.output_type
|
|
2425
|
+
class SystemDataResponse(dict):
|
|
2426
|
+
"""
|
|
2427
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
2428
|
+
"""
|
|
2429
|
+
@staticmethod
|
|
2430
|
+
def __key_warning(key: str):
|
|
2431
|
+
suggest = None
|
|
2432
|
+
if key == "createdAt":
|
|
2433
|
+
suggest = "created_at"
|
|
2434
|
+
elif key == "createdBy":
|
|
2435
|
+
suggest = "created_by"
|
|
2436
|
+
elif key == "createdByType":
|
|
2437
|
+
suggest = "created_by_type"
|
|
2438
|
+
elif key == "lastModifiedAt":
|
|
2439
|
+
suggest = "last_modified_at"
|
|
2440
|
+
elif key == "lastModifiedBy":
|
|
2441
|
+
suggest = "last_modified_by"
|
|
2442
|
+
elif key == "lastModifiedByType":
|
|
2443
|
+
suggest = "last_modified_by_type"
|
|
2444
|
+
|
|
2445
|
+
if suggest:
|
|
2446
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2447
|
+
|
|
2448
|
+
def __getitem__(self, key: str) -> Any:
|
|
2449
|
+
SystemDataResponse.__key_warning(key)
|
|
2450
|
+
return super().__getitem__(key)
|
|
2451
|
+
|
|
2452
|
+
def get(self, key: str, default = None) -> Any:
|
|
2453
|
+
SystemDataResponse.__key_warning(key)
|
|
2454
|
+
return super().get(key, default)
|
|
2455
|
+
|
|
2456
|
+
def __init__(__self__, *,
|
|
2457
|
+
created_at: Optional[str] = None,
|
|
2458
|
+
created_by: Optional[str] = None,
|
|
2459
|
+
created_by_type: Optional[str] = None,
|
|
2460
|
+
last_modified_at: Optional[str] = None,
|
|
2461
|
+
last_modified_by: Optional[str] = None,
|
|
2462
|
+
last_modified_by_type: Optional[str] = None):
|
|
2463
|
+
"""
|
|
2464
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
2465
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
2466
|
+
:param str created_by: The identity that created the resource.
|
|
2467
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
2468
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
2469
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
2470
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
2471
|
+
"""
|
|
2472
|
+
if created_at is not None:
|
|
2473
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
2474
|
+
if created_by is not None:
|
|
2475
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
2476
|
+
if created_by_type is not None:
|
|
2477
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
2478
|
+
if last_modified_at is not None:
|
|
2479
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
2480
|
+
if last_modified_by is not None:
|
|
2481
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
2482
|
+
if last_modified_by_type is not None:
|
|
2483
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
2484
|
+
|
|
2485
|
+
@property
|
|
2486
|
+
@pulumi.getter(name="createdAt")
|
|
2487
|
+
def created_at(self) -> Optional[str]:
|
|
2488
|
+
"""
|
|
2489
|
+
The timestamp of resource creation (UTC).
|
|
2490
|
+
"""
|
|
2491
|
+
return pulumi.get(self, "created_at")
|
|
2492
|
+
|
|
2493
|
+
@property
|
|
2494
|
+
@pulumi.getter(name="createdBy")
|
|
2495
|
+
def created_by(self) -> Optional[str]:
|
|
2496
|
+
"""
|
|
2497
|
+
The identity that created the resource.
|
|
2498
|
+
"""
|
|
2499
|
+
return pulumi.get(self, "created_by")
|
|
2500
|
+
|
|
2501
|
+
@property
|
|
2502
|
+
@pulumi.getter(name="createdByType")
|
|
2503
|
+
def created_by_type(self) -> Optional[str]:
|
|
2504
|
+
"""
|
|
2505
|
+
The type of identity that created the resource.
|
|
2506
|
+
"""
|
|
2507
|
+
return pulumi.get(self, "created_by_type")
|
|
2508
|
+
|
|
2509
|
+
@property
|
|
2510
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
2511
|
+
def last_modified_at(self) -> Optional[str]:
|
|
2512
|
+
"""
|
|
2513
|
+
The timestamp of resource last modification (UTC)
|
|
2514
|
+
"""
|
|
2515
|
+
return pulumi.get(self, "last_modified_at")
|
|
2516
|
+
|
|
2517
|
+
@property
|
|
2518
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
2519
|
+
def last_modified_by(self) -> Optional[str]:
|
|
2520
|
+
"""
|
|
2521
|
+
The identity that last modified the resource.
|
|
2522
|
+
"""
|
|
2523
|
+
return pulumi.get(self, "last_modified_by")
|
|
2524
|
+
|
|
2525
|
+
@property
|
|
2526
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
2527
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
2528
|
+
"""
|
|
2529
|
+
The type of identity that last modified the resource.
|
|
2530
|
+
"""
|
|
2531
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
2532
|
+
|
|
2533
|
+
|
|
2534
|
+
@pulumi.output_type
|
|
2535
|
+
class UserAssignedIdentitiesResponse(dict):
|
|
2536
|
+
"""
|
|
2537
|
+
The list of user identities associated with the container group. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
2538
|
+
"""
|
|
2539
|
+
@staticmethod
|
|
2540
|
+
def __key_warning(key: str):
|
|
2541
|
+
suggest = None
|
|
2542
|
+
if key == "clientId":
|
|
2543
|
+
suggest = "client_id"
|
|
2544
|
+
elif key == "principalId":
|
|
2545
|
+
suggest = "principal_id"
|
|
2546
|
+
|
|
2547
|
+
if suggest:
|
|
2548
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentitiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2549
|
+
|
|
2550
|
+
def __getitem__(self, key: str) -> Any:
|
|
2551
|
+
UserAssignedIdentitiesResponse.__key_warning(key)
|
|
2552
|
+
return super().__getitem__(key)
|
|
2553
|
+
|
|
2554
|
+
def get(self, key: str, default = None) -> Any:
|
|
2555
|
+
UserAssignedIdentitiesResponse.__key_warning(key)
|
|
2556
|
+
return super().get(key, default)
|
|
2557
|
+
|
|
2558
|
+
def __init__(__self__, *,
|
|
2559
|
+
client_id: str,
|
|
2560
|
+
principal_id: str):
|
|
2561
|
+
"""
|
|
2562
|
+
The list of user identities associated with the container group. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
2563
|
+
:param str client_id: The client id of user assigned identity.
|
|
2564
|
+
:param str principal_id: The principal id of user assigned identity.
|
|
2565
|
+
"""
|
|
2566
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
2567
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
2568
|
+
|
|
2569
|
+
@property
|
|
2570
|
+
@pulumi.getter(name="clientId")
|
|
2571
|
+
def client_id(self) -> str:
|
|
2572
|
+
"""
|
|
2573
|
+
The client id of user assigned identity.
|
|
2574
|
+
"""
|
|
2575
|
+
return pulumi.get(self, "client_id")
|
|
2576
|
+
|
|
2577
|
+
@property
|
|
2578
|
+
@pulumi.getter(name="principalId")
|
|
2579
|
+
def principal_id(self) -> str:
|
|
2580
|
+
"""
|
|
2581
|
+
The principal id of user assigned identity.
|
|
2582
|
+
"""
|
|
2583
|
+
return pulumi.get(self, "principal_id")
|
|
2584
|
+
|
|
2585
|
+
|
|
2586
|
+
@pulumi.output_type
|
|
2587
|
+
class UserAssignedIdentityResponse(dict):
|
|
2588
|
+
"""
|
|
2589
|
+
User assigned identity properties
|
|
2590
|
+
"""
|
|
2591
|
+
@staticmethod
|
|
2592
|
+
def __key_warning(key: str):
|
|
2593
|
+
suggest = None
|
|
2594
|
+
if key == "clientId":
|
|
2595
|
+
suggest = "client_id"
|
|
2596
|
+
elif key == "principalId":
|
|
2597
|
+
suggest = "principal_id"
|
|
2598
|
+
|
|
2599
|
+
if suggest:
|
|
2600
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2601
|
+
|
|
2602
|
+
def __getitem__(self, key: str) -> Any:
|
|
2603
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
2604
|
+
return super().__getitem__(key)
|
|
2605
|
+
|
|
2606
|
+
def get(self, key: str, default = None) -> Any:
|
|
2607
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
2608
|
+
return super().get(key, default)
|
|
2609
|
+
|
|
2610
|
+
def __init__(__self__, *,
|
|
2611
|
+
client_id: str,
|
|
2612
|
+
principal_id: str):
|
|
2613
|
+
"""
|
|
2614
|
+
User assigned identity properties
|
|
2615
|
+
:param str client_id: The client ID of the assigned identity.
|
|
2616
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
2617
|
+
"""
|
|
2618
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
2619
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
2620
|
+
|
|
2621
|
+
@property
|
|
2622
|
+
@pulumi.getter(name="clientId")
|
|
2623
|
+
def client_id(self) -> str:
|
|
2624
|
+
"""
|
|
2625
|
+
The client ID of the assigned identity.
|
|
2626
|
+
"""
|
|
2627
|
+
return pulumi.get(self, "client_id")
|
|
2628
|
+
|
|
2629
|
+
@property
|
|
2630
|
+
@pulumi.getter(name="principalId")
|
|
2631
|
+
def principal_id(self) -> str:
|
|
2632
|
+
"""
|
|
2633
|
+
The principal ID of the assigned identity.
|
|
2634
|
+
"""
|
|
2635
|
+
return pulumi.get(self, "principal_id")
|
|
2636
|
+
|
|
2637
|
+
|
|
2638
|
+
@pulumi.output_type
|
|
2639
|
+
class VolumeMountResponse(dict):
|
|
2640
|
+
"""
|
|
2641
|
+
The properties of the volume mount.
|
|
2642
|
+
"""
|
|
2643
|
+
@staticmethod
|
|
2644
|
+
def __key_warning(key: str):
|
|
2645
|
+
suggest = None
|
|
2646
|
+
if key == "mountPath":
|
|
2647
|
+
suggest = "mount_path"
|
|
2648
|
+
elif key == "readOnly":
|
|
2649
|
+
suggest = "read_only"
|
|
2650
|
+
|
|
2651
|
+
if suggest:
|
|
2652
|
+
pulumi.log.warn(f"Key '{key}' not found in VolumeMountResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2653
|
+
|
|
2654
|
+
def __getitem__(self, key: str) -> Any:
|
|
2655
|
+
VolumeMountResponse.__key_warning(key)
|
|
2656
|
+
return super().__getitem__(key)
|
|
2657
|
+
|
|
2658
|
+
def get(self, key: str, default = None) -> Any:
|
|
2659
|
+
VolumeMountResponse.__key_warning(key)
|
|
2660
|
+
return super().get(key, default)
|
|
2661
|
+
|
|
2662
|
+
def __init__(__self__, *,
|
|
2663
|
+
mount_path: str,
|
|
2664
|
+
name: str,
|
|
2665
|
+
read_only: Optional[bool] = None):
|
|
2666
|
+
"""
|
|
2667
|
+
The properties of the volume mount.
|
|
2668
|
+
:param str mount_path: The path within the container where the volume should be mounted. Must not contain colon (:).
|
|
2669
|
+
:param str name: The name of the volume mount.
|
|
2670
|
+
:param bool read_only: The flag indicating whether the volume mount is read-only.
|
|
2671
|
+
"""
|
|
2672
|
+
pulumi.set(__self__, "mount_path", mount_path)
|
|
2673
|
+
pulumi.set(__self__, "name", name)
|
|
2674
|
+
if read_only is not None:
|
|
2675
|
+
pulumi.set(__self__, "read_only", read_only)
|
|
2676
|
+
|
|
2677
|
+
@property
|
|
2678
|
+
@pulumi.getter(name="mountPath")
|
|
2679
|
+
def mount_path(self) -> str:
|
|
2680
|
+
"""
|
|
2681
|
+
The path within the container where the volume should be mounted. Must not contain colon (:).
|
|
2682
|
+
"""
|
|
2683
|
+
return pulumi.get(self, "mount_path")
|
|
2684
|
+
|
|
2685
|
+
@property
|
|
2686
|
+
@pulumi.getter
|
|
2687
|
+
def name(self) -> str:
|
|
2688
|
+
"""
|
|
2689
|
+
The name of the volume mount.
|
|
2690
|
+
"""
|
|
2691
|
+
return pulumi.get(self, "name")
|
|
2692
|
+
|
|
2693
|
+
@property
|
|
2694
|
+
@pulumi.getter(name="readOnly")
|
|
2695
|
+
def read_only(self) -> Optional[bool]:
|
|
2696
|
+
"""
|
|
2697
|
+
The flag indicating whether the volume mount is read-only.
|
|
2698
|
+
"""
|
|
2699
|
+
return pulumi.get(self, "read_only")
|
|
2700
|
+
|
|
2701
|
+
|
|
2702
|
+
@pulumi.output_type
|
|
2703
|
+
class VolumeResponse(dict):
|
|
2704
|
+
"""
|
|
2705
|
+
The properties of the volume.
|
|
2706
|
+
"""
|
|
2707
|
+
@staticmethod
|
|
2708
|
+
def __key_warning(key: str):
|
|
2709
|
+
suggest = None
|
|
2710
|
+
if key == "azureFile":
|
|
2711
|
+
suggest = "azure_file"
|
|
2712
|
+
elif key == "emptyDir":
|
|
2713
|
+
suggest = "empty_dir"
|
|
2714
|
+
elif key == "gitRepo":
|
|
2715
|
+
suggest = "git_repo"
|
|
2716
|
+
|
|
2717
|
+
if suggest:
|
|
2718
|
+
pulumi.log.warn(f"Key '{key}' not found in VolumeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2719
|
+
|
|
2720
|
+
def __getitem__(self, key: str) -> Any:
|
|
2721
|
+
VolumeResponse.__key_warning(key)
|
|
2722
|
+
return super().__getitem__(key)
|
|
2723
|
+
|
|
2724
|
+
def get(self, key: str, default = None) -> Any:
|
|
2725
|
+
VolumeResponse.__key_warning(key)
|
|
2726
|
+
return super().get(key, default)
|
|
2727
|
+
|
|
2728
|
+
def __init__(__self__, *,
|
|
2729
|
+
name: str,
|
|
2730
|
+
azure_file: Optional['outputs.AzureFileVolumeResponse'] = None,
|
|
2731
|
+
empty_dir: Optional[Any] = None,
|
|
2732
|
+
git_repo: Optional['outputs.GitRepoVolumeResponse'] = None,
|
|
2733
|
+
secret: Optional[Mapping[str, str]] = None):
|
|
2734
|
+
"""
|
|
2735
|
+
The properties of the volume.
|
|
2736
|
+
:param str name: The name of the volume.
|
|
2737
|
+
:param 'AzureFileVolumeResponse' azure_file: The Azure File volume.
|
|
2738
|
+
:param Any empty_dir: The empty directory volume.
|
|
2739
|
+
:param 'GitRepoVolumeResponse' git_repo: The git repo volume.
|
|
2740
|
+
:param Mapping[str, str] secret: The secret volume.
|
|
2741
|
+
"""
|
|
2742
|
+
pulumi.set(__self__, "name", name)
|
|
2743
|
+
if azure_file is not None:
|
|
2744
|
+
pulumi.set(__self__, "azure_file", azure_file)
|
|
2745
|
+
if empty_dir is not None:
|
|
2746
|
+
pulumi.set(__self__, "empty_dir", empty_dir)
|
|
2747
|
+
if git_repo is not None:
|
|
2748
|
+
pulumi.set(__self__, "git_repo", git_repo)
|
|
2749
|
+
if secret is not None:
|
|
2750
|
+
pulumi.set(__self__, "secret", secret)
|
|
2751
|
+
|
|
2752
|
+
@property
|
|
2753
|
+
@pulumi.getter
|
|
2754
|
+
def name(self) -> str:
|
|
2755
|
+
"""
|
|
2756
|
+
The name of the volume.
|
|
2757
|
+
"""
|
|
2758
|
+
return pulumi.get(self, "name")
|
|
2759
|
+
|
|
2760
|
+
@property
|
|
2761
|
+
@pulumi.getter(name="azureFile")
|
|
2762
|
+
def azure_file(self) -> Optional['outputs.AzureFileVolumeResponse']:
|
|
2763
|
+
"""
|
|
2764
|
+
The Azure File volume.
|
|
2765
|
+
"""
|
|
2766
|
+
return pulumi.get(self, "azure_file")
|
|
2767
|
+
|
|
2768
|
+
@property
|
|
2769
|
+
@pulumi.getter(name="emptyDir")
|
|
2770
|
+
def empty_dir(self) -> Optional[Any]:
|
|
2771
|
+
"""
|
|
2772
|
+
The empty directory volume.
|
|
2773
|
+
"""
|
|
2774
|
+
return pulumi.get(self, "empty_dir")
|
|
2775
|
+
|
|
2776
|
+
@property
|
|
2777
|
+
@pulumi.getter(name="gitRepo")
|
|
2778
|
+
def git_repo(self) -> Optional['outputs.GitRepoVolumeResponse']:
|
|
2779
|
+
"""
|
|
2780
|
+
The git repo volume.
|
|
2781
|
+
"""
|
|
2782
|
+
return pulumi.get(self, "git_repo")
|
|
2783
|
+
|
|
2784
|
+
@property
|
|
2785
|
+
@pulumi.getter
|
|
2786
|
+
def secret(self) -> Optional[Mapping[str, str]]:
|
|
2787
|
+
"""
|
|
2788
|
+
The secret volume.
|
|
2789
|
+
"""
|
|
2790
|
+
return pulumi.get(self, "secret")
|
|
2791
|
+
|
|
2792
|
+
|