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

com.pulumi.azurenative.hybridnetwork.kotlin.outputs.HelmArtifactProfileResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.hybridnetwork.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Helm artifact profile.
 * @property helmPackageName Helm package name.
 * @property helmPackageVersionRange Helm package version range.
 * @property imagePullSecretsValuesPaths The image pull secrets values path list.
 * @property registryValuesPaths The registry values path list.
 */
public data class HelmArtifactProfileResponse(
    public val helmPackageName: String? = null,
    public val helmPackageVersionRange: String? = null,
    public val imagePullSecretsValuesPaths: List? = null,
    public val registryValuesPaths: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.hybridnetwork.outputs.HelmArtifactProfileResponse): HelmArtifactProfileResponse = HelmArtifactProfileResponse(
            helmPackageName = javaType.helmPackageName().map({ args0 -> args0 }).orElse(null),
            helmPackageVersionRange = javaType.helmPackageVersionRange().map({ args0 -> args0 }).orElse(null),
            imagePullSecretsValuesPaths = javaType.imagePullSecretsValuesPaths().map({ args0 -> args0 }),
            registryValuesPaths = javaType.registryValuesPaths().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy