
commonMain.aws.sdk.kotlin.services.mgn.MgnClient.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mgn
import aws.sdk.kotlin.runtime.auth.credentials.DefaultChainCredentialsProvider
import aws.sdk.kotlin.runtime.auth.credentials.internal.borrow
import aws.sdk.kotlin.runtime.endpoint.AwsEndpointResolver
import aws.sdk.kotlin.runtime.region.resolveRegion
import aws.sdk.kotlin.services.mgn.internal.DefaultEndpointResolver
import aws.sdk.kotlin.services.mgn.model.*
import aws.smithy.kotlin.runtime.SdkClient
import aws.smithy.kotlin.runtime.auth.awscredentials.CredentialsProvider
import aws.smithy.kotlin.runtime.auth.awssigning.AwsSigner
import aws.smithy.kotlin.runtime.auth.awssigning.DefaultAwsSigner
import aws.smithy.kotlin.runtime.client.SdkLogMode
import aws.smithy.kotlin.runtime.config.SdkClientConfig
import aws.smithy.kotlin.runtime.http.config.HttpClientConfig
import aws.smithy.kotlin.runtime.http.endpoints.EndpointResolver
import aws.smithy.kotlin.runtime.http.engine.HttpClientEngine
import aws.smithy.kotlin.runtime.retries.RetryStrategy
import aws.smithy.kotlin.runtime.retries.StandardRetryStrategy
/**
* The Application Migration Service service.
*/
interface MgnClient : SdkClient {
override val serviceName: String
get() = "mgn"
/**
* MgnClient's configuration
*/
val config: Config
companion object {
operator fun invoke(block: Config.Builder.() -> Unit): MgnClient {
val config = Config.Builder().apply(block).build()
return DefaultMgnClient(config)
}
operator fun invoke(config: Config): MgnClient = DefaultMgnClient(config)
/**
* Construct a [MgnClient] by resolving the configuration from the current environment.
*/
suspend fun fromEnvironment(block: (Config.Builder.() -> Unit)? = null): MgnClient {
val builder = Config.Builder()
if (block != null) builder.apply(block)
builder.region = builder.region ?: resolveRegion()
return DefaultMgnClient(builder.build())
}
}
class Config private constructor(builder: Builder): HttpClientConfig, SdkClientConfig {
val credentialsProvider: CredentialsProvider = builder.credentialsProvider?.borrow() ?: DefaultChainCredentialsProvider()
val endpointResolver: AwsEndpointResolver = builder.endpointResolver ?: DefaultEndpointResolver()
override val httpClientEngine: HttpClientEngine? = builder.httpClientEngine
val region: String = requireNotNull(builder.region) { "region is a required configuration property" }
val retryStrategy: RetryStrategy = StandardRetryStrategy()
override val sdkLogMode: SdkLogMode = builder.sdkLogMode
val signer: AwsSigner = builder.signer ?: DefaultAwsSigner
companion object {
inline operator fun invoke(block: Builder.() -> kotlin.Unit): Config = Builder().apply(block).build()
}
class Builder {
/**
* The AWS credentials provider to use for authenticating requests. If not provided a
* [aws.sdk.kotlin.runtime.auth.credentials.DefaultChainCredentialsProvider] instance will be used.
* NOTE: The caller is responsible for managing the lifetime of the provider when set. The SDK
* client will not close it when the client is closed.
*/
var credentialsProvider: CredentialsProvider? = null
/**
* Determines the endpoint (hostname) to make requests to. When not provided a default
* resolver is configured automatically. This is an advanced client option.
*/
var endpointResolver: AwsEndpointResolver? = null
/**
* Override the default HTTP client engine used to make SDK requests (e.g. configure proxy behavior, timeouts, concurrency, etc).
* NOTE: The caller is responsible for managing the lifetime of the engine when set. The SDK
* client will not close it when the client is closed.
*/
var httpClientEngine: HttpClientEngine? = null
/**
* AWS region to make requests to
*/
var region: String? = null
/**
* Configure events that will be logged. By default clients will not output
* raw requests or responses. Use this setting to opt-in to additional debug logging.
*
* This can be used to configure logging of requests, responses, retries, etc of SDK clients.
*
* **NOTE**: Logging of raw requests or responses may leak sensitive information! It may also have
* performance considerations when dumping the request/response body. This is primarily a tool for
* debug purposes.
*/
var sdkLogMode: SdkLogMode = SdkLogMode.Default
/**
* The implementation of AWS signer to use for signing requests
*/
var signer: AwsSigner? = null
@PublishedApi
internal fun build(): Config = Config(this)
}
}
/**
* Allows the user to set the SourceServer.LifeCycle.state property for specific Source Server IDs to one of the following: READY_FOR_TEST or READY_FOR_CUTOVER. This command only works if the Source Server is already launchable (dataReplicationInfo.lagDuration is not null.)
*/
suspend fun changeServerLifeCycleState(input: ChangeServerLifeCycleStateRequest): ChangeServerLifeCycleStateResponse
/**
* Allows the user to set the SourceServer.LifeCycle.state property for specific Source Server IDs to one of the following: READY_FOR_TEST or READY_FOR_CUTOVER. This command only works if the Source Server is already launchable (dataReplicationInfo.lagDuration is not null.)
*/
suspend fun changeServerLifeCycleState(block: ChangeServerLifeCycleStateRequest.Builder.() -> Unit) = changeServerLifeCycleState(ChangeServerLifeCycleStateRequest.Builder().apply(block).build())
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun createLaunchConfigurationTemplate(input: CreateLaunchConfigurationTemplateRequest = CreateLaunchConfigurationTemplateRequest {}): CreateLaunchConfigurationTemplateResponse
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun createLaunchConfigurationTemplate(block: CreateLaunchConfigurationTemplateRequest.Builder.() -> Unit) = createLaunchConfigurationTemplate(CreateLaunchConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun createReplicationConfigurationTemplate(input: CreateReplicationConfigurationTemplateRequest): CreateReplicationConfigurationTemplateResponse
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun createReplicationConfigurationTemplate(block: CreateReplicationConfigurationTemplateRequest.Builder.() -> Unit) = createReplicationConfigurationTemplate(CreateReplicationConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Deletes a single Job by ID.
*/
suspend fun deleteJob(input: DeleteJobRequest): DeleteJobResponse
/**
* Deletes a single Job by ID.
*/
suspend fun deleteJob(block: DeleteJobRequest.Builder.() -> Unit) = deleteJob(DeleteJobRequest.Builder().apply(block).build())
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun deleteLaunchConfigurationTemplate(input: DeleteLaunchConfigurationTemplateRequest): DeleteLaunchConfigurationTemplateResponse
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun deleteLaunchConfigurationTemplate(block: DeleteLaunchConfigurationTemplateRequest.Builder.() -> Unit) = deleteLaunchConfigurationTemplate(DeleteLaunchConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Deletes a single Replication Configuration Template by ID
*/
suspend fun deleteReplicationConfigurationTemplate(input: DeleteReplicationConfigurationTemplateRequest): DeleteReplicationConfigurationTemplateResponse
/**
* Deletes a single Replication Configuration Template by ID
*/
suspend fun deleteReplicationConfigurationTemplate(block: DeleteReplicationConfigurationTemplateRequest.Builder.() -> Unit) = deleteReplicationConfigurationTemplate(DeleteReplicationConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Deletes a single source server by ID.
*/
suspend fun deleteSourceServer(input: DeleteSourceServerRequest): DeleteSourceServerResponse
/**
* Deletes a single source server by ID.
*/
suspend fun deleteSourceServer(block: DeleteSourceServerRequest.Builder.() -> Unit) = deleteSourceServer(DeleteSourceServerRequest.Builder().apply(block).build())
/**
* Deletes a given vCenter client by ID.
*/
suspend fun deleteVcenterClient(input: DeleteVcenterClientRequest): DeleteVcenterClientResponse
/**
* Deletes a given vCenter client by ID.
*/
suspend fun deleteVcenterClient(block: DeleteVcenterClientRequest.Builder.() -> Unit) = deleteVcenterClient(DeleteVcenterClientRequest.Builder().apply(block).build())
/**
* Retrieves detailed job log items with paging.
*/
suspend fun describeJobLogItems(input: DescribeJobLogItemsRequest): DescribeJobLogItemsResponse
/**
* Retrieves detailed job log items with paging.
*/
suspend fun describeJobLogItems(block: DescribeJobLogItemsRequest.Builder.() -> Unit) = describeJobLogItems(DescribeJobLogItemsRequest.Builder().apply(block).build())
/**
* Returns a list of Jobs. Use the JobsID and fromDate and toData filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are normally created by the StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.
*/
suspend fun describeJobs(input: DescribeJobsRequest = DescribeJobsRequest {}): DescribeJobsResponse
/**
* Returns a list of Jobs. Use the JobsID and fromDate and toData filters to limit which jobs are returned. The response is sorted by creationDataTime - latest date first. Jobs are normally created by the StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are also created by DiagnosticLaunch and TerminateDiagnosticInstances, which are APIs available only to *Support* and only used in response to relevant support tickets.
*/
suspend fun describeJobs(block: DescribeJobsRequest.Builder.() -> Unit) = describeJobs(DescribeJobsRequest.Builder().apply(block).build())
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun describeLaunchConfigurationTemplates(input: DescribeLaunchConfigurationTemplatesRequest = DescribeLaunchConfigurationTemplatesRequest {}): DescribeLaunchConfigurationTemplatesResponse
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun describeLaunchConfigurationTemplates(block: DescribeLaunchConfigurationTemplatesRequest.Builder.() -> Unit) = describeLaunchConfigurationTemplates(DescribeLaunchConfigurationTemplatesRequest.Builder().apply(block).build())
/**
* Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.
*/
suspend fun describeReplicationConfigurationTemplates(input: DescribeReplicationConfigurationTemplatesRequest = DescribeReplicationConfigurationTemplatesRequest {}): DescribeReplicationConfigurationTemplatesResponse
/**
* Lists all ReplicationConfigurationTemplates, filtered by Source Server IDs.
*/
suspend fun describeReplicationConfigurationTemplates(block: DescribeReplicationConfigurationTemplatesRequest.Builder.() -> Unit) = describeReplicationConfigurationTemplates(DescribeReplicationConfigurationTemplatesRequest.Builder().apply(block).build())
/**
* Retrieves all SourceServers or multiple SourceServers by ID.
*/
suspend fun describeSourceServers(input: DescribeSourceServersRequest = DescribeSourceServersRequest {}): DescribeSourceServersResponse
/**
* Retrieves all SourceServers or multiple SourceServers by ID.
*/
suspend fun describeSourceServers(block: DescribeSourceServersRequest.Builder.() -> Unit) = describeSourceServers(DescribeSourceServersRequest.Builder().apply(block).build())
/**
* Returns a list of the installed vCenter clients.
*/
suspend fun describeVcenterClients(input: DescribeVcenterClientsRequest = DescribeVcenterClientsRequest {}): DescribeVcenterClientsResponse
/**
* Returns a list of the installed vCenter clients.
*/
suspend fun describeVcenterClients(block: DescribeVcenterClientsRequest.Builder.() -> Unit) = describeVcenterClients(DescribeVcenterClientsRequest.Builder().apply(block).build())
/**
* Disconnects specific Source Servers from Application Migration Service. Data replication is stopped immediately. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. If the agent on the source server has not been prevented from communicating with the Application Migration Service service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.
*/
suspend fun disconnectFromService(input: DisconnectFromServiceRequest): DisconnectFromServiceResponse
/**
* Disconnects specific Source Servers from Application Migration Service. Data replication is stopped immediately. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. If the agent on the source server has not been prevented from communicating with the Application Migration Service service, then it will receive a command to uninstall itself (within approximately 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be set to DISCONNECTED; The totalStorageBytes property for each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.
*/
suspend fun disconnectFromService(block: DisconnectFromServiceRequest.Builder.() -> Unit) = disconnectFromService(DisconnectFromServiceRequest.Builder().apply(block).build())
/**
* Finalizes the cutover immediately for specific Source Servers. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. The AWS Replication Agent will receive a command to uninstall itself (within 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be changed to DISCONNECTED; The SourceServer.lifeCycle.state will be changed to CUTOVER; The totalStorageBytes property fo each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.
*/
suspend fun finalizeCutover(input: FinalizeCutoverRequest): FinalizeCutoverResponse
/**
* Finalizes the cutover immediately for specific Source Servers. All AWS resources created by Application Migration Service for enabling the replication of these source servers will be terminated / deleted within 90 minutes. Launched Test or Cutover instances will NOT be terminated. The AWS Replication Agent will receive a command to uninstall itself (within 10 minutes). The following properties of the SourceServer will be changed immediately: dataReplicationInfo.dataReplicationState will be changed to DISCONNECTED; The SourceServer.lifeCycle.state will be changed to CUTOVER; The totalStorageBytes property fo each of dataReplicationInfo.replicatedDisks will be set to zero; dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration will be nullified.
*/
suspend fun finalizeCutover(block: FinalizeCutoverRequest.Builder.() -> Unit) = finalizeCutover(FinalizeCutoverRequest.Builder().apply(block).build())
/**
* Lists all LaunchConfigurations available, filtered by Source Server IDs.
*/
suspend fun getLaunchConfiguration(input: GetLaunchConfigurationRequest): GetLaunchConfigurationResponse
/**
* Lists all LaunchConfigurations available, filtered by Source Server IDs.
*/
suspend fun getLaunchConfiguration(block: GetLaunchConfigurationRequest.Builder.() -> Unit) = getLaunchConfiguration(GetLaunchConfigurationRequest.Builder().apply(block).build())
/**
* Lists all ReplicationConfigurations, filtered by Source Server ID.
*/
suspend fun getReplicationConfiguration(input: GetReplicationConfigurationRequest): GetReplicationConfigurationResponse
/**
* Lists all ReplicationConfigurations, filtered by Source Server ID.
*/
suspend fun getReplicationConfiguration(block: GetReplicationConfigurationRequest.Builder.() -> Unit) = getReplicationConfiguration(GetReplicationConfigurationRequest.Builder().apply(block).build())
/**
* Initialize Application Migration Service.
*/
suspend fun initializeService(input: InitializeServiceRequest = InitializeServiceRequest {}): InitializeServiceResponse
/**
* Initialize Application Migration Service.
*/
suspend fun initializeService(block: InitializeServiceRequest.Builder.() -> Unit) = initializeService(InitializeServiceRequest.Builder().apply(block).build())
/**
* List all tags for your Application Migration Service resources.
*/
suspend fun listTagsForResource(input: ListTagsForResourceRequest): ListTagsForResourceResponse
/**
* List all tags for your Application Migration Service resources.
*/
suspend fun listTagsForResource(block: ListTagsForResourceRequest.Builder.() -> Unit) = listTagsForResource(ListTagsForResourceRequest.Builder().apply(block).build())
/**
* Archives specific Source Servers by setting the SourceServer.isArchived property to true for specified SourceServers by ID. This command only works for SourceServers with a lifecycle. state which equals DISCONNECTED or CUTOVER.
*/
suspend fun markAsArchived(input: MarkAsArchivedRequest): MarkAsArchivedResponse
/**
* Archives specific Source Servers by setting the SourceServer.isArchived property to true for specified SourceServers by ID. This command only works for SourceServers with a lifecycle. state which equals DISCONNECTED or CUTOVER.
*/
suspend fun markAsArchived(block: MarkAsArchivedRequest.Builder.() -> Unit) = markAsArchived(MarkAsArchivedRequest.Builder().apply(block).build())
/**
* Causes the data replication initiation sequence to begin immediately upon next Handshake for specified SourceServer IDs, regardless of when the previous initiation started. This command will not work if the SourceServer is not stalled or is in a DISCONNECTED or STOPPED state.
*/
suspend fun retryDataReplication(input: RetryDataReplicationRequest): RetryDataReplicationResponse
/**
* Causes the data replication initiation sequence to begin immediately upon next Handshake for specified SourceServer IDs, regardless of when the previous initiation started. This command will not work if the SourceServer is not stalled or is in a DISCONNECTED or STOPPED state.
*/
suspend fun retryDataReplication(block: RetryDataReplicationRequest.Builder.() -> Unit) = retryDataReplication(RetryDataReplicationRequest.Builder().apply(block).build())
/**
* Launches a Cutover Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartCutover and changes the SourceServer.lifeCycle.state property to CUTTING_OVER.
*/
suspend fun startCutover(input: StartCutoverRequest): StartCutoverResponse
/**
* Launches a Cutover Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartCutover and changes the SourceServer.lifeCycle.state property to CUTTING_OVER.
*/
suspend fun startCutover(block: StartCutoverRequest.Builder.() -> Unit) = startCutover(StartCutoverRequest.Builder().apply(block).build())
/**
* Starts replication for SNAPSHOT_SHIPPING agents.
*/
suspend fun startReplication(input: StartReplicationRequest): StartReplicationResponse
/**
* Starts replication for SNAPSHOT_SHIPPING agents.
*/
suspend fun startReplication(block: StartReplicationRequest.Builder.() -> Unit) = startReplication(StartReplicationRequest.Builder().apply(block).build())
/**
* Launches a Test Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartTest and changes the SourceServer.lifeCycle.state property to TESTING.
*/
suspend fun startTest(input: StartTestRequest): StartTestResponse
/**
* Launches a Test Instance for specific Source Servers. This command starts a LAUNCH job whose initiatedBy property is StartTest and changes the SourceServer.lifeCycle.state property to TESTING.
*/
suspend fun startTest(block: StartTestRequest.Builder.() -> Unit) = startTest(StartTestRequest.Builder().apply(block).build())
/**
* Adds or overwrites only the specified tags for the specified Application Migration Service resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value.
*/
suspend fun tagResource(input: TagResourceRequest): TagResourceResponse
/**
* Adds or overwrites only the specified tags for the specified Application Migration Service resource or resources. When you specify an existing tag key, the value is overwritten with the new value. Each resource can have a maximum of 50 tags. Each tag consists of a key and optional value.
*/
suspend fun tagResource(block: TagResourceRequest.Builder.() -> Unit) = tagResource(TagResourceRequest.Builder().apply(block).build())
/**
* Starts a job that terminates specific launched EC2 Test and Cutover instances. This command will not work for any Source Server with a lifecycle.state of TESTING, CUTTING_OVER, or CUTOVER.
*/
suspend fun terminateTargetInstances(input: TerminateTargetInstancesRequest): TerminateTargetInstancesResponse
/**
* Starts a job that terminates specific launched EC2 Test and Cutover instances. This command will not work for any Source Server with a lifecycle.state of TESTING, CUTTING_OVER, or CUTOVER.
*/
suspend fun terminateTargetInstances(block: TerminateTargetInstancesRequest.Builder.() -> Unit) = terminateTargetInstances(TerminateTargetInstancesRequest.Builder().apply(block).build())
/**
* Deletes the specified set of tags from the specified set of Application Migration Service resources.
*/
suspend fun untagResource(input: UntagResourceRequest): UntagResourceResponse
/**
* Deletes the specified set of tags from the specified set of Application Migration Service resources.
*/
suspend fun untagResource(block: UntagResourceRequest.Builder.() -> Unit) = untagResource(UntagResourceRequest.Builder().apply(block).build())
/**
* Updates multiple LaunchConfigurations by Source Server ID.
*/
suspend fun updateLaunchConfiguration(input: UpdateLaunchConfigurationRequest): UpdateLaunchConfigurationResponse
/**
* Updates multiple LaunchConfigurations by Source Server ID.
*/
suspend fun updateLaunchConfiguration(block: UpdateLaunchConfigurationRequest.Builder.() -> Unit) = updateLaunchConfiguration(UpdateLaunchConfigurationRequest.Builder().apply(block).build())
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun updateLaunchConfigurationTemplate(input: UpdateLaunchConfigurationTemplateRequest): UpdateLaunchConfigurationTemplateResponse
/**
* Creates a new ReplicationConfigurationTemplate.
*/
suspend fun updateLaunchConfigurationTemplate(block: UpdateLaunchConfigurationTemplateRequest.Builder.() -> Unit) = updateLaunchConfigurationTemplate(UpdateLaunchConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Allows you to update multiple ReplicationConfigurations by Source Server ID.
*/
suspend fun updateReplicationConfiguration(input: UpdateReplicationConfigurationRequest): UpdateReplicationConfigurationResponse
/**
* Allows you to update multiple ReplicationConfigurations by Source Server ID.
*/
suspend fun updateReplicationConfiguration(block: UpdateReplicationConfigurationRequest.Builder.() -> Unit) = updateReplicationConfiguration(UpdateReplicationConfigurationRequest.Builder().apply(block).build())
/**
* Updates multiple ReplicationConfigurationTemplates by ID.
*/
suspend fun updateReplicationConfigurationTemplate(input: UpdateReplicationConfigurationTemplateRequest): UpdateReplicationConfigurationTemplateResponse
/**
* Updates multiple ReplicationConfigurationTemplates by ID.
*/
suspend fun updateReplicationConfigurationTemplate(block: UpdateReplicationConfigurationTemplateRequest.Builder.() -> Unit) = updateReplicationConfigurationTemplate(UpdateReplicationConfigurationTemplateRequest.Builder().apply(block).build())
/**
* Allows you to change between the AGENT_BASED replication type and the SNAPSHOT_SHIPPING replication type.
*/
suspend fun updateSourceServerReplicationType(input: UpdateSourceServerReplicationTypeRequest): UpdateSourceServerReplicationTypeResponse
/**
* Allows you to change between the AGENT_BASED replication type and the SNAPSHOT_SHIPPING replication type.
*/
suspend fun updateSourceServerReplicationType(block: UpdateSourceServerReplicationTypeRequest.Builder.() -> Unit) = updateSourceServerReplicationType(UpdateSourceServerReplicationTypeRequest.Builder().apply(block).build())
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy