pulumi-azure-native 3.3.0a1745626403__py3-none-any.whl → 3.3.0a1745856299__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 +11 -0
- pulumi_azure_native/containerservice/__init__.py +3 -0
- pulumi_azure_native/containerservice/_enums.py +53 -0
- pulumi_azure_native/containerservice/_inputs.py +298 -0
- pulumi_azure_native/containerservice/agent_pool.py +3 -3
- pulumi_azure_native/containerservice/get_agent_pool.py +2 -2
- pulumi_azure_native/containerservice/get_load_balancer.py +2 -2
- pulumi_azure_native/containerservice/get_maintenance_configuration.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster.py +2 -2
- pulumi_azure_native/containerservice/get_managed_cluster_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_namespace.py +209 -0
- pulumi_azure_native/containerservice/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/containerservice/get_snapshot.py +2 -2
- pulumi_azure_native/containerservice/get_trusted_access_role_binding.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_admin_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_monitoring_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_managed_cluster_user_credentials.py +2 -2
- pulumi_azure_native/containerservice/list_namespace_credential.py +97 -0
- pulumi_azure_native/containerservice/load_balancer.py +3 -3
- pulumi_azure_native/containerservice/maintenance_configuration.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster.py +3 -3
- pulumi_azure_native/containerservice/managed_cluster_snapshot.py +3 -3
- pulumi_azure_native/containerservice/namespace.py +303 -0
- pulumi_azure_native/containerservice/outputs.py +243 -0
- pulumi_azure_native/containerservice/private_endpoint_connection.py +3 -3
- pulumi_azure_native/containerservice/snapshot.py +3 -3
- pulumi_azure_native/containerservice/trusted_access_role_binding.py +3 -3
- pulumi_azure_native/cosmosdb/__init__.py +20 -0
- pulumi_azure_native/cosmosdb/_enums.py +26 -0
- pulumi_azure_native/cosmosdb/_inputs.py +98 -0
- pulumi_azure_native/cosmosdb/cassandra_cluster.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_data_center.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_keyspace.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_table.py +3 -3
- pulumi_azure_native/cosmosdb/cassandra_resource_cassandra_view.py +3 -3
- pulumi_azure_native/cosmosdb/database_account.py +3 -3
- pulumi_azure_native/cosmosdb/database_account_cassandra_keyspace.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_cassandra_table.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_gremlin_graph.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_collection.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_mongo_db_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_container.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_sql_database.py +1 -1
- pulumi_azure_native/cosmosdb/database_account_table.py +1 -1
- pulumi_azure_native/cosmosdb/fleet.py +251 -0
- pulumi_azure_native/cosmosdb/fleet_analytic.py +273 -0
- pulumi_azure_native/cosmosdb/fleetspace.py +274 -0
- pulumi_azure_native/cosmosdb/fleetspace_account.py +293 -0
- pulumi_azure_native/cosmosdb/get_cassandra_cluster.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_data_center.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_keyspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_cassandra_resource_cassandra_view.py +2 -2
- pulumi_azure_native/cosmosdb/get_database_account.py +2 -2
- pulumi_azure_native/cosmosdb/get_fleet.py +189 -0
- pulumi_azure_native/cosmosdb/get_fleet_analytic.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace.py +195 -0
- pulumi_azure_native/cosmosdb/get_fleetspace_account.py +201 -0
- pulumi_azure_native/cosmosdb/get_graph_resource_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_graph.py +2 -2
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_gremlin_resource_gremlin_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_collection.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_db_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_db_resource_mongo_user_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_assignment.py +209 -0
- pulumi_azure_native/cosmosdb/get_mongo_mi_resource_mongo_mi_role_definition.py +195 -0
- pulumi_azure_native/cosmosdb/get_notebook_workspace.py +2 -2
- pulumi_azure_native/cosmosdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/cosmosdb/get_service.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_container.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_database.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_assignment.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_role_definition.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_stored_procedure.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_trigger.py +2 -2
- pulumi_azure_native/cosmosdb/get_sql_resource_sql_user_defined_function.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table.py +2 -2
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_assignment.py +4 -0
- pulumi_azure_native/cosmosdb/get_table_resource_table_role_definition.py +4 -0
- pulumi_azure_native/cosmosdb/get_throughput_pool.py +2 -2
- pulumi_azure_native/cosmosdb/get_throughput_pool_account.py +2 -2
- pulumi_azure_native/cosmosdb/graph_resource_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_database.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_graph.py +3 -3
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/gremlin_resource_gremlin_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/list_database_account_connection_strings.py +2 -2
- pulumi_azure_native/cosmosdb/list_database_account_keys.py +2 -2
- pulumi_azure_native/cosmosdb/list_notebook_workspace_connection_info.py +2 -2
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_collection.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_db_database.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_db_resource_mongo_user_definition.py +3 -3
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_assignment.py +301 -0
- pulumi_azure_native/cosmosdb/mongo_mi_resource_mongo_mi_role_definition.py +332 -0
- pulumi_azure_native/cosmosdb/notebook_workspace.py +3 -3
- pulumi_azure_native/cosmosdb/outputs.py +83 -0
- pulumi_azure_native/cosmosdb/private_endpoint_connection.py +3 -3
- pulumi_azure_native/cosmosdb/service.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_container.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_database.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_assignment.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_role_definition.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_stored_procedure.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_trigger.py +3 -3
- pulumi_azure_native/cosmosdb/sql_resource_sql_user_defined_function.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table.py +3 -3
- pulumi_azure_native/cosmosdb/table_resource_table_role_assignment.py +5 -1
- pulumi_azure_native/cosmosdb/table_resource_table_role_definition.py +5 -1
- pulumi_azure_native/cosmosdb/throughput_pool.py +3 -3
- pulumi_azure_native/cosmosdb/throughput_pool_account.py +3 -3
- pulumi_azure_native/datafactory/_enums.py +8 -0
- pulumi_azure_native/datafactory/_inputs.py +322 -21
- pulumi_azure_native/datafactory/outputs.py +222 -15
- pulumi_azure_native/devcenter/__init__.py +2 -0
- pulumi_azure_native/devcenter/attached_network_by_dev_center.py +3 -3
- pulumi_azure_native/devcenter/catalog.py +3 -3
- pulumi_azure_native/devcenter/dev_box_definition.py +3 -3
- pulumi_azure_native/devcenter/dev_center.py +3 -3
- pulumi_azure_native/devcenter/encryption_set.py +3 -3
- pulumi_azure_native/devcenter/environment_type.py +3 -3
- pulumi_azure_native/devcenter/gallery.py +3 -3
- pulumi_azure_native/devcenter/get_attached_network_by_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_customization_task_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_dev_box_definition.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center.py +2 -2
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_build_details.py +235 -0
- pulumi_azure_native/devcenter/get_dev_center_catalog_image_definition_error_details.py +103 -0
- pulumi_azure_native/devcenter/get_encryption_set.py +2 -2
- pulumi_azure_native/devcenter/get_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_gallery.py +2 -2
- pulumi_azure_native/devcenter/get_network_connection.py +2 -2
- pulumi_azure_native/devcenter/get_pool.py +2 -2
- pulumi_azure_native/devcenter/get_project.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_environment_definition_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_build_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_catalog_image_definition_error_details.py +4 -0
- pulumi_azure_native/devcenter/get_project_catalog_sync_error_details.py +2 -2
- pulumi_azure_native/devcenter/get_project_environment_type.py +2 -2
- pulumi_azure_native/devcenter/get_project_inherited_settings.py +2 -2
- pulumi_azure_native/devcenter/get_project_policy.py +2 -2
- pulumi_azure_native/devcenter/get_schedule.py +2 -2
- pulumi_azure_native/devcenter/list_skus_by_project.py +2 -2
- pulumi_azure_native/devcenter/network_connection.py +3 -3
- pulumi_azure_native/devcenter/pool.py +3 -3
- pulumi_azure_native/devcenter/project.py +3 -3
- pulumi_azure_native/devcenter/project_catalog.py +3 -3
- pulumi_azure_native/devcenter/project_environment_type.py +3 -3
- pulumi_azure_native/devcenter/project_policy.py +3 -3
- pulumi_azure_native/devcenter/schedule.py +3 -3
- pulumi_azure_native/frontdoor/get_policy.py +2 -2
- pulumi_azure_native/frontdoor/policy.py +3 -3
- pulumi_azure_native/hybridcompute/gateway.py +3 -3
- pulumi_azure_native/hybridcompute/get_gateway.py +2 -2
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/networkcloud/agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/cluster.py +2 -2
- pulumi_azure_native/networkcloud/cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/console.py +2 -2
- pulumi_azure_native/networkcloud/get_agent_pool.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_bare_metal_machine_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_bmc_key_set.py +2 -2
- pulumi_azure_native/networkcloud/get_cloud_services_network.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_cluster_manager.py +2 -2
- pulumi_azure_native/networkcloud/get_console.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/get_kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/get_l2_network.py +2 -2
- pulumi_azure_native/networkcloud/get_l3_network.py +2 -2
- pulumi_azure_native/networkcloud/get_metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/get_rack.py +2 -2
- pulumi_azure_native/networkcloud/get_storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/get_trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/get_virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/get_volume.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster.py +2 -2
- pulumi_azure_native/networkcloud/kubernetes_cluster_feature.py +2 -2
- pulumi_azure_native/networkcloud/l2_network.py +2 -2
- pulumi_azure_native/networkcloud/l3_network.py +2 -2
- pulumi_azure_native/networkcloud/metrics_configuration.py +2 -2
- pulumi_azure_native/networkcloud/rack.py +2 -2
- pulumi_azure_native/networkcloud/storage_appliance.py +2 -2
- pulumi_azure_native/networkcloud/trunked_network.py +2 -2
- pulumi_azure_native/networkcloud/virtual_machine.py +2 -2
- pulumi_azure_native/networkcloud/volume.py +2 -2
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_subscription_id_and_event_id.py +2 -2
- pulumi_azure_native/resourcehealth/list_security_advisory_impacted_resource_by_tenant_id_and_event_id.py +2 -2
- pulumi_azure_native/resources/deployment.py +3 -3
- pulumi_azure_native/resources/deployment_at_management_group_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_subscription_scope.py +3 -3
- pulumi_azure_native/resources/deployment_at_tenant_scope.py +3 -3
- pulumi_azure_native/resources/get_deployment.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_management_group_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_subscription_scope.py +2 -2
- pulumi_azure_native/resources/get_deployment_at_tenant_scope.py +2 -2
- pulumi_azure_native/resources/get_resource.py +2 -2
- pulumi_azure_native/resources/get_resource_group.py +2 -2
- pulumi_azure_native/resources/get_tag_at_scope.py +2 -2
- pulumi_azure_native/resources/resource.py +3 -3
- pulumi_azure_native/resources/resource_group.py +3 -3
- pulumi_azure_native/resources/tag_at_scope.py +3 -3
- pulumi_azure_native/search/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/search/get_service.py +2 -2
- pulumi_azure_native/search/get_shared_private_link_resource.py +2 -2
- pulumi_azure_native/search/list_admin_key.py +2 -2
- pulumi_azure_native/search/list_query_key_by_search_service.py +2 -2
- pulumi_azure_native/search/private_endpoint_connection.py +3 -3
- pulumi_azure_native/search/service.py +3 -3
- pulumi_azure_native/search/shared_private_link_resource.py +3 -3
- pulumi_azure_native/weightsandbiases/get_instance.py +4 -0
- pulumi_azure_native/weightsandbiases/instance.py +5 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/RECORD +261 -236
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/WHEEL +1 -1
- {pulumi_azure_native-3.3.0a1745626403.dist-info → pulumi_azure_native-3.3.0a1745856299.dist-info}/top_level.txt +0 -0
|
@@ -2156,11 +2156,7 @@ class AmazonMWSSourceArgs:
|
|
|
2156
2156
|
if not MYPY:
|
|
2157
2157
|
class AmazonRdsForOracleLinkedServiceArgsDict(TypedDict):
|
|
2158
2158
|
"""
|
|
2159
|
-
AmazonRdsForOracle database.
|
|
2160
|
-
"""
|
|
2161
|
-
connection_string: Any
|
|
2162
|
-
"""
|
|
2163
|
-
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
|
|
2159
|
+
AmazonRdsForOracle database. This linked service has supported version property. The Version 1.0 is scheduled for deprecation while your pipeline will continue to run after EOL but without any bug fix or new features.
|
|
2164
2160
|
"""
|
|
2165
2161
|
type: pulumi.Input[str]
|
|
2166
2162
|
"""
|
|
@@ -2171,18 +2167,62 @@ if not MYPY:
|
|
|
2171
2167
|
"""
|
|
2172
2168
|
List of tags that can be used for describing the linked service.
|
|
2173
2169
|
"""
|
|
2170
|
+
authentication_type: NotRequired[pulumi.Input[Union[str, 'AmazonRdsForOracleAuthenticationType']]]
|
|
2171
|
+
"""
|
|
2172
|
+
Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
|
|
2173
|
+
"""
|
|
2174
2174
|
connect_via: NotRequired[pulumi.Input['IntegrationRuntimeReferenceArgsDict']]
|
|
2175
2175
|
"""
|
|
2176
2176
|
The integration runtime reference.
|
|
2177
2177
|
"""
|
|
2178
|
+
connection_string: NotRequired[Any]
|
|
2179
|
+
"""
|
|
2180
|
+
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
|
|
2181
|
+
"""
|
|
2182
|
+
crypto_checksum_client: NotRequired[Any]
|
|
2183
|
+
"""
|
|
2184
|
+
Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2185
|
+
"""
|
|
2186
|
+
crypto_checksum_types_client: NotRequired[Any]
|
|
2187
|
+
"""
|
|
2188
|
+
Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
|
|
2189
|
+
"""
|
|
2178
2190
|
description: NotRequired[pulumi.Input[str]]
|
|
2179
2191
|
"""
|
|
2180
2192
|
Linked service description.
|
|
2181
2193
|
"""
|
|
2194
|
+
enable_bulk_load: NotRequired[Any]
|
|
2195
|
+
"""
|
|
2196
|
+
Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2197
|
+
"""
|
|
2182
2198
|
encrypted_credential: NotRequired[pulumi.Input[str]]
|
|
2183
2199
|
"""
|
|
2184
2200
|
The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
|
|
2185
2201
|
"""
|
|
2202
|
+
encryption_client: NotRequired[Any]
|
|
2203
|
+
"""
|
|
2204
|
+
Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2205
|
+
"""
|
|
2206
|
+
encryption_types_client: NotRequired[Any]
|
|
2207
|
+
"""
|
|
2208
|
+
Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
|
|
2209
|
+
"""
|
|
2210
|
+
fetch_size: NotRequired[Any]
|
|
2211
|
+
"""
|
|
2212
|
+
Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
|
|
2213
|
+
"""
|
|
2214
|
+
fetch_tswtz_as_timestamp: NotRequired[Any]
|
|
2215
|
+
"""
|
|
2216
|
+
Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2217
|
+
"""
|
|
2218
|
+
initial_lob_fetch_size: NotRequired[Any]
|
|
2219
|
+
"""
|
|
2220
|
+
Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2221
|
+
"""
|
|
2222
|
+
initialization_string: NotRequired[Any]
|
|
2223
|
+
"""
|
|
2224
|
+
Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
|
|
2225
|
+
"""
|
|
2186
2226
|
parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgsDict']]]]
|
|
2187
2227
|
"""
|
|
2188
2228
|
Parameters for linked service.
|
|
@@ -2191,6 +2231,22 @@ if not MYPY:
|
|
|
2191
2231
|
"""
|
|
2192
2232
|
The Azure key vault secret reference of password in connection string.
|
|
2193
2233
|
"""
|
|
2234
|
+
server: NotRequired[Any]
|
|
2235
|
+
"""
|
|
2236
|
+
The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
|
|
2237
|
+
"""
|
|
2238
|
+
statement_cache_size: NotRequired[Any]
|
|
2239
|
+
"""
|
|
2240
|
+
Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2241
|
+
"""
|
|
2242
|
+
support_v1_data_types: NotRequired[Any]
|
|
2243
|
+
"""
|
|
2244
|
+
Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
|
|
2245
|
+
"""
|
|
2246
|
+
username: NotRequired[Any]
|
|
2247
|
+
"""
|
|
2248
|
+
The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
|
|
2249
|
+
"""
|
|
2194
2250
|
version: NotRequired[pulumi.Input[str]]
|
|
2195
2251
|
"""
|
|
2196
2252
|
Version of the linked service.
|
|
@@ -2201,57 +2257,102 @@ elif False:
|
|
|
2201
2257
|
@pulumi.input_type
|
|
2202
2258
|
class AmazonRdsForOracleLinkedServiceArgs:
|
|
2203
2259
|
def __init__(__self__, *,
|
|
2204
|
-
connection_string: Any,
|
|
2205
2260
|
type: pulumi.Input[str],
|
|
2206
2261
|
annotations: Optional[pulumi.Input[Sequence[Any]]] = None,
|
|
2262
|
+
authentication_type: Optional[pulumi.Input[Union[str, 'AmazonRdsForOracleAuthenticationType']]] = None,
|
|
2207
2263
|
connect_via: Optional[pulumi.Input['IntegrationRuntimeReferenceArgs']] = None,
|
|
2264
|
+
connection_string: Optional[Any] = None,
|
|
2265
|
+
crypto_checksum_client: Optional[Any] = None,
|
|
2266
|
+
crypto_checksum_types_client: Optional[Any] = None,
|
|
2208
2267
|
description: Optional[pulumi.Input[str]] = None,
|
|
2268
|
+
enable_bulk_load: Optional[Any] = None,
|
|
2209
2269
|
encrypted_credential: Optional[pulumi.Input[str]] = None,
|
|
2270
|
+
encryption_client: Optional[Any] = None,
|
|
2271
|
+
encryption_types_client: Optional[Any] = None,
|
|
2272
|
+
fetch_size: Optional[Any] = None,
|
|
2273
|
+
fetch_tswtz_as_timestamp: Optional[Any] = None,
|
|
2274
|
+
initial_lob_fetch_size: Optional[Any] = None,
|
|
2275
|
+
initialization_string: Optional[Any] = None,
|
|
2210
2276
|
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgs']]]] = None,
|
|
2211
2277
|
password: Optional[pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']]] = None,
|
|
2278
|
+
server: Optional[Any] = None,
|
|
2279
|
+
statement_cache_size: Optional[Any] = None,
|
|
2280
|
+
support_v1_data_types: Optional[Any] = None,
|
|
2281
|
+
username: Optional[Any] = None,
|
|
2212
2282
|
version: Optional[pulumi.Input[str]] = None):
|
|
2213
2283
|
"""
|
|
2214
|
-
AmazonRdsForOracle database.
|
|
2215
|
-
:param Any connection_string: The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
|
|
2284
|
+
AmazonRdsForOracle database. This linked service has supported version property. The Version 1.0 is scheduled for deprecation while your pipeline will continue to run after EOL but without any bug fix or new features.
|
|
2216
2285
|
:param pulumi.Input[str] type: Type of linked service.
|
|
2217
2286
|
Expected value is 'AmazonRdsForOracle'.
|
|
2218
2287
|
:param pulumi.Input[Sequence[Any]] annotations: List of tags that can be used for describing the linked service.
|
|
2288
|
+
:param pulumi.Input[Union[str, 'AmazonRdsForOracleAuthenticationType']] authentication_type: Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
|
|
2219
2289
|
:param pulumi.Input['IntegrationRuntimeReferenceArgs'] connect_via: The integration runtime reference.
|
|
2290
|
+
:param Any connection_string: The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
|
|
2291
|
+
:param Any crypto_checksum_client: Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2292
|
+
:param Any crypto_checksum_types_client: Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
|
|
2220
2293
|
:param pulumi.Input[str] description: Linked service description.
|
|
2294
|
+
:param Any enable_bulk_load: Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2221
2295
|
:param pulumi.Input[str] encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
|
|
2296
|
+
:param Any encryption_client: Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2297
|
+
:param Any encryption_types_client: Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
|
|
2298
|
+
:param Any fetch_size: Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
|
|
2299
|
+
:param Any fetch_tswtz_as_timestamp: Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2300
|
+
:param Any initial_lob_fetch_size: Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2301
|
+
:param Any initialization_string: Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
|
|
2222
2302
|
:param pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgs']]] parameters: Parameters for linked service.
|
|
2223
2303
|
:param pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']] password: The Azure key vault secret reference of password in connection string.
|
|
2304
|
+
:param Any server: The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
|
|
2305
|
+
:param Any statement_cache_size: Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2306
|
+
:param Any support_v1_data_types: Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
|
|
2307
|
+
:param Any username: The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
|
|
2224
2308
|
:param pulumi.Input[str] version: Version of the linked service.
|
|
2225
2309
|
"""
|
|
2226
|
-
pulumi.set(__self__, "connection_string", connection_string)
|
|
2227
2310
|
pulumi.set(__self__, "type", 'AmazonRdsForOracle')
|
|
2228
2311
|
if annotations is not None:
|
|
2229
2312
|
pulumi.set(__self__, "annotations", annotations)
|
|
2313
|
+
if authentication_type is not None:
|
|
2314
|
+
pulumi.set(__self__, "authentication_type", authentication_type)
|
|
2230
2315
|
if connect_via is not None:
|
|
2231
2316
|
pulumi.set(__self__, "connect_via", connect_via)
|
|
2317
|
+
if connection_string is not None:
|
|
2318
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
|
2319
|
+
if crypto_checksum_client is not None:
|
|
2320
|
+
pulumi.set(__self__, "crypto_checksum_client", crypto_checksum_client)
|
|
2321
|
+
if crypto_checksum_types_client is not None:
|
|
2322
|
+
pulumi.set(__self__, "crypto_checksum_types_client", crypto_checksum_types_client)
|
|
2232
2323
|
if description is not None:
|
|
2233
2324
|
pulumi.set(__self__, "description", description)
|
|
2325
|
+
if enable_bulk_load is not None:
|
|
2326
|
+
pulumi.set(__self__, "enable_bulk_load", enable_bulk_load)
|
|
2234
2327
|
if encrypted_credential is not None:
|
|
2235
2328
|
pulumi.set(__self__, "encrypted_credential", encrypted_credential)
|
|
2329
|
+
if encryption_client is not None:
|
|
2330
|
+
pulumi.set(__self__, "encryption_client", encryption_client)
|
|
2331
|
+
if encryption_types_client is not None:
|
|
2332
|
+
pulumi.set(__self__, "encryption_types_client", encryption_types_client)
|
|
2333
|
+
if fetch_size is not None:
|
|
2334
|
+
pulumi.set(__self__, "fetch_size", fetch_size)
|
|
2335
|
+
if fetch_tswtz_as_timestamp is not None:
|
|
2336
|
+
pulumi.set(__self__, "fetch_tswtz_as_timestamp", fetch_tswtz_as_timestamp)
|
|
2337
|
+
if initial_lob_fetch_size is not None:
|
|
2338
|
+
pulumi.set(__self__, "initial_lob_fetch_size", initial_lob_fetch_size)
|
|
2339
|
+
if initialization_string is not None:
|
|
2340
|
+
pulumi.set(__self__, "initialization_string", initialization_string)
|
|
2236
2341
|
if parameters is not None:
|
|
2237
2342
|
pulumi.set(__self__, "parameters", parameters)
|
|
2238
2343
|
if password is not None:
|
|
2239
2344
|
pulumi.set(__self__, "password", password)
|
|
2345
|
+
if server is not None:
|
|
2346
|
+
pulumi.set(__self__, "server", server)
|
|
2347
|
+
if statement_cache_size is not None:
|
|
2348
|
+
pulumi.set(__self__, "statement_cache_size", statement_cache_size)
|
|
2349
|
+
if support_v1_data_types is not None:
|
|
2350
|
+
pulumi.set(__self__, "support_v1_data_types", support_v1_data_types)
|
|
2351
|
+
if username is not None:
|
|
2352
|
+
pulumi.set(__self__, "username", username)
|
|
2240
2353
|
if version is not None:
|
|
2241
2354
|
pulumi.set(__self__, "version", version)
|
|
2242
2355
|
|
|
2243
|
-
@property
|
|
2244
|
-
@pulumi.getter(name="connectionString")
|
|
2245
|
-
def connection_string(self) -> Any:
|
|
2246
|
-
"""
|
|
2247
|
-
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.
|
|
2248
|
-
"""
|
|
2249
|
-
return pulumi.get(self, "connection_string")
|
|
2250
|
-
|
|
2251
|
-
@connection_string.setter
|
|
2252
|
-
def connection_string(self, value: Any):
|
|
2253
|
-
pulumi.set(self, "connection_string", value)
|
|
2254
|
-
|
|
2255
2356
|
@property
|
|
2256
2357
|
@pulumi.getter
|
|
2257
2358
|
def type(self) -> pulumi.Input[str]:
|
|
@@ -2277,6 +2378,18 @@ class AmazonRdsForOracleLinkedServiceArgs:
|
|
|
2277
2378
|
def annotations(self, value: Optional[pulumi.Input[Sequence[Any]]]):
|
|
2278
2379
|
pulumi.set(self, "annotations", value)
|
|
2279
2380
|
|
|
2381
|
+
@property
|
|
2382
|
+
@pulumi.getter(name="authenticationType")
|
|
2383
|
+
def authentication_type(self) -> Optional[pulumi.Input[Union[str, 'AmazonRdsForOracleAuthenticationType']]]:
|
|
2384
|
+
"""
|
|
2385
|
+
Authentication type for connecting to the AmazonRdsForOracle database. Only used for Version 2.0.
|
|
2386
|
+
"""
|
|
2387
|
+
return pulumi.get(self, "authentication_type")
|
|
2388
|
+
|
|
2389
|
+
@authentication_type.setter
|
|
2390
|
+
def authentication_type(self, value: Optional[pulumi.Input[Union[str, 'AmazonRdsForOracleAuthenticationType']]]):
|
|
2391
|
+
pulumi.set(self, "authentication_type", value)
|
|
2392
|
+
|
|
2280
2393
|
@property
|
|
2281
2394
|
@pulumi.getter(name="connectVia")
|
|
2282
2395
|
def connect_via(self) -> Optional[pulumi.Input['IntegrationRuntimeReferenceArgs']]:
|
|
@@ -2289,6 +2402,42 @@ class AmazonRdsForOracleLinkedServiceArgs:
|
|
|
2289
2402
|
def connect_via(self, value: Optional[pulumi.Input['IntegrationRuntimeReferenceArgs']]):
|
|
2290
2403
|
pulumi.set(self, "connect_via", value)
|
|
2291
2404
|
|
|
2405
|
+
@property
|
|
2406
|
+
@pulumi.getter(name="connectionString")
|
|
2407
|
+
def connection_string(self) -> Optional[Any]:
|
|
2408
|
+
"""
|
|
2409
|
+
The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.
|
|
2410
|
+
"""
|
|
2411
|
+
return pulumi.get(self, "connection_string")
|
|
2412
|
+
|
|
2413
|
+
@connection_string.setter
|
|
2414
|
+
def connection_string(self, value: Optional[Any]):
|
|
2415
|
+
pulumi.set(self, "connection_string", value)
|
|
2416
|
+
|
|
2417
|
+
@property
|
|
2418
|
+
@pulumi.getter(name="cryptoChecksumClient")
|
|
2419
|
+
def crypto_checksum_client(self) -> Optional[Any]:
|
|
2420
|
+
"""
|
|
2421
|
+
Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2422
|
+
"""
|
|
2423
|
+
return pulumi.get(self, "crypto_checksum_client")
|
|
2424
|
+
|
|
2425
|
+
@crypto_checksum_client.setter
|
|
2426
|
+
def crypto_checksum_client(self, value: Optional[Any]):
|
|
2427
|
+
pulumi.set(self, "crypto_checksum_client", value)
|
|
2428
|
+
|
|
2429
|
+
@property
|
|
2430
|
+
@pulumi.getter(name="cryptoChecksumTypesClient")
|
|
2431
|
+
def crypto_checksum_types_client(self) -> Optional[Any]:
|
|
2432
|
+
"""
|
|
2433
|
+
Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0.
|
|
2434
|
+
"""
|
|
2435
|
+
return pulumi.get(self, "crypto_checksum_types_client")
|
|
2436
|
+
|
|
2437
|
+
@crypto_checksum_types_client.setter
|
|
2438
|
+
def crypto_checksum_types_client(self, value: Optional[Any]):
|
|
2439
|
+
pulumi.set(self, "crypto_checksum_types_client", value)
|
|
2440
|
+
|
|
2292
2441
|
@property
|
|
2293
2442
|
@pulumi.getter
|
|
2294
2443
|
def description(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -2301,6 +2450,18 @@ class AmazonRdsForOracleLinkedServiceArgs:
|
|
|
2301
2450
|
def description(self, value: Optional[pulumi.Input[str]]):
|
|
2302
2451
|
pulumi.set(self, "description", value)
|
|
2303
2452
|
|
|
2453
|
+
@property
|
|
2454
|
+
@pulumi.getter(name="enableBulkLoad")
|
|
2455
|
+
def enable_bulk_load(self) -> Optional[Any]:
|
|
2456
|
+
"""
|
|
2457
|
+
Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2458
|
+
"""
|
|
2459
|
+
return pulumi.get(self, "enable_bulk_load")
|
|
2460
|
+
|
|
2461
|
+
@enable_bulk_load.setter
|
|
2462
|
+
def enable_bulk_load(self, value: Optional[Any]):
|
|
2463
|
+
pulumi.set(self, "enable_bulk_load", value)
|
|
2464
|
+
|
|
2304
2465
|
@property
|
|
2305
2466
|
@pulumi.getter(name="encryptedCredential")
|
|
2306
2467
|
def encrypted_credential(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -2313,6 +2474,78 @@ class AmazonRdsForOracleLinkedServiceArgs:
|
|
|
2313
2474
|
def encrypted_credential(self, value: Optional[pulumi.Input[str]]):
|
|
2314
2475
|
pulumi.set(self, "encrypted_credential", value)
|
|
2315
2476
|
|
|
2477
|
+
@property
|
|
2478
|
+
@pulumi.getter(name="encryptionClient")
|
|
2479
|
+
def encryption_client(self) -> Optional[Any]:
|
|
2480
|
+
"""
|
|
2481
|
+
Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0.
|
|
2482
|
+
"""
|
|
2483
|
+
return pulumi.get(self, "encryption_client")
|
|
2484
|
+
|
|
2485
|
+
@encryption_client.setter
|
|
2486
|
+
def encryption_client(self, value: Optional[Any]):
|
|
2487
|
+
pulumi.set(self, "encryption_client", value)
|
|
2488
|
+
|
|
2489
|
+
@property
|
|
2490
|
+
@pulumi.getter(name="encryptionTypesClient")
|
|
2491
|
+
def encryption_types_client(self) -> Optional[Any]:
|
|
2492
|
+
"""
|
|
2493
|
+
Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0.
|
|
2494
|
+
"""
|
|
2495
|
+
return pulumi.get(self, "encryption_types_client")
|
|
2496
|
+
|
|
2497
|
+
@encryption_types_client.setter
|
|
2498
|
+
def encryption_types_client(self, value: Optional[Any]):
|
|
2499
|
+
pulumi.set(self, "encryption_types_client", value)
|
|
2500
|
+
|
|
2501
|
+
@property
|
|
2502
|
+
@pulumi.getter(name="fetchSize")
|
|
2503
|
+
def fetch_size(self) -> Optional[Any]:
|
|
2504
|
+
"""
|
|
2505
|
+
Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0.
|
|
2506
|
+
"""
|
|
2507
|
+
return pulumi.get(self, "fetch_size")
|
|
2508
|
+
|
|
2509
|
+
@fetch_size.setter
|
|
2510
|
+
def fetch_size(self, value: Optional[Any]):
|
|
2511
|
+
pulumi.set(self, "fetch_size", value)
|
|
2512
|
+
|
|
2513
|
+
@property
|
|
2514
|
+
@pulumi.getter(name="fetchTswtzAsTimestamp")
|
|
2515
|
+
def fetch_tswtz_as_timestamp(self) -> Optional[Any]:
|
|
2516
|
+
"""
|
|
2517
|
+
Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0.
|
|
2518
|
+
"""
|
|
2519
|
+
return pulumi.get(self, "fetch_tswtz_as_timestamp")
|
|
2520
|
+
|
|
2521
|
+
@fetch_tswtz_as_timestamp.setter
|
|
2522
|
+
def fetch_tswtz_as_timestamp(self, value: Optional[Any]):
|
|
2523
|
+
pulumi.set(self, "fetch_tswtz_as_timestamp", value)
|
|
2524
|
+
|
|
2525
|
+
@property
|
|
2526
|
+
@pulumi.getter(name="initialLobFetchSize")
|
|
2527
|
+
def initial_lob_fetch_size(self) -> Optional[Any]:
|
|
2528
|
+
"""
|
|
2529
|
+
Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2530
|
+
"""
|
|
2531
|
+
return pulumi.get(self, "initial_lob_fetch_size")
|
|
2532
|
+
|
|
2533
|
+
@initial_lob_fetch_size.setter
|
|
2534
|
+
def initial_lob_fetch_size(self, value: Optional[Any]):
|
|
2535
|
+
pulumi.set(self, "initial_lob_fetch_size", value)
|
|
2536
|
+
|
|
2537
|
+
@property
|
|
2538
|
+
@pulumi.getter(name="initializationString")
|
|
2539
|
+
def initialization_string(self) -> Optional[Any]:
|
|
2540
|
+
"""
|
|
2541
|
+
Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0.
|
|
2542
|
+
"""
|
|
2543
|
+
return pulumi.get(self, "initialization_string")
|
|
2544
|
+
|
|
2545
|
+
@initialization_string.setter
|
|
2546
|
+
def initialization_string(self, value: Optional[Any]):
|
|
2547
|
+
pulumi.set(self, "initialization_string", value)
|
|
2548
|
+
|
|
2316
2549
|
@property
|
|
2317
2550
|
@pulumi.getter
|
|
2318
2551
|
def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input['ParameterSpecificationArgs']]]]:
|
|
@@ -2337,6 +2570,54 @@ class AmazonRdsForOracleLinkedServiceArgs:
|
|
|
2337
2570
|
def password(self, value: Optional[pulumi.Input[Union['AzureKeyVaultSecretReferenceArgs', 'SecureStringArgs']]]):
|
|
2338
2571
|
pulumi.set(self, "password", value)
|
|
2339
2572
|
|
|
2573
|
+
@property
|
|
2574
|
+
@pulumi.getter
|
|
2575
|
+
def server(self) -> Optional[Any]:
|
|
2576
|
+
"""
|
|
2577
|
+
The location of AmazonRdsForOracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0.
|
|
2578
|
+
"""
|
|
2579
|
+
return pulumi.get(self, "server")
|
|
2580
|
+
|
|
2581
|
+
@server.setter
|
|
2582
|
+
def server(self, value: Optional[Any]):
|
|
2583
|
+
pulumi.set(self, "server", value)
|
|
2584
|
+
|
|
2585
|
+
@property
|
|
2586
|
+
@pulumi.getter(name="statementCacheSize")
|
|
2587
|
+
def statement_cache_size(self) -> Optional[Any]:
|
|
2588
|
+
"""
|
|
2589
|
+
Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0.
|
|
2590
|
+
"""
|
|
2591
|
+
return pulumi.get(self, "statement_cache_size")
|
|
2592
|
+
|
|
2593
|
+
@statement_cache_size.setter
|
|
2594
|
+
def statement_cache_size(self, value: Optional[Any]):
|
|
2595
|
+
pulumi.set(self, "statement_cache_size", value)
|
|
2596
|
+
|
|
2597
|
+
@property
|
|
2598
|
+
@pulumi.getter(name="supportV1DataTypes")
|
|
2599
|
+
def support_v1_data_types(self) -> Optional[Any]:
|
|
2600
|
+
"""
|
|
2601
|
+
Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0.
|
|
2602
|
+
"""
|
|
2603
|
+
return pulumi.get(self, "support_v1_data_types")
|
|
2604
|
+
|
|
2605
|
+
@support_v1_data_types.setter
|
|
2606
|
+
def support_v1_data_types(self, value: Optional[Any]):
|
|
2607
|
+
pulumi.set(self, "support_v1_data_types", value)
|
|
2608
|
+
|
|
2609
|
+
@property
|
|
2610
|
+
@pulumi.getter
|
|
2611
|
+
def username(self) -> Optional[Any]:
|
|
2612
|
+
"""
|
|
2613
|
+
The AmazonRdsForOracle database username. Type: string. Only used for Version 2.0.
|
|
2614
|
+
"""
|
|
2615
|
+
return pulumi.get(self, "username")
|
|
2616
|
+
|
|
2617
|
+
@username.setter
|
|
2618
|
+
def username(self, value: Optional[Any]):
|
|
2619
|
+
pulumi.set(self, "username", value)
|
|
2620
|
+
|
|
2340
2621
|
@property
|
|
2341
2622
|
@pulumi.getter
|
|
2342
2623
|
def version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -14588,6 +14869,10 @@ if not MYPY:
|
|
|
14588
14869
|
"""
|
|
14589
14870
|
The credential reference containing authentication information.
|
|
14590
14871
|
"""
|
|
14872
|
+
data_security_mode: NotRequired[Any]
|
|
14873
|
+
"""
|
|
14874
|
+
The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
|
|
14875
|
+
"""
|
|
14591
14876
|
description: NotRequired[pulumi.Input[str]]
|
|
14592
14877
|
"""
|
|
14593
14878
|
Linked service description.
|
|
@@ -14673,6 +14958,7 @@ class AzureDatabricksLinkedServiceArgs:
|
|
|
14673
14958
|
authentication: Optional[Any] = None,
|
|
14674
14959
|
connect_via: Optional[pulumi.Input['IntegrationRuntimeReferenceArgs']] = None,
|
|
14675
14960
|
credential: Optional[pulumi.Input['CredentialReferenceArgs']] = None,
|
|
14961
|
+
data_security_mode: Optional[Any] = None,
|
|
14676
14962
|
description: Optional[pulumi.Input[str]] = None,
|
|
14677
14963
|
encrypted_credential: Optional[pulumi.Input[str]] = None,
|
|
14678
14964
|
existing_cluster_id: Optional[Any] = None,
|
|
@@ -14701,6 +14987,7 @@ class AzureDatabricksLinkedServiceArgs:
|
|
|
14701
14987
|
:param Any authentication: Required to specify MSI, if using Workspace resource id for databricks REST API. Type: string (or Expression with resultType string).
|
|
14702
14988
|
:param pulumi.Input['IntegrationRuntimeReferenceArgs'] connect_via: The integration runtime reference.
|
|
14703
14989
|
:param pulumi.Input['CredentialReferenceArgs'] credential: The credential reference containing authentication information.
|
|
14990
|
+
:param Any data_security_mode: The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
|
|
14704
14991
|
:param pulumi.Input[str] description: Linked service description.
|
|
14705
14992
|
:param pulumi.Input[str] encrypted_credential: The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
|
|
14706
14993
|
:param Any existing_cluster_id: The id of an existing interactive cluster that will be used for all runs of this activity. Type: string (or Expression with resultType string).
|
|
@@ -14732,6 +15019,8 @@ class AzureDatabricksLinkedServiceArgs:
|
|
|
14732
15019
|
pulumi.set(__self__, "connect_via", connect_via)
|
|
14733
15020
|
if credential is not None:
|
|
14734
15021
|
pulumi.set(__self__, "credential", credential)
|
|
15022
|
+
if data_security_mode is not None:
|
|
15023
|
+
pulumi.set(__self__, "data_security_mode", data_security_mode)
|
|
14735
15024
|
if description is not None:
|
|
14736
15025
|
pulumi.set(__self__, "description", description)
|
|
14737
15026
|
if encrypted_credential is not None:
|
|
@@ -14854,6 +15143,18 @@ class AzureDatabricksLinkedServiceArgs:
|
|
|
14854
15143
|
def credential(self, value: Optional[pulumi.Input['CredentialReferenceArgs']]):
|
|
14855
15144
|
pulumi.set(self, "credential", value)
|
|
14856
15145
|
|
|
15146
|
+
@property
|
|
15147
|
+
@pulumi.getter(name="dataSecurityMode")
|
|
15148
|
+
def data_security_mode(self) -> Optional[Any]:
|
|
15149
|
+
"""
|
|
15150
|
+
The data security mode for the Databricks Cluster. Type: string (or Expression with resultType string).
|
|
15151
|
+
"""
|
|
15152
|
+
return pulumi.get(self, "data_security_mode")
|
|
15153
|
+
|
|
15154
|
+
@data_security_mode.setter
|
|
15155
|
+
def data_security_mode(self, value: Optional[Any]):
|
|
15156
|
+
pulumi.set(self, "data_security_mode", value)
|
|
15157
|
+
|
|
14857
15158
|
@property
|
|
14858
15159
|
@pulumi.getter
|
|
14859
15160
|
def description(self) -> Optional[pulumi.Input[str]]:
|