All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
commonMain.aws.sdk.kotlin.services.neptunegraph.waiters.Waiters.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptunegraph.waiters
import aws.sdk.kotlin.services.neptunegraph.NeptuneGraphClient
import aws.sdk.kotlin.services.neptunegraph.model.GetGraphRequest
import aws.sdk.kotlin.services.neptunegraph.model.GetGraphResponse
import aws.sdk.kotlin.services.neptunegraph.model.GetGraphSnapshotRequest
import aws.sdk.kotlin.services.neptunegraph.model.GetGraphSnapshotResponse
import aws.sdk.kotlin.services.neptunegraph.model.GetImportTaskRequest
import aws.sdk.kotlin.services.neptunegraph.model.GetImportTaskResponse
import aws.sdk.kotlin.services.neptunegraph.model.GetPrivateGraphEndpointRequest
import aws.sdk.kotlin.services.neptunegraph.model.GetPrivateGraphEndpointResponse
import aws.smithy.kotlin.runtime.retries.Outcome
import aws.smithy.kotlin.runtime.retries.StandardRetryStrategy
import aws.smithy.kotlin.runtime.retries.delay.InfiniteTokenBucket
import aws.smithy.kotlin.runtime.retries.policy.Acceptor
import aws.smithy.kotlin.runtime.retries.policy.AcceptorRetryPolicy
import aws.smithy.kotlin.runtime.retries.policy.ErrorTypeAcceptor
import aws.smithy.kotlin.runtime.retries.policy.OutputAcceptor
import aws.smithy.kotlin.runtime.retries.policy.RetryDirective
import aws.smithy.kotlin.runtime.util.truthiness
import kotlin.time.Duration.Companion.milliseconds
/**
* Wait until Graph is Available
*/
public suspend fun NeptuneGraphClient.waitUntilGraphAvailable(request: GetGraphRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 28_800_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "DELETING"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "FAILED"
},
OutputAcceptor(RetryDirective.TerminateAndSucceed) {
val status = it.status?.value
status == "AVAILABLE"
},
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getGraph(request) }
}
/**
* Wait until Graph is Available
*/
public suspend fun NeptuneGraphClient.waitUntilGraphAvailable(block: GetGraphRequest.Builder.() -> Unit): Outcome =
waitUntilGraphAvailable(GetGraphRequest.Builder().apply(block).build())
/**
* Wait until Graph is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilGraphDeleted(request: GetGraphRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 3_600_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
val string = "DELETING"
val comparison = if (status == null) null else status.compareTo(string) != 0
comparison == true
},
ErrorTypeAcceptor(RetryDirective.TerminateAndSucceed, "ResourceNotFoundException"),
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getGraph(request) }
}
/**
* Wait until Graph is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilGraphDeleted(block: GetGraphRequest.Builder.() -> Unit): Outcome =
waitUntilGraphDeleted(GetGraphRequest.Builder().apply(block).build())
/**
* Wait until GraphSnapshot is Available
*/
public suspend fun NeptuneGraphClient.waitUntilGraphSnapshotAvailable(request: GetGraphSnapshotRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 7_200_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "DELETING"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "FAILED"
},
OutputAcceptor(RetryDirective.TerminateAndSucceed) {
val status = it.status?.value
status == "AVAILABLE"
},
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getGraphSnapshot(request) }
}
/**
* Wait until GraphSnapshot is Available
*/
public suspend fun NeptuneGraphClient.waitUntilGraphSnapshotAvailable(block: GetGraphSnapshotRequest.Builder.() -> Unit): Outcome =
waitUntilGraphSnapshotAvailable(GetGraphSnapshotRequest.Builder().apply(block).build())
/**
* Wait until GraphSnapshot is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilGraphSnapshotDeleted(request: GetGraphSnapshotRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 3_600_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
val string = "DELETING"
val comparison = if (status == null) null else status.compareTo(string) != 0
comparison == true
},
ErrorTypeAcceptor(RetryDirective.TerminateAndSucceed, "ResourceNotFoundException"),
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getGraphSnapshot(request) }
}
/**
* Wait until GraphSnapshot is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilGraphSnapshotDeleted(block: GetGraphSnapshotRequest.Builder.() -> Unit): Outcome =
waitUntilGraphSnapshotDeleted(GetGraphSnapshotRequest.Builder().apply(block).build())
/**
* Wait until Import Task is Successful
*/
public suspend fun NeptuneGraphClient.waitUntilImportTaskSuccessful(request: GetImportTaskRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 28_800_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "CANCELLING"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "CANCELLED"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "ROLLING_BACK"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "FAILED"
},
OutputAcceptor(RetryDirective.TerminateAndSucceed) {
val status = it.status?.value
status == "SUCCEEDED"
},
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getImportTask(request) }
}
/**
* Wait until Import Task is Successful
*/
public suspend fun NeptuneGraphClient.waitUntilImportTaskSuccessful(block: GetImportTaskRequest.Builder.() -> Unit): Outcome =
waitUntilImportTaskSuccessful(GetImportTaskRequest.Builder().apply(block).build())
/**
* Wait until Import Task is Cancelled
*/
public suspend fun NeptuneGraphClient.waitUntilImportTaskCancelled(request: GetImportTaskRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 60_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 3_600_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
val string = "CANCELLING"
val comparison = if (status == null) null else status.compareTo(string) != 0
val comparisonTruthiness = truthiness(comparison)
val status2 = it.status?.value
val string2 = "CANCELLED"
val comparison2 = if (status2 == null) null else status2.compareTo(string2) != 0
val and = if (comparisonTruthiness) comparison2 else comparison
and == true
},
OutputAcceptor(RetryDirective.TerminateAndSucceed) {
val status = it.status?.value
status == "CANCELLED"
},
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getImportTask(request) }
}
/**
* Wait until Import Task is Cancelled
*/
public suspend fun NeptuneGraphClient.waitUntilImportTaskCancelled(block: GetImportTaskRequest.Builder.() -> Unit): Outcome =
waitUntilImportTaskCancelled(GetImportTaskRequest.Builder().apply(block).build())
/**
* Wait until PrivateGraphEndpoint is Available
*/
public suspend fun NeptuneGraphClient.waitUntilPrivateGraphEndpointAvailable(request: GetPrivateGraphEndpointRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 10_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 1_800_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "DELETING"
},
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
status == "FAILED"
},
OutputAcceptor(RetryDirective.TerminateAndSucceed) {
val status = it.status?.value
status == "AVAILABLE"
},
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getPrivateGraphEndpoint(request) }
}
/**
* Wait until PrivateGraphEndpoint is Available
*/
public suspend fun NeptuneGraphClient.waitUntilPrivateGraphEndpointAvailable(block: GetPrivateGraphEndpointRequest.Builder.() -> Unit): Outcome =
waitUntilPrivateGraphEndpointAvailable(GetPrivateGraphEndpointRequest.Builder().apply(block).build())
/**
* Wait until PrivateGraphEndpoint is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilPrivateGraphEndpointDeleted(request: GetPrivateGraphEndpointRequest): Outcome {
val strategy = StandardRetryStrategy {
maxAttempts = 20
tokenBucket = InfiniteTokenBucket
delayProvider {
initialDelay = 10_000.milliseconds
scaleFactor = 1.5
jitter = 1.0
maxBackoff = 1_800_000.milliseconds
}
}
val acceptors = listOf>(
OutputAcceptor(RetryDirective.TerminateAndFail) {
val status = it.status?.value
val string = "DELETING"
val comparison = if (status == null) null else status.compareTo(string) != 0
comparison == true
},
ErrorTypeAcceptor(RetryDirective.TerminateAndSucceed, "ResourceNotFoundException"),
)
val policy = AcceptorRetryPolicy(request, acceptors)
return strategy.retry(policy) { getPrivateGraphEndpoint(request) }
}
/**
* Wait until PrivateGraphEndpoint is Deleted
*/
public suspend fun NeptuneGraphClient.waitUntilPrivateGraphEndpointDeleted(block: GetPrivateGraphEndpointRequest.Builder.() -> Unit): Outcome =
waitUntilPrivateGraphEndpointDeleted(GetPrivateGraphEndpointRequest.Builder().apply(block).build())