pulumi-azure-native 2.64.3__py3-none-any.whl → 2.65.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +95 -2
- pulumi_azure_native/authorization/__init__.py +3 -0
- pulumi_azure_native/authorization/get_role_management_policy_assignment.py +2 -2
- pulumi_azure_native/authorization/role_management_policy_assignment.py +3 -3
- pulumi_azure_native/authorization/v20201001/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20201001preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240201preview/role_management_policy_assignment.py +1 -1
- pulumi_azure_native/authorization/v20240901preview/__init__.py +10 -0
- pulumi_azure_native/authorization/v20240901preview/get_role_management_policy_assignment.py +175 -0
- pulumi_azure_native/authorization/v20240901preview/outputs.py +1456 -0
- pulumi_azure_native/authorization/v20240901preview/role_management_policy_assignment.py +246 -0
- pulumi_azure_native/azurearcdata/__init__.py +8 -0
- pulumi_azure_native/azurearcdata/_enums.py +55 -0
- pulumi_azure_native/azurearcdata/_inputs.py +226 -0
- pulumi_azure_native/azurearcdata/active_directory_connector.py +3 -3
- pulumi_azure_native/azurearcdata/data_controller.py +3 -3
- pulumi_azure_native/azurearcdata/failover_group.py +3 -3
- pulumi_azure_native/azurearcdata/get_active_directory_connector.py +2 -2
- pulumi_azure_native/azurearcdata/get_data_controller.py +2 -2
- pulumi_azure_native/azurearcdata/get_failover_group.py +2 -2
- pulumi_azure_native/azurearcdata/get_postgres_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_managed_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_availability_group_detail_view.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_database.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_esu_license.py +164 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance.py +2 -2
- pulumi_azure_native/azurearcdata/get_sql_server_instance_jobs_status.py +96 -0
- pulumi_azure_native/azurearcdata/get_sql_server_instance_telemetry.py +4 -0
- pulumi_azure_native/azurearcdata/get_sql_server_license.py +164 -0
- pulumi_azure_native/azurearcdata/outputs.py +489 -0
- pulumi_azure_native/azurearcdata/postgres_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_managed_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_availability_group.py +5 -1
- pulumi_azure_native/azurearcdata/sql_server_database.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_esu_license.py +261 -0
- pulumi_azure_native/azurearcdata/sql_server_instance.py +3 -3
- pulumi_azure_native/azurearcdata/sql_server_license.py +261 -0
- pulumi_azure_native/azurearcdata/v20230115preview/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20230115preview/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/active_directory_connector.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/data_controller.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/failover_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/postgres_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_managed_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_availability_group.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_database.py +1 -1
- pulumi_azure_native/azurearcdata/v20240101/sql_server_instance.py +1 -1
- pulumi_azure_native/azurearcdata/v20240501preview/__init__.py +33 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_enums.py +334 -0
- pulumi_azure_native/azurearcdata/v20240501preview/_inputs.py +4953 -0
- pulumi_azure_native/azurearcdata/v20240501preview/active_directory_connector.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/data_controller.py +288 -0
- pulumi_azure_native/azurearcdata/v20240501preview/failover_group.py +222 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_active_directory_connector.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_data_controller.py +175 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_failover_group.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_postgres_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_managed_instance.py +188 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_availability_group_detail_view.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_database.py +167 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_esu_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_jobs_status.py +94 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_instance_telemetry.py +141 -0
- pulumi_azure_native/azurearcdata/v20240501preview/get_sql_server_license.py +162 -0
- pulumi_azure_native/azurearcdata/v20240501preview/outputs.py +6407 -0
- pulumi_azure_native/azurearcdata/v20240501preview/postgres_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_managed_instance.py +317 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_availability_group.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_database.py +280 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_esu_license.py +259 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_instance.py +258 -0
- pulumi_azure_native/azurearcdata/v20240501preview/sql_server_license.py +259 -0
- pulumi_azure_native/azurefleet/__init__.py +3 -0
- pulumi_azure_native/azurefleet/fleet.py +3 -3
- pulumi_azure_native/azurefleet/get_fleet.py +2 -2
- pulumi_azure_native/azurefleet/v20231101preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20240501preview/fleet.py +1 -1
- pulumi_azure_native/azurefleet/v20241101/__init__.py +12 -0
- pulumi_azure_native/azurefleet/v20241101/_enums.py +795 -0
- pulumi_azure_native/azurefleet/v20241101/_inputs.py +7209 -0
- pulumi_azure_native/azurefleet/v20241101/fleet.py +522 -0
- pulumi_azure_native/azurefleet/v20241101/get_fleet.py +305 -0
- pulumi_azure_native/azurefleet/v20241101/outputs.py +5832 -0
- pulumi_azure_native/codesigning/__init__.py +3 -0
- pulumi_azure_native/codesigning/certificate_profile.py +5 -1
- pulumi_azure_native/codesigning/code_signing_account.py +5 -1
- pulumi_azure_native/codesigning/get_certificate_profile.py +4 -0
- pulumi_azure_native/codesigning/get_code_signing_account.py +4 -0
- pulumi_azure_native/codesigning/v20240205preview/certificate_profile.py +1 -1
- pulumi_azure_native/codesigning/v20240205preview/code_signing_account.py +1 -1
- pulumi_azure_native/codesigning/v20240930preview/__init__.py +14 -0
- pulumi_azure_native/codesigning/v20240930preview/_enums.py +50 -0
- pulumi_azure_native/codesigning/v20240930preview/_inputs.py +59 -0
- pulumi_azure_native/codesigning/v20240930preview/certificate_profile.py +436 -0
- pulumi_azure_native/codesigning/v20240930preview/code_signing_account.py +278 -0
- pulumi_azure_native/codesigning/v20240930preview/get_certificate_profile.py +245 -0
- pulumi_azure_native/codesigning/v20240930preview/get_code_signing_account.py +188 -0
- pulumi_azure_native/codesigning/v20240930preview/outputs.py +154 -0
- pulumi_azure_native/containerinstance/__init__.py +8 -0
- pulumi_azure_native/containerinstance/_enums.py +1 -1
- pulumi_azure_native/containerinstance/_inputs.py +165 -0
- pulumi_azure_native/containerinstance/container_group.py +3 -3
- pulumi_azure_native/containerinstance/get_container_group.py +2 -2
- pulumi_azure_native/containerinstance/get_n_group.py +216 -0
- pulumi_azure_native/containerinstance/n_group.py +357 -0
- pulumi_azure_native/containerinstance/outputs.py +328 -0
- pulumi_azure_native/containerinstance/v20210301/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20210701/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230201preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20230501/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240501preview/container_group.py +1 -1
- pulumi_azure_native/containerinstance/v20240901preview/__init__.py +14 -0
- pulumi_azure_native/containerinstance/v20240901preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20240901preview/_inputs.py +2739 -0
- pulumi_azure_native/containerinstance/v20240901preview/container_group.py +746 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_container_group.py +386 -0
- pulumi_azure_native/containerinstance/v20240901preview/get_n_group.py +214 -0
- pulumi_azure_native/containerinstance/v20240901preview/n_group.py +355 -0
- pulumi_azure_native/containerinstance/v20240901preview/outputs.py +2792 -0
- pulumi_azure_native/containerinstance/v20241001preview/__init__.py +12 -0
- pulumi_azure_native/containerinstance/v20241001preview/_enums.py +127 -0
- pulumi_azure_native/containerinstance/v20241001preview/_inputs.py +2729 -0
- pulumi_azure_native/containerinstance/v20241001preview/container_group.py +775 -0
- pulumi_azure_native/containerinstance/v20241001preview/get_container_group.py +399 -0
- pulumi_azure_native/containerinstance/v20241001preview/outputs.py +2582 -0
- pulumi_azure_native/dbforpostgresql/__init__.py +3 -0
- pulumi_azure_native/dbforpostgresql/administrator.py +3 -3
- pulumi_azure_native/dbforpostgresql/backup.py +5 -1
- pulumi_azure_native/dbforpostgresql/configuration.py +3 -3
- pulumi_azure_native/dbforpostgresql/database.py +3 -3
- pulumi_azure_native/dbforpostgresql/firewall_rule.py +3 -3
- pulumi_azure_native/dbforpostgresql/get_administrator.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_backup.py +4 -0
- pulumi_azure_native/dbforpostgresql/get_configuration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_database.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_firewall_rule.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_get_private_dns_zone_suffix_execute.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_migration.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_server.py +2 -2
- pulumi_azure_native/dbforpostgresql/get_virtual_endpoint.py +2 -2
- pulumi_azure_native/dbforpostgresql/migration.py +3 -3
- pulumi_azure_native/dbforpostgresql/private_endpoint_connection.py +2 -2
- pulumi_azure_native/dbforpostgresql/server.py +3 -3
- pulumi_azure_native/dbforpostgresql/v20200214preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210410privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20210615privatepreview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220308preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20220501preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20221201/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20230601preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20231201preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/administrator.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/backup.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/configuration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/database.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/firewall_rule.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/migration.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/server.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240301preview/virtual_endpoint.py +1 -1
- pulumi_azure_native/dbforpostgresql/v20240801/__init__.py +29 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_enums.py +318 -0
- pulumi_azure_native/dbforpostgresql/v20240801/_inputs.py +1168 -0
- pulumi_azure_native/dbforpostgresql/v20240801/administrator.py +287 -0
- pulumi_azure_native/dbforpostgresql/v20240801/backup.py +220 -0
- pulumi_azure_native/dbforpostgresql/v20240801/configuration.py +338 -0
- pulumi_azure_native/dbforpostgresql/v20240801/database.py +248 -0
- pulumi_azure_native/dbforpostgresql/v20240801/firewall_rule.py +250 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_administrator.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_backup.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_configuration.py +271 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_database.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_firewall_rule.py +154 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_get_private_dns_zone_suffix_execute.py +66 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_migration.py +471 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_private_endpoint_connection.py +180 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_server.py +409 -0
- pulumi_azure_native/dbforpostgresql/v20240801/get_virtual_endpoint.py +167 -0
- pulumi_azure_native/dbforpostgresql/v20240801/migration.py +891 -0
- pulumi_azure_native/dbforpostgresql/v20240801/outputs.py +1907 -0
- pulumi_azure_native/dbforpostgresql/v20240801/private_endpoint_connection.py +252 -0
- pulumi_azure_native/dbforpostgresql/v20240801/server.py +778 -0
- pulumi_azure_native/dbforpostgresql/v20240801/virtual_endpoint.py +259 -0
- pulumi_azure_native/dbforpostgresql/virtual_endpoint.py +3 -3
- pulumi_azure_native/iotoperations/__init__.py +3 -0
- pulumi_azure_native/iotoperations/broker.py +3 -3
- pulumi_azure_native/iotoperations/broker_authentication.py +3 -3
- pulumi_azure_native/iotoperations/broker_authorization.py +3 -3
- pulumi_azure_native/iotoperations/broker_listener.py +3 -3
- pulumi_azure_native/iotoperations/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/get_broker.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authentication.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_authorization.py +2 -2
- pulumi_azure_native/iotoperations/get_broker_listener.py +2 -2
- pulumi_azure_native/iotoperations/get_instance.py +2 -2
- pulumi_azure_native/iotoperations/instance.py +3 -3
- pulumi_azure_native/iotoperations/v20240701preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/data_flow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240701preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authentication.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_authorization.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/broker_listener.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_endpoint.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/dataflow_profile.py +1 -1
- pulumi_azure_native/iotoperations/v20240815preview/instance.py +1 -1
- pulumi_azure_native/iotoperations/v20240915preview/__init__.py +26 -0
- pulumi_azure_native/iotoperations/v20240915preview/_enums.py +616 -0
- pulumi_azure_native/iotoperations/v20240915preview/_inputs.py +6404 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authentication.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_authorization.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/broker_listener.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow.py +272 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_endpoint.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/dataflow_profile.py +251 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authentication.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_authorization.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_broker_listener.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow.py +159 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_endpoint.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_dataflow_profile.py +154 -0
- pulumi_azure_native/iotoperations/v20240915preview/get_instance.py +188 -0
- pulumi_azure_native/iotoperations/v20240915preview/instance.py +317 -0
- pulumi_azure_native/iotoperations/v20240915preview/outputs.py +5389 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/RECORD +273 -164
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.64.3.dist-info → pulumi_azure_native-2.65.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetBrokerAuthorizationResult',
|
|
20
|
+
'AwaitableGetBrokerAuthorizationResult',
|
|
21
|
+
'get_broker_authorization',
|
|
22
|
+
'get_broker_authorization_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetBrokerAuthorizationResult:
|
|
27
|
+
"""
|
|
28
|
+
Instance broker authorizations resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, extended_location=None, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
32
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if name and not isinstance(name, str):
|
|
38
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "name", name)
|
|
40
|
+
if properties and not isinstance(properties, dict):
|
|
41
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
if system_data and not isinstance(system_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="extendedLocation")
|
|
52
|
+
def extended_location(self) -> 'outputs.ExtendedLocationResponse':
|
|
53
|
+
"""
|
|
54
|
+
Edge location of the resource.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "extended_location")
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def id(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "id")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter
|
|
68
|
+
def name(self) -> str:
|
|
69
|
+
"""
|
|
70
|
+
The name of the resource
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "name")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def properties(self) -> 'outputs.BrokerAuthorizationPropertiesResponse':
|
|
77
|
+
"""
|
|
78
|
+
The resource-specific properties for this resource.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "properties")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="systemData")
|
|
84
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
85
|
+
"""
|
|
86
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "system_data")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def type(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "type")
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class AwaitableGetBrokerAuthorizationResult(GetBrokerAuthorizationResult):
|
|
100
|
+
# pylint: disable=using-constant-test
|
|
101
|
+
def __await__(self):
|
|
102
|
+
if False:
|
|
103
|
+
yield self
|
|
104
|
+
return GetBrokerAuthorizationResult(
|
|
105
|
+
extended_location=self.extended_location,
|
|
106
|
+
id=self.id,
|
|
107
|
+
name=self.name,
|
|
108
|
+
properties=self.properties,
|
|
109
|
+
system_data=self.system_data,
|
|
110
|
+
type=self.type)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_broker_authorization(authorization_name: Optional[str] = None,
|
|
114
|
+
broker_name: Optional[str] = None,
|
|
115
|
+
instance_name: Optional[str] = None,
|
|
116
|
+
resource_group_name: Optional[str] = None,
|
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBrokerAuthorizationResult:
|
|
118
|
+
"""
|
|
119
|
+
Get a BrokerAuthorizationResource
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
:param str authorization_name: Name of Instance broker authorization resource
|
|
123
|
+
:param str broker_name: Name of broker.
|
|
124
|
+
:param str instance_name: Name of instance.
|
|
125
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
126
|
+
"""
|
|
127
|
+
__args__ = dict()
|
|
128
|
+
__args__['authorizationName'] = authorization_name
|
|
129
|
+
__args__['brokerName'] = broker_name
|
|
130
|
+
__args__['instanceName'] = instance_name
|
|
131
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
|
+
__ret__ = pulumi.runtime.invoke('azure-native:iotoperations/v20240915preview:getBrokerAuthorization', __args__, opts=opts, typ=GetBrokerAuthorizationResult).value
|
|
134
|
+
|
|
135
|
+
return AwaitableGetBrokerAuthorizationResult(
|
|
136
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
137
|
+
id=pulumi.get(__ret__, 'id'),
|
|
138
|
+
name=pulumi.get(__ret__, 'name'),
|
|
139
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
140
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
141
|
+
type=pulumi.get(__ret__, 'type'))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
@_utilities.lift_output_func(get_broker_authorization)
|
|
145
|
+
def get_broker_authorization_output(authorization_name: Optional[pulumi.Input[str]] = None,
|
|
146
|
+
broker_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBrokerAuthorizationResult]:
|
|
150
|
+
"""
|
|
151
|
+
Get a BrokerAuthorizationResource
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
:param str authorization_name: Name of Instance broker authorization resource
|
|
155
|
+
:param str broker_name: Name of broker.
|
|
156
|
+
:param str instance_name: Name of instance.
|
|
157
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
158
|
+
"""
|
|
159
|
+
...
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetBrokerListenerResult',
|
|
20
|
+
'AwaitableGetBrokerListenerResult',
|
|
21
|
+
'get_broker_listener',
|
|
22
|
+
'get_broker_listener_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetBrokerListenerResult:
|
|
27
|
+
"""
|
|
28
|
+
Instance broker resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, extended_location=None, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
32
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if name and not isinstance(name, str):
|
|
38
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "name", name)
|
|
40
|
+
if properties and not isinstance(properties, dict):
|
|
41
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
if system_data and not isinstance(system_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="extendedLocation")
|
|
52
|
+
def extended_location(self) -> 'outputs.ExtendedLocationResponse':
|
|
53
|
+
"""
|
|
54
|
+
Edge location of the resource.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "extended_location")
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def id(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "id")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter
|
|
68
|
+
def name(self) -> str:
|
|
69
|
+
"""
|
|
70
|
+
The name of the resource
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "name")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def properties(self) -> 'outputs.BrokerListenerPropertiesResponse':
|
|
77
|
+
"""
|
|
78
|
+
The resource-specific properties for this resource.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "properties")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="systemData")
|
|
84
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
85
|
+
"""
|
|
86
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "system_data")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def type(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "type")
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class AwaitableGetBrokerListenerResult(GetBrokerListenerResult):
|
|
100
|
+
# pylint: disable=using-constant-test
|
|
101
|
+
def __await__(self):
|
|
102
|
+
if False:
|
|
103
|
+
yield self
|
|
104
|
+
return GetBrokerListenerResult(
|
|
105
|
+
extended_location=self.extended_location,
|
|
106
|
+
id=self.id,
|
|
107
|
+
name=self.name,
|
|
108
|
+
properties=self.properties,
|
|
109
|
+
system_data=self.system_data,
|
|
110
|
+
type=self.type)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_broker_listener(broker_name: Optional[str] = None,
|
|
114
|
+
instance_name: Optional[str] = None,
|
|
115
|
+
listener_name: Optional[str] = None,
|
|
116
|
+
resource_group_name: Optional[str] = None,
|
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBrokerListenerResult:
|
|
118
|
+
"""
|
|
119
|
+
Get a BrokerListenerResource
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
:param str broker_name: Name of broker.
|
|
123
|
+
:param str instance_name: Name of instance.
|
|
124
|
+
:param str listener_name: Name of Instance broker listener resource
|
|
125
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
126
|
+
"""
|
|
127
|
+
__args__ = dict()
|
|
128
|
+
__args__['brokerName'] = broker_name
|
|
129
|
+
__args__['instanceName'] = instance_name
|
|
130
|
+
__args__['listenerName'] = listener_name
|
|
131
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
|
+
__ret__ = pulumi.runtime.invoke('azure-native:iotoperations/v20240915preview:getBrokerListener', __args__, opts=opts, typ=GetBrokerListenerResult).value
|
|
134
|
+
|
|
135
|
+
return AwaitableGetBrokerListenerResult(
|
|
136
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
137
|
+
id=pulumi.get(__ret__, 'id'),
|
|
138
|
+
name=pulumi.get(__ret__, 'name'),
|
|
139
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
140
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
141
|
+
type=pulumi.get(__ret__, 'type'))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
@_utilities.lift_output_func(get_broker_listener)
|
|
145
|
+
def get_broker_listener_output(broker_name: Optional[pulumi.Input[str]] = None,
|
|
146
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
listener_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBrokerListenerResult]:
|
|
150
|
+
"""
|
|
151
|
+
Get a BrokerListenerResource
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
:param str broker_name: Name of broker.
|
|
155
|
+
:param str instance_name: Name of instance.
|
|
156
|
+
:param str listener_name: Name of Instance broker listener resource
|
|
157
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
158
|
+
"""
|
|
159
|
+
...
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetDataflowResult',
|
|
20
|
+
'AwaitableGetDataflowResult',
|
|
21
|
+
'get_dataflow',
|
|
22
|
+
'get_dataflow_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDataflowResult:
|
|
27
|
+
"""
|
|
28
|
+
Instance dataflowProfile dataflow resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, extended_location=None, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
32
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if name and not isinstance(name, str):
|
|
38
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "name", name)
|
|
40
|
+
if properties and not isinstance(properties, dict):
|
|
41
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
if system_data and not isinstance(system_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="extendedLocation")
|
|
52
|
+
def extended_location(self) -> 'outputs.ExtendedLocationResponse':
|
|
53
|
+
"""
|
|
54
|
+
Edge location of the resource.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "extended_location")
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def id(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "id")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter
|
|
68
|
+
def name(self) -> str:
|
|
69
|
+
"""
|
|
70
|
+
The name of the resource
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "name")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def properties(self) -> 'outputs.DataflowPropertiesResponse':
|
|
77
|
+
"""
|
|
78
|
+
The resource-specific properties for this resource.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "properties")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="systemData")
|
|
84
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
85
|
+
"""
|
|
86
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "system_data")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def type(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "type")
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class AwaitableGetDataflowResult(GetDataflowResult):
|
|
100
|
+
# pylint: disable=using-constant-test
|
|
101
|
+
def __await__(self):
|
|
102
|
+
if False:
|
|
103
|
+
yield self
|
|
104
|
+
return GetDataflowResult(
|
|
105
|
+
extended_location=self.extended_location,
|
|
106
|
+
id=self.id,
|
|
107
|
+
name=self.name,
|
|
108
|
+
properties=self.properties,
|
|
109
|
+
system_data=self.system_data,
|
|
110
|
+
type=self.type)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_dataflow(dataflow_name: Optional[str] = None,
|
|
114
|
+
dataflow_profile_name: Optional[str] = None,
|
|
115
|
+
instance_name: Optional[str] = None,
|
|
116
|
+
resource_group_name: Optional[str] = None,
|
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataflowResult:
|
|
118
|
+
"""
|
|
119
|
+
Get a DataflowResource
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
:param str dataflow_name: Name of Instance dataflowProfile dataflow resource
|
|
123
|
+
:param str dataflow_profile_name: Name of Instance dataflowProfile resource
|
|
124
|
+
:param str instance_name: Name of instance.
|
|
125
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
126
|
+
"""
|
|
127
|
+
__args__ = dict()
|
|
128
|
+
__args__['dataflowName'] = dataflow_name
|
|
129
|
+
__args__['dataflowProfileName'] = dataflow_profile_name
|
|
130
|
+
__args__['instanceName'] = instance_name
|
|
131
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
|
+
__ret__ = pulumi.runtime.invoke('azure-native:iotoperations/v20240915preview:getDataflow', __args__, opts=opts, typ=GetDataflowResult).value
|
|
134
|
+
|
|
135
|
+
return AwaitableGetDataflowResult(
|
|
136
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
137
|
+
id=pulumi.get(__ret__, 'id'),
|
|
138
|
+
name=pulumi.get(__ret__, 'name'),
|
|
139
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
140
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
141
|
+
type=pulumi.get(__ret__, 'type'))
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
@_utilities.lift_output_func(get_dataflow)
|
|
145
|
+
def get_dataflow_output(dataflow_name: Optional[pulumi.Input[str]] = None,
|
|
146
|
+
dataflow_profile_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDataflowResult]:
|
|
150
|
+
"""
|
|
151
|
+
Get a DataflowResource
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
:param str dataflow_name: Name of Instance dataflowProfile dataflow resource
|
|
155
|
+
:param str dataflow_profile_name: Name of Instance dataflowProfile resource
|
|
156
|
+
:param str instance_name: Name of instance.
|
|
157
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
158
|
+
"""
|
|
159
|
+
...
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetDataflowEndpointResult',
|
|
20
|
+
'AwaitableGetDataflowEndpointResult',
|
|
21
|
+
'get_dataflow_endpoint',
|
|
22
|
+
'get_dataflow_endpoint_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetDataflowEndpointResult:
|
|
27
|
+
"""
|
|
28
|
+
Instance dataflowEndpoint resource
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, extended_location=None, id=None, name=None, properties=None, system_data=None, type=None):
|
|
31
|
+
if extended_location and not isinstance(extended_location, dict):
|
|
32
|
+
raise TypeError("Expected argument 'extended_location' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "extended_location", extended_location)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if name and not isinstance(name, str):
|
|
38
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
39
|
+
pulumi.set(__self__, "name", name)
|
|
40
|
+
if properties and not isinstance(properties, dict):
|
|
41
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
42
|
+
pulumi.set(__self__, "properties", properties)
|
|
43
|
+
if system_data and not isinstance(system_data, dict):
|
|
44
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
46
|
+
if type and not isinstance(type, str):
|
|
47
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
48
|
+
pulumi.set(__self__, "type", type)
|
|
49
|
+
|
|
50
|
+
@property
|
|
51
|
+
@pulumi.getter(name="extendedLocation")
|
|
52
|
+
def extended_location(self) -> 'outputs.ExtendedLocationResponse':
|
|
53
|
+
"""
|
|
54
|
+
Edge location of the resource.
|
|
55
|
+
"""
|
|
56
|
+
return pulumi.get(self, "extended_location")
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter
|
|
60
|
+
def id(self) -> str:
|
|
61
|
+
"""
|
|
62
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "id")
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter
|
|
68
|
+
def name(self) -> str:
|
|
69
|
+
"""
|
|
70
|
+
The name of the resource
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "name")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def properties(self) -> 'outputs.DataflowEndpointPropertiesResponse':
|
|
77
|
+
"""
|
|
78
|
+
The resource-specific properties for this resource.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "properties")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="systemData")
|
|
84
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
85
|
+
"""
|
|
86
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "system_data")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def type(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "type")
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
class AwaitableGetDataflowEndpointResult(GetDataflowEndpointResult):
|
|
100
|
+
# pylint: disable=using-constant-test
|
|
101
|
+
def __await__(self):
|
|
102
|
+
if False:
|
|
103
|
+
yield self
|
|
104
|
+
return GetDataflowEndpointResult(
|
|
105
|
+
extended_location=self.extended_location,
|
|
106
|
+
id=self.id,
|
|
107
|
+
name=self.name,
|
|
108
|
+
properties=self.properties,
|
|
109
|
+
system_data=self.system_data,
|
|
110
|
+
type=self.type)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
def get_dataflow_endpoint(dataflow_endpoint_name: Optional[str] = None,
|
|
114
|
+
instance_name: Optional[str] = None,
|
|
115
|
+
resource_group_name: Optional[str] = None,
|
|
116
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataflowEndpointResult:
|
|
117
|
+
"""
|
|
118
|
+
Get a DataflowEndpointResource
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
:param str dataflow_endpoint_name: Name of Instance dataflowEndpoint resource
|
|
122
|
+
:param str instance_name: Name of instance.
|
|
123
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
124
|
+
"""
|
|
125
|
+
__args__ = dict()
|
|
126
|
+
__args__['dataflowEndpointName'] = dataflow_endpoint_name
|
|
127
|
+
__args__['instanceName'] = instance_name
|
|
128
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
129
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
130
|
+
__ret__ = pulumi.runtime.invoke('azure-native:iotoperations/v20240915preview:getDataflowEndpoint', __args__, opts=opts, typ=GetDataflowEndpointResult).value
|
|
131
|
+
|
|
132
|
+
return AwaitableGetDataflowEndpointResult(
|
|
133
|
+
extended_location=pulumi.get(__ret__, 'extended_location'),
|
|
134
|
+
id=pulumi.get(__ret__, 'id'),
|
|
135
|
+
name=pulumi.get(__ret__, 'name'),
|
|
136
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
137
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
138
|
+
type=pulumi.get(__ret__, 'type'))
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
@_utilities.lift_output_func(get_dataflow_endpoint)
|
|
142
|
+
def get_dataflow_endpoint_output(dataflow_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
143
|
+
instance_name: Optional[pulumi.Input[str]] = None,
|
|
144
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
145
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDataflowEndpointResult]:
|
|
146
|
+
"""
|
|
147
|
+
Get a DataflowEndpointResource
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
:param str dataflow_endpoint_name: Name of Instance dataflowEndpoint resource
|
|
151
|
+
:param str instance_name: Name of instance.
|
|
152
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
153
|
+
"""
|
|
154
|
+
...
|