LicenseArgs

data class LicenseArgs(val identifier: Output<String>? = null, val name: Output<String>? = null, val url: Output<String>? = null) : ConvertibleToJava<LicenseArgs>

The license information for the API.

Constructors

Link copied to clipboard
constructor(identifier: Output<String>? = null, name: Output<String>? = null, url: Output<String>? = null)

Properties

Link copied to clipboard
val identifier: Output<String>? = null

SPDX license information for the API. The identifier field is mutually exclusive of the URL field.

Link copied to clipboard
val name: Output<String>? = null

Name of the license.

Link copied to clipboard
val url: Output<String>? = null

URL pointing to the license details. The URL field is mutually exclusive of the identifier field.

Functions

Link copied to clipboard
open override fun toJava(): LicenseArgs