
com.pulumi.googlenative.compute.beta.kotlin.outputs.GetRegionNotificationEndpointResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.beta.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property creationTimestamp Creation timestamp in RFC3339 text format.
* @property description An optional description of this resource. Provide this property when you create the resource.
* @property grpcSettings Settings of the gRPC notification endpoint including the endpoint URL and the retry duration.
* @property kind Type of the resource. Always compute#notificationEndpoint for notification endpoints.
* @property name Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
* @property region URL of the region where the notification endpoint resides. This field applies only to the regional resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.
* @property selfLink Server-defined URL for the resource.
*/
public data class GetRegionNotificationEndpointResult(
public val creationTimestamp: String,
public val description: String,
public val grpcSettings: NotificationEndpointGrpcSettingsResponse,
public val kind: String,
public val name: String,
public val region: String,
public val selfLink: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.beta.outputs.GetRegionNotificationEndpointResult): GetRegionNotificationEndpointResult = GetRegionNotificationEndpointResult(
creationTimestamp = javaType.creationTimestamp(),
description = javaType.description(),
grpcSettings = javaType.grpcSettings().let({ args0 ->
com.pulumi.googlenative.compute.beta.kotlin.outputs.NotificationEndpointGrpcSettingsResponse.Companion.toKotlin(args0)
}),
kind = javaType.kind(),
name = javaType.name(),
region = javaType.region(),
selfLink = javaType.selfLink(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy