DependabotOrganizationSecretArgs

data class DependabotOrganizationSecretArgs(val encryptedValue: Output<String>? = null, val plaintextValue: Output<String>? = null, val secretName: Output<String>? = null, val selectedRepositoryIds: Output<List<Int>>? = null, val visibility: Output<String>? = null) : ConvertibleToJava<DependabotOrganizationSecretArgs>

Constructors

Link copied to clipboard
constructor(encryptedValue: Output<String>? = null, plaintextValue: Output<String>? = null, secretName: Output<String>? = null, selectedRepositoryIds: Output<List<Int>>? = null, visibility: Output<String>? = null)

Properties

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

Encrypted value of the secret using the GitHub public key in Base64 format.

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

Plaintext value of the secret to be encrypted.

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

Name of the secret.

Link copied to clipboard
val selectedRepositoryIds: Output<List<Int>>? = null

An array of repository ids that can access the organization secret.

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

Configures the access that repositories have to the organization secret. Must be one of 'all', 'private' or 'selected'. 'selected_repository_ids' is required if set to 'selected'.

Functions

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