All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cloudshiftdev.awscdk.pipelines.EcrDockerCredentialOptions.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.pipelines

import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.awscdk.services.iam.IRole
import kotlin.Unit
import kotlin.collections.List

/**
 * Options for defining access for a Docker Credential composed of ECR repos.
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import io.cloudshiftdev.awscdk.services.iam.*;
 * import io.cloudshiftdev.awscdk.pipelines.*;
 * Role role;
 * EcrDockerCredentialOptions ecrDockerCredentialOptions = EcrDockerCredentialOptions.builder()
 * .assumeRole(role)
 * .usages(List.of(DockerCredentialUsage.SYNTH))
 * .build();
 * ```
 */
public interface EcrDockerCredentialOptions {
  /**
   * An IAM role to assume prior to accessing the secret.
   *
   * Default: - none. The current execution role will be used.
   */
  public fun assumeRole(): IRole? = unwrap(this).getAssumeRole()?.let(IRole::wrap)

  /**
   * Defines which stages of the pipeline should be granted access to these credentials.
   *
   * Default: - all relevant stages (synth, self-update, asset publishing) are granted access.
   */
  public fun usages(): List =
      unwrap(this).getUsages()?.map(DockerCredentialUsage::wrap) ?: emptyList()

  /**
   * A builder for [EcrDockerCredentialOptions]
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * @param assumeRole An IAM role to assume prior to accessing the secret.
     */
    public fun assumeRole(assumeRole: IRole)

    /**
     * @param usages Defines which stages of the pipeline should be granted access to these
     * credentials.
     */
    public fun usages(usages: List)

    /**
     * @param usages Defines which stages of the pipeline should be granted access to these
     * credentials.
     */
    public fun usages(vararg usages: DockerCredentialUsage)
  }

  private class BuilderImpl : Builder {
    private val cdkBuilder: software.amazon.awscdk.pipelines.EcrDockerCredentialOptions.Builder =
        software.amazon.awscdk.pipelines.EcrDockerCredentialOptions.builder()

    /**
     * @param assumeRole An IAM role to assume prior to accessing the secret.
     */
    override fun assumeRole(assumeRole: IRole) {
      cdkBuilder.assumeRole(assumeRole.let(IRole.Companion::unwrap))
    }

    /**
     * @param usages Defines which stages of the pipeline should be granted access to these
     * credentials.
     */
    override fun usages(usages: List) {
      cdkBuilder.usages(usages.map(DockerCredentialUsage.Companion::unwrap))
    }

    /**
     * @param usages Defines which stages of the pipeline should be granted access to these
     * credentials.
     */
    override fun usages(vararg usages: DockerCredentialUsage): Unit = usages(usages.toList())

    public fun build(): software.amazon.awscdk.pipelines.EcrDockerCredentialOptions =
        cdkBuilder.build()
  }

  private class Wrapper(
    cdkObject: software.amazon.awscdk.pipelines.EcrDockerCredentialOptions,
  ) : CdkObject(cdkObject),
      EcrDockerCredentialOptions {
    /**
     * An IAM role to assume prior to accessing the secret.
     *
     * Default: - none. The current execution role will be used.
     */
    override fun assumeRole(): IRole? = unwrap(this).getAssumeRole()?.let(IRole::wrap)

    /**
     * Defines which stages of the pipeline should be granted access to these credentials.
     *
     * Default: - all relevant stages (synth, self-update, asset publishing) are granted access.
     */
    override fun usages(): List =
        unwrap(this).getUsages()?.map(DockerCredentialUsage::wrap) ?: emptyList()
  }

  public companion object {
    public operator fun invoke(block: Builder.() -> Unit = {}): EcrDockerCredentialOptions {
      val builderImpl = BuilderImpl()
      return Wrapper(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.pipelines.EcrDockerCredentialOptions):
        EcrDockerCredentialOptions = CdkObjectWrappers.wrap(cdkObject) as?
        EcrDockerCredentialOptions ?: Wrapper(cdkObject)

    internal fun unwrap(wrapped: EcrDockerCredentialOptions):
        software.amazon.awscdk.pipelines.EcrDockerCredentialOptions = (wrapped as
        CdkObject).cdkObject as software.amazon.awscdk.pipelines.EcrDockerCredentialOptions
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy