Package-level declarations

Types

Link copied to clipboard
data class AvroConfigArgs(val writeMetadata: Output<Boolean>? = null) : ConvertibleToJava<AvroConfigArgs>

Configuration for writing message data in Avro format. Message payloads and metadata will be written to files as an Avro binary.

Link copied to clipboard
Link copied to clipboard
data class BigQueryConfigArgs(val dropUnknownFields: Output<Boolean>? = null, val table: Output<String>? = null, val useTopicSchema: Output<Boolean>? = null, val writeMetadata: Output<Boolean>? = null) : ConvertibleToJava<BigQueryConfigArgs>

Configuration for a BigQuery subscription.

Link copied to clipboard
Link copied to clipboard
data class BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
Link copied to clipboard
data class CloudStorageConfigArgs(val avroConfig: Output<AvroConfigArgs>? = null, val bucket: Output<String>, val filenamePrefix: Output<String>? = null, val filenameSuffix: Output<String>? = null, val maxBytes: Output<String>? = null, val maxDuration: Output<String>? = null, val textConfig: Output<TextConfigArgs>? = null) : ConvertibleToJava<CloudStorageConfigArgs>

Configuration for a Cloud Storage subscription.

Link copied to clipboard
data class DeadLetterPolicyArgs(val deadLetterTopic: Output<String>? = null, val maxDeliveryAttempts: Output<Int>? = null) : ConvertibleToJava<DeadLetterPolicyArgs>

Dead lettering is done on a best effort basis. The same message might be dead lettered multiple times. If validation on any of the fields fails at subscription creation/updation, the create/update subscription request will fail.

Link copied to clipboard
data class ExpirationPolicyArgs(val ttl: Output<String>? = null) : ConvertibleToJava<ExpirationPolicyArgs>

A policy that specifies the conditions for resource expiration (i.e., automatic resource deletion).

Link copied to clipboard
data class ExprArgs(val description: Output<String>? = null, val expression: Output<String>? = null, val location: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<ExprArgs>

Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Link copied to clipboard

Builder for ExprArgs.

Link copied to clipboard
data class GetSchemaIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val schemaId: String) : ConvertibleToJava<GetSchemaIamPolicyPlainArgs>
Link copied to clipboard
data class GetSchemaPlainArgs(val project: String? = null, val schemaId: String, val view: String? = null) : ConvertibleToJava<GetSchemaPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetSnapshotIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val snapshotId: String) : ConvertibleToJava<GetSnapshotIamPolicyPlainArgs>
Link copied to clipboard
data class GetSnapshotPlainArgs(val project: String? = null, val snapshotId: String) : ConvertibleToJava<GetSnapshotPlainArgs>
Link copied to clipboard
data class GetSubscriptionIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val subscriptionId: String) : ConvertibleToJava<GetSubscriptionIamPolicyPlainArgs>
Link copied to clipboard
data class GetSubscriptionPlainArgs(val project: String? = null, val subscriptionId: String) : ConvertibleToJava<GetSubscriptionPlainArgs>
Link copied to clipboard
data class GetTopicIamPolicyPlainArgs(val optionsRequestedPolicyVersion: Int? = null, val project: String? = null, val topicId: String) : ConvertibleToJava<GetTopicIamPolicyPlainArgs>
Link copied to clipboard
data class GetTopicPlainArgs(val project: String? = null, val topicId: String) : ConvertibleToJava<GetTopicPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class MessageStoragePolicyArgs(val allowedPersistenceRegions: Output<List<String>>? = null) : ConvertibleToJava<MessageStoragePolicyArgs>

A policy constraining the storage of messages published to the topic.

Link copied to clipboard
data class OidcTokenArgs(val audience: Output<String>? = null, val serviceAccountEmail: Output<String>? = null) : ConvertibleToJava<OidcTokenArgs>

Contains information needed for generating an OpenID Connect token.

Link copied to clipboard
Link copied to clipboard
data class PushConfigArgs(val attributes: Output<Map<String, String>>? = null, val oidcToken: Output<OidcTokenArgs>? = null, val pushEndpoint: Output<String>? = null) : ConvertibleToJava<PushConfigArgs>

Configuration for a push delivery endpoint.

Link copied to clipboard
Link copied to clipboard
data class RetryPolicyArgs(val maximumBackoff: Output<String>? = null, val minimumBackoff: Output<String>? = null) : ConvertibleToJava<RetryPolicyArgs>

A policy that specifies how Cloud Pub/Sub retries message delivery. Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. RetryPolicy will be triggered on NACKs or acknowledgement deadline exceeded events for a given message. Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff.

Link copied to clipboard
Link copied to clipboard
data class SchemaSettingsArgs(val encoding: Output<SchemaSettingsEncoding>? = null, val firstRevisionId: Output<String>? = null, val lastRevisionId: Output<String>? = null, val schema: Output<String>) : ConvertibleToJava<SchemaSettingsArgs>

Settings for validating messages published against a schema.

Link copied to clipboard
Link copied to clipboard
class TextConfigArgs : ConvertibleToJava<TextConfigArgs>

Configuration for writing message data in text format. Message payloads will be written to files as raw text, separated by a newline.

Link copied to clipboard