// 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).
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Oci.GoldengateService;
using Oci.Common;
using Oci.Common.Auth;
namespace Oci.Sdk.DotNet.Example.Goldengate
{
public class UpdateConnectionExample
{
public static async Task Main()
{
// Create a request and dependent object(s).
var updateConnectionDetails = new Oci.GoldengateService.Models.UpdateMysqlConnectionDetails
{
Username = "EXAMPLE-username-Value",
Password = "EXAMPLE-password-Value",
PasswordSecretId = "ocid1.test.oc1..<unique_ID>EXAMPLE-passwordSecretId-Value",
Host = "EXAMPLE-host-Value",
Port = 2124,
DatabaseName = "EXAMPLE-databaseName-Value",
SecurityProtocol = Oci.GoldengateService.Models.MysqlConnection.SecurityProtocolEnum.Tls,
SslMode = Oci.GoldengateService.Models.MysqlConnection.SslModeEnum.Required,
SslCa = "EXAMPLE-sslCa-Value",
SslCrl = "EXAMPLE-sslCrl-Value",
SslCert = "EXAMPLE-sslCert-Value",
SslKey = "EXAMPLE-sslKey-Value",
SslKeySecretId = "ocid1.test.oc1..<unique_ID>EXAMPLE-sslKeySecretId-Value",
PrivateIp = "EXAMPLE-privateIp-Value",
AdditionalAttributes = new List<Oci.GoldengateService.Models.NameValuePair>
{
new Oci.GoldengateService.Models.NameValuePair
{
Name = "EXAMPLE-name-Value",
Value = "EXAMPLE-value-Value"
}
},
DbSystemId = "ocid1.test.oc1..<unique_ID>EXAMPLE-dbSystemId-Value",
DisplayName = "EXAMPLE-displayName-Value",
Description = "EXAMPLE-description-Value",
FreeformTags = new Dictionary<string, string>()
{
{
"EXAMPLE_KEY_8o1ah",
"EXAMPLE_VALUE_xMZOWOzPqFij1NhqoZow"
}
},
DefinedTags = new Dictionary<string, Dictionary<string, Object>>()
{
{
"EXAMPLE_KEY_gK8cx",
new Dictionary<string, Object>()
{
{
"EXAMPLE_KEY_abMP4",
"EXAMPLE--Value"
}
}
}
},
VaultId = "ocid1.test.oc1..<unique_ID>EXAMPLE-vaultId-Value",
KeyId = "ocid1.test.oc1..<unique_ID>EXAMPLE-keyId-Value",
NsgIds = new List<string>
{
"EXAMPLE--Value"
},
SubnetId = "ocid1.test.oc1..<unique_ID>EXAMPLE-subnetId-Value",
RoutingMethod = Oci.GoldengateService.Models.RoutingMethod.SharedServiceEndpoint,
DoesUseSecretIds = false,
SecurityAttributes = new Dictionary<string, Dictionary<string, Object>>()
{
{
"EXAMPLE_KEY_f5wBo",
new Dictionary<string, Object>()
{
{
"EXAMPLE_KEY_Sqxhm",
"EXAMPLE--Value"
}
}
}
}
};
var updateConnectionRequest = new Oci.GoldengateService.Requests.UpdateConnectionRequest
{
ConnectionId = "ocid1.test.oc1..<unique_ID>EXAMPLE-connectionId-Value",
UpdateConnectionDetails = updateConnectionDetails,
IfMatch = "EXAMPLE-ifMatch-Value",
OpcRequestId = "YOPCYAKR1MQ0BZWEBZ4K<unique_ID>",
IsLockOverride = false
};
// Create a default authentication provider that uses the DEFAULT
// profile in the configuration file.
// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
var provider = new ConfigFileAuthenticationDetailsProvider("DEFAULT");
try
{
// Create a service client and send the request.
using (var client = new GoldenGateClient(provider, new ClientConfiguration()))
{
var response = await client.UpdateConnection(updateConnectionRequest);
// Retrieve value from the response.
var versionValue = response.httpResponseMessage.Version;
}
}
catch (Exception e)
{
Console.WriteLine($"UpdateConnection Failed with {e.Message}");
throw e;
}
}
}
}