
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServicesPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.healthcareapis.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The properties of a service instance.
* @property accessPolicies The access policies of the service instance.
* @property acrConfiguration The azure container registry settings used for convert data operation of the service instance.
* @property authenticationConfiguration The authentication configuration for the service instance.
* @property corsConfiguration The settings for the CORS configuration of the service instance.
* @property cosmosDbConfiguration The settings for the Cosmos DB database backing the service.
* @property exportConfiguration The settings for the export operation of the service instance.
* @property importConfiguration The settings for the import operation of the service instance.
* @property privateEndpointConnections The list of private endpoint connections that are set up for this resource.
* @property provisioningState The provisioning state.
* @property publicNetworkAccess Control permission for data plane traffic coming from public networks while private endpoint is enabled.
*/
public data class ServicesPropertiesResponse(
public val accessPolicies: List? = null,
public val acrConfiguration: ServiceAcrConfigurationInfoResponse? = null,
public val authenticationConfiguration: ServiceAuthenticationConfigurationInfoResponse? = null,
public val corsConfiguration: ServiceCorsConfigurationInfoResponse? = null,
public val cosmosDbConfiguration: ServiceCosmosDbConfigurationInfoResponse? = null,
public val exportConfiguration: ServiceExportConfigurationInfoResponse? = null,
public val importConfiguration: ServiceImportConfigurationInfoResponse? = null,
public val privateEndpointConnections: List? = null,
public val provisioningState: String,
public val publicNetworkAccess: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.healthcareapis.outputs.ServicesPropertiesResponse): ServicesPropertiesResponse = ServicesPropertiesResponse(
accessPolicies = javaType.accessPolicies().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceAccessPolicyEntryResponse.Companion.toKotlin(args0)
})
}),
acrConfiguration = javaType.acrConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceAcrConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
authenticationConfiguration = javaType.authenticationConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceAuthenticationConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
corsConfiguration = javaType.corsConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceCorsConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
cosmosDbConfiguration = javaType.cosmosDbConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceCosmosDbConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
exportConfiguration = javaType.exportConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceExportConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
importConfiguration = javaType.importConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.ServiceImportConfigurationInfoResponse.Companion.toKotlin(args0)
})
}).orElse(null),
privateEndpointConnections = javaType.privateEndpointConnections().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.healthcareapis.kotlin.outputs.PrivateEndpointConnectionResponse.Companion.toKotlin(args0)
})
}),
provisioningState = javaType.provisioningState(),
publicNetworkAccess = javaType.publicNetworkAccess().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy