com.pulumi.gcp.logging.kotlin.outputs.GetFolderSettingsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.logging.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getFolderSettings.
* @property disableDefaultSink If set to true, the _Default sink in newly created projects and folders will created in a disabled state. This can be used to automatically disable log storage if there is already an aggregated sink configured in the hierarchy. The _Default sink can be re-enabled manually if needed.
* @property folder
* @property id The provider-assigned unique ID for this managed resource.
* @property kmsKeyName The resource name for the configured Cloud KMS key.
* KMS key name format:
* `'projects/[PROJECT_ID]/locations/[LOCATION]/keyRings/[KEYRING]/cryptoKeys/[KEY]'`
* To enable CMEK for the bucket, set this field to a valid kmsKeyName for which the associated service account has the required cloudkms.cryptoKeyEncrypterDecrypter roles assigned for the key.
* The Cloud KMS key used by the bucket can be updated by changing the kmsKeyName to a new valid key name. Encryption operations that are in progress will be completed with the key that was in use when they started. Decryption operations will be completed using the key that was used at the time of encryption unless access to that key has been revoked.
* See [Enabling CMEK for Logging Buckets](https://cloud.google.com/logging/docs/routing/managed-encryption-storage) for more information.
* @property kmsServiceAccountId The service account associated with a project for which CMEK will apply.
* Before enabling CMEK for a logging bucket, you must first assign the cloudkms.cryptoKeyEncrypterDecrypter role to the service account associated with the project for which CMEK will apply. See [Enabling CMEK for Logging Buckets](https://cloud.google.com/logging/docs/routing/managed-encryption-storage) for more information.
* @property loggingServiceAccountId The service account for the given container. Sinks use this service account as their writerIdentity if no custom service account is provided.
* @property name The resource name of the settings.
* @property storageLocation The storage location that Cloud Logging will use to create new resources when a location is needed but not explicitly provided.
*/
public data class GetFolderSettingsResult(
public val disableDefaultSink: Boolean,
public val folder: String,
public val id: String,
public val kmsKeyName: String,
public val kmsServiceAccountId: String,
public val loggingServiceAccountId: String,
public val name: String,
public val storageLocation: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.logging.outputs.GetFolderSettingsResult): GetFolderSettingsResult = GetFolderSettingsResult(
disableDefaultSink = javaType.disableDefaultSink(),
folder = javaType.folder(),
id = javaType.id(),
kmsKeyName = javaType.kmsKeyName(),
kmsServiceAccountId = javaType.kmsServiceAccountId(),
loggingServiceAccountId = javaType.loggingServiceAccountId(),
name = javaType.name(),
storageLocation = javaType.storageLocation(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy