# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
mysql_client = oci.mysql.ChannelsClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_channel_response = mysql_client.update_channel(
channel_id="ocid1.test.oc1..<unique_ID>EXAMPLE-channelId-Value",
update_channel_details=oci.mysql.models.UpdateChannelDetails(
source=oci.mysql.models.UpdateChannelSourceFromMysqlDetails(
source_type="MYSQL",
hostname="EXAMPLE-hostname-Value",
port=56843,
username="EXAMPLE-username-Value",
password="EXAMPLE-password-Value",
ssl_mode="DISABLED",
ssl_ca_certificate=oci.mysql.models.PemCaCertificate(
certificate_type="PEM",
contents="EXAMPLE-contents-Value"),
anonymous_transactions_handling=oci.mysql.models.AssignTargetUuidHandling(
policy="ASSIGN_TARGET_UUID",
last_configured_log_filename="EXAMPLE-lastConfiguredLogFilename-Value",
last_configured_log_offset=1699666503)),
target=oci.mysql.models.UpdateChannelTargetFromDbSystemDetails(
target_type="DBSYSTEM",
channel_name="EXAMPLE-channelName-Value",
applier_username="EXAMPLE-applierUsername-Value",
filters=[
oci.mysql.models.ChannelFilter(
type="REPLICATE_DO_TABLE",
value="EXAMPLE-value-Value")],
tables_without_primary_key_handling="GENERATE_IMPLICIT_PRIMARY_KEY",
delay_in_seconds=951185685),
display_name="EXAMPLE-displayName-Value",
is_enabled=False,
description="EXAMPLE-description-Value",
freeform_tags={
'EXAMPLE_KEY_RB38P': 'EXAMPLE_VALUE_fCgPl8jQEsJ4hE2CLo4B'},
defined_tags={
'EXAMPLE_KEY_IPoaC': {
'EXAMPLE_KEY_ec7CH': 'EXAMPLE--Value'}}),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="TODN7KD0DYGJS7YUQ586<unique_ID>",
opc_retry_token="EXAMPLE-opcRetryToken-Value")
# Get the data from response
print(update_channel_response.headers)