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,272 @@
|
|
|
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
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['DataflowArgs', 'Dataflow']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class DataflowArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
dataflow_profile_name: pulumi.Input[str],
|
|
26
|
+
extended_location: pulumi.Input['ExtendedLocationArgs'],
|
|
27
|
+
instance_name: pulumi.Input[str],
|
|
28
|
+
resource_group_name: pulumi.Input[str],
|
|
29
|
+
dataflow_name: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
properties: Optional[pulumi.Input['DataflowPropertiesArgs']] = None):
|
|
31
|
+
"""
|
|
32
|
+
The set of arguments for constructing a Dataflow resource.
|
|
33
|
+
:param pulumi.Input[str] dataflow_profile_name: Name of Instance dataflowProfile resource
|
|
34
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: Edge location of the resource.
|
|
35
|
+
:param pulumi.Input[str] instance_name: Name of instance.
|
|
36
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
37
|
+
:param pulumi.Input[str] dataflow_name: Name of Instance dataflowProfile dataflow resource
|
|
38
|
+
:param pulumi.Input['DataflowPropertiesArgs'] properties: The resource-specific properties for this resource.
|
|
39
|
+
"""
|
|
40
|
+
pulumi.set(__self__, "dataflow_profile_name", dataflow_profile_name)
|
|
41
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
42
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
|
43
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
44
|
+
if dataflow_name is not None:
|
|
45
|
+
pulumi.set(__self__, "dataflow_name", dataflow_name)
|
|
46
|
+
if properties is not None:
|
|
47
|
+
pulumi.set(__self__, "properties", properties)
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter(name="dataflowProfileName")
|
|
51
|
+
def dataflow_profile_name(self) -> pulumi.Input[str]:
|
|
52
|
+
"""
|
|
53
|
+
Name of Instance dataflowProfile resource
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "dataflow_profile_name")
|
|
56
|
+
|
|
57
|
+
@dataflow_profile_name.setter
|
|
58
|
+
def dataflow_profile_name(self, value: pulumi.Input[str]):
|
|
59
|
+
pulumi.set(self, "dataflow_profile_name", value)
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter(name="extendedLocation")
|
|
63
|
+
def extended_location(self) -> pulumi.Input['ExtendedLocationArgs']:
|
|
64
|
+
"""
|
|
65
|
+
Edge location of the resource.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "extended_location")
|
|
68
|
+
|
|
69
|
+
@extended_location.setter
|
|
70
|
+
def extended_location(self, value: pulumi.Input['ExtendedLocationArgs']):
|
|
71
|
+
pulumi.set(self, "extended_location", value)
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="instanceName")
|
|
75
|
+
def instance_name(self) -> pulumi.Input[str]:
|
|
76
|
+
"""
|
|
77
|
+
Name of instance.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "instance_name")
|
|
80
|
+
|
|
81
|
+
@instance_name.setter
|
|
82
|
+
def instance_name(self, value: pulumi.Input[str]):
|
|
83
|
+
pulumi.set(self, "instance_name", value)
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="resourceGroupName")
|
|
87
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
88
|
+
"""
|
|
89
|
+
The name of the resource group. The name is case insensitive.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "resource_group_name")
|
|
92
|
+
|
|
93
|
+
@resource_group_name.setter
|
|
94
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
95
|
+
pulumi.set(self, "resource_group_name", value)
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="dataflowName")
|
|
99
|
+
def dataflow_name(self) -> Optional[pulumi.Input[str]]:
|
|
100
|
+
"""
|
|
101
|
+
Name of Instance dataflowProfile dataflow resource
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "dataflow_name")
|
|
104
|
+
|
|
105
|
+
@dataflow_name.setter
|
|
106
|
+
def dataflow_name(self, value: Optional[pulumi.Input[str]]):
|
|
107
|
+
pulumi.set(self, "dataflow_name", value)
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def properties(self) -> Optional[pulumi.Input['DataflowPropertiesArgs']]:
|
|
112
|
+
"""
|
|
113
|
+
The resource-specific properties for this resource.
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "properties")
|
|
116
|
+
|
|
117
|
+
@properties.setter
|
|
118
|
+
def properties(self, value: Optional[pulumi.Input['DataflowPropertiesArgs']]):
|
|
119
|
+
pulumi.set(self, "properties", value)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
class Dataflow(pulumi.CustomResource):
|
|
123
|
+
@overload
|
|
124
|
+
def __init__(__self__,
|
|
125
|
+
resource_name: str,
|
|
126
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
127
|
+
dataflow_name: Optional[pulumi.Input[str]] = None,
|
|
128
|
+
dataflow_profile_name: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
130
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
properties: Optional[pulumi.Input[Union['DataflowPropertiesArgs', 'DataflowPropertiesArgsDict']]] = None,
|
|
132
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
133
|
+
__props__=None):
|
|
134
|
+
"""
|
|
135
|
+
Instance dataflowProfile dataflow resource
|
|
136
|
+
|
|
137
|
+
:param str resource_name: The name of the resource.
|
|
138
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
139
|
+
:param pulumi.Input[str] dataflow_name: Name of Instance dataflowProfile dataflow resource
|
|
140
|
+
:param pulumi.Input[str] dataflow_profile_name: Name of Instance dataflowProfile resource
|
|
141
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: Edge location of the resource.
|
|
142
|
+
:param pulumi.Input[str] instance_name: Name of instance.
|
|
143
|
+
:param pulumi.Input[Union['DataflowPropertiesArgs', 'DataflowPropertiesArgsDict']] properties: The resource-specific properties for this resource.
|
|
144
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
145
|
+
"""
|
|
146
|
+
...
|
|
147
|
+
@overload
|
|
148
|
+
def __init__(__self__,
|
|
149
|
+
resource_name: str,
|
|
150
|
+
args: DataflowArgs,
|
|
151
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
152
|
+
"""
|
|
153
|
+
Instance dataflowProfile dataflow resource
|
|
154
|
+
|
|
155
|
+
:param str resource_name: The name of the resource.
|
|
156
|
+
:param DataflowArgs args: The arguments to use to populate this resource's properties.
|
|
157
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
158
|
+
"""
|
|
159
|
+
...
|
|
160
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
161
|
+
resource_args, opts = _utilities.get_resource_args_opts(DataflowArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
162
|
+
if resource_args is not None:
|
|
163
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
164
|
+
else:
|
|
165
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
166
|
+
|
|
167
|
+
def _internal_init(__self__,
|
|
168
|
+
resource_name: str,
|
|
169
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
170
|
+
dataflow_name: Optional[pulumi.Input[str]] = None,
|
|
171
|
+
dataflow_profile_name: Optional[pulumi.Input[str]] = None,
|
|
172
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
173
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
174
|
+
properties: Optional[pulumi.Input[Union['DataflowPropertiesArgs', 'DataflowPropertiesArgsDict']]] = None,
|
|
175
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
176
|
+
__props__=None):
|
|
177
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
178
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
179
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
180
|
+
if opts.id is None:
|
|
181
|
+
if __props__ is not None:
|
|
182
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
183
|
+
__props__ = DataflowArgs.__new__(DataflowArgs)
|
|
184
|
+
|
|
185
|
+
__props__.__dict__["dataflow_name"] = dataflow_name
|
|
186
|
+
if dataflow_profile_name is None and not opts.urn:
|
|
187
|
+
raise TypeError("Missing required property 'dataflow_profile_name'")
|
|
188
|
+
__props__.__dict__["dataflow_profile_name"] = dataflow_profile_name
|
|
189
|
+
if extended_location is None and not opts.urn:
|
|
190
|
+
raise TypeError("Missing required property 'extended_location'")
|
|
191
|
+
__props__.__dict__["extended_location"] = extended_location
|
|
192
|
+
if instance_name is None and not opts.urn:
|
|
193
|
+
raise TypeError("Missing required property 'instance_name'")
|
|
194
|
+
__props__.__dict__["instance_name"] = instance_name
|
|
195
|
+
__props__.__dict__["properties"] = properties
|
|
196
|
+
if resource_group_name is None and not opts.urn:
|
|
197
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
198
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
199
|
+
__props__.__dict__["name"] = None
|
|
200
|
+
__props__.__dict__["system_data"] = None
|
|
201
|
+
__props__.__dict__["type"] = None
|
|
202
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:iotoperations:Dataflow"), pulumi.Alias(type_="azure-native:iotoperations/v20240701preview:Dataflow"), pulumi.Alias(type_="azure-native:iotoperations/v20240815preview:Dataflow")])
|
|
203
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
204
|
+
super(Dataflow, __self__).__init__(
|
|
205
|
+
'azure-native:iotoperations/v20240915preview:Dataflow',
|
|
206
|
+
resource_name,
|
|
207
|
+
__props__,
|
|
208
|
+
opts)
|
|
209
|
+
|
|
210
|
+
@staticmethod
|
|
211
|
+
def get(resource_name: str,
|
|
212
|
+
id: pulumi.Input[str],
|
|
213
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Dataflow':
|
|
214
|
+
"""
|
|
215
|
+
Get an existing Dataflow resource's state with the given name, id, and optional extra
|
|
216
|
+
properties used to qualify the lookup.
|
|
217
|
+
|
|
218
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
219
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
220
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
221
|
+
"""
|
|
222
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
223
|
+
|
|
224
|
+
__props__ = DataflowArgs.__new__(DataflowArgs)
|
|
225
|
+
|
|
226
|
+
__props__.__dict__["extended_location"] = None
|
|
227
|
+
__props__.__dict__["name"] = None
|
|
228
|
+
__props__.__dict__["properties"] = None
|
|
229
|
+
__props__.__dict__["system_data"] = None
|
|
230
|
+
__props__.__dict__["type"] = None
|
|
231
|
+
return Dataflow(resource_name, opts=opts, __props__=__props__)
|
|
232
|
+
|
|
233
|
+
@property
|
|
234
|
+
@pulumi.getter(name="extendedLocation")
|
|
235
|
+
def extended_location(self) -> pulumi.Output['outputs.ExtendedLocationResponse']:
|
|
236
|
+
"""
|
|
237
|
+
Edge location of the resource.
|
|
238
|
+
"""
|
|
239
|
+
return pulumi.get(self, "extended_location")
|
|
240
|
+
|
|
241
|
+
@property
|
|
242
|
+
@pulumi.getter
|
|
243
|
+
def name(self) -> pulumi.Output[str]:
|
|
244
|
+
"""
|
|
245
|
+
The name of the resource
|
|
246
|
+
"""
|
|
247
|
+
return pulumi.get(self, "name")
|
|
248
|
+
|
|
249
|
+
@property
|
|
250
|
+
@pulumi.getter
|
|
251
|
+
def properties(self) -> pulumi.Output['outputs.DataflowPropertiesResponse']:
|
|
252
|
+
"""
|
|
253
|
+
The resource-specific properties for this resource.
|
|
254
|
+
"""
|
|
255
|
+
return pulumi.get(self, "properties")
|
|
256
|
+
|
|
257
|
+
@property
|
|
258
|
+
@pulumi.getter(name="systemData")
|
|
259
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
260
|
+
"""
|
|
261
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
262
|
+
"""
|
|
263
|
+
return pulumi.get(self, "system_data")
|
|
264
|
+
|
|
265
|
+
@property
|
|
266
|
+
@pulumi.getter
|
|
267
|
+
def type(self) -> pulumi.Output[str]:
|
|
268
|
+
"""
|
|
269
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
270
|
+
"""
|
|
271
|
+
return pulumi.get(self, "type")
|
|
272
|
+
|
|
@@ -0,0 +1,251 @@
|
|
|
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
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['DataflowEndpointArgs', 'DataflowEndpoint']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class DataflowEndpointArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
extended_location: pulumi.Input['ExtendedLocationArgs'],
|
|
26
|
+
instance_name: pulumi.Input[str],
|
|
27
|
+
resource_group_name: pulumi.Input[str],
|
|
28
|
+
dataflow_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
29
|
+
properties: Optional[pulumi.Input['DataflowEndpointPropertiesArgs']] = None):
|
|
30
|
+
"""
|
|
31
|
+
The set of arguments for constructing a DataflowEndpoint resource.
|
|
32
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: Edge location of the resource.
|
|
33
|
+
:param pulumi.Input[str] instance_name: Name of instance.
|
|
34
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
35
|
+
:param pulumi.Input[str] dataflow_endpoint_name: Name of Instance dataflowEndpoint resource
|
|
36
|
+
:param pulumi.Input['DataflowEndpointPropertiesArgs'] properties: The resource-specific properties for this resource.
|
|
37
|
+
"""
|
|
38
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
39
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
|
40
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
41
|
+
if dataflow_endpoint_name is not None:
|
|
42
|
+
pulumi.set(__self__, "dataflow_endpoint_name", dataflow_endpoint_name)
|
|
43
|
+
if properties is not None:
|
|
44
|
+
pulumi.set(__self__, "properties", properties)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="extendedLocation")
|
|
48
|
+
def extended_location(self) -> pulumi.Input['ExtendedLocationArgs']:
|
|
49
|
+
"""
|
|
50
|
+
Edge location of the resource.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "extended_location")
|
|
53
|
+
|
|
54
|
+
@extended_location.setter
|
|
55
|
+
def extended_location(self, value: pulumi.Input['ExtendedLocationArgs']):
|
|
56
|
+
pulumi.set(self, "extended_location", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="instanceName")
|
|
60
|
+
def instance_name(self) -> pulumi.Input[str]:
|
|
61
|
+
"""
|
|
62
|
+
Name of instance.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "instance_name")
|
|
65
|
+
|
|
66
|
+
@instance_name.setter
|
|
67
|
+
def instance_name(self, value: pulumi.Input[str]):
|
|
68
|
+
pulumi.set(self, "instance_name", value)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="resourceGroupName")
|
|
72
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
73
|
+
"""
|
|
74
|
+
The name of the resource group. The name is case insensitive.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "resource_group_name")
|
|
77
|
+
|
|
78
|
+
@resource_group_name.setter
|
|
79
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
80
|
+
pulumi.set(self, "resource_group_name", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="dataflowEndpointName")
|
|
84
|
+
def dataflow_endpoint_name(self) -> Optional[pulumi.Input[str]]:
|
|
85
|
+
"""
|
|
86
|
+
Name of Instance dataflowEndpoint resource
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "dataflow_endpoint_name")
|
|
89
|
+
|
|
90
|
+
@dataflow_endpoint_name.setter
|
|
91
|
+
def dataflow_endpoint_name(self, value: Optional[pulumi.Input[str]]):
|
|
92
|
+
pulumi.set(self, "dataflow_endpoint_name", value)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def properties(self) -> Optional[pulumi.Input['DataflowEndpointPropertiesArgs']]:
|
|
97
|
+
"""
|
|
98
|
+
The resource-specific properties for this resource.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "properties")
|
|
101
|
+
|
|
102
|
+
@properties.setter
|
|
103
|
+
def properties(self, value: Optional[pulumi.Input['DataflowEndpointPropertiesArgs']]):
|
|
104
|
+
pulumi.set(self, "properties", value)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class DataflowEndpoint(pulumi.CustomResource):
|
|
108
|
+
@overload
|
|
109
|
+
def __init__(__self__,
|
|
110
|
+
resource_name: str,
|
|
111
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
112
|
+
dataflow_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
113
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
114
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
115
|
+
properties: Optional[pulumi.Input[Union['DataflowEndpointPropertiesArgs', 'DataflowEndpointPropertiesArgsDict']]] = None,
|
|
116
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
117
|
+
__props__=None):
|
|
118
|
+
"""
|
|
119
|
+
Instance dataflowEndpoint resource
|
|
120
|
+
|
|
121
|
+
:param str resource_name: The name of the resource.
|
|
122
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
123
|
+
:param pulumi.Input[str] dataflow_endpoint_name: Name of Instance dataflowEndpoint resource
|
|
124
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: Edge location of the resource.
|
|
125
|
+
:param pulumi.Input[str] instance_name: Name of instance.
|
|
126
|
+
:param pulumi.Input[Union['DataflowEndpointPropertiesArgs', 'DataflowEndpointPropertiesArgsDict']] properties: The resource-specific properties for this resource.
|
|
127
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
128
|
+
"""
|
|
129
|
+
...
|
|
130
|
+
@overload
|
|
131
|
+
def __init__(__self__,
|
|
132
|
+
resource_name: str,
|
|
133
|
+
args: DataflowEndpointArgs,
|
|
134
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
135
|
+
"""
|
|
136
|
+
Instance dataflowEndpoint resource
|
|
137
|
+
|
|
138
|
+
:param str resource_name: The name of the resource.
|
|
139
|
+
:param DataflowEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
140
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
141
|
+
"""
|
|
142
|
+
...
|
|
143
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
144
|
+
resource_args, opts = _utilities.get_resource_args_opts(DataflowEndpointArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
145
|
+
if resource_args is not None:
|
|
146
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
147
|
+
else:
|
|
148
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
149
|
+
|
|
150
|
+
def _internal_init(__self__,
|
|
151
|
+
resource_name: str,
|
|
152
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
153
|
+
dataflow_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
154
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
155
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
properties: Optional[pulumi.Input[Union['DataflowEndpointPropertiesArgs', 'DataflowEndpointPropertiesArgsDict']]] = None,
|
|
157
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
__props__=None):
|
|
159
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
160
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
161
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
162
|
+
if opts.id is None:
|
|
163
|
+
if __props__ is not None:
|
|
164
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
165
|
+
__props__ = DataflowEndpointArgs.__new__(DataflowEndpointArgs)
|
|
166
|
+
|
|
167
|
+
__props__.__dict__["dataflow_endpoint_name"] = dataflow_endpoint_name
|
|
168
|
+
if extended_location is None and not opts.urn:
|
|
169
|
+
raise TypeError("Missing required property 'extended_location'")
|
|
170
|
+
__props__.__dict__["extended_location"] = extended_location
|
|
171
|
+
if instance_name is None and not opts.urn:
|
|
172
|
+
raise TypeError("Missing required property 'instance_name'")
|
|
173
|
+
__props__.__dict__["instance_name"] = instance_name
|
|
174
|
+
__props__.__dict__["properties"] = properties
|
|
175
|
+
if resource_group_name is None and not opts.urn:
|
|
176
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
177
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
178
|
+
__props__.__dict__["name"] = None
|
|
179
|
+
__props__.__dict__["system_data"] = None
|
|
180
|
+
__props__.__dict__["type"] = None
|
|
181
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:iotoperations:DataflowEndpoint"), pulumi.Alias(type_="azure-native:iotoperations/v20240701preview:DataflowEndpoint"), pulumi.Alias(type_="azure-native:iotoperations/v20240815preview:DataflowEndpoint")])
|
|
182
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
183
|
+
super(DataflowEndpoint, __self__).__init__(
|
|
184
|
+
'azure-native:iotoperations/v20240915preview:DataflowEndpoint',
|
|
185
|
+
resource_name,
|
|
186
|
+
__props__,
|
|
187
|
+
opts)
|
|
188
|
+
|
|
189
|
+
@staticmethod
|
|
190
|
+
def get(resource_name: str,
|
|
191
|
+
id: pulumi.Input[str],
|
|
192
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DataflowEndpoint':
|
|
193
|
+
"""
|
|
194
|
+
Get an existing DataflowEndpoint resource's state with the given name, id, and optional extra
|
|
195
|
+
properties used to qualify the lookup.
|
|
196
|
+
|
|
197
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
198
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
199
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
200
|
+
"""
|
|
201
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
202
|
+
|
|
203
|
+
__props__ = DataflowEndpointArgs.__new__(DataflowEndpointArgs)
|
|
204
|
+
|
|
205
|
+
__props__.__dict__["extended_location"] = None
|
|
206
|
+
__props__.__dict__["name"] = None
|
|
207
|
+
__props__.__dict__["properties"] = None
|
|
208
|
+
__props__.__dict__["system_data"] = None
|
|
209
|
+
__props__.__dict__["type"] = None
|
|
210
|
+
return DataflowEndpoint(resource_name, opts=opts, __props__=__props__)
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
@pulumi.getter(name="extendedLocation")
|
|
214
|
+
def extended_location(self) -> pulumi.Output['outputs.ExtendedLocationResponse']:
|
|
215
|
+
"""
|
|
216
|
+
Edge location of the resource.
|
|
217
|
+
"""
|
|
218
|
+
return pulumi.get(self, "extended_location")
|
|
219
|
+
|
|
220
|
+
@property
|
|
221
|
+
@pulumi.getter
|
|
222
|
+
def name(self) -> pulumi.Output[str]:
|
|
223
|
+
"""
|
|
224
|
+
The name of the resource
|
|
225
|
+
"""
|
|
226
|
+
return pulumi.get(self, "name")
|
|
227
|
+
|
|
228
|
+
@property
|
|
229
|
+
@pulumi.getter
|
|
230
|
+
def properties(self) -> pulumi.Output['outputs.DataflowEndpointPropertiesResponse']:
|
|
231
|
+
"""
|
|
232
|
+
The resource-specific properties for this resource.
|
|
233
|
+
"""
|
|
234
|
+
return pulumi.get(self, "properties")
|
|
235
|
+
|
|
236
|
+
@property
|
|
237
|
+
@pulumi.getter(name="systemData")
|
|
238
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
239
|
+
"""
|
|
240
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
241
|
+
"""
|
|
242
|
+
return pulumi.get(self, "system_data")
|
|
243
|
+
|
|
244
|
+
@property
|
|
245
|
+
@pulumi.getter
|
|
246
|
+
def type(self) -> pulumi.Output[str]:
|
|
247
|
+
"""
|
|
248
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
249
|
+
"""
|
|
250
|
+
return pulumi.get(self, "type")
|
|
251
|
+
|