- Resource: Topic
- MessageStoragePolicy
- SchemaSettings
- Encoding
- State
- IngestionDataSourceSettings
- AwsKinesis
- State
- Methods
Resource: Topic
A topic resource.
JSON representation |
---|
{ "name": string, "labels": { string: string, ... }, "messageStoragePolicy": { object ( |
Fields | |
---|---|
name |
Required. Name of the topic. Format is |
labels |
Optional. See Creating and managing labels. An object containing a list of |
messageStoragePolicy |
Optional. Policy constraining the set of Google Cloud Platform regions where messages published to the topic may be stored. If not present, then no constraints are in effect. |
kmsKeyName |
Optional. The resource name of the Cloud KMS CryptoKey to be used to protect access to messages published on this topic. The expected format is |
schemaSettings |
Optional. Settings for validating messages published against a schema. |
satisfiesPzs |
Optional. Reserved for future use. This field is set only in responses from the server; it is ignored if it is set in any requests. |
messageRetentionDuration |
Optional. Indicates the minimum duration to retain a message after it is published to the topic. If this field is set, messages published to the topic in the last A duration in seconds with up to nine fractional digits, ending with ' |
state |
Output only. An output-only field indicating the state of the topic. |
ingestionDataSourceSettings |
Optional. Settings for ingestion from a data source into this topic. |
MessageStoragePolicy
A policy constraining the storage of messages published to the topic.
JSON representation |
---|
{ "allowedPersistenceRegions": [ string ], "enforceInTransit": boolean } |
Fields | |
---|---|
allowedPersistenceRegions[] |
Optional. A list of IDs of Google Cloud regions where messages that are published to the topic may be persisted in storage. Messages published by publishers running in non-allowed Google Cloud regions (or running outside of Google Cloud altogether) are routed for storage in one of the allowed regions. An empty list means that no regions are allowed, and is not a valid configuration. |
enforceInTransit |
Optional. If true, |
SchemaSettings
Settings for validating messages published against a schema.
JSON representation |
---|
{
"schema": string,
"encoding": enum ( |
Fields | |
---|---|
schema |
Required. The name of the schema that messages published should be validated against. Format is |
encoding |
Optional. The encoding of messages validated against |
firstRevisionId |
Optional. The minimum (inclusive) revision allowed for validating messages. If empty or not present, allow any revision to be validated against last_revision or any revision created before. |
lastRevisionId |
Optional. The maximum (inclusive) revision allowed for validating messages. If empty or not present, allow any revision to be validated against first_revision or any revision created after. |
Encoding
Possible encoding types for messages.
Enums | |
---|---|
ENCODING_UNSPECIFIED |
Unspecified |
JSON |
JSON encoding |
BINARY |
Binary encoding, as defined by the schema type. For some schema types, binary encoding may not be available. |
State
The state of the topic.
Enums | |
---|---|
STATE_UNSPECIFIED |
Default value. This value is unused. |
ACTIVE |
The topic does not have any persistent errors. |
INGESTION_RESOURCE_ERROR |
Ingestion from the data source has encountered a permanent error. See the more detailed error state in the corresponding ingestion source configuration. |
IngestionDataSourceSettings
Settings for an ingestion data source on a topic.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field source . Only one source type can have settings set. source can be only one of the following: |
|
awsKinesis |
Optional. Amazon Kinesis Data Streams. |
AwsKinesis
Ingestion settings for Amazon Kinesis Data Streams.
JSON representation |
---|
{
"state": enum ( |
Fields | |
---|---|
state |
Output only. An output-only field that indicates the state of the Kinesis ingestion source. |
streamArn |
Required. The Kinesis stream ARN to ingest data from. |
consumerArn |
Required. The Kinesis consumer ARN to used for ingestion in Enhanced Fan-Out mode. The consumer must be already created and ready to be used. |
awsRoleArn |
Required. AWS role ARN to be used for Federated Identity authentication with Kinesis. Check the Pub/Sub docs for how to set up this role and the required permissions that need to be attached to it. |
gcpServiceAccount |
Required. The GCP service account to be used for Federated Identity authentication with Kinesis (via a |
State
Possible states for ingestion from Amazon Kinesis Data Streams.
Enums | |
---|---|
STATE_UNSPECIFIED |
Default value. This value is unused. |
ACTIVE |
Ingestion is active. |
KINESIS_PERMISSION_DENIED |
Permission denied encountered while consuming data from Kinesis. This can happen if: - The provided awsRoleArn does not exist or does not have the appropriate permissions attached. - The provided awsRoleArn is not set up properly for Identity Federation using gcpServiceAccount . - The Pub/Sub SA is not granted the iam.serviceAccounts.getOpenIdToken permission on gcpServiceAccount . |
PUBLISH_PERMISSION_DENIED |
Permission denied encountered while publishing to the topic. This can happen if the Pub/Sub SA has not been granted the appropriate publish permissions |
STREAM_NOT_FOUND |
The Kinesis stream does not exist. |
CONSUMER_NOT_FOUND |
The Kinesis consumer does not exist. |
Methods |
|
---|---|
|
Creates the given topic with the given name. |
|
Deletes the topic with the given name. |
|
Gets the configuration of a topic. |
|
Gets the access control policy for a resource. |
|
Lists matching topics. |
|
Updates an existing topic by updating the fields specified in the update mask. |
|
Adds one or more messages to the topic. |
|
Sets the access control policy on the specified resource. |
|
Returns permissions that a caller has on the specified resource. |