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,616 @@
|
|
|
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
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'BrokerAuthenticationMethod',
|
|
9
|
+
'BrokerMemoryProfile',
|
|
10
|
+
'BrokerProtocolType',
|
|
11
|
+
'BrokerResourceDefinitionMethods',
|
|
12
|
+
'CertManagerIssuerKind',
|
|
13
|
+
'CloudEventAttributeType',
|
|
14
|
+
'DataLakeStorageAuthMethod',
|
|
15
|
+
'DataflowEndpointAuthenticationSaslType',
|
|
16
|
+
'DataflowEndpointFabricPathType',
|
|
17
|
+
'DataflowEndpointKafkaAcks',
|
|
18
|
+
'DataflowEndpointKafkaCompression',
|
|
19
|
+
'DataflowEndpointKafkaPartitionStrategy',
|
|
20
|
+
'DataflowMappingType',
|
|
21
|
+
'EndpointType',
|
|
22
|
+
'ExtendedLocationType',
|
|
23
|
+
'FilterType',
|
|
24
|
+
'KafkaAuthMethod',
|
|
25
|
+
'ManagedServiceIdentityType',
|
|
26
|
+
'MqttAuthMethod',
|
|
27
|
+
'MqttRetainType',
|
|
28
|
+
'OperationType',
|
|
29
|
+
'OperationalMode',
|
|
30
|
+
'OperatorValues',
|
|
31
|
+
'PrivateKeyAlgorithm',
|
|
32
|
+
'PrivateKeyRotationPolicy',
|
|
33
|
+
'ServiceType',
|
|
34
|
+
'SourceSerializationFormat',
|
|
35
|
+
'StateStoreResourceDefinitionMethods',
|
|
36
|
+
'StateStoreResourceKeyTypes',
|
|
37
|
+
'SubscriberMessageDropStrategy',
|
|
38
|
+
'TlsCertMethodMode',
|
|
39
|
+
'TransformationSerializationFormat',
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class BrokerAuthenticationMethod(str, Enum):
|
|
44
|
+
"""
|
|
45
|
+
Custom authentication configuration.
|
|
46
|
+
"""
|
|
47
|
+
CUSTOM = "Custom"
|
|
48
|
+
"""
|
|
49
|
+
Custom authentication configuration.
|
|
50
|
+
"""
|
|
51
|
+
SERVICE_ACCOUNT_TOKEN = "ServiceAccountToken"
|
|
52
|
+
"""
|
|
53
|
+
ServiceAccountToken authentication configuration.
|
|
54
|
+
"""
|
|
55
|
+
X509 = "X509"
|
|
56
|
+
"""
|
|
57
|
+
X.509 authentication configuration.
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
class BrokerMemoryProfile(str, Enum):
|
|
62
|
+
"""
|
|
63
|
+
Memory profile of Broker.
|
|
64
|
+
"""
|
|
65
|
+
TINY = "Tiny"
|
|
66
|
+
"""
|
|
67
|
+
Tiny memory profile.
|
|
68
|
+
"""
|
|
69
|
+
LOW = "Low"
|
|
70
|
+
"""
|
|
71
|
+
Low memory profile.
|
|
72
|
+
"""
|
|
73
|
+
MEDIUM = "Medium"
|
|
74
|
+
"""
|
|
75
|
+
Medium memory profile.
|
|
76
|
+
"""
|
|
77
|
+
HIGH = "High"
|
|
78
|
+
"""
|
|
79
|
+
High memory profile.
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
class BrokerProtocolType(str, Enum):
|
|
84
|
+
"""
|
|
85
|
+
Enable or disable websockets.
|
|
86
|
+
"""
|
|
87
|
+
MQTT = "Mqtt"
|
|
88
|
+
"""
|
|
89
|
+
protocol broker
|
|
90
|
+
"""
|
|
91
|
+
WEB_SOCKETS = "WebSockets"
|
|
92
|
+
"""
|
|
93
|
+
protocol websocket
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class BrokerResourceDefinitionMethods(str, Enum):
|
|
98
|
+
"""
|
|
99
|
+
Give access for a Broker method (i.e., Connect, Subscribe, or Publish).
|
|
100
|
+
"""
|
|
101
|
+
CONNECT = "Connect"
|
|
102
|
+
"""
|
|
103
|
+
Allowed Connecting to Broker
|
|
104
|
+
"""
|
|
105
|
+
PUBLISH = "Publish"
|
|
106
|
+
"""
|
|
107
|
+
Allowed Publishing to Broker
|
|
108
|
+
"""
|
|
109
|
+
SUBSCRIBE = "Subscribe"
|
|
110
|
+
"""
|
|
111
|
+
Allowed Subscribing to Broker
|
|
112
|
+
"""
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
class CertManagerIssuerKind(str, Enum):
|
|
116
|
+
"""
|
|
117
|
+
kind of issuer (Issuer or ClusterIssuer).
|
|
118
|
+
"""
|
|
119
|
+
ISSUER = "Issuer"
|
|
120
|
+
"""
|
|
121
|
+
Issuer kind.
|
|
122
|
+
"""
|
|
123
|
+
CLUSTER_ISSUER = "ClusterIssuer"
|
|
124
|
+
"""
|
|
125
|
+
ClusterIssuer kind.
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
class CloudEventAttributeType(str, Enum):
|
|
130
|
+
"""
|
|
131
|
+
Cloud event mapping config.
|
|
132
|
+
"""
|
|
133
|
+
PROPAGATE = "Propagate"
|
|
134
|
+
"""
|
|
135
|
+
Propagate type
|
|
136
|
+
"""
|
|
137
|
+
CREATE_OR_REMAP = "CreateOrRemap"
|
|
138
|
+
"""
|
|
139
|
+
CreateOrRemap type
|
|
140
|
+
"""
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class DataLakeStorageAuthMethod(str, Enum):
|
|
144
|
+
"""
|
|
145
|
+
Mode of Authentication.
|
|
146
|
+
"""
|
|
147
|
+
SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
|
|
148
|
+
"""
|
|
149
|
+
SystemAssignedManagedIdentity type
|
|
150
|
+
"""
|
|
151
|
+
USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
|
|
152
|
+
"""
|
|
153
|
+
UserAssignedManagedIdentity type
|
|
154
|
+
"""
|
|
155
|
+
ACCESS_TOKEN = "AccessToken"
|
|
156
|
+
"""
|
|
157
|
+
AccessToken Option
|
|
158
|
+
"""
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class DataflowEndpointAuthenticationSaslType(str, Enum):
|
|
162
|
+
"""
|
|
163
|
+
Type of SASL authentication. Can be PLAIN, SCRAM-SHA-256, or SCRAM-SHA-512.
|
|
164
|
+
"""
|
|
165
|
+
PLAIN = "Plain"
|
|
166
|
+
"""
|
|
167
|
+
PLAIN Type
|
|
168
|
+
"""
|
|
169
|
+
SCRAM_SHA256 = "ScramSha256"
|
|
170
|
+
"""
|
|
171
|
+
SCRAM_SHA_256 Type
|
|
172
|
+
"""
|
|
173
|
+
SCRAM_SHA512 = "ScramSha512"
|
|
174
|
+
"""
|
|
175
|
+
SCRAM_SHA_512 Type
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
class DataflowEndpointFabricPathType(str, Enum):
|
|
180
|
+
"""
|
|
181
|
+
Type of location of the data in the workspace. Can be either tables or files.
|
|
182
|
+
"""
|
|
183
|
+
FILES = "Files"
|
|
184
|
+
"""
|
|
185
|
+
FILES Type
|
|
186
|
+
"""
|
|
187
|
+
TABLES = "Tables"
|
|
188
|
+
"""
|
|
189
|
+
TABLES Type
|
|
190
|
+
"""
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
class DataflowEndpointKafkaAcks(str, Enum):
|
|
194
|
+
"""
|
|
195
|
+
Kafka acks. Can be all, one, or zero. No effect if the endpoint is used as a source.
|
|
196
|
+
"""
|
|
197
|
+
ZERO = "Zero"
|
|
198
|
+
"""
|
|
199
|
+
ZERO Option
|
|
200
|
+
"""
|
|
201
|
+
ONE = "One"
|
|
202
|
+
"""
|
|
203
|
+
ONE Option
|
|
204
|
+
"""
|
|
205
|
+
ALL = "All"
|
|
206
|
+
"""
|
|
207
|
+
ALL Option
|
|
208
|
+
"""
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
class DataflowEndpointKafkaCompression(str, Enum):
|
|
212
|
+
"""
|
|
213
|
+
Compression. Can be none, gzip, lz4, or snappy. No effect if the endpoint is used as a source.
|
|
214
|
+
"""
|
|
215
|
+
NONE = "None"
|
|
216
|
+
"""
|
|
217
|
+
NONE Option
|
|
218
|
+
"""
|
|
219
|
+
GZIP = "Gzip"
|
|
220
|
+
"""
|
|
221
|
+
Gzip Option
|
|
222
|
+
"""
|
|
223
|
+
SNAPPY = "Snappy"
|
|
224
|
+
"""
|
|
225
|
+
SNAPPY Option
|
|
226
|
+
"""
|
|
227
|
+
LZ4 = "Lz4"
|
|
228
|
+
"""
|
|
229
|
+
LZ4 Option
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
class DataflowEndpointKafkaPartitionStrategy(str, Enum):
|
|
234
|
+
"""
|
|
235
|
+
Partition handling strategy. Can be default or static. No effect if the endpoint is used as a source.
|
|
236
|
+
"""
|
|
237
|
+
DEFAULT = "Default"
|
|
238
|
+
"""
|
|
239
|
+
Default: Assigns messages to random partitions, using a round-robin algorithm.
|
|
240
|
+
"""
|
|
241
|
+
STATIC = "Static"
|
|
242
|
+
"""
|
|
243
|
+
Static: Assigns messages to a fixed partition number that's derived from the instance ID of the dataflow.
|
|
244
|
+
"""
|
|
245
|
+
TOPIC = "Topic"
|
|
246
|
+
"""
|
|
247
|
+
TOPIC Option
|
|
248
|
+
"""
|
|
249
|
+
PROPERTY = "Property"
|
|
250
|
+
"""
|
|
251
|
+
PROPERTY Option
|
|
252
|
+
"""
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
class DataflowMappingType(str, Enum):
|
|
256
|
+
"""
|
|
257
|
+
Type of transformation.
|
|
258
|
+
"""
|
|
259
|
+
NEW_PROPERTIES = "NewProperties"
|
|
260
|
+
"""
|
|
261
|
+
New Properties type
|
|
262
|
+
"""
|
|
263
|
+
RENAME = "Rename"
|
|
264
|
+
"""
|
|
265
|
+
Rename type
|
|
266
|
+
"""
|
|
267
|
+
COMPUTE = "Compute"
|
|
268
|
+
"""
|
|
269
|
+
Compute type
|
|
270
|
+
"""
|
|
271
|
+
PASS_THROUGH = "PassThrough"
|
|
272
|
+
"""
|
|
273
|
+
Pass-through type
|
|
274
|
+
"""
|
|
275
|
+
BUILT_IN_FUNCTION = "BuiltInFunction"
|
|
276
|
+
"""
|
|
277
|
+
Built in function type
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
class EndpointType(str, Enum):
|
|
282
|
+
"""
|
|
283
|
+
Endpoint Type.
|
|
284
|
+
"""
|
|
285
|
+
DATA_EXPLORER = "DataExplorer"
|
|
286
|
+
"""
|
|
287
|
+
Azure Data Explorer Type
|
|
288
|
+
"""
|
|
289
|
+
DATA_LAKE_STORAGE = "DataLakeStorage"
|
|
290
|
+
"""
|
|
291
|
+
Azure Data Lake Type
|
|
292
|
+
"""
|
|
293
|
+
FABRIC_ONE_LAKE = "FabricOneLake"
|
|
294
|
+
"""
|
|
295
|
+
Microsoft Fabric Type
|
|
296
|
+
"""
|
|
297
|
+
KAFKA = "Kafka"
|
|
298
|
+
"""
|
|
299
|
+
Kafka Type
|
|
300
|
+
"""
|
|
301
|
+
LOCAL_STORAGE = "LocalStorage"
|
|
302
|
+
"""
|
|
303
|
+
Local Storage Type
|
|
304
|
+
"""
|
|
305
|
+
MQTT = "Mqtt"
|
|
306
|
+
"""
|
|
307
|
+
Broker Type
|
|
308
|
+
"""
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
class ExtendedLocationType(str, Enum):
|
|
312
|
+
"""
|
|
313
|
+
Type of ExtendedLocation.
|
|
314
|
+
"""
|
|
315
|
+
CUSTOM_LOCATION = "CustomLocation"
|
|
316
|
+
"""
|
|
317
|
+
CustomLocation type
|
|
318
|
+
"""
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
class FilterType(str, Enum):
|
|
322
|
+
"""
|
|
323
|
+
The type of dataflow operation.
|
|
324
|
+
"""
|
|
325
|
+
FILTER = "Filter"
|
|
326
|
+
"""
|
|
327
|
+
Filter type
|
|
328
|
+
"""
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
class KafkaAuthMethod(str, Enum):
|
|
332
|
+
"""
|
|
333
|
+
Mode of Authentication.
|
|
334
|
+
"""
|
|
335
|
+
SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
|
|
336
|
+
"""
|
|
337
|
+
SystemAssignedManagedIdentity type
|
|
338
|
+
"""
|
|
339
|
+
USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
|
|
340
|
+
"""
|
|
341
|
+
UserAssignedManagedIdentity type
|
|
342
|
+
"""
|
|
343
|
+
SASL = "Sasl"
|
|
344
|
+
"""
|
|
345
|
+
Sasl Option
|
|
346
|
+
"""
|
|
347
|
+
X509_CERTIFICATE = "X509Certificate"
|
|
348
|
+
"""
|
|
349
|
+
x509Certificate Option
|
|
350
|
+
"""
|
|
351
|
+
ANONYMOUS = "Anonymous"
|
|
352
|
+
"""
|
|
353
|
+
Anonymous Option
|
|
354
|
+
"""
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class ManagedServiceIdentityType(str, Enum):
|
|
358
|
+
"""
|
|
359
|
+
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
360
|
+
"""
|
|
361
|
+
NONE = "None"
|
|
362
|
+
SYSTEM_ASSIGNED = "SystemAssigned"
|
|
363
|
+
USER_ASSIGNED = "UserAssigned"
|
|
364
|
+
SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned"
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class MqttAuthMethod(str, Enum):
|
|
368
|
+
"""
|
|
369
|
+
Mode of Authentication.
|
|
370
|
+
"""
|
|
371
|
+
SYSTEM_ASSIGNED_MANAGED_IDENTITY = "SystemAssignedManagedIdentity"
|
|
372
|
+
"""
|
|
373
|
+
SystemAssignedManagedIdentity type
|
|
374
|
+
"""
|
|
375
|
+
USER_ASSIGNED_MANAGED_IDENTITY = "UserAssignedManagedIdentity"
|
|
376
|
+
"""
|
|
377
|
+
UserAssignedManagedIdentity type
|
|
378
|
+
"""
|
|
379
|
+
SERVICE_ACCOUNT_TOKEN = "ServiceAccountToken"
|
|
380
|
+
"""
|
|
381
|
+
ServiceAccountToken Option
|
|
382
|
+
"""
|
|
383
|
+
X509_CERTIFICATE = "X509Certificate"
|
|
384
|
+
"""
|
|
385
|
+
x509Certificate Option
|
|
386
|
+
"""
|
|
387
|
+
ANONYMOUS = "Anonymous"
|
|
388
|
+
"""
|
|
389
|
+
Anonymous Option
|
|
390
|
+
"""
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class MqttRetainType(str, Enum):
|
|
394
|
+
"""
|
|
395
|
+
Whether or not to keep the retain setting.
|
|
396
|
+
"""
|
|
397
|
+
KEEP = "Keep"
|
|
398
|
+
"""
|
|
399
|
+
Retain the messages.
|
|
400
|
+
"""
|
|
401
|
+
NEVER = "Never"
|
|
402
|
+
"""
|
|
403
|
+
Never retain messages.
|
|
404
|
+
"""
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
class OperationType(str, Enum):
|
|
408
|
+
"""
|
|
409
|
+
Type of operation.
|
|
410
|
+
"""
|
|
411
|
+
SOURCE = "Source"
|
|
412
|
+
"""
|
|
413
|
+
Dataflow Source Operation
|
|
414
|
+
"""
|
|
415
|
+
DESTINATION = "Destination"
|
|
416
|
+
"""
|
|
417
|
+
Dataflow Destination Operation
|
|
418
|
+
"""
|
|
419
|
+
BUILT_IN_TRANSFORMATION = "BuiltInTransformation"
|
|
420
|
+
"""
|
|
421
|
+
Dataflow BuiltIn Transformation Operation
|
|
422
|
+
"""
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class OperationalMode(str, Enum):
|
|
426
|
+
"""
|
|
427
|
+
Mode for TLS.
|
|
428
|
+
"""
|
|
429
|
+
ENABLED = "Enabled"
|
|
430
|
+
"""
|
|
431
|
+
Enabled is equivalent to True
|
|
432
|
+
"""
|
|
433
|
+
DISABLED = "Disabled"
|
|
434
|
+
"""
|
|
435
|
+
Disabled is equivalent to False.
|
|
436
|
+
"""
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
class OperatorValues(str, Enum):
|
|
440
|
+
"""
|
|
441
|
+
operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
|
|
442
|
+
"""
|
|
443
|
+
IN_ = "In"
|
|
444
|
+
"""
|
|
445
|
+
In operator.
|
|
446
|
+
"""
|
|
447
|
+
NOT_IN = "NotIn"
|
|
448
|
+
"""
|
|
449
|
+
NotIn operator.
|
|
450
|
+
"""
|
|
451
|
+
EXISTS = "Exists"
|
|
452
|
+
"""
|
|
453
|
+
Exists operator.
|
|
454
|
+
"""
|
|
455
|
+
DOES_NOT_EXIST = "DoesNotExist"
|
|
456
|
+
"""
|
|
457
|
+
DoesNotExist operator.
|
|
458
|
+
"""
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
class PrivateKeyAlgorithm(str, Enum):
|
|
462
|
+
"""
|
|
463
|
+
algorithm for private key.
|
|
464
|
+
"""
|
|
465
|
+
EC256 = "Ec256"
|
|
466
|
+
"""
|
|
467
|
+
Algorithm - ec256.
|
|
468
|
+
"""
|
|
469
|
+
EC384 = "Ec384"
|
|
470
|
+
"""
|
|
471
|
+
Algorithm - ec384.
|
|
472
|
+
"""
|
|
473
|
+
EC521 = "Ec521"
|
|
474
|
+
"""
|
|
475
|
+
Algorithm - ec521.
|
|
476
|
+
"""
|
|
477
|
+
ED25519 = "Ed25519"
|
|
478
|
+
"""
|
|
479
|
+
Algorithm - ed25519.
|
|
480
|
+
"""
|
|
481
|
+
RSA2048 = "Rsa2048"
|
|
482
|
+
"""
|
|
483
|
+
Algorithm - rsa2048.
|
|
484
|
+
"""
|
|
485
|
+
RSA4096 = "Rsa4096"
|
|
486
|
+
"""
|
|
487
|
+
Algorithm - rsa4096.
|
|
488
|
+
"""
|
|
489
|
+
RSA8192 = "Rsa8192"
|
|
490
|
+
"""
|
|
491
|
+
Algorithm - rsa8192.
|
|
492
|
+
"""
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
class PrivateKeyRotationPolicy(str, Enum):
|
|
496
|
+
"""
|
|
497
|
+
cert-manager private key rotationPolicy.
|
|
498
|
+
"""
|
|
499
|
+
ALWAYS = "Always"
|
|
500
|
+
"""
|
|
501
|
+
Rotation Policy - Always.
|
|
502
|
+
"""
|
|
503
|
+
NEVER = "Never"
|
|
504
|
+
"""
|
|
505
|
+
Rotation Policy - Never.
|
|
506
|
+
"""
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
class ServiceType(str, Enum):
|
|
510
|
+
"""
|
|
511
|
+
Kubernetes Service type of this listener.
|
|
512
|
+
"""
|
|
513
|
+
CLUSTER_IP = "ClusterIp"
|
|
514
|
+
"""
|
|
515
|
+
Cluster IP Service.
|
|
516
|
+
"""
|
|
517
|
+
LOAD_BALANCER = "LoadBalancer"
|
|
518
|
+
"""
|
|
519
|
+
Load Balancer Service.
|
|
520
|
+
"""
|
|
521
|
+
NODE_PORT = "NodePort"
|
|
522
|
+
"""
|
|
523
|
+
Node Port Service.
|
|
524
|
+
"""
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
class SourceSerializationFormat(str, Enum):
|
|
528
|
+
"""
|
|
529
|
+
Content is a JSON Schema. Allowed: JSON Schema/draft-7.
|
|
530
|
+
"""
|
|
531
|
+
JSON = "Json"
|
|
532
|
+
"""
|
|
533
|
+
JSON Format
|
|
534
|
+
"""
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
class StateStoreResourceDefinitionMethods(str, Enum):
|
|
538
|
+
"""
|
|
539
|
+
Give access for `Read`, `Write` and `ReadWrite` access level.
|
|
540
|
+
"""
|
|
541
|
+
READ = "Read"
|
|
542
|
+
"""
|
|
543
|
+
Get/KeyNotify from Store
|
|
544
|
+
"""
|
|
545
|
+
WRITE = "Write"
|
|
546
|
+
"""
|
|
547
|
+
Set/Delete in Store
|
|
548
|
+
"""
|
|
549
|
+
READ_WRITE = "ReadWrite"
|
|
550
|
+
"""
|
|
551
|
+
Allowed all operations on Store - Get/KeyNotify/Set/Delete
|
|
552
|
+
"""
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
class StateStoreResourceKeyTypes(str, Enum):
|
|
556
|
+
"""
|
|
557
|
+
Allowed keyTypes pattern, string, binary. The key type used for matching, for example pattern tries to match the key to a glob-style pattern and string checks key is equal to value provided in keys.
|
|
558
|
+
"""
|
|
559
|
+
PATTERN = "Pattern"
|
|
560
|
+
"""
|
|
561
|
+
Key type - pattern
|
|
562
|
+
"""
|
|
563
|
+
STRING = "String"
|
|
564
|
+
"""
|
|
565
|
+
Key type - string
|
|
566
|
+
"""
|
|
567
|
+
BINARY = "Binary"
|
|
568
|
+
"""
|
|
569
|
+
Key type - binary
|
|
570
|
+
"""
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class SubscriberMessageDropStrategy(str, Enum):
|
|
574
|
+
"""
|
|
575
|
+
The strategy to use for dropping messages from the queue.
|
|
576
|
+
"""
|
|
577
|
+
NONE = "None"
|
|
578
|
+
"""
|
|
579
|
+
Messages are never dropped.
|
|
580
|
+
"""
|
|
581
|
+
DROP_OLDEST = "DropOldest"
|
|
582
|
+
"""
|
|
583
|
+
The oldest message is dropped.
|
|
584
|
+
"""
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
class TlsCertMethodMode(str, Enum):
|
|
588
|
+
"""
|
|
589
|
+
Mode of TLS server certificate management.
|
|
590
|
+
"""
|
|
591
|
+
AUTOMATIC = "Automatic"
|
|
592
|
+
"""
|
|
593
|
+
Automatic TLS server certificate configuration.
|
|
594
|
+
"""
|
|
595
|
+
MANUAL = "Manual"
|
|
596
|
+
"""
|
|
597
|
+
Manual TLS server certificate configuration.
|
|
598
|
+
"""
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
class TransformationSerializationFormat(str, Enum):
|
|
602
|
+
"""
|
|
603
|
+
Serialization format. Optional; defaults to JSON. Allowed value JSON Schema/draft-7, Parquet. Default: Json
|
|
604
|
+
"""
|
|
605
|
+
DELTA = "Delta"
|
|
606
|
+
"""
|
|
607
|
+
Delta Format
|
|
608
|
+
"""
|
|
609
|
+
JSON = "Json"
|
|
610
|
+
"""
|
|
611
|
+
JSON Format
|
|
612
|
+
"""
|
|
613
|
+
PARQUET = "Parquet"
|
|
614
|
+
"""
|
|
615
|
+
Parquet Format
|
|
616
|
+
"""
|