Enum value maps for IngestionDataSourceSettings_AwsKinesis_State.
var ( IngestionDataSourceSettings_AwsKinesis_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "ACTIVE", 2: "KINESIS_PERMISSION_DENIED", 3: "PUBLISH_PERMISSION_DENIED", 4: "STREAM_NOT_FOUND", 5: "CONSUMER_NOT_FOUND", } IngestionDataSourceSettings_AwsKinesis_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "ACTIVE": 1, "KINESIS_PERMISSION_DENIED": 2, "PUBLISH_PERMISSION_DENIED": 3, "STREAM_NOT_FOUND": 4, "CONSUMER_NOT_FOUND": 5, } )
Enum value maps for Topic_State.
var ( Topic_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "ACTIVE", 2: "INGESTION_RESOURCE_ERROR", } Topic_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "ACTIVE": 1, "INGESTION_RESOURCE_ERROR": 2, } )
Enum value maps for Subscription_State.
var ( Subscription_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "ACTIVE", 2: "RESOURCE_ERROR", } Subscription_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "ACTIVE": 1, "RESOURCE_ERROR": 2, } )
Enum value maps for BigQueryConfig_State.
var ( BigQueryConfig_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "ACTIVE", 2: "PERMISSION_DENIED", 3: "NOT_FOUND", 4: "SCHEMA_MISMATCH", 5: "IN_TRANSIT_LOCATION_RESTRICTION", } BigQueryConfig_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "ACTIVE": 1, "PERMISSION_DENIED": 2, "NOT_FOUND": 3, "SCHEMA_MISMATCH": 4, "IN_TRANSIT_LOCATION_RESTRICTION": 5, } )
Enum value maps for CloudStorageConfig_State.
var ( CloudStorageConfig_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "ACTIVE", 2: "PERMISSION_DENIED", 3: "NOT_FOUND", 4: "IN_TRANSIT_LOCATION_RESTRICTION", } CloudStorageConfig_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "ACTIVE": 1, "PERMISSION_DENIED": 2, "NOT_FOUND": 3, "IN_TRANSIT_LOCATION_RESTRICTION": 4, } )
Enum value maps for SchemaView.
var ( SchemaView_name = map[int32]string{ 0: "SCHEMA_VIEW_UNSPECIFIED", 1: "BASIC", 2: "FULL", } SchemaView_value = map[string]int32{ "SCHEMA_VIEW_UNSPECIFIED": 0, "BASIC": 1, "FULL": 2, } )
Enum value maps for Encoding.
var ( Encoding_name = map[int32]string{ 0: "ENCODING_UNSPECIFIED", 1: "JSON", 2: "BINARY", } Encoding_value = map[string]int32{ "ENCODING_UNSPECIFIED": 0, "JSON": 1, "BINARY": 2, } )
Enum value maps for Schema_Type.
var ( Schema_Type_name = map[int32]string{ 0: "TYPE_UNSPECIFIED", 1: "PROTOCOL_BUFFER", 2: "AVRO", } Schema_Type_value = map[string]int32{ "TYPE_UNSPECIFIED": 0, "PROTOCOL_BUFFER": 1, "AVRO": 2, } )
var File_google_pubsub_v1_pubsub_proto protoreflect.FileDescriptor
var File_google_pubsub_v1_schema_proto protoreflect.FileDescriptor
func RegisterPublisherServer(s *grpc.Server, srv PublisherServer)
func RegisterSchemaServiceServer(s *grpc.Server, srv SchemaServiceServer)
func RegisterSubscriberServer(s *grpc.Server, srv SubscriberServer)
Request for the Acknowledge method.
type AcknowledgeRequest struct { // Required. The subscription whose message is being acknowledged. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Required. The acknowledgment ID for the messages being acknowledged that // was returned by the Pub/Sub system in the `Pull` response. Must not be // empty. AckIds []string `protobuf:"bytes,2,rep,name=ack_ids,json=ackIds,proto3" json:"ack_ids,omitempty"` // contains filtered or unexported fields }
func (*AcknowledgeRequest) Descriptor() ([]byte, []int)
Deprecated: Use AcknowledgeRequest.ProtoReflect.Descriptor instead.
func (x *AcknowledgeRequest) GetAckIds() []string
func (x *AcknowledgeRequest) GetSubscription() string
func (*AcknowledgeRequest) ProtoMessage()
func (x *AcknowledgeRequest) ProtoReflect() protoreflect.Message
func (x *AcknowledgeRequest) Reset()
func (x *AcknowledgeRequest) String() string
Configuration for a BigQuery subscription.
type BigQueryConfig struct { // Optional. The name of the table to which to write data, of the form // {projectId}.{datasetId}.{tableId} Table string `protobuf:"bytes,1,opt,name=table,proto3" json:"table,omitempty"` // Optional. When true, use the topic's schema as the columns to write to in // BigQuery, if it exists. `use_topic_schema` and `use_table_schema` cannot be // enabled at the same time. UseTopicSchema bool `protobuf:"varint,2,opt,name=use_topic_schema,json=useTopicSchema,proto3" json:"use_topic_schema,omitempty"` // Optional. When true, write the subscription name, message_id, publish_time, // attributes, and ordering_key to additional columns in the table. The // subscription name, message_id, and publish_time fields are put in their own // columns while all other message properties (other than data) are written to // a JSON object in the attributes column. WriteMetadata bool `protobuf:"varint,3,opt,name=write_metadata,json=writeMetadata,proto3" json:"write_metadata,omitempty"` // Optional. When true and use_topic_schema is true, any fields that are a // part of the topic schema that are not part of the BigQuery table schema are // dropped when writing to BigQuery. Otherwise, the schemas must be kept in // sync and any messages with extra fields are not written and remain in the // subscription's backlog. DropUnknownFields bool `protobuf:"varint,4,opt,name=drop_unknown_fields,json=dropUnknownFields,proto3" json:"drop_unknown_fields,omitempty"` // Output only. An output-only field that indicates whether or not the // subscription can receive messages. State BigQueryConfig_State `protobuf:"varint,5,opt,name=state,proto3,enum=google.pubsub.v1.BigQueryConfig_State" json:"state,omitempty"` // Optional. When true, use the BigQuery table's schema as the columns to // write to in BigQuery. `use_table_schema` and `use_topic_schema` cannot be // enabled at the same time. UseTableSchema bool `protobuf:"varint,6,opt,name=use_table_schema,json=useTableSchema,proto3" json:"use_table_schema,omitempty"` // contains filtered or unexported fields }
func (*BigQueryConfig) Descriptor() ([]byte, []int)
Deprecated: Use BigQueryConfig.ProtoReflect.Descriptor instead.
func (x *BigQueryConfig) GetDropUnknownFields() bool
func (x *BigQueryConfig) GetState() BigQueryConfig_State
func (x *BigQueryConfig) GetTable() string
func (x *BigQueryConfig) GetUseTableSchema() bool
func (x *BigQueryConfig) GetUseTopicSchema() bool
func (x *BigQueryConfig) GetWriteMetadata() bool
func (*BigQueryConfig) ProtoMessage()
func (x *BigQueryConfig) ProtoReflect() protoreflect.Message
func (x *BigQueryConfig) Reset()
func (x *BigQueryConfig) String() string
Possible states for a BigQuery subscription.
type BigQueryConfig_State int32
const ( // Default value. This value is unused. BigQueryConfig_STATE_UNSPECIFIED BigQueryConfig_State = 0 // The subscription can actively send messages to BigQuery BigQueryConfig_ACTIVE BigQueryConfig_State = 1 // Cannot write to the BigQuery table because of permission denied errors. // This can happen if // - Pub/Sub SA has not been granted the [appropriate BigQuery IAM // permissions](https://cloud.google.com/pubsub/docs/create-subscription#assign_bigquery_service_account) // - bigquery.googleapis.com API is not enabled for the project // ([instructions](https://cloud.google.com/service-usage/docs/enable-disable)) BigQueryConfig_PERMISSION_DENIED BigQueryConfig_State = 2 // Cannot write to the BigQuery table because it does not exist. BigQueryConfig_NOT_FOUND BigQueryConfig_State = 3 // Cannot write to the BigQuery table due to a schema mismatch. BigQueryConfig_SCHEMA_MISMATCH BigQueryConfig_State = 4 // Cannot write to the destination because enforce_in_transit is set to true // and the destination locations are not in the allowed regions. BigQueryConfig_IN_TRANSIT_LOCATION_RESTRICTION BigQueryConfig_State = 5 )
func (BigQueryConfig_State) Descriptor() protoreflect.EnumDescriptor
func (x BigQueryConfig_State) Enum() *BigQueryConfig_State
func (BigQueryConfig_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use BigQueryConfig_State.Descriptor instead.
func (x BigQueryConfig_State) Number() protoreflect.EnumNumber
func (x BigQueryConfig_State) String() string
func (BigQueryConfig_State) Type() protoreflect.EnumType
Configuration for a Cloud Storage subscription.
type CloudStorageConfig struct { // Required. User-provided name for the Cloud Storage bucket. // The bucket must be created by the user. The bucket name must be without // any prefix like "gs://". See the [bucket naming // requirements] (https://cloud.google.com/storage/docs/buckets#naming). Bucket string `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"` // Optional. User-provided prefix for Cloud Storage filename. See the [object // naming requirements](https://cloud.google.com/storage/docs/objects#naming). FilenamePrefix string `protobuf:"bytes,2,opt,name=filename_prefix,json=filenamePrefix,proto3" json:"filename_prefix,omitempty"` // Optional. User-provided suffix for Cloud Storage filename. See the [object // naming requirements](https://cloud.google.com/storage/docs/objects#naming). // Must not end in "/". FilenameSuffix string `protobuf:"bytes,3,opt,name=filename_suffix,json=filenameSuffix,proto3" json:"filename_suffix,omitempty"` // Optional. User-provided format string specifying how to represent datetimes // in Cloud Storage filenames. See the [datetime format // guidance](https://cloud.google.com/pubsub/docs/create-cloudstorage-subscription#file_names). FilenameDatetimeFormat string `protobuf:"bytes,10,opt,name=filename_datetime_format,json=filenameDatetimeFormat,proto3" json:"filename_datetime_format,omitempty"` // Defaults to text format. // // Types that are assignable to OutputFormat: // // *CloudStorageConfig_TextConfig_ // *CloudStorageConfig_AvroConfig_ OutputFormat isCloudStorageConfig_OutputFormat `protobuf_oneof:"output_format"` // Optional. The maximum duration that can elapse before a new Cloud Storage // file is created. Min 1 minute, max 10 minutes, default 5 minutes. May not // exceed the subscription's acknowledgement deadline. MaxDuration *durationpb.Duration `protobuf:"bytes,6,opt,name=max_duration,json=maxDuration,proto3" json:"max_duration,omitempty"` // Optional. The maximum bytes that can be written to a Cloud Storage file // before a new file is created. Min 1 KB, max 10 GiB. The max_bytes limit may // be exceeded in cases where messages are larger than the limit. MaxBytes int64 `protobuf:"varint,7,opt,name=max_bytes,json=maxBytes,proto3" json:"max_bytes,omitempty"` // Output only. An output-only field that indicates whether or not the // subscription can receive messages. State CloudStorageConfig_State `protobuf:"varint,9,opt,name=state,proto3,enum=google.pubsub.v1.CloudStorageConfig_State" json:"state,omitempty"` // contains filtered or unexported fields }
func (*CloudStorageConfig) Descriptor() ([]byte, []int)
Deprecated: Use CloudStorageConfig.ProtoReflect.Descriptor instead.
func (x *CloudStorageConfig) GetAvroConfig() *CloudStorageConfig_AvroConfig
func (x *CloudStorageConfig) GetBucket() string
func (x *CloudStorageConfig) GetFilenameDatetimeFormat() string
func (x *CloudStorageConfig) GetFilenamePrefix() string
func (x *CloudStorageConfig) GetFilenameSuffix() string
func (x *CloudStorageConfig) GetMaxBytes() int64
func (x *CloudStorageConfig) GetMaxDuration() *durationpb.Duration
func (m *CloudStorageConfig) GetOutputFormat() isCloudStorageConfig_OutputFormat
func (x *CloudStorageConfig) GetState() CloudStorageConfig_State
func (x *CloudStorageConfig) GetTextConfig() *CloudStorageConfig_TextConfig
func (*CloudStorageConfig) ProtoMessage()
func (x *CloudStorageConfig) ProtoReflect() protoreflect.Message
func (x *CloudStorageConfig) Reset()
func (x *CloudStorageConfig) String() string
Configuration for writing message data in Avro format. Message payloads and metadata will be written to files as an Avro binary.
type CloudStorageConfig_AvroConfig struct { // Optional. When true, write the subscription name, message_id, // publish_time, attributes, and ordering_key as additional fields in the // output. The subscription name, message_id, and publish_time fields are // put in their own fields while all other message properties other than // data (for example, an ordering_key, if present) are added as entries in // the attributes map. WriteMetadata bool `protobuf:"varint,1,opt,name=write_metadata,json=writeMetadata,proto3" json:"write_metadata,omitempty"` // contains filtered or unexported fields }
func (*CloudStorageConfig_AvroConfig) Descriptor() ([]byte, []int)
Deprecated: Use CloudStorageConfig_AvroConfig.ProtoReflect.Descriptor instead.
func (x *CloudStorageConfig_AvroConfig) GetWriteMetadata() bool
func (*CloudStorageConfig_AvroConfig) ProtoMessage()
func (x *CloudStorageConfig_AvroConfig) ProtoReflect() protoreflect.Message
func (x *CloudStorageConfig_AvroConfig) Reset()
func (x *CloudStorageConfig_AvroConfig) String() string
type CloudStorageConfig_AvroConfig_ struct { // Optional. If set, message data will be written to Cloud Storage in Avro // format. AvroConfig *CloudStorageConfig_AvroConfig `protobuf:"bytes,5,opt,name=avro_config,json=avroConfig,proto3,oneof"` }
Possible states for a Cloud Storage subscription.
type CloudStorageConfig_State int32
const ( // Default value. This value is unused. CloudStorageConfig_STATE_UNSPECIFIED CloudStorageConfig_State = 0 // The subscription can actively send messages to Cloud Storage. CloudStorageConfig_ACTIVE CloudStorageConfig_State = 1 // Cannot write to the Cloud Storage bucket because of permission denied // errors. CloudStorageConfig_PERMISSION_DENIED CloudStorageConfig_State = 2 // Cannot write to the Cloud Storage bucket because it does not exist. CloudStorageConfig_NOT_FOUND CloudStorageConfig_State = 3 // Cannot write to the destination because enforce_in_transit is set to true // and the destination locations are not in the allowed regions. CloudStorageConfig_IN_TRANSIT_LOCATION_RESTRICTION CloudStorageConfig_State = 4 )
func (CloudStorageConfig_State) Descriptor() protoreflect.EnumDescriptor
func (x CloudStorageConfig_State) Enum() *CloudStorageConfig_State
func (CloudStorageConfig_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use CloudStorageConfig_State.Descriptor instead.
func (x CloudStorageConfig_State) Number() protoreflect.EnumNumber
func (x CloudStorageConfig_State) String() string
func (CloudStorageConfig_State) Type() protoreflect.EnumType
Configuration for writing message data in text format. Message payloads will be written to files as raw text, separated by a newline.
type CloudStorageConfig_TextConfig struct {
// contains filtered or unexported fields
}
func (*CloudStorageConfig_TextConfig) Descriptor() ([]byte, []int)
Deprecated: Use CloudStorageConfig_TextConfig.ProtoReflect.Descriptor instead.
func (*CloudStorageConfig_TextConfig) ProtoMessage()
func (x *CloudStorageConfig_TextConfig) ProtoReflect() protoreflect.Message
func (x *CloudStorageConfig_TextConfig) Reset()
func (x *CloudStorageConfig_TextConfig) String() string
type CloudStorageConfig_TextConfig_ struct { // Optional. If set, message data will be written to Cloud Storage in text // format. TextConfig *CloudStorageConfig_TextConfig `protobuf:"bytes,4,opt,name=text_config,json=textConfig,proto3,oneof"` }
Request for CommitSchema method.
type CommitSchemaRequest struct { // Required. The name of the schema we are revising. // Format is `projects/{project}/schemas/{schema}`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. The schema revision to commit. Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"` // contains filtered or unexported fields }
func (*CommitSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use CommitSchemaRequest.ProtoReflect.Descriptor instead.
func (x *CommitSchemaRequest) GetName() string
func (x *CommitSchemaRequest) GetSchema() *Schema
func (*CommitSchemaRequest) ProtoMessage()
func (x *CommitSchemaRequest) ProtoReflect() protoreflect.Message
func (x *CommitSchemaRequest) Reset()
func (x *CommitSchemaRequest) String() string
Request for the CreateSchema method.
type CreateSchemaRequest struct { // Required. The name of the project in which to create the schema. // Format is `projects/{project-id}`. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Required. The schema object to create. // // This schema's `name` parameter is ignored. The schema object returned // by CreateSchema will have a `name` made using the given `parent` and // `schema_id`. Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"` // The ID to use for the schema, which will become the final component of // the schema's resource name. // // See https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names for // resource name constraints. SchemaId string `protobuf:"bytes,3,opt,name=schema_id,json=schemaId,proto3" json:"schema_id,omitempty"` // contains filtered or unexported fields }
func (*CreateSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateSchemaRequest.ProtoReflect.Descriptor instead.
func (x *CreateSchemaRequest) GetParent() string
func (x *CreateSchemaRequest) GetSchema() *Schema
func (x *CreateSchemaRequest) GetSchemaId() string
func (*CreateSchemaRequest) ProtoMessage()
func (x *CreateSchemaRequest) ProtoReflect() protoreflect.Message
func (x *CreateSchemaRequest) Reset()
func (x *CreateSchemaRequest) String() string
Request for the `CreateSnapshot` method.
type CreateSnapshotRequest struct { // Required. User-provided name for this snapshot. If the name is not provided // in the request, the server will assign a random name for this snapshot on // the same project as the subscription. Note that for REST API requests, you // must specify a name. See the [resource name // rules](https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). // Format is `projects/{project}/snapshots/{snap}`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. The subscription whose backlog the snapshot retains. // Specifically, the created snapshot is guaranteed to retain: // // (a) The existing backlog on the subscription. More precisely, this is // defined as the messages in the subscription's backlog that are // unacknowledged upon the successful completion of the // `CreateSnapshot` request; as well as: // (b) Any messages published to the subscription's topic following the // successful completion of the CreateSnapshot request. // // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,2,opt,name=subscription,proto3" json:"subscription,omitempty"` // Optional. See [Creating and managing // labels](https://cloud.google.com/pubsub/docs/labels). Labels map[string]string `protobuf:"bytes,3,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // contains filtered or unexported fields }
func (*CreateSnapshotRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateSnapshotRequest.ProtoReflect.Descriptor instead.
func (x *CreateSnapshotRequest) GetLabels() map[string]string
func (x *CreateSnapshotRequest) GetName() string
func (x *CreateSnapshotRequest) GetSubscription() string
func (*CreateSnapshotRequest) ProtoMessage()
func (x *CreateSnapshotRequest) ProtoReflect() protoreflect.Message
func (x *CreateSnapshotRequest) Reset()
func (x *CreateSnapshotRequest) String() string
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.
type DeadLetterPolicy struct { // Optional. The name of the topic to which dead letter messages should be // published. Format is `projects/{project}/topics/{topic}`.The Pub/Sub // service account associated with the enclosing subscription's parent project // (i.e., service-{project_number}@gcp-sa-pubsub.iam.gserviceaccount.com) must // have permission to Publish() to this topic. // // The operation will fail if the topic does not exist. // Users should ensure that there is a subscription attached to this topic // since messages published to a topic with no subscriptions are lost. DeadLetterTopic string `protobuf:"bytes,1,opt,name=dead_letter_topic,json=deadLetterTopic,proto3" json:"dead_letter_topic,omitempty"` // Optional. The maximum number of delivery attempts for any message. The // value must be between 5 and 100. // // The number of delivery attempts is defined as 1 + (the sum of number of // NACKs and number of times the acknowledgement deadline has been exceeded // for the message). // // A NACK is any call to ModifyAckDeadline with a 0 deadline. Note that // client libraries may automatically extend ack_deadlines. // // This field will be honored on a best effort basis. // // If this parameter is 0, a default value of 5 is used. MaxDeliveryAttempts int32 `protobuf:"varint,2,opt,name=max_delivery_attempts,json=maxDeliveryAttempts,proto3" json:"max_delivery_attempts,omitempty"` // contains filtered or unexported fields }
func (*DeadLetterPolicy) Descriptor() ([]byte, []int)
Deprecated: Use DeadLetterPolicy.ProtoReflect.Descriptor instead.
func (x *DeadLetterPolicy) GetDeadLetterTopic() string
func (x *DeadLetterPolicy) GetMaxDeliveryAttempts() int32
func (*DeadLetterPolicy) ProtoMessage()
func (x *DeadLetterPolicy) ProtoReflect() protoreflect.Message
func (x *DeadLetterPolicy) Reset()
func (x *DeadLetterPolicy) String() string
Request for the `DeleteSchema` method.
type DeleteSchemaRequest struct { // Required. Name of the schema to delete. // Format is `projects/{project}/schemas/{schema}`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*DeleteSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteSchemaRequest.ProtoReflect.Descriptor instead.
func (x *DeleteSchemaRequest) GetName() string
func (*DeleteSchemaRequest) ProtoMessage()
func (x *DeleteSchemaRequest) ProtoReflect() protoreflect.Message
func (x *DeleteSchemaRequest) Reset()
func (x *DeleteSchemaRequest) String() string
Request for the `DeleteSchemaRevision` method.
type DeleteSchemaRevisionRequest struct { // Required. The name of the schema revision to be deleted, with a revision ID // explicitly included. // // Example: `projects/123/schemas/my-schema@c7cfa2a8` Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. This field is deprecated and should not be used for specifying // the revision ID. The revision ID should be specified via the `name` // parameter. // // Deprecated: Marked as deprecated in google/pubsub/v1/schema.proto. RevisionId string `protobuf:"bytes,2,opt,name=revision_id,json=revisionId,proto3" json:"revision_id,omitempty"` // contains filtered or unexported fields }
func (*DeleteSchemaRevisionRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteSchemaRevisionRequest.ProtoReflect.Descriptor instead.
func (x *DeleteSchemaRevisionRequest) GetName() string
func (x *DeleteSchemaRevisionRequest) GetRevisionId() string
Deprecated: Marked as deprecated in google/pubsub/v1/schema.proto.
func (*DeleteSchemaRevisionRequest) ProtoMessage()
func (x *DeleteSchemaRevisionRequest) ProtoReflect() protoreflect.Message
func (x *DeleteSchemaRevisionRequest) Reset()
func (x *DeleteSchemaRevisionRequest) String() string
Request for the `DeleteSnapshot` method.
type DeleteSnapshotRequest struct { // Required. The name of the snapshot to delete. // Format is `projects/{project}/snapshots/{snap}`. Snapshot string `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"` // contains filtered or unexported fields }
func (*DeleteSnapshotRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteSnapshotRequest.ProtoReflect.Descriptor instead.
func (x *DeleteSnapshotRequest) GetSnapshot() string
func (*DeleteSnapshotRequest) ProtoMessage()
func (x *DeleteSnapshotRequest) ProtoReflect() protoreflect.Message
func (x *DeleteSnapshotRequest) Reset()
func (x *DeleteSnapshotRequest) String() string
Request for the DeleteSubscription method.
type DeleteSubscriptionRequest struct { // Required. The subscription to delete. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // contains filtered or unexported fields }
func (*DeleteSubscriptionRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteSubscriptionRequest.ProtoReflect.Descriptor instead.
func (x *DeleteSubscriptionRequest) GetSubscription() string
func (*DeleteSubscriptionRequest) ProtoMessage()
func (x *DeleteSubscriptionRequest) ProtoReflect() protoreflect.Message
func (x *DeleteSubscriptionRequest) Reset()
func (x *DeleteSubscriptionRequest) String() string
Request for the `DeleteTopic` method.
type DeleteTopicRequest struct { // Required. Name of the topic to delete. // Format is `projects/{project}/topics/{topic}`. Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // contains filtered or unexported fields }
func (*DeleteTopicRequest) Descriptor() ([]byte, []int)
Deprecated: Use DeleteTopicRequest.ProtoReflect.Descriptor instead.
func (x *DeleteTopicRequest) GetTopic() string
func (*DeleteTopicRequest) ProtoMessage()
func (x *DeleteTopicRequest) ProtoReflect() protoreflect.Message
func (x *DeleteTopicRequest) Reset()
func (x *DeleteTopicRequest) String() string
Request for the DetachSubscription method.
type DetachSubscriptionRequest struct { // Required. The subscription to detach. // Format is `projects/{project}/subscriptions/{subscription}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // contains filtered or unexported fields }
func (*DetachSubscriptionRequest) Descriptor() ([]byte, []int)
Deprecated: Use DetachSubscriptionRequest.ProtoReflect.Descriptor instead.
func (x *DetachSubscriptionRequest) GetSubscription() string
func (*DetachSubscriptionRequest) ProtoMessage()
func (x *DetachSubscriptionRequest) ProtoReflect() protoreflect.Message
func (x *DetachSubscriptionRequest) Reset()
func (x *DetachSubscriptionRequest) String() string
Response for the DetachSubscription method. Reserved for future use.
type DetachSubscriptionResponse struct {
// contains filtered or unexported fields
}
func (*DetachSubscriptionResponse) Descriptor() ([]byte, []int)
Deprecated: Use DetachSubscriptionResponse.ProtoReflect.Descriptor instead.
func (*DetachSubscriptionResponse) ProtoMessage()
func (x *DetachSubscriptionResponse) ProtoReflect() protoreflect.Message
func (x *DetachSubscriptionResponse) Reset()
func (x *DetachSubscriptionResponse) String() string
Possible encoding types for messages.
type Encoding int32
const ( // Unspecified Encoding_ENCODING_UNSPECIFIED Encoding = 0 // JSON encoding Encoding_JSON Encoding = 1 // Binary encoding, as defined by the schema type. For some schema types, // binary encoding may not be available. Encoding_BINARY Encoding = 2 )
func (Encoding) Descriptor() protoreflect.EnumDescriptor
func (x Encoding) Enum() *Encoding
func (Encoding) EnumDescriptor() ([]byte, []int)
Deprecated: Use Encoding.Descriptor instead.
func (x Encoding) Number() protoreflect.EnumNumber
func (x Encoding) String() string
func (Encoding) Type() protoreflect.EnumType
A policy that specifies the conditions for resource expiration (i.e., automatic resource deletion).
type ExpirationPolicy struct { // Optional. Specifies the "time-to-live" duration for an associated resource. // The resource expires if it is not active for a period of `ttl`. The // definition of "activity" depends on the type of the associated resource. // The minimum and maximum allowed values for `ttl` depend on the type of the // associated resource, as well. If `ttl` is not set, the associated resource // never expires. Ttl *durationpb.Duration `protobuf:"bytes,1,opt,name=ttl,proto3" json:"ttl,omitempty"` // contains filtered or unexported fields }
func (*ExpirationPolicy) Descriptor() ([]byte, []int)
Deprecated: Use ExpirationPolicy.ProtoReflect.Descriptor instead.
func (x *ExpirationPolicy) GetTtl() *durationpb.Duration
func (*ExpirationPolicy) ProtoMessage()
func (x *ExpirationPolicy) ProtoReflect() protoreflect.Message
func (x *ExpirationPolicy) Reset()
func (x *ExpirationPolicy) String() string
Request for the GetSchema method.
type GetSchemaRequest struct { // Required. The name of the schema to get. // Format is `projects/{project}/schemas/{schema}`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The set of fields to return in the response. If not set, returns a Schema // with all fields filled out. Set to `BASIC` to omit the `definition`. View SchemaView `protobuf:"varint,2,opt,name=view,proto3,enum=google.pubsub.v1.SchemaView" json:"view,omitempty"` // contains filtered or unexported fields }
func (*GetSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetSchemaRequest.ProtoReflect.Descriptor instead.
func (x *GetSchemaRequest) GetName() string
func (x *GetSchemaRequest) GetView() SchemaView
func (*GetSchemaRequest) ProtoMessage()
func (x *GetSchemaRequest) ProtoReflect() protoreflect.Message
func (x *GetSchemaRequest) Reset()
func (x *GetSchemaRequest) String() string
Request for the GetSnapshot method.
type GetSnapshotRequest struct { // Required. The name of the snapshot to get. // Format is `projects/{project}/snapshots/{snap}`. Snapshot string `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"` // contains filtered or unexported fields }
func (*GetSnapshotRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetSnapshotRequest.ProtoReflect.Descriptor instead.
func (x *GetSnapshotRequest) GetSnapshot() string
func (*GetSnapshotRequest) ProtoMessage()
func (x *GetSnapshotRequest) ProtoReflect() protoreflect.Message
func (x *GetSnapshotRequest) Reset()
func (x *GetSnapshotRequest) String() string
Request for the GetSubscription method.
type GetSubscriptionRequest struct { // Required. The name of the subscription to get. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // contains filtered or unexported fields }
func (*GetSubscriptionRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetSubscriptionRequest.ProtoReflect.Descriptor instead.
func (x *GetSubscriptionRequest) GetSubscription() string
func (*GetSubscriptionRequest) ProtoMessage()
func (x *GetSubscriptionRequest) ProtoReflect() protoreflect.Message
func (x *GetSubscriptionRequest) Reset()
func (x *GetSubscriptionRequest) String() string
Request for the GetTopic method.
type GetTopicRequest struct { // Required. The name of the topic to get. // Format is `projects/{project}/topics/{topic}`. Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // contains filtered or unexported fields }
func (*GetTopicRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetTopicRequest.ProtoReflect.Descriptor instead.
func (x *GetTopicRequest) GetTopic() string
func (*GetTopicRequest) ProtoMessage()
func (x *GetTopicRequest) ProtoReflect() protoreflect.Message
func (x *GetTopicRequest) Reset()
func (x *GetTopicRequest) String() string
Settings for an ingestion data source on a topic.
type IngestionDataSourceSettings struct { // Only one source type can have settings set. // // Types that are assignable to Source: // // *IngestionDataSourceSettings_AwsKinesis_ Source isIngestionDataSourceSettings_Source `protobuf_oneof:"source"` // contains filtered or unexported fields }
func (*IngestionDataSourceSettings) Descriptor() ([]byte, []int)
Deprecated: Use IngestionDataSourceSettings.ProtoReflect.Descriptor instead.
func (x *IngestionDataSourceSettings) GetAwsKinesis() *IngestionDataSourceSettings_AwsKinesis
func (m *IngestionDataSourceSettings) GetSource() isIngestionDataSourceSettings_Source
func (*IngestionDataSourceSettings) ProtoMessage()
func (x *IngestionDataSourceSettings) ProtoReflect() protoreflect.Message
func (x *IngestionDataSourceSettings) Reset()
func (x *IngestionDataSourceSettings) String() string
Ingestion settings for Amazon Kinesis Data Streams.
type IngestionDataSourceSettings_AwsKinesis struct { // Output only. An output-only field that indicates the state of the Kinesis // ingestion source. State IngestionDataSourceSettings_AwsKinesis_State `protobuf:"varint,1,opt,name=state,proto3,enum=google.pubsub.v1.IngestionDataSourceSettings_AwsKinesis_State" json:"state,omitempty"` // Required. The Kinesis stream ARN to ingest data from. StreamArn string `protobuf:"bytes,2,opt,name=stream_arn,json=streamArn,proto3" json:"stream_arn,omitempty"` // 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. ConsumerArn string `protobuf:"bytes,3,opt,name=consumer_arn,json=consumerArn,proto3" json:"consumer_arn,omitempty"` // 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. AwsRoleArn string `protobuf:"bytes,4,opt,name=aws_role_arn,json=awsRoleArn,proto3" json:"aws_role_arn,omitempty"` // Required. The GCP service account to be used for Federated Identity // authentication with Kinesis (via a `AssumeRoleWithWebIdentity` call for // the provided role). The `aws_role_arn` must be set up with // `accounts.google.com:sub` equals to this service account number. GcpServiceAccount string `protobuf:"bytes,5,opt,name=gcp_service_account,json=gcpServiceAccount,proto3" json:"gcp_service_account,omitempty"` // contains filtered or unexported fields }
func (*IngestionDataSourceSettings_AwsKinesis) Descriptor() ([]byte, []int)
Deprecated: Use IngestionDataSourceSettings_AwsKinesis.ProtoReflect.Descriptor instead.
func (x *IngestionDataSourceSettings_AwsKinesis) GetAwsRoleArn() string
func (x *IngestionDataSourceSettings_AwsKinesis) GetConsumerArn() string
func (x *IngestionDataSourceSettings_AwsKinesis) GetGcpServiceAccount() string
func (x *IngestionDataSourceSettings_AwsKinesis) GetState() IngestionDataSourceSettings_AwsKinesis_State
func (x *IngestionDataSourceSettings_AwsKinesis) GetStreamArn() string
func (*IngestionDataSourceSettings_AwsKinesis) ProtoMessage()
func (x *IngestionDataSourceSettings_AwsKinesis) ProtoReflect() protoreflect.Message
func (x *IngestionDataSourceSettings_AwsKinesis) Reset()
func (x *IngestionDataSourceSettings_AwsKinesis) String() string
type IngestionDataSourceSettings_AwsKinesis_ struct { // Optional. Amazon Kinesis Data Streams. AwsKinesis *IngestionDataSourceSettings_AwsKinesis `protobuf:"bytes,1,opt,name=aws_kinesis,json=awsKinesis,proto3,oneof"` }
Possible states for ingestion from Amazon Kinesis Data Streams.
type IngestionDataSourceSettings_AwsKinesis_State int32
const ( // Default value. This value is unused. IngestionDataSourceSettings_AwsKinesis_STATE_UNSPECIFIED IngestionDataSourceSettings_AwsKinesis_State = 0 // Ingestion is active. IngestionDataSourceSettings_AwsKinesis_ACTIVE IngestionDataSourceSettings_AwsKinesis_State = 1 // Permission denied encountered while consuming data from Kinesis. // This can happen if: // - The provided `aws_role_arn` does not exist or does not have the // appropriate permissions attached. // - The provided `aws_role_arn` is not set up properly for Identity // Federation using `gcp_service_account`. // - The Pub/Sub SA is not granted the // `iam.serviceAccounts.getOpenIdToken` permission on // `gcp_service_account`. IngestionDataSourceSettings_AwsKinesis_KINESIS_PERMISSION_DENIED IngestionDataSourceSettings_AwsKinesis_State = 2 // Permission denied encountered while publishing to the topic. This can // happen if the Pub/Sub SA has not been granted the [appropriate publish // permissions](https://cloud.google.com/pubsub/docs/access-control#pubsub.publisher) IngestionDataSourceSettings_AwsKinesis_PUBLISH_PERMISSION_DENIED IngestionDataSourceSettings_AwsKinesis_State = 3 // The Kinesis stream does not exist. IngestionDataSourceSettings_AwsKinesis_STREAM_NOT_FOUND IngestionDataSourceSettings_AwsKinesis_State = 4 // The Kinesis consumer does not exist. IngestionDataSourceSettings_AwsKinesis_CONSUMER_NOT_FOUND IngestionDataSourceSettings_AwsKinesis_State = 5 )
func (IngestionDataSourceSettings_AwsKinesis_State) Descriptor() protoreflect.EnumDescriptor
func (x IngestionDataSourceSettings_AwsKinesis_State) Enum() *IngestionDataSourceSettings_AwsKinesis_State
func (IngestionDataSourceSettings_AwsKinesis_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use IngestionDataSourceSettings_AwsKinesis_State.Descriptor instead.
func (x IngestionDataSourceSettings_AwsKinesis_State) Number() protoreflect.EnumNumber
func (x IngestionDataSourceSettings_AwsKinesis_State) String() string
func (IngestionDataSourceSettings_AwsKinesis_State) Type() protoreflect.EnumType
Request for the `ListSchemaRevisions` method.
type ListSchemaRevisionsRequest struct { // Required. The name of the schema to list revisions for. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The set of Schema fields to return in the response. If not set, returns // Schemas with `name` and `type`, but not `definition`. Set to `FULL` to // retrieve all fields. View SchemaView `protobuf:"varint,2,opt,name=view,proto3,enum=google.pubsub.v1.SchemaView" json:"view,omitempty"` // The maximum number of revisions to return per page. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // The page token, received from a previous ListSchemaRevisions call. // Provide this to retrieve the subsequent page. PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSchemaRevisionsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListSchemaRevisionsRequest.ProtoReflect.Descriptor instead.
func (x *ListSchemaRevisionsRequest) GetName() string
func (x *ListSchemaRevisionsRequest) GetPageSize() int32
func (x *ListSchemaRevisionsRequest) GetPageToken() string
func (x *ListSchemaRevisionsRequest) GetView() SchemaView
func (*ListSchemaRevisionsRequest) ProtoMessage()
func (x *ListSchemaRevisionsRequest) ProtoReflect() protoreflect.Message
func (x *ListSchemaRevisionsRequest) Reset()
func (x *ListSchemaRevisionsRequest) String() string
Response for the `ListSchemaRevisions` method.
type ListSchemaRevisionsResponse struct { // The revisions of the schema. Schemas []*Schema `protobuf:"bytes,1,rep,name=schemas,proto3" json:"schemas,omitempty"` // A token that can be sent as `page_token` to retrieve the next page. // If this field is empty, there are no subsequent pages. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSchemaRevisionsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListSchemaRevisionsResponse.ProtoReflect.Descriptor instead.
func (x *ListSchemaRevisionsResponse) GetNextPageToken() string
func (x *ListSchemaRevisionsResponse) GetSchemas() []*Schema
func (*ListSchemaRevisionsResponse) ProtoMessage()
func (x *ListSchemaRevisionsResponse) ProtoReflect() protoreflect.Message
func (x *ListSchemaRevisionsResponse) Reset()
func (x *ListSchemaRevisionsResponse) String() string
Request for the `ListSchemas` method.
type ListSchemasRequest struct { // Required. The name of the project in which to list schemas. // Format is `projects/{project-id}`. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // The set of Schema fields to return in the response. If not set, returns // Schemas with `name` and `type`, but not `definition`. Set to `FULL` to // retrieve all fields. View SchemaView `protobuf:"varint,2,opt,name=view,proto3,enum=google.pubsub.v1.SchemaView" json:"view,omitempty"` // Maximum number of schemas to return. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // The value returned by the last `ListSchemasResponse`; indicates that // this is a continuation of a prior `ListSchemas` call, and that the // system should return the next page of data. PageToken string `protobuf:"bytes,4,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSchemasRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListSchemasRequest.ProtoReflect.Descriptor instead.
func (x *ListSchemasRequest) GetPageSize() int32
func (x *ListSchemasRequest) GetPageToken() string
func (x *ListSchemasRequest) GetParent() string
func (x *ListSchemasRequest) GetView() SchemaView
func (*ListSchemasRequest) ProtoMessage()
func (x *ListSchemasRequest) ProtoReflect() protoreflect.Message
func (x *ListSchemasRequest) Reset()
func (x *ListSchemasRequest) String() string
Response for the `ListSchemas` method.
type ListSchemasResponse struct { // The resulting schemas. Schemas []*Schema `protobuf:"bytes,1,rep,name=schemas,proto3" json:"schemas,omitempty"` // If not empty, indicates that there may be more schemas that match the // request; this value should be passed in a new `ListSchemasRequest`. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSchemasResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListSchemasResponse.ProtoReflect.Descriptor instead.
func (x *ListSchemasResponse) GetNextPageToken() string
func (x *ListSchemasResponse) GetSchemas() []*Schema
func (*ListSchemasResponse) ProtoMessage()
func (x *ListSchemasResponse) ProtoReflect() protoreflect.Message
func (x *ListSchemasResponse) Reset()
func (x *ListSchemasResponse) String() string
Request for the `ListSnapshots` method.
type ListSnapshotsRequest struct { // Required. The name of the project in which to list snapshots. // Format is `projects/{project-id}`. Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"` // Optional. Maximum number of snapshots to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. The value returned by the last `ListSnapshotsResponse`; indicates // that this is a continuation of a prior `ListSnapshots` call, and that the // system should return the next page of data. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSnapshotsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListSnapshotsRequest.ProtoReflect.Descriptor instead.
func (x *ListSnapshotsRequest) GetPageSize() int32
func (x *ListSnapshotsRequest) GetPageToken() string
func (x *ListSnapshotsRequest) GetProject() string
func (*ListSnapshotsRequest) ProtoMessage()
func (x *ListSnapshotsRequest) ProtoReflect() protoreflect.Message
func (x *ListSnapshotsRequest) Reset()
func (x *ListSnapshotsRequest) String() string
Response for the `ListSnapshots` method.
type ListSnapshotsResponse struct { // Optional. The resulting snapshots. Snapshots []*Snapshot `protobuf:"bytes,1,rep,name=snapshots,proto3" json:"snapshots,omitempty"` // Optional. If not empty, indicates that there may be more snapshot that // match the request; this value should be passed in a new // `ListSnapshotsRequest`. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSnapshotsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListSnapshotsResponse.ProtoReflect.Descriptor instead.
func (x *ListSnapshotsResponse) GetNextPageToken() string
func (x *ListSnapshotsResponse) GetSnapshots() []*Snapshot
func (*ListSnapshotsResponse) ProtoMessage()
func (x *ListSnapshotsResponse) ProtoReflect() protoreflect.Message
func (x *ListSnapshotsResponse) Reset()
func (x *ListSnapshotsResponse) String() string
Request for the `ListSubscriptions` method.
type ListSubscriptionsRequest struct { // Required. The name of the project in which to list subscriptions. // Format is `projects/{project-id}`. Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"` // Optional. Maximum number of subscriptions to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. The value returned by the last `ListSubscriptionsResponse`; // indicates that this is a continuation of a prior `ListSubscriptions` call, // and that the system should return the next page of data. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSubscriptionsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListSubscriptionsRequest.ProtoReflect.Descriptor instead.
func (x *ListSubscriptionsRequest) GetPageSize() int32
func (x *ListSubscriptionsRequest) GetPageToken() string
func (x *ListSubscriptionsRequest) GetProject() string
func (*ListSubscriptionsRequest) ProtoMessage()
func (x *ListSubscriptionsRequest) ProtoReflect() protoreflect.Message
func (x *ListSubscriptionsRequest) Reset()
func (x *ListSubscriptionsRequest) String() string
Response for the `ListSubscriptions` method.
type ListSubscriptionsResponse struct { // Optional. The subscriptions that match the request. Subscriptions []*Subscription `protobuf:"bytes,1,rep,name=subscriptions,proto3" json:"subscriptions,omitempty"` // Optional. If not empty, indicates that there may be more subscriptions that // match the request; this value should be passed in a new // `ListSubscriptionsRequest` to get more subscriptions. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListSubscriptionsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListSubscriptionsResponse.ProtoReflect.Descriptor instead.
func (x *ListSubscriptionsResponse) GetNextPageToken() string
func (x *ListSubscriptionsResponse) GetSubscriptions() []*Subscription
func (*ListSubscriptionsResponse) ProtoMessage()
func (x *ListSubscriptionsResponse) ProtoReflect() protoreflect.Message
func (x *ListSubscriptionsResponse) Reset()
func (x *ListSubscriptionsResponse) String() string
Request for the `ListTopicSnapshots` method.
type ListTopicSnapshotsRequest struct { // Required. The name of the topic that snapshots are attached to. // Format is `projects/{project}/topics/{topic}`. Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // Optional. Maximum number of snapshot names to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. The value returned by the last `ListTopicSnapshotsResponse`; // indicates that this is a continuation of a prior `ListTopicSnapshots` call, // and that the system should return the next page of data. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicSnapshotsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicSnapshotsRequest.ProtoReflect.Descriptor instead.
func (x *ListTopicSnapshotsRequest) GetPageSize() int32
func (x *ListTopicSnapshotsRequest) GetPageToken() string
func (x *ListTopicSnapshotsRequest) GetTopic() string
func (*ListTopicSnapshotsRequest) ProtoMessage()
func (x *ListTopicSnapshotsRequest) ProtoReflect() protoreflect.Message
func (x *ListTopicSnapshotsRequest) Reset()
func (x *ListTopicSnapshotsRequest) String() string
Response for the `ListTopicSnapshots` method.
type ListTopicSnapshotsResponse struct { // Optional. The names of the snapshots that match the request. Snapshots []string `protobuf:"bytes,1,rep,name=snapshots,proto3" json:"snapshots,omitempty"` // Optional. If not empty, indicates that there may be more snapshots that // match the request; this value should be passed in a new // `ListTopicSnapshotsRequest` to get more snapshots. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicSnapshotsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicSnapshotsResponse.ProtoReflect.Descriptor instead.
func (x *ListTopicSnapshotsResponse) GetNextPageToken() string
func (x *ListTopicSnapshotsResponse) GetSnapshots() []string
func (*ListTopicSnapshotsResponse) ProtoMessage()
func (x *ListTopicSnapshotsResponse) ProtoReflect() protoreflect.Message
func (x *ListTopicSnapshotsResponse) Reset()
func (x *ListTopicSnapshotsResponse) String() string
Request for the `ListTopicSubscriptions` method.
type ListTopicSubscriptionsRequest struct { // Required. The name of the topic that subscriptions are attached to. // Format is `projects/{project}/topics/{topic}`. Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // Optional. Maximum number of subscription names to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. The value returned by the last `ListTopicSubscriptionsResponse`; // indicates that this is a continuation of a prior `ListTopicSubscriptions` // call, and that the system should return the next page of data. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicSubscriptionsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicSubscriptionsRequest.ProtoReflect.Descriptor instead.
func (x *ListTopicSubscriptionsRequest) GetPageSize() int32
func (x *ListTopicSubscriptionsRequest) GetPageToken() string
func (x *ListTopicSubscriptionsRequest) GetTopic() string
func (*ListTopicSubscriptionsRequest) ProtoMessage()
func (x *ListTopicSubscriptionsRequest) ProtoReflect() protoreflect.Message
func (x *ListTopicSubscriptionsRequest) Reset()
func (x *ListTopicSubscriptionsRequest) String() string
Response for the `ListTopicSubscriptions` method.
type ListTopicSubscriptionsResponse struct { // Optional. The names of subscriptions attached to the topic specified in the // request. Subscriptions []string `protobuf:"bytes,1,rep,name=subscriptions,proto3" json:"subscriptions,omitempty"` // Optional. If not empty, indicates that there may be more subscriptions that // match the request; this value should be passed in a new // `ListTopicSubscriptionsRequest` to get more subscriptions. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicSubscriptionsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicSubscriptionsResponse.ProtoReflect.Descriptor instead.
func (x *ListTopicSubscriptionsResponse) GetNextPageToken() string
func (x *ListTopicSubscriptionsResponse) GetSubscriptions() []string
func (*ListTopicSubscriptionsResponse) ProtoMessage()
func (x *ListTopicSubscriptionsResponse) ProtoReflect() protoreflect.Message
func (x *ListTopicSubscriptionsResponse) Reset()
func (x *ListTopicSubscriptionsResponse) String() string
Request for the `ListTopics` method.
type ListTopicsRequest struct { // Required. The name of the project in which to list topics. // Format is `projects/{project-id}`. Project string `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"` // Optional. Maximum number of topics to return. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Optional. The value returned by the last `ListTopicsResponse`; indicates // that this is a continuation of a prior `ListTopics` call, and that the // system should return the next page of data. PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicsRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicsRequest.ProtoReflect.Descriptor instead.
func (x *ListTopicsRequest) GetPageSize() int32
func (x *ListTopicsRequest) GetPageToken() string
func (x *ListTopicsRequest) GetProject() string
func (*ListTopicsRequest) ProtoMessage()
func (x *ListTopicsRequest) ProtoReflect() protoreflect.Message
func (x *ListTopicsRequest) Reset()
func (x *ListTopicsRequest) String() string
Response for the `ListTopics` method.
type ListTopicsResponse struct { // Optional. The resulting topics. Topics []*Topic `protobuf:"bytes,1,rep,name=topics,proto3" json:"topics,omitempty"` // Optional. If not empty, indicates that there may be more topics that match // the request; this value should be passed in a new `ListTopicsRequest`. NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"` // contains filtered or unexported fields }
func (*ListTopicsResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListTopicsResponse.ProtoReflect.Descriptor instead.
func (x *ListTopicsResponse) GetNextPageToken() string
func (x *ListTopicsResponse) GetTopics() []*Topic
func (*ListTopicsResponse) ProtoMessage()
func (x *ListTopicsResponse) ProtoReflect() protoreflect.Message
func (x *ListTopicsResponse) Reset()
func (x *ListTopicsResponse) String() string
A policy constraining the storage of messages published to the topic.
type MessageStoragePolicy struct { // 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. AllowedPersistenceRegions []string `protobuf:"bytes,1,rep,name=allowed_persistence_regions,json=allowedPersistenceRegions,proto3" json:"allowed_persistence_regions,omitempty"` // Optional. If true, `allowed_persistence_regions` is also used to enforce // in-transit guarantees for messages. That is, Pub/Sub will fail // Publish operations on this topic and subscribe operations // on any subscription attached to this topic in any region that is // not in `allowed_persistence_regions`. EnforceInTransit bool `protobuf:"varint,2,opt,name=enforce_in_transit,json=enforceInTransit,proto3" json:"enforce_in_transit,omitempty"` // contains filtered or unexported fields }
func (*MessageStoragePolicy) Descriptor() ([]byte, []int)
Deprecated: Use MessageStoragePolicy.ProtoReflect.Descriptor instead.
func (x *MessageStoragePolicy) GetAllowedPersistenceRegions() []string
func (x *MessageStoragePolicy) GetEnforceInTransit() bool
func (*MessageStoragePolicy) ProtoMessage()
func (x *MessageStoragePolicy) ProtoReflect() protoreflect.Message
func (x *MessageStoragePolicy) Reset()
func (x *MessageStoragePolicy) String() string
Request for the ModifyAckDeadline method.
type ModifyAckDeadlineRequest struct { // Required. The name of the subscription. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Required. List of acknowledgment IDs. AckIds []string `protobuf:"bytes,4,rep,name=ack_ids,json=ackIds,proto3" json:"ack_ids,omitempty"` // Required. The new ack deadline with respect to the time this request was // sent to the Pub/Sub system. For example, if the value is 10, the new ack // deadline will expire 10 seconds after the `ModifyAckDeadline` call was // made. Specifying zero might immediately make the message available for // delivery to another subscriber client. This typically results in an // increase in the rate of message redeliveries (that is, duplicates). // The minimum deadline you can specify is 0 seconds. // The maximum deadline you can specify in a single request is 600 seconds // (10 minutes). AckDeadlineSeconds int32 `protobuf:"varint,3,opt,name=ack_deadline_seconds,json=ackDeadlineSeconds,proto3" json:"ack_deadline_seconds,omitempty"` // contains filtered or unexported fields }
func (*ModifyAckDeadlineRequest) Descriptor() ([]byte, []int)
Deprecated: Use ModifyAckDeadlineRequest.ProtoReflect.Descriptor instead.
func (x *ModifyAckDeadlineRequest) GetAckDeadlineSeconds() int32
func (x *ModifyAckDeadlineRequest) GetAckIds() []string
func (x *ModifyAckDeadlineRequest) GetSubscription() string
func (*ModifyAckDeadlineRequest) ProtoMessage()
func (x *ModifyAckDeadlineRequest) ProtoReflect() protoreflect.Message
func (x *ModifyAckDeadlineRequest) Reset()
func (x *ModifyAckDeadlineRequest) String() string
Request for the ModifyPushConfig method.
type ModifyPushConfigRequest struct { // Required. The name of the subscription. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Required. The push configuration for future deliveries. // // An empty `pushConfig` indicates that the Pub/Sub system should // stop pushing messages from the given subscription and allow // messages to be pulled and acknowledged - effectively pausing // the subscription if `Pull` or `StreamingPull` is not called. PushConfig *PushConfig `protobuf:"bytes,2,opt,name=push_config,json=pushConfig,proto3" json:"push_config,omitempty"` // contains filtered or unexported fields }
func (*ModifyPushConfigRequest) Descriptor() ([]byte, []int)
Deprecated: Use ModifyPushConfigRequest.ProtoReflect.Descriptor instead.
func (x *ModifyPushConfigRequest) GetPushConfig() *PushConfig
func (x *ModifyPushConfigRequest) GetSubscription() string
func (*ModifyPushConfigRequest) ProtoMessage()
func (x *ModifyPushConfigRequest) ProtoReflect() protoreflect.Message
func (x *ModifyPushConfigRequest) Reset()
func (x *ModifyPushConfigRequest) String() string
Request for the Publish method.
type PublishRequest struct { // Required. The messages in the request will be published on this topic. // Format is `projects/{project}/topics/{topic}`. Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // Required. The messages to publish. Messages []*PubsubMessage `protobuf:"bytes,2,rep,name=messages,proto3" json:"messages,omitempty"` // contains filtered or unexported fields }
func (*PublishRequest) Descriptor() ([]byte, []int)
Deprecated: Use PublishRequest.ProtoReflect.Descriptor instead.
func (x *PublishRequest) GetMessages() []*PubsubMessage
func (x *PublishRequest) GetTopic() string
func (*PublishRequest) ProtoMessage()
func (x *PublishRequest) ProtoReflect() protoreflect.Message
func (x *PublishRequest) Reset()
func (x *PublishRequest) String() string
Response for the `Publish` method.
type PublishResponse struct { // Optional. The server-assigned ID of each published message, in the same // order as the messages in the request. IDs are guaranteed to be unique // within the topic. MessageIds []string `protobuf:"bytes,1,rep,name=message_ids,json=messageIds,proto3" json:"message_ids,omitempty"` // contains filtered or unexported fields }
func (*PublishResponse) Descriptor() ([]byte, []int)
Deprecated: Use PublishResponse.ProtoReflect.Descriptor instead.
func (x *PublishResponse) GetMessageIds() []string
func (*PublishResponse) ProtoMessage()
func (x *PublishResponse) ProtoReflect() protoreflect.Message
func (x *PublishResponse) Reset()
func (x *PublishResponse) String() string
PublisherClient is the client API for Publisher service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type PublisherClient interface { // Creates the given topic with the given name. See the [resource name rules] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). CreateTopic(ctx context.Context, in *Topic, opts ...grpc.CallOption) (*Topic, error) // Updates an existing topic by updating the fields specified in the update // mask. Note that certain properties of a topic are not modifiable. UpdateTopic(ctx context.Context, in *UpdateTopicRequest, opts ...grpc.CallOption) (*Topic, error) // Adds one or more messages to the topic. Returns `NOT_FOUND` if the topic // does not exist. Publish(ctx context.Context, in *PublishRequest, opts ...grpc.CallOption) (*PublishResponse, error) // Gets the configuration of a topic. GetTopic(ctx context.Context, in *GetTopicRequest, opts ...grpc.CallOption) (*Topic, error) // Lists matching topics. ListTopics(ctx context.Context, in *ListTopicsRequest, opts ...grpc.CallOption) (*ListTopicsResponse, error) // Lists the names of the attached subscriptions on this topic. ListTopicSubscriptions(ctx context.Context, in *ListTopicSubscriptionsRequest, opts ...grpc.CallOption) (*ListTopicSubscriptionsResponse, error) // Lists the names of the snapshots on this topic. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. ListTopicSnapshots(ctx context.Context, in *ListTopicSnapshotsRequest, opts ...grpc.CallOption) (*ListTopicSnapshotsResponse, error) // Deletes the topic with the given name. Returns `NOT_FOUND` if the topic // does not exist. After a topic is deleted, a new topic may be created with // the same name; this is an entirely new topic with none of the old // configuration or subscriptions. Existing subscriptions to this topic are // not deleted, but their `topic` field is set to `_deleted-topic_`. DeleteTopic(ctx context.Context, in *DeleteTopicRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Detaches a subscription from this topic. All messages retained in the // subscription are dropped. Subsequent `Pull` and `StreamingPull` requests // will return FAILED_PRECONDITION. If the subscription is a push // subscription, pushes to the endpoint will stop. DetachSubscription(ctx context.Context, in *DetachSubscriptionRequest, opts ...grpc.CallOption) (*DetachSubscriptionResponse, error) }
func NewPublisherClient(cc grpc.ClientConnInterface) PublisherClient
PublisherServer is the server API for Publisher service.
type PublisherServer interface { // Creates the given topic with the given name. See the [resource name rules] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). CreateTopic(context.Context, *Topic) (*Topic, error) // Updates an existing topic by updating the fields specified in the update // mask. Note that certain properties of a topic are not modifiable. UpdateTopic(context.Context, *UpdateTopicRequest) (*Topic, error) // Adds one or more messages to the topic. Returns `NOT_FOUND` if the topic // does not exist. Publish(context.Context, *PublishRequest) (*PublishResponse, error) // Gets the configuration of a topic. GetTopic(context.Context, *GetTopicRequest) (*Topic, error) // Lists matching topics. ListTopics(context.Context, *ListTopicsRequest) (*ListTopicsResponse, error) // Lists the names of the attached subscriptions on this topic. ListTopicSubscriptions(context.Context, *ListTopicSubscriptionsRequest) (*ListTopicSubscriptionsResponse, error) // Lists the names of the snapshots on this topic. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. ListTopicSnapshots(context.Context, *ListTopicSnapshotsRequest) (*ListTopicSnapshotsResponse, error) // Deletes the topic with the given name. Returns `NOT_FOUND` if the topic // does not exist. After a topic is deleted, a new topic may be created with // the same name; this is an entirely new topic with none of the old // configuration or subscriptions. Existing subscriptions to this topic are // not deleted, but their `topic` field is set to `_deleted-topic_`. DeleteTopic(context.Context, *DeleteTopicRequest) (*emptypb.Empty, error) // Detaches a subscription from this topic. All messages retained in the // subscription are dropped. Subsequent `Pull` and `StreamingPull` requests // will return FAILED_PRECONDITION. If the subscription is a push // subscription, pushes to the endpoint will stop. DetachSubscription(context.Context, *DetachSubscriptionRequest) (*DetachSubscriptionResponse, error) }
A message that is published by publishers and consumed by subscribers. The message must contain either a non-empty data field or at least one attribute. Note that client libraries represent this object differently depending on the language. See the corresponding [client library documentation](https://cloud.google.com/pubsub/docs/reference/libraries) for more information. See [quotas and limits] (https://cloud.google.com/pubsub/quotas) for more information about message limits.
type PubsubMessage struct { // Optional. The message data field. If this field is empty, the message must // contain at least one attribute. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` // Optional. Attributes for this message. If this field is empty, the message // must contain non-empty data. This can be used to filter messages on the // subscription. Attributes map[string]string `protobuf:"bytes,2,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // ID of this message, assigned by the server when the message is published. // Guaranteed to be unique within the topic. This value may be read by a // subscriber that receives a `PubsubMessage` via a `Pull` call or a push // delivery. It must not be populated by the publisher in a `Publish` call. MessageId string `protobuf:"bytes,3,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"` // The time at which the message was published, populated by the server when // it receives the `Publish` call. It must not be populated by the // publisher in a `Publish` call. PublishTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=publish_time,json=publishTime,proto3" json:"publish_time,omitempty"` // Optional. If non-empty, identifies related messages for which publish order // should be respected. If a `Subscription` has `enable_message_ordering` set // to `true`, messages published with the same non-empty `ordering_key` value // will be delivered to subscribers in the order in which they are received by // the Pub/Sub system. All `PubsubMessage`s published in a given // `PublishRequest` must specify the same `ordering_key` value. For more // information, see [ordering // messages](https://cloud.google.com/pubsub/docs/ordering). OrderingKey string `protobuf:"bytes,5,opt,name=ordering_key,json=orderingKey,proto3" json:"ordering_key,omitempty"` // contains filtered or unexported fields }
func (*PubsubMessage) Descriptor() ([]byte, []int)
Deprecated: Use PubsubMessage.ProtoReflect.Descriptor instead.
func (x *PubsubMessage) GetAttributes() map[string]string
func (x *PubsubMessage) GetData() []byte
func (x *PubsubMessage) GetMessageId() string
func (x *PubsubMessage) GetOrderingKey() string
func (x *PubsubMessage) GetPublishTime() *timestamppb.Timestamp
func (*PubsubMessage) ProtoMessage()
func (x *PubsubMessage) ProtoReflect() protoreflect.Message
func (x *PubsubMessage) Reset()
func (x *PubsubMessage) String() string
Request for the `Pull` method.
type PullRequest struct { // Required. The subscription from which messages should be pulled. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Optional. If this field set to true, the system will respond immediately // even if it there are no messages available to return in the `Pull` // response. Otherwise, the system may wait (for a bounded amount of time) // until at least one message is available, rather than returning no messages. // Warning: setting this field to `true` is discouraged because it adversely // impacts the performance of `Pull` operations. We recommend that users do // not set this field. // // Deprecated: Marked as deprecated in google/pubsub/v1/pubsub.proto. ReturnImmediately bool `protobuf:"varint,2,opt,name=return_immediately,json=returnImmediately,proto3" json:"return_immediately,omitempty"` // Required. The maximum number of messages to return for this request. Must // be a positive integer. The Pub/Sub system may return fewer than the number // specified. MaxMessages int32 `protobuf:"varint,3,opt,name=max_messages,json=maxMessages,proto3" json:"max_messages,omitempty"` // contains filtered or unexported fields }
func (*PullRequest) Descriptor() ([]byte, []int)
Deprecated: Use PullRequest.ProtoReflect.Descriptor instead.
func (x *PullRequest) GetMaxMessages() int32
func (x *PullRequest) GetReturnImmediately() bool
Deprecated: Marked as deprecated in google/pubsub/v1/pubsub.proto.
func (x *PullRequest) GetSubscription() string
func (*PullRequest) ProtoMessage()
func (x *PullRequest) ProtoReflect() protoreflect.Message
func (x *PullRequest) Reset()
func (x *PullRequest) String() string
Response for the `Pull` method.
type PullResponse struct { // Optional. Received Pub/Sub messages. The list will be empty if there are no // more messages available in the backlog, or if no messages could be returned // before the request timeout. For JSON, the response can be entirely // empty. The Pub/Sub system may return fewer than the `maxMessages` requested // even if there are more messages available in the backlog. ReceivedMessages []*ReceivedMessage `protobuf:"bytes,1,rep,name=received_messages,json=receivedMessages,proto3" json:"received_messages,omitempty"` // contains filtered or unexported fields }
func (*PullResponse) Descriptor() ([]byte, []int)
Deprecated: Use PullResponse.ProtoReflect.Descriptor instead.
func (x *PullResponse) GetReceivedMessages() []*ReceivedMessage
func (*PullResponse) ProtoMessage()
func (x *PullResponse) ProtoReflect() protoreflect.Message
func (x *PullResponse) Reset()
func (x *PullResponse) String() string
Configuration for a push delivery endpoint.
type PushConfig struct { // Optional. A URL locating the endpoint to which messages should be pushed. // For example, a Webhook endpoint might use `https://example.com/push`. PushEndpoint string `protobuf:"bytes,1,opt,name=push_endpoint,json=pushEndpoint,proto3" json:"push_endpoint,omitempty"` // Optional. Endpoint configuration attributes that can be used to control // different aspects of the message delivery. // // The only currently supported attribute is `x-goog-version`, which you can // use to change the format of the pushed message. This attribute // indicates the version of the data expected by the endpoint. This // controls the shape of the pushed message (i.e., its fields and metadata). // // If not present during the `CreateSubscription` call, it will default to // the version of the Pub/Sub API used to make such call. If not present in a // `ModifyPushConfig` call, its value will not be changed. `GetSubscription` // calls will always return a valid version, even if the subscription was // created without this attribute. // // The only supported values for the `x-goog-version` attribute are: // // * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API. // * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API. // // For example: // `attributes { "x-goog-version": "v1" }` Attributes map[string]string `protobuf:"bytes,2,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // An authentication method used by push endpoints to verify the source of // push requests. This can be used with push endpoints that are private by // default to allow requests only from the Pub/Sub system, for example. // This field is optional and should be set only by users interested in // authenticated push. // // Types that are assignable to AuthenticationMethod: // // *PushConfig_OidcToken_ AuthenticationMethod isPushConfig_AuthenticationMethod `protobuf_oneof:"authentication_method"` // The format of the delivered message to the push endpoint is defined by // the chosen wrapper. When unset, `PubsubWrapper` is used. // // Types that are assignable to Wrapper: // // *PushConfig_PubsubWrapper_ // *PushConfig_NoWrapper_ Wrapper isPushConfig_Wrapper `protobuf_oneof:"wrapper"` // contains filtered or unexported fields }
func (*PushConfig) Descriptor() ([]byte, []int)
Deprecated: Use PushConfig.ProtoReflect.Descriptor instead.
func (x *PushConfig) GetAttributes() map[string]string
func (m *PushConfig) GetAuthenticationMethod() isPushConfig_AuthenticationMethod
func (x *PushConfig) GetNoWrapper() *PushConfig_NoWrapper
func (x *PushConfig) GetOidcToken() *PushConfig_OidcToken
func (x *PushConfig) GetPubsubWrapper() *PushConfig_PubsubWrapper
func (x *PushConfig) GetPushEndpoint() string
func (m *PushConfig) GetWrapper() isPushConfig_Wrapper
func (*PushConfig) ProtoMessage()
func (x *PushConfig) ProtoReflect() protoreflect.Message
func (x *PushConfig) Reset()
func (x *PushConfig) String() string
Sets the `data` field as the HTTP body for delivery.
type PushConfig_NoWrapper struct { // Optional. When true, writes the Pub/Sub message metadata to // `x-goog-pubsub-<KEY>:<VAL>` headers of the HTTP request. Writes the // Pub/Sub message attributes to `<KEY>:<VAL>` headers of the HTTP request. WriteMetadata bool `protobuf:"varint,1,opt,name=write_metadata,json=writeMetadata,proto3" json:"write_metadata,omitempty"` // contains filtered or unexported fields }
func (*PushConfig_NoWrapper) Descriptor() ([]byte, []int)
Deprecated: Use PushConfig_NoWrapper.ProtoReflect.Descriptor instead.
func (x *PushConfig_NoWrapper) GetWriteMetadata() bool
func (*PushConfig_NoWrapper) ProtoMessage()
func (x *PushConfig_NoWrapper) ProtoReflect() protoreflect.Message
func (x *PushConfig_NoWrapper) Reset()
func (x *PushConfig_NoWrapper) String() string
type PushConfig_NoWrapper_ struct { // Optional. When set, the payload to the push endpoint is not wrapped. NoWrapper *PushConfig_NoWrapper `protobuf:"bytes,5,opt,name=no_wrapper,json=noWrapper,proto3,oneof"` }
Contains information needed for generating an [OpenID Connect token](https://developers.google.com/identity/protocols/OpenIDConnect).
type PushConfig_OidcToken struct { // Optional. [Service account // email](https://cloud.google.com/iam/docs/service-accounts) // used for generating the OIDC token. For more information // on setting up authentication, see // [Push subscriptions](https://cloud.google.com/pubsub/docs/push). ServiceAccountEmail string `protobuf:"bytes,1,opt,name=service_account_email,json=serviceAccountEmail,proto3" json:"service_account_email,omitempty"` // Optional. Audience to be used when generating OIDC token. The audience // claim identifies the recipients that the JWT is intended for. The // audience value is a single case-sensitive string. Having multiple values // (array) for the audience field is not supported. More info about the OIDC // JWT token audience here: // https://tools.ietf.org/html/rfc7519#section-4.1.3 Note: if not specified, // the Push endpoint URL will be used. Audience string `protobuf:"bytes,2,opt,name=audience,proto3" json:"audience,omitempty"` // contains filtered or unexported fields }
func (*PushConfig_OidcToken) Descriptor() ([]byte, []int)
Deprecated: Use PushConfig_OidcToken.ProtoReflect.Descriptor instead.
func (x *PushConfig_OidcToken) GetAudience() string
func (x *PushConfig_OidcToken) GetServiceAccountEmail() string
func (*PushConfig_OidcToken) ProtoMessage()
func (x *PushConfig_OidcToken) ProtoReflect() protoreflect.Message
func (x *PushConfig_OidcToken) Reset()
func (x *PushConfig_OidcToken) String() string
type PushConfig_OidcToken_ struct { // Optional. If specified, Pub/Sub will generate and attach an OIDC JWT // token as an `Authorization` header in the HTTP request for every pushed // message. OidcToken *PushConfig_OidcToken `protobuf:"bytes,3,opt,name=oidc_token,json=oidcToken,proto3,oneof"` }
The payload to the push endpoint is in the form of the JSON representation of a PubsubMessage (https://cloud.google.com/pubsub/docs/reference/rpc/google.pubsub.v1#pubsubmessage).
type PushConfig_PubsubWrapper struct {
// contains filtered or unexported fields
}
func (*PushConfig_PubsubWrapper) Descriptor() ([]byte, []int)
Deprecated: Use PushConfig_PubsubWrapper.ProtoReflect.Descriptor instead.
func (*PushConfig_PubsubWrapper) ProtoMessage()
func (x *PushConfig_PubsubWrapper) ProtoReflect() protoreflect.Message
func (x *PushConfig_PubsubWrapper) Reset()
func (x *PushConfig_PubsubWrapper) String() string
type PushConfig_PubsubWrapper_ struct { // Optional. When set, the payload to the push endpoint is in the form of // the JSON representation of a PubsubMessage // (https://cloud.google.com/pubsub/docs/reference/rpc/google.pubsub.v1#pubsubmessage). PubsubWrapper *PushConfig_PubsubWrapper `protobuf:"bytes,4,opt,name=pubsub_wrapper,json=pubsubWrapper,proto3,oneof"` }
A message and its corresponding acknowledgment ID.
type ReceivedMessage struct { // Optional. This ID can be used to acknowledge the received message. AckId string `protobuf:"bytes,1,opt,name=ack_id,json=ackId,proto3" json:"ack_id,omitempty"` // Optional. The message. Message *PubsubMessage `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` // Optional. The approximate number of times that Pub/Sub has attempted to // deliver the associated message to a subscriber. // // More precisely, this is 1 + (number of NACKs) + // (number of ack_deadline exceeds) for this message. // // A NACK is any call to ModifyAckDeadline with a 0 deadline. An ack_deadline // exceeds event is whenever a message is not acknowledged within // ack_deadline. Note that ack_deadline is initially // Subscription.ackDeadlineSeconds, but may get extended automatically by // the client library. // // Upon the first delivery of a given message, `delivery_attempt` will have a // value of 1. The value is calculated at best effort and is approximate. // // If a DeadLetterPolicy is not set on the subscription, this will be 0. DeliveryAttempt int32 `protobuf:"varint,3,opt,name=delivery_attempt,json=deliveryAttempt,proto3" json:"delivery_attempt,omitempty"` // contains filtered or unexported fields }
func (*ReceivedMessage) Descriptor() ([]byte, []int)
Deprecated: Use ReceivedMessage.ProtoReflect.Descriptor instead.
func (x *ReceivedMessage) GetAckId() string
func (x *ReceivedMessage) GetDeliveryAttempt() int32
func (x *ReceivedMessage) GetMessage() *PubsubMessage
func (*ReceivedMessage) ProtoMessage()
func (x *ReceivedMessage) ProtoReflect() protoreflect.Message
func (x *ReceivedMessage) Reset()
func (x *ReceivedMessage) String() string
A policy that specifies how 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.
type RetryPolicy struct { // Optional. The minimum delay between consecutive deliveries of a given // message. Value should be between 0 and 600 seconds. Defaults to 10 seconds. MinimumBackoff *durationpb.Duration `protobuf:"bytes,1,opt,name=minimum_backoff,json=minimumBackoff,proto3" json:"minimum_backoff,omitempty"` // Optional. The maximum delay between consecutive deliveries of a given // message. Value should be between 0 and 600 seconds. Defaults to 600 // seconds. MaximumBackoff *durationpb.Duration `protobuf:"bytes,2,opt,name=maximum_backoff,json=maximumBackoff,proto3" json:"maximum_backoff,omitempty"` // contains filtered or unexported fields }
func (*RetryPolicy) Descriptor() ([]byte, []int)
Deprecated: Use RetryPolicy.ProtoReflect.Descriptor instead.
func (x *RetryPolicy) GetMaximumBackoff() *durationpb.Duration
func (x *RetryPolicy) GetMinimumBackoff() *durationpb.Duration
func (*RetryPolicy) ProtoMessage()
func (x *RetryPolicy) ProtoReflect() protoreflect.Message
func (x *RetryPolicy) Reset()
func (x *RetryPolicy) String() string
Request for the `RollbackSchema` method.
type RollbackSchemaRequest struct { // Required. The schema being rolled back with revision id. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. The revision ID to roll back to. // It must be a revision of the same schema. // // Example: c7cfa2a8 RevisionId string `protobuf:"bytes,2,opt,name=revision_id,json=revisionId,proto3" json:"revision_id,omitempty"` // contains filtered or unexported fields }
func (*RollbackSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use RollbackSchemaRequest.ProtoReflect.Descriptor instead.
func (x *RollbackSchemaRequest) GetName() string
func (x *RollbackSchemaRequest) GetRevisionId() string
func (*RollbackSchemaRequest) ProtoMessage()
func (x *RollbackSchemaRequest) ProtoReflect() protoreflect.Message
func (x *RollbackSchemaRequest) Reset()
func (x *RollbackSchemaRequest) String() string
A schema resource.
type Schema struct { // Required. Name of the schema. // Format is `projects/{project}/schemas/{schema}`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The type of the schema definition. Type Schema_Type `protobuf:"varint,2,opt,name=type,proto3,enum=google.pubsub.v1.Schema_Type" json:"type,omitempty"` // The definition of the schema. This should contain a string representing // the full definition of the schema that is a valid schema definition of // the type specified in `type`. Definition string `protobuf:"bytes,3,opt,name=definition,proto3" json:"definition,omitempty"` // Output only. Immutable. The revision ID of the schema. RevisionId string `protobuf:"bytes,4,opt,name=revision_id,json=revisionId,proto3" json:"revision_id,omitempty"` // Output only. The timestamp that the revision was created. RevisionCreateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=revision_create_time,json=revisionCreateTime,proto3" json:"revision_create_time,omitempty"` // contains filtered or unexported fields }
func (*Schema) Descriptor() ([]byte, []int)
Deprecated: Use Schema.ProtoReflect.Descriptor instead.
func (x *Schema) GetDefinition() string
func (x *Schema) GetName() string
func (x *Schema) GetRevisionCreateTime() *timestamppb.Timestamp
func (x *Schema) GetRevisionId() string
func (x *Schema) GetType() Schema_Type
func (*Schema) ProtoMessage()
func (x *Schema) ProtoReflect() protoreflect.Message
func (x *Schema) Reset()
func (x *Schema) String() string
SchemaServiceClient is the client API for SchemaService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type SchemaServiceClient interface { // Creates a schema. CreateSchema(ctx context.Context, in *CreateSchemaRequest, opts ...grpc.CallOption) (*Schema, error) // Gets a schema. GetSchema(ctx context.Context, in *GetSchemaRequest, opts ...grpc.CallOption) (*Schema, error) // Lists schemas in a project. ListSchemas(ctx context.Context, in *ListSchemasRequest, opts ...grpc.CallOption) (*ListSchemasResponse, error) // Lists all schema revisions for the named schema. ListSchemaRevisions(ctx context.Context, in *ListSchemaRevisionsRequest, opts ...grpc.CallOption) (*ListSchemaRevisionsResponse, error) // Commits a new schema revision to an existing schema. CommitSchema(ctx context.Context, in *CommitSchemaRequest, opts ...grpc.CallOption) (*Schema, error) // Creates a new schema revision that is a copy of the provided revision_id. RollbackSchema(ctx context.Context, in *RollbackSchemaRequest, opts ...grpc.CallOption) (*Schema, error) // Deletes a specific schema revision. DeleteSchemaRevision(ctx context.Context, in *DeleteSchemaRevisionRequest, opts ...grpc.CallOption) (*Schema, error) // Deletes a schema. DeleteSchema(ctx context.Context, in *DeleteSchemaRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Validates a schema. ValidateSchema(ctx context.Context, in *ValidateSchemaRequest, opts ...grpc.CallOption) (*ValidateSchemaResponse, error) // Validates a message against a schema. ValidateMessage(ctx context.Context, in *ValidateMessageRequest, opts ...grpc.CallOption) (*ValidateMessageResponse, error) }
func NewSchemaServiceClient(cc grpc.ClientConnInterface) SchemaServiceClient
SchemaServiceServer is the server API for SchemaService service.
type SchemaServiceServer interface { // Creates a schema. CreateSchema(context.Context, *CreateSchemaRequest) (*Schema, error) // Gets a schema. GetSchema(context.Context, *GetSchemaRequest) (*Schema, error) // Lists schemas in a project. ListSchemas(context.Context, *ListSchemasRequest) (*ListSchemasResponse, error) // Lists all schema revisions for the named schema. ListSchemaRevisions(context.Context, *ListSchemaRevisionsRequest) (*ListSchemaRevisionsResponse, error) // Commits a new schema revision to an existing schema. CommitSchema(context.Context, *CommitSchemaRequest) (*Schema, error) // Creates a new schema revision that is a copy of the provided revision_id. RollbackSchema(context.Context, *RollbackSchemaRequest) (*Schema, error) // Deletes a specific schema revision. DeleteSchemaRevision(context.Context, *DeleteSchemaRevisionRequest) (*Schema, error) // Deletes a schema. DeleteSchema(context.Context, *DeleteSchemaRequest) (*emptypb.Empty, error) // Validates a schema. ValidateSchema(context.Context, *ValidateSchemaRequest) (*ValidateSchemaResponse, error) // Validates a message against a schema. ValidateMessage(context.Context, *ValidateMessageRequest) (*ValidateMessageResponse, error) }
Settings for validating messages published against a schema.
type SchemaSettings struct { // Required. The name of the schema that messages published should be // validated against. Format is `projects/{project}/schemas/{schema}`. The // value of this field will be `_deleted-schema_` if the schema has been // deleted. Schema string `protobuf:"bytes,1,opt,name=schema,proto3" json:"schema,omitempty"` // Optional. The encoding of messages validated against `schema`. Encoding Encoding `protobuf:"varint,2,opt,name=encoding,proto3,enum=google.pubsub.v1.Encoding" json:"encoding,omitempty"` // 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. FirstRevisionId string `protobuf:"bytes,3,opt,name=first_revision_id,json=firstRevisionId,proto3" json:"first_revision_id,omitempty"` // 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. LastRevisionId string `protobuf:"bytes,4,opt,name=last_revision_id,json=lastRevisionId,proto3" json:"last_revision_id,omitempty"` // contains filtered or unexported fields }
func (*SchemaSettings) Descriptor() ([]byte, []int)
Deprecated: Use SchemaSettings.ProtoReflect.Descriptor instead.
func (x *SchemaSettings) GetEncoding() Encoding
func (x *SchemaSettings) GetFirstRevisionId() string
func (x *SchemaSettings) GetLastRevisionId() string
func (x *SchemaSettings) GetSchema() string
func (*SchemaSettings) ProtoMessage()
func (x *SchemaSettings) ProtoReflect() protoreflect.Message
func (x *SchemaSettings) Reset()
func (x *SchemaSettings) String() string
View of Schema object fields to be returned by GetSchema and ListSchemas.
type SchemaView int32
const ( // The default / unset value. // The API will default to the BASIC view. SchemaView_SCHEMA_VIEW_UNSPECIFIED SchemaView = 0 // Include the name and type of the schema, but not the definition. SchemaView_BASIC SchemaView = 1 // Include all Schema object fields. SchemaView_FULL SchemaView = 2 )
func (SchemaView) Descriptor() protoreflect.EnumDescriptor
func (x SchemaView) Enum() *SchemaView
func (SchemaView) EnumDescriptor() ([]byte, []int)
Deprecated: Use SchemaView.Descriptor instead.
func (x SchemaView) Number() protoreflect.EnumNumber
func (x SchemaView) String() string
func (SchemaView) Type() protoreflect.EnumType
Possible schema definition types.
type Schema_Type int32
const ( // Default value. This value is unused. Schema_TYPE_UNSPECIFIED Schema_Type = 0 // A Protocol Buffer schema definition. Schema_PROTOCOL_BUFFER Schema_Type = 1 // An Avro schema definition. Schema_AVRO Schema_Type = 2 )
func (Schema_Type) Descriptor() protoreflect.EnumDescriptor
func (x Schema_Type) Enum() *Schema_Type
func (Schema_Type) EnumDescriptor() ([]byte, []int)
Deprecated: Use Schema_Type.Descriptor instead.
func (x Schema_Type) Number() protoreflect.EnumNumber
func (x Schema_Type) String() string
func (Schema_Type) Type() protoreflect.EnumType
Request for the `Seek` method.
type SeekRequest struct { // Required. The subscription to affect. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Types that are assignable to Target: // // *SeekRequest_Time // *SeekRequest_Snapshot Target isSeekRequest_Target `protobuf_oneof:"target"` // contains filtered or unexported fields }
func (*SeekRequest) Descriptor() ([]byte, []int)
Deprecated: Use SeekRequest.ProtoReflect.Descriptor instead.
func (x *SeekRequest) GetSnapshot() string
func (x *SeekRequest) GetSubscription() string
func (m *SeekRequest) GetTarget() isSeekRequest_Target
func (x *SeekRequest) GetTime() *timestamppb.Timestamp
func (*SeekRequest) ProtoMessage()
func (x *SeekRequest) ProtoReflect() protoreflect.Message
func (x *SeekRequest) Reset()
func (x *SeekRequest) String() string
type SeekRequest_Snapshot struct { // Optional. The snapshot to seek to. The snapshot's topic must be the same // as that of the provided subscription. Format is // `projects/{project}/snapshots/{snap}`. Snapshot string `protobuf:"bytes,3,opt,name=snapshot,proto3,oneof"` }
type SeekRequest_Time struct { // Optional. The time to seek to. // Messages retained in the subscription that were published before this // time are marked as acknowledged, and messages retained in the // subscription that were published after this time are marked as // unacknowledged. Note that this operation affects only those messages // retained in the subscription (configured by the combination of // `message_retention_duration` and `retain_acked_messages`). For example, // if `time` corresponds to a point before the message retention // window (or to a point before the system's notion of the subscription // creation time), only retained messages will be marked as unacknowledged, // and already-expunged messages will not be restored. Time *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=time,proto3,oneof"` }
Response for the `Seek` method (this response is empty).
type SeekResponse struct {
// contains filtered or unexported fields
}
func (*SeekResponse) Descriptor() ([]byte, []int)
Deprecated: Use SeekResponse.ProtoReflect.Descriptor instead.
func (*SeekResponse) ProtoMessage()
func (x *SeekResponse) ProtoReflect() protoreflect.Message
func (x *SeekResponse) Reset()
func (x *SeekResponse) String() string
A snapshot resource. Snapshots are used in [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, which allow you to manage message acknowledgments in bulk. That is, you can set the acknowledgment state of messages in an existing subscription to the state captured by a snapshot.
type Snapshot struct { // Optional. The name of the snapshot. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. The name of the topic from which this snapshot is retaining // messages. Topic string `protobuf:"bytes,2,opt,name=topic,proto3" json:"topic,omitempty"` // Optional. The snapshot is guaranteed to exist up until this time. // A newly-created snapshot expires no later than 7 days from the time of its // creation. Its exact lifetime is determined at creation by the existing // backlog in the source subscription. Specifically, the lifetime of the // snapshot is `7 days - (age of oldest unacked message in the subscription)`. // For example, consider a subscription whose oldest unacked message is 3 days // old. If a snapshot is created from this subscription, the snapshot -- which // will always capture this 3-day-old backlog as long as the snapshot // exists -- will expire in 4 days. The service will refuse to create a // snapshot that would expire in less than 1 hour after creation. ExpireTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"` // Optional. See [Creating and managing labels] // (https://cloud.google.com/pubsub/docs/labels). Labels map[string]string `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // contains filtered or unexported fields }
func (*Snapshot) Descriptor() ([]byte, []int)
Deprecated: Use Snapshot.ProtoReflect.Descriptor instead.
func (x *Snapshot) GetExpireTime() *timestamppb.Timestamp
func (x *Snapshot) GetLabels() map[string]string
func (x *Snapshot) GetName() string
func (x *Snapshot) GetTopic() string
func (*Snapshot) ProtoMessage()
func (x *Snapshot) ProtoReflect() protoreflect.Message
func (x *Snapshot) Reset()
func (x *Snapshot) String() string
Request for the `StreamingPull` streaming RPC method. This request is used to establish the initial stream as well as to stream acknowledgements and ack deadline modifications from the client to the server.
type StreamingPullRequest struct { // Required. The subscription for which to initialize the new stream. This // must be provided in the first request on the stream, and must not be set in // subsequent requests from client to server. // Format is `projects/{project}/subscriptions/{sub}`. Subscription string `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Optional. List of acknowledgement IDs for acknowledging previously received // messages (received on this stream or a different stream). If an ack ID has // expired, the corresponding message may be redelivered later. Acknowledging // a message more than once will not result in an error. If the // acknowledgement ID is malformed, the stream will be aborted with status // `INVALID_ARGUMENT`. AckIds []string `protobuf:"bytes,2,rep,name=ack_ids,json=ackIds,proto3" json:"ack_ids,omitempty"` // Optional. The list of new ack deadlines for the IDs listed in // `modify_deadline_ack_ids`. The size of this list must be the same as the // size of `modify_deadline_ack_ids`. If it differs the stream will be aborted // with `INVALID_ARGUMENT`. Each element in this list is applied to the // element in the same position in `modify_deadline_ack_ids`. The new ack // deadline is with respect to the time this request was sent to the Pub/Sub // system. Must be >= 0. For example, if the value is 10, the new ack deadline // will expire 10 seconds after this request is received. If the value is 0, // the message is immediately made available for another streaming or // non-streaming pull request. If the value is < 0 (an error), the stream will // be aborted with status `INVALID_ARGUMENT`. ModifyDeadlineSeconds []int32 `protobuf:"varint,3,rep,packed,name=modify_deadline_seconds,json=modifyDeadlineSeconds,proto3" json:"modify_deadline_seconds,omitempty"` // Optional. List of acknowledgement IDs whose deadline will be modified based // on the corresponding element in `modify_deadline_seconds`. This field can // be used to indicate that more time is needed to process a message by the // subscriber, or to make the message available for redelivery if the // processing was interrupted. ModifyDeadlineAckIds []string `protobuf:"bytes,4,rep,name=modify_deadline_ack_ids,json=modifyDeadlineAckIds,proto3" json:"modify_deadline_ack_ids,omitempty"` // Required. The ack deadline to use for the stream. This must be provided in // the first request on the stream, but it can also be updated on subsequent // requests from client to server. The minimum deadline you can specify is 10 // seconds. The maximum deadline you can specify is 600 seconds (10 minutes). StreamAckDeadlineSeconds int32 `protobuf:"varint,5,opt,name=stream_ack_deadline_seconds,json=streamAckDeadlineSeconds,proto3" json:"stream_ack_deadline_seconds,omitempty"` // Optional. A unique identifier that is used to distinguish client instances // from each other. Only needs to be provided on the initial request. When a // stream disconnects and reconnects for the same stream, the client_id should // be set to the same value so that state associated with the old stream can // be transferred to the new stream. The same client_id should not be used for // different client instances. ClientId string `protobuf:"bytes,6,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"` // Optional. Flow control settings for the maximum number of outstanding // messages. When there are `max_outstanding_messages` currently sent to the // streaming pull client that have not yet been acked or nacked, the server // stops sending more messages. The sending of messages resumes once the // number of outstanding messages is less than this value. If the value is // <= 0, there is no limit to the number of outstanding messages. This // property can only be set on the initial StreamingPullRequest. If it is set // on a subsequent request, the stream will be aborted with status // `INVALID_ARGUMENT`. MaxOutstandingMessages int64 `protobuf:"varint,7,opt,name=max_outstanding_messages,json=maxOutstandingMessages,proto3" json:"max_outstanding_messages,omitempty"` // Optional. Flow control settings for the maximum number of outstanding // bytes. When there are `max_outstanding_bytes` or more worth of messages // currently sent to the streaming pull client that have not yet been acked or // nacked, the server will stop sending more messages. The sending of messages // resumes once the number of outstanding bytes is less than this value. If // the value is <= 0, there is no limit to the number of outstanding bytes. // This property can only be set on the initial StreamingPullRequest. If it is // set on a subsequent request, the stream will be aborted with status // `INVALID_ARGUMENT`. MaxOutstandingBytes int64 `protobuf:"varint,8,opt,name=max_outstanding_bytes,json=maxOutstandingBytes,proto3" json:"max_outstanding_bytes,omitempty"` // contains filtered or unexported fields }
func (*StreamingPullRequest) Descriptor() ([]byte, []int)
Deprecated: Use StreamingPullRequest.ProtoReflect.Descriptor instead.
func (x *StreamingPullRequest) GetAckIds() []string
func (x *StreamingPullRequest) GetClientId() string
func (x *StreamingPullRequest) GetMaxOutstandingBytes() int64
func (x *StreamingPullRequest) GetMaxOutstandingMessages() int64
func (x *StreamingPullRequest) GetModifyDeadlineAckIds() []string
func (x *StreamingPullRequest) GetModifyDeadlineSeconds() []int32
func (x *StreamingPullRequest) GetStreamAckDeadlineSeconds() int32
func (x *StreamingPullRequest) GetSubscription() string
func (*StreamingPullRequest) ProtoMessage()
func (x *StreamingPullRequest) ProtoReflect() protoreflect.Message
func (x *StreamingPullRequest) Reset()
func (x *StreamingPullRequest) String() string
Response for the `StreamingPull` method. This response is used to stream messages from the server to the client.
type StreamingPullResponse struct { // Optional. Received Pub/Sub messages. This will not be empty. ReceivedMessages []*ReceivedMessage `protobuf:"bytes,1,rep,name=received_messages,json=receivedMessages,proto3" json:"received_messages,omitempty"` // Optional. This field will only be set if `enable_exactly_once_delivery` is // set to `true`. AcknowledgeConfirmation *StreamingPullResponse_AcknowledgeConfirmation `protobuf:"bytes,5,opt,name=acknowledge_confirmation,json=acknowledgeConfirmation,proto3" json:"acknowledge_confirmation,omitempty"` // Optional. This field will only be set if `enable_exactly_once_delivery` is // set to `true`. ModifyAckDeadlineConfirmation *StreamingPullResponse_ModifyAckDeadlineConfirmation `protobuf:"bytes,3,opt,name=modify_ack_deadline_confirmation,json=modifyAckDeadlineConfirmation,proto3" json:"modify_ack_deadline_confirmation,omitempty"` // Optional. Properties associated with this subscription. SubscriptionProperties *StreamingPullResponse_SubscriptionProperties `protobuf:"bytes,4,opt,name=subscription_properties,json=subscriptionProperties,proto3" json:"subscription_properties,omitempty"` // contains filtered or unexported fields }
func (*StreamingPullResponse) Descriptor() ([]byte, []int)
Deprecated: Use StreamingPullResponse.ProtoReflect.Descriptor instead.
func (x *StreamingPullResponse) GetAcknowledgeConfirmation() *StreamingPullResponse_AcknowledgeConfirmation
func (x *StreamingPullResponse) GetModifyAckDeadlineConfirmation() *StreamingPullResponse_ModifyAckDeadlineConfirmation
func (x *StreamingPullResponse) GetReceivedMessages() []*ReceivedMessage
func (x *StreamingPullResponse) GetSubscriptionProperties() *StreamingPullResponse_SubscriptionProperties
func (*StreamingPullResponse) ProtoMessage()
func (x *StreamingPullResponse) ProtoReflect() protoreflect.Message
func (x *StreamingPullResponse) Reset()
func (x *StreamingPullResponse) String() string
Acknowledgement IDs sent in one or more previous requests to acknowledge a previously received message.
type StreamingPullResponse_AcknowledgeConfirmation struct { // Optional. Successfully processed acknowledgement IDs. AckIds []string `protobuf:"bytes,1,rep,name=ack_ids,json=ackIds,proto3" json:"ack_ids,omitempty"` // Optional. List of acknowledgement IDs that were malformed or whose // acknowledgement deadline has expired. InvalidAckIds []string `protobuf:"bytes,2,rep,name=invalid_ack_ids,json=invalidAckIds,proto3" json:"invalid_ack_ids,omitempty"` // Optional. List of acknowledgement IDs that were out of order. UnorderedAckIds []string `protobuf:"bytes,3,rep,name=unordered_ack_ids,json=unorderedAckIds,proto3" json:"unordered_ack_ids,omitempty"` // Optional. List of acknowledgement IDs that failed processing with // temporary issues. TemporaryFailedAckIds []string `protobuf:"bytes,4,rep,name=temporary_failed_ack_ids,json=temporaryFailedAckIds,proto3" json:"temporary_failed_ack_ids,omitempty"` // contains filtered or unexported fields }
func (*StreamingPullResponse_AcknowledgeConfirmation) Descriptor() ([]byte, []int)
Deprecated: Use StreamingPullResponse_AcknowledgeConfirmation.ProtoReflect.Descriptor instead.
func (x *StreamingPullResponse_AcknowledgeConfirmation) GetAckIds() []string
func (x *StreamingPullResponse_AcknowledgeConfirmation) GetInvalidAckIds() []string
func (x *StreamingPullResponse_AcknowledgeConfirmation) GetTemporaryFailedAckIds() []string
func (x *StreamingPullResponse_AcknowledgeConfirmation) GetUnorderedAckIds() []string
func (*StreamingPullResponse_AcknowledgeConfirmation) ProtoMessage()
func (x *StreamingPullResponse_AcknowledgeConfirmation) ProtoReflect() protoreflect.Message
func (x *StreamingPullResponse_AcknowledgeConfirmation) Reset()
func (x *StreamingPullResponse_AcknowledgeConfirmation) String() string
Acknowledgement IDs sent in one or more previous requests to modify the deadline for a specific message.
type StreamingPullResponse_ModifyAckDeadlineConfirmation struct { // Optional. Successfully processed acknowledgement IDs. AckIds []string `protobuf:"bytes,1,rep,name=ack_ids,json=ackIds,proto3" json:"ack_ids,omitempty"` // Optional. List of acknowledgement IDs that were malformed or whose // acknowledgement deadline has expired. InvalidAckIds []string `protobuf:"bytes,2,rep,name=invalid_ack_ids,json=invalidAckIds,proto3" json:"invalid_ack_ids,omitempty"` // Optional. List of acknowledgement IDs that failed processing with // temporary issues. TemporaryFailedAckIds []string `protobuf:"bytes,3,rep,name=temporary_failed_ack_ids,json=temporaryFailedAckIds,proto3" json:"temporary_failed_ack_ids,omitempty"` // contains filtered or unexported fields }
func (*StreamingPullResponse_ModifyAckDeadlineConfirmation) Descriptor() ([]byte, []int)
Deprecated: Use StreamingPullResponse_ModifyAckDeadlineConfirmation.ProtoReflect.Descriptor instead.
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) GetAckIds() []string
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) GetInvalidAckIds() []string
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) GetTemporaryFailedAckIds() []string
func (*StreamingPullResponse_ModifyAckDeadlineConfirmation) ProtoMessage()
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) ProtoReflect() protoreflect.Message
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) Reset()
func (x *StreamingPullResponse_ModifyAckDeadlineConfirmation) String() string
Subscription properties sent as part of the response.
type StreamingPullResponse_SubscriptionProperties struct { // Optional. True iff exactly once delivery is enabled for this // subscription. ExactlyOnceDeliveryEnabled bool `protobuf:"varint,1,opt,name=exactly_once_delivery_enabled,json=exactlyOnceDeliveryEnabled,proto3" json:"exactly_once_delivery_enabled,omitempty"` // Optional. True iff message ordering is enabled for this subscription. MessageOrderingEnabled bool `protobuf:"varint,2,opt,name=message_ordering_enabled,json=messageOrderingEnabled,proto3" json:"message_ordering_enabled,omitempty"` // contains filtered or unexported fields }
func (*StreamingPullResponse_SubscriptionProperties) Descriptor() ([]byte, []int)
Deprecated: Use StreamingPullResponse_SubscriptionProperties.ProtoReflect.Descriptor instead.
func (x *StreamingPullResponse_SubscriptionProperties) GetExactlyOnceDeliveryEnabled() bool
func (x *StreamingPullResponse_SubscriptionProperties) GetMessageOrderingEnabled() bool
func (*StreamingPullResponse_SubscriptionProperties) ProtoMessage()
func (x *StreamingPullResponse_SubscriptionProperties) ProtoReflect() protoreflect.Message
func (x *StreamingPullResponse_SubscriptionProperties) Reset()
func (x *StreamingPullResponse_SubscriptionProperties) String() string
SubscriberClient is the client API for Subscriber service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type SubscriberClient interface { // Creates a subscription to a given topic. See the [resource name rules] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). // If the subscription already exists, returns `ALREADY_EXISTS`. // If the corresponding topic doesn't exist, returns `NOT_FOUND`. // // If the name is not provided in the request, the server will assign a random // name for this subscription on the same project as the topic, conforming // to the [resource name format] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). The // generated name is populated in the returned Subscription object. Note that // for REST API requests, you must specify a name in the request. CreateSubscription(ctx context.Context, in *Subscription, opts ...grpc.CallOption) (*Subscription, error) // Gets the configuration details of a subscription. GetSubscription(ctx context.Context, in *GetSubscriptionRequest, opts ...grpc.CallOption) (*Subscription, error) // Updates an existing subscription by updating the fields specified in the // update mask. Note that certain properties of a subscription, such as its // topic, are not modifiable. UpdateSubscription(ctx context.Context, in *UpdateSubscriptionRequest, opts ...grpc.CallOption) (*Subscription, error) // Lists matching subscriptions. ListSubscriptions(ctx context.Context, in *ListSubscriptionsRequest, opts ...grpc.CallOption) (*ListSubscriptionsResponse, error) // Deletes an existing subscription. All messages retained in the subscription // are immediately dropped. Calls to `Pull` after deletion will return // `NOT_FOUND`. After a subscription is deleted, a new one may be created with // the same name, but the new one has no association with the old // subscription or its topic unless the same topic is specified. DeleteSubscription(ctx context.Context, in *DeleteSubscriptionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Modifies the ack deadline for a specific message. This method is useful // to indicate that more time is needed to process a message by the // subscriber, or to make the message available for redelivery if the // processing was interrupted. Note that this does not modify the // subscription-level `ackDeadlineSeconds` used for subsequent messages. ModifyAckDeadline(ctx context.Context, in *ModifyAckDeadlineRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Acknowledges the messages associated with the `ack_ids` in the // `AcknowledgeRequest`. The Pub/Sub system can remove the relevant messages // from the subscription. // // Acknowledging a message whose ack deadline has expired may succeed, // but such a message may be redelivered later. Acknowledging a message more // than once will not result in an error. Acknowledge(ctx context.Context, in *AcknowledgeRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Pulls messages from the server. Pull(ctx context.Context, in *PullRequest, opts ...grpc.CallOption) (*PullResponse, error) // Establishes a stream with the server, which sends messages down to the // client. The client streams acknowledgements and ack deadline modifications // back to the server. The server will close the stream and return the status // on any error. The server may close the stream with status `UNAVAILABLE` to // reassign server-side resources, in which case, the client should // re-establish the stream. Flow control can be achieved by configuring the // underlying RPC channel. StreamingPull(ctx context.Context, opts ...grpc.CallOption) (Subscriber_StreamingPullClient, error) // Modifies the `PushConfig` for a specified subscription. // // This may be used to change a push subscription to a pull one (signified by // an empty `PushConfig`) or vice versa, or change the endpoint URL and other // attributes of a push subscription. Messages will accumulate for delivery // continuously through the call regardless of changes to the `PushConfig`. ModifyPushConfig(ctx context.Context, in *ModifyPushConfigRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Gets the configuration details of a snapshot. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. GetSnapshot(ctx context.Context, in *GetSnapshotRequest, opts ...grpc.CallOption) (*Snapshot, error) // Lists the existing snapshots. Snapshots are used in [Seek]( // https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. ListSnapshots(ctx context.Context, in *ListSnapshotsRequest, opts ...grpc.CallOption) (*ListSnapshotsResponse, error) // Creates a snapshot from the requested subscription. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. // If the snapshot already exists, returns `ALREADY_EXISTS`. // If the requested subscription doesn't exist, returns `NOT_FOUND`. // If the backlog in the subscription is too old -- and the resulting snapshot // would expire in less than 1 hour -- then `FAILED_PRECONDITION` is returned. // See also the `Snapshot.expire_time` field. If the name is not provided in // the request, the server will assign a random // name for this snapshot on the same project as the subscription, conforming // to the [resource name format] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). The // generated name is populated in the returned Snapshot object. Note that for // REST API requests, you must specify a name in the request. CreateSnapshot(ctx context.Context, in *CreateSnapshotRequest, opts ...grpc.CallOption) (*Snapshot, error) // Updates an existing snapshot by updating the fields specified in the update // mask. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. UpdateSnapshot(ctx context.Context, in *UpdateSnapshotRequest, opts ...grpc.CallOption) (*Snapshot, error) // Removes an existing snapshot. Snapshots are used in [Seek] // (https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. // When the snapshot is deleted, all messages retained in the snapshot // are immediately dropped. After a snapshot is deleted, a new one may be // created with the same name, but the new one has no association with the old // snapshot or its subscription, unless the same subscription is specified. DeleteSnapshot(ctx context.Context, in *DeleteSnapshotRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Seeks an existing subscription to a point in time or to a given snapshot, // whichever is provided in the request. Snapshots are used in [Seek] // (https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. Note that both the subscription and the // snapshot must be on the same topic. Seek(ctx context.Context, in *SeekRequest, opts ...grpc.CallOption) (*SeekResponse, error) }
func NewSubscriberClient(cc grpc.ClientConnInterface) SubscriberClient
SubscriberServer is the server API for Subscriber service.
type SubscriberServer interface { // Creates a subscription to a given topic. See the [resource name rules] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). // If the subscription already exists, returns `ALREADY_EXISTS`. // If the corresponding topic doesn't exist, returns `NOT_FOUND`. // // If the name is not provided in the request, the server will assign a random // name for this subscription on the same project as the topic, conforming // to the [resource name format] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). The // generated name is populated in the returned Subscription object. Note that // for REST API requests, you must specify a name in the request. CreateSubscription(context.Context, *Subscription) (*Subscription, error) // Gets the configuration details of a subscription. GetSubscription(context.Context, *GetSubscriptionRequest) (*Subscription, error) // Updates an existing subscription by updating the fields specified in the // update mask. Note that certain properties of a subscription, such as its // topic, are not modifiable. UpdateSubscription(context.Context, *UpdateSubscriptionRequest) (*Subscription, error) // Lists matching subscriptions. ListSubscriptions(context.Context, *ListSubscriptionsRequest) (*ListSubscriptionsResponse, error) // Deletes an existing subscription. All messages retained in the subscription // are immediately dropped. Calls to `Pull` after deletion will return // `NOT_FOUND`. After a subscription is deleted, a new one may be created with // the same name, but the new one has no association with the old // subscription or its topic unless the same topic is specified. DeleteSubscription(context.Context, *DeleteSubscriptionRequest) (*emptypb.Empty, error) // Modifies the ack deadline for a specific message. This method is useful // to indicate that more time is needed to process a message by the // subscriber, or to make the message available for redelivery if the // processing was interrupted. Note that this does not modify the // subscription-level `ackDeadlineSeconds` used for subsequent messages. ModifyAckDeadline(context.Context, *ModifyAckDeadlineRequest) (*emptypb.Empty, error) // Acknowledges the messages associated with the `ack_ids` in the // `AcknowledgeRequest`. The Pub/Sub system can remove the relevant messages // from the subscription. // // Acknowledging a message whose ack deadline has expired may succeed, // but such a message may be redelivered later. Acknowledging a message more // than once will not result in an error. Acknowledge(context.Context, *AcknowledgeRequest) (*emptypb.Empty, error) // Pulls messages from the server. Pull(context.Context, *PullRequest) (*PullResponse, error) // Establishes a stream with the server, which sends messages down to the // client. The client streams acknowledgements and ack deadline modifications // back to the server. The server will close the stream and return the status // on any error. The server may close the stream with status `UNAVAILABLE` to // reassign server-side resources, in which case, the client should // re-establish the stream. Flow control can be achieved by configuring the // underlying RPC channel. StreamingPull(Subscriber_StreamingPullServer) error // Modifies the `PushConfig` for a specified subscription. // // This may be used to change a push subscription to a pull one (signified by // an empty `PushConfig`) or vice versa, or change the endpoint URL and other // attributes of a push subscription. Messages will accumulate for delivery // continuously through the call regardless of changes to the `PushConfig`. ModifyPushConfig(context.Context, *ModifyPushConfigRequest) (*emptypb.Empty, error) // Gets the configuration details of a snapshot. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. GetSnapshot(context.Context, *GetSnapshotRequest) (*Snapshot, error) // Lists the existing snapshots. Snapshots are used in [Seek]( // https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error) // Creates a snapshot from the requested subscription. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. // If the snapshot already exists, returns `ALREADY_EXISTS`. // If the requested subscription doesn't exist, returns `NOT_FOUND`. // If the backlog in the subscription is too old -- and the resulting snapshot // would expire in less than 1 hour -- then `FAILED_PRECONDITION` is returned. // See also the `Snapshot.expire_time` field. If the name is not provided in // the request, the server will assign a random // name for this snapshot on the same project as the subscription, conforming // to the [resource name format] // (https://cloud.google.com/pubsub/docs/pubsub-basics#resource_names). The // generated name is populated in the returned Snapshot object. Note that for // REST API requests, you must specify a name in the request. CreateSnapshot(context.Context, *CreateSnapshotRequest) (*Snapshot, error) // Updates an existing snapshot by updating the fields specified in the update // mask. Snapshots are used in // [Seek](https://cloud.google.com/pubsub/docs/replay-overview) operations, // which allow you to manage message acknowledgments in bulk. That is, you can // set the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. UpdateSnapshot(context.Context, *UpdateSnapshotRequest) (*Snapshot, error) // Removes an existing snapshot. Snapshots are used in [Seek] // (https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. // When the snapshot is deleted, all messages retained in the snapshot // are immediately dropped. After a snapshot is deleted, a new one may be // created with the same name, but the new one has no association with the old // snapshot or its subscription, unless the same subscription is specified. DeleteSnapshot(context.Context, *DeleteSnapshotRequest) (*emptypb.Empty, error) // Seeks an existing subscription to a point in time or to a given snapshot, // whichever is provided in the request. Snapshots are used in [Seek] // (https://cloud.google.com/pubsub/docs/replay-overview) operations, which // allow you to manage message acknowledgments in bulk. That is, you can set // the acknowledgment state of messages in an existing subscription to the // state captured by a snapshot. Note that both the subscription and the // snapshot must be on the same topic. Seek(context.Context, *SeekRequest) (*SeekResponse, error) }
type Subscriber_StreamingPullClient interface { Send(*StreamingPullRequest) error Recv() (*StreamingPullResponse, error) grpc.ClientStream }
type Subscriber_StreamingPullServer interface { Send(*StreamingPullResponse) error Recv() (*StreamingPullRequest, error) grpc.ServerStream }
A subscription resource. If none of `push_config`, `bigquery_config`, or `cloud_storage_config` is set, then the subscriber will pull and ack messages using API methods. At most one of these fields may be set.
type Subscription struct { // Required. The name of the subscription. It must have the format // `"projects/{project}/subscriptions/{subscription}"`. `{subscription}` must // start with a letter, and contain only letters (`[A-Za-z]`), numbers // (`[0-9]`), dashes (`-`), underscores (`_`), periods (`.`), tildes (`~`), // plus (`+`) or percent signs (`%`). It must be between 3 and 255 characters // in length, and it must not start with `"goog"`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. The name of the topic from which this subscription is receiving // messages. Format is `projects/{project}/topics/{topic}`. The value of this // field will be `_deleted-topic_` if the topic has been deleted. Topic string `protobuf:"bytes,2,opt,name=topic,proto3" json:"topic,omitempty"` // Optional. If push delivery is used with this subscription, this field is // used to configure it. PushConfig *PushConfig `protobuf:"bytes,4,opt,name=push_config,json=pushConfig,proto3" json:"push_config,omitempty"` // Optional. If delivery to BigQuery is used with this subscription, this // field is used to configure it. BigqueryConfig *BigQueryConfig `protobuf:"bytes,18,opt,name=bigquery_config,json=bigqueryConfig,proto3" json:"bigquery_config,omitempty"` // Optional. If delivery to Google Cloud Storage is used with this // subscription, this field is used to configure it. CloudStorageConfig *CloudStorageConfig `protobuf:"bytes,22,opt,name=cloud_storage_config,json=cloudStorageConfig,proto3" json:"cloud_storage_config,omitempty"` // Optional. The approximate amount of time (on a best-effort basis) Pub/Sub // waits for the subscriber to acknowledge receipt before resending the // message. In the interval after the message is delivered and before it is // acknowledged, it is considered to be _outstanding_. During that time // period, the message will not be redelivered (on a best-effort basis). // // For pull subscriptions, this value is used as the initial value for the ack // deadline. To override this value for a given message, call // `ModifyAckDeadline` with the corresponding `ack_id` if using // non-streaming pull or send the `ack_id` in a // `StreamingModifyAckDeadlineRequest` if using streaming pull. // The minimum custom deadline you can specify is 10 seconds. // The maximum custom deadline you can specify is 600 seconds (10 minutes). // If this parameter is 0, a default value of 10 seconds is used. // // For push delivery, this value is also used to set the request timeout for // the call to the push endpoint. // // If the subscriber never acknowledges the message, the Pub/Sub // system will eventually redeliver the message. AckDeadlineSeconds int32 `protobuf:"varint,5,opt,name=ack_deadline_seconds,json=ackDeadlineSeconds,proto3" json:"ack_deadline_seconds,omitempty"` // Optional. Indicates whether to retain acknowledged messages. If true, then // messages are not expunged from the subscription's backlog, even if they are // acknowledged, until they fall out of the `message_retention_duration` // window. This must be true if you would like to [`Seek` to a timestamp] // (https://cloud.google.com/pubsub/docs/replay-overview#seek_to_a_time) in // the past to replay previously-acknowledged messages. RetainAckedMessages bool `protobuf:"varint,7,opt,name=retain_acked_messages,json=retainAckedMessages,proto3" json:"retain_acked_messages,omitempty"` // Optional. How long to retain unacknowledged messages in the subscription's // backlog, from the moment a message is published. If `retain_acked_messages` // is true, then this also configures the retention of acknowledged messages, // and thus configures how far back in time a `Seek` can be done. Defaults to // 7 days. Cannot be more than 7 days or less than 10 minutes. MessageRetentionDuration *durationpb.Duration `protobuf:"bytes,8,opt,name=message_retention_duration,json=messageRetentionDuration,proto3" json:"message_retention_duration,omitempty"` // Optional. See [Creating and managing // labels](https://cloud.google.com/pubsub/docs/labels). Labels map[string]string `protobuf:"bytes,9,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // Optional. If true, messages published with the same `ordering_key` in // `PubsubMessage` will be delivered to the subscribers in the order in which // they are received by the Pub/Sub system. Otherwise, they may be delivered // in any order. EnableMessageOrdering bool `protobuf:"varint,10,opt,name=enable_message_ordering,json=enableMessageOrdering,proto3" json:"enable_message_ordering,omitempty"` // Optional. A policy that specifies the conditions for this subscription's // expiration. A subscription is considered active as long as any connected // subscriber is successfully consuming messages from the subscription or is // issuing operations on the subscription. If `expiration_policy` is not set, // a *default policy* with `ttl` of 31 days will be used. The minimum allowed // value for `expiration_policy.ttl` is 1 day. If `expiration_policy` is set, // but `expiration_policy.ttl` is not set, the subscription never expires. ExpirationPolicy *ExpirationPolicy `protobuf:"bytes,11,opt,name=expiration_policy,json=expirationPolicy,proto3" json:"expiration_policy,omitempty"` // Optional. An expression written in the Pub/Sub [filter // language](https://cloud.google.com/pubsub/docs/filtering). If non-empty, // then only `PubsubMessage`s whose `attributes` field matches the filter are // delivered on this subscription. If empty, then no messages are filtered // out. Filter string `protobuf:"bytes,12,opt,name=filter,proto3" json:"filter,omitempty"` // Optional. A policy that specifies the conditions for dead lettering // messages in this subscription. If dead_letter_policy is not set, dead // lettering is disabled. // // The Pub/Sub service account associated with this subscriptions's // parent project (i.e., // service-{project_number}@gcp-sa-pubsub.iam.gserviceaccount.com) must have // permission to Acknowledge() messages on this subscription. DeadLetterPolicy *DeadLetterPolicy `protobuf:"bytes,13,opt,name=dead_letter_policy,json=deadLetterPolicy,proto3" json:"dead_letter_policy,omitempty"` // Optional. A policy that specifies how Pub/Sub retries message delivery for // this subscription. // // If not set, the default retry policy is applied. This generally implies // that messages will be retried as soon as possible for healthy subscribers. // RetryPolicy will be triggered on NACKs or acknowledgement deadline // exceeded events for a given message. RetryPolicy *RetryPolicy `protobuf:"bytes,14,opt,name=retry_policy,json=retryPolicy,proto3" json:"retry_policy,omitempty"` // Optional. Indicates whether the subscription is detached from its topic. // Detached subscriptions don't receive messages from their topic and don't // retain any backlog. `Pull` and `StreamingPull` requests will return // FAILED_PRECONDITION. If the subscription is a push subscription, pushes to // the endpoint will not be made. Detached bool `protobuf:"varint,15,opt,name=detached,proto3" json:"detached,omitempty"` // Optional. If true, Pub/Sub provides the following guarantees for the // delivery of a message with a given value of `message_id` on this // subscription: // // * The message sent to a subscriber is guaranteed not to be resent // before the message's acknowledgement deadline expires. // * An acknowledged message will not be resent to a subscriber. // // Note that subscribers may still receive multiple copies of a message // when `enable_exactly_once_delivery` is true if the message was published // multiple times by a publisher client. These copies are considered distinct // by Pub/Sub and have distinct `message_id` values. EnableExactlyOnceDelivery bool `protobuf:"varint,16,opt,name=enable_exactly_once_delivery,json=enableExactlyOnceDelivery,proto3" json:"enable_exactly_once_delivery,omitempty"` // Output only. Indicates the minimum duration for which a message is retained // after it is published to the subscription's topic. If this field is set, // messages published to the subscription's topic in the last // `topic_message_retention_duration` are always available to subscribers. See // the `message_retention_duration` field in `Topic`. This field is set only // in responses from the server; it is ignored if it is set in any requests. TopicMessageRetentionDuration *durationpb.Duration `protobuf:"bytes,17,opt,name=topic_message_retention_duration,json=topicMessageRetentionDuration,proto3" json:"topic_message_retention_duration,omitempty"` // Output only. An output-only field indicating whether or not the // subscription can receive messages. State Subscription_State `protobuf:"varint,19,opt,name=state,proto3,enum=google.pubsub.v1.Subscription_State" json:"state,omitempty"` // contains filtered or unexported fields }
func (*Subscription) Descriptor() ([]byte, []int)
Deprecated: Use Subscription.ProtoReflect.Descriptor instead.
func (x *Subscription) GetAckDeadlineSeconds() int32
func (x *Subscription) GetBigqueryConfig() *BigQueryConfig
func (x *Subscription) GetCloudStorageConfig() *CloudStorageConfig
func (x *Subscription) GetDeadLetterPolicy() *DeadLetterPolicy
func (x *Subscription) GetDetached() bool
func (x *Subscription) GetEnableExactlyOnceDelivery() bool
func (x *Subscription) GetEnableMessageOrdering() bool
func (x *Subscription) GetExpirationPolicy() *ExpirationPolicy
func (x *Subscription) GetFilter() string
func (x *Subscription) GetLabels() map[string]string
func (x *Subscription) GetMessageRetentionDuration() *durationpb.Duration
func (x *Subscription) GetName() string
func (x *Subscription) GetPushConfig() *PushConfig
func (x *Subscription) GetRetainAckedMessages() bool
func (x *Subscription) GetRetryPolicy() *RetryPolicy
func (x *Subscription) GetState() Subscription_State
func (x *Subscription) GetTopic() string
func (x *Subscription) GetTopicMessageRetentionDuration() *durationpb.Duration
func (*Subscription) ProtoMessage()
func (x *Subscription) ProtoReflect() protoreflect.Message
func (x *Subscription) Reset()
func (x *Subscription) String() string
Possible states for a subscription.
type Subscription_State int32
const ( // Default value. This value is unused. Subscription_STATE_UNSPECIFIED Subscription_State = 0 // The subscription can actively receive messages Subscription_ACTIVE Subscription_State = 1 // The subscription cannot receive messages because of an error with the // resource to which it pushes messages. See the more detailed error state // in the corresponding configuration. Subscription_RESOURCE_ERROR Subscription_State = 2 )
func (Subscription_State) Descriptor() protoreflect.EnumDescriptor
func (x Subscription_State) Enum() *Subscription_State
func (Subscription_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use Subscription_State.Descriptor instead.
func (x Subscription_State) Number() protoreflect.EnumNumber
func (x Subscription_State) String() string
func (Subscription_State) Type() protoreflect.EnumType
A topic resource.
type Topic struct { // Required. The name of the topic. It must have the format // `"projects/{project}/topics/{topic}"`. `{topic}` must start with a letter, // and contain only letters (`[A-Za-z]`), numbers (`[0-9]`), dashes (`-`), // underscores (`_`), periods (`.`), tildes (`~`), plus (`+`) or percent // signs (`%`). It must be between 3 and 255 characters in length, and it // must not start with `"goog"`. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Optional. See [Creating and managing labels] // (https://cloud.google.com/pubsub/docs/labels). Labels map[string]string `protobuf:"bytes,2,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // 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. MessageStoragePolicy *MessageStoragePolicy `protobuf:"bytes,3,opt,name=message_storage_policy,json=messageStoragePolicy,proto3" json:"message_storage_policy,omitempty"` // 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 `projects/*/locations/*/keyRings/*/cryptoKeys/*`. KmsKeyName string `protobuf:"bytes,5,opt,name=kms_key_name,json=kmsKeyName,proto3" json:"kms_key_name,omitempty"` // Optional. Settings for validating messages published against a schema. SchemaSettings *SchemaSettings `protobuf:"bytes,6,opt,name=schema_settings,json=schemaSettings,proto3" json:"schema_settings,omitempty"` // 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. SatisfiesPzs bool `protobuf:"varint,7,opt,name=satisfies_pzs,json=satisfiesPzs,proto3" json:"satisfies_pzs,omitempty"` // 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 `message_retention_duration` are always available to // subscribers. For instance, it allows any attached subscription to [seek to // a // timestamp](https://cloud.google.com/pubsub/docs/replay-overview#seek_to_a_time) // that is up to `message_retention_duration` in the past. If this field is // not set, message retention is controlled by settings on individual // subscriptions. Cannot be more than 31 days or less than 10 minutes. MessageRetentionDuration *durationpb.Duration `protobuf:"bytes,8,opt,name=message_retention_duration,json=messageRetentionDuration,proto3" json:"message_retention_duration,omitempty"` // Output only. An output-only field indicating the state of the topic. State Topic_State `protobuf:"varint,9,opt,name=state,proto3,enum=google.pubsub.v1.Topic_State" json:"state,omitempty"` // Optional. Settings for ingestion from a data source into this topic. IngestionDataSourceSettings *IngestionDataSourceSettings `protobuf:"bytes,10,opt,name=ingestion_data_source_settings,json=ingestionDataSourceSettings,proto3" json:"ingestion_data_source_settings,omitempty"` // contains filtered or unexported fields }
func (*Topic) Descriptor() ([]byte, []int)
Deprecated: Use Topic.ProtoReflect.Descriptor instead.
func (x *Topic) GetIngestionDataSourceSettings() *IngestionDataSourceSettings
func (x *Topic) GetKmsKeyName() string
func (x *Topic) GetLabels() map[string]string
func (x *Topic) GetMessageRetentionDuration() *durationpb.Duration
func (x *Topic) GetMessageStoragePolicy() *MessageStoragePolicy
func (x *Topic) GetName() string
func (x *Topic) GetSatisfiesPzs() bool
func (x *Topic) GetSchemaSettings() *SchemaSettings
func (x *Topic) GetState() Topic_State
func (*Topic) ProtoMessage()
func (x *Topic) ProtoReflect() protoreflect.Message
func (x *Topic) Reset()
func (x *Topic) String() string
The state of the topic.
type Topic_State int32
const ( // Default value. This value is unused. Topic_STATE_UNSPECIFIED Topic_State = 0 // The topic does not have any persistent errors. Topic_ACTIVE Topic_State = 1 // Ingestion from the data source has encountered a permanent error. // See the more detailed error state in the corresponding ingestion // source configuration. Topic_INGESTION_RESOURCE_ERROR Topic_State = 2 )
func (Topic_State) Descriptor() protoreflect.EnumDescriptor
func (x Topic_State) Enum() *Topic_State
func (Topic_State) EnumDescriptor() ([]byte, []int)
Deprecated: Use Topic_State.Descriptor instead.
func (x Topic_State) Number() protoreflect.EnumNumber
func (x Topic_State) String() string
func (Topic_State) Type() protoreflect.EnumType
UnimplementedPublisherServer can be embedded to have forward compatible implementations.
type UnimplementedPublisherServer struct { }
func (*UnimplementedPublisherServer) CreateTopic(context.Context, *Topic) (*Topic, error)
func (*UnimplementedPublisherServer) DeleteTopic(context.Context, *DeleteTopicRequest) (*emptypb.Empty, error)
func (*UnimplementedPublisherServer) DetachSubscription(context.Context, *DetachSubscriptionRequest) (*DetachSubscriptionResponse, error)
func (*UnimplementedPublisherServer) GetTopic(context.Context, *GetTopicRequest) (*Topic, error)
func (*UnimplementedPublisherServer) ListTopicSnapshots(context.Context, *ListTopicSnapshotsRequest) (*ListTopicSnapshotsResponse, error)
func (*UnimplementedPublisherServer) ListTopicSubscriptions(context.Context, *ListTopicSubscriptionsRequest) (*ListTopicSubscriptionsResponse, error)
func (*UnimplementedPublisherServer) ListTopics(context.Context, *ListTopicsRequest) (*ListTopicsResponse, error)
func (*UnimplementedPublisherServer) Publish(context.Context, *PublishRequest) (*PublishResponse, error)
func (*UnimplementedPublisherServer) UpdateTopic(context.Context, *UpdateTopicRequest) (*Topic, error)
UnimplementedSchemaServiceServer can be embedded to have forward compatible implementations.
type UnimplementedSchemaServiceServer struct { }
func (*UnimplementedSchemaServiceServer) CommitSchema(context.Context, *CommitSchemaRequest) (*Schema, error)
func (*UnimplementedSchemaServiceServer) CreateSchema(context.Context, *CreateSchemaRequest) (*Schema, error)
func (*UnimplementedSchemaServiceServer) DeleteSchema(context.Context, *DeleteSchemaRequest) (*emptypb.Empty, error)
func (*UnimplementedSchemaServiceServer) DeleteSchemaRevision(context.Context, *DeleteSchemaRevisionRequest) (*Schema, error)
func (*UnimplementedSchemaServiceServer) GetSchema(context.Context, *GetSchemaRequest) (*Schema, error)
func (*UnimplementedSchemaServiceServer) ListSchemaRevisions(context.Context, *ListSchemaRevisionsRequest) (*ListSchemaRevisionsResponse, error)
func (*UnimplementedSchemaServiceServer) ListSchemas(context.Context, *ListSchemasRequest) (*ListSchemasResponse, error)
func (*UnimplementedSchemaServiceServer) RollbackSchema(context.Context, *RollbackSchemaRequest) (*Schema, error)
func (*UnimplementedSchemaServiceServer) ValidateMessage(context.Context, *ValidateMessageRequest) (*ValidateMessageResponse, error)
func (*UnimplementedSchemaServiceServer) ValidateSchema(context.Context, *ValidateSchemaRequest) (*ValidateSchemaResponse, error)
UnimplementedSubscriberServer can be embedded to have forward compatible implementations.
type UnimplementedSubscriberServer struct { }
func (*UnimplementedSubscriberServer) Acknowledge(context.Context, *AcknowledgeRequest) (*emptypb.Empty, error)
func (*UnimplementedSubscriberServer) CreateSnapshot(context.Context, *CreateSnapshotRequest) (*Snapshot, error)
func (*UnimplementedSubscriberServer) CreateSubscription(context.Context, *Subscription) (*Subscription, error)
func (*UnimplementedSubscriberServer) DeleteSnapshot(context.Context, *DeleteSnapshotRequest) (*emptypb.Empty, error)
func (*UnimplementedSubscriberServer) DeleteSubscription(context.Context, *DeleteSubscriptionRequest) (*emptypb.Empty, error)
func (*UnimplementedSubscriberServer) GetSnapshot(context.Context, *GetSnapshotRequest) (*Snapshot, error)
func (*UnimplementedSubscriberServer) GetSubscription(context.Context, *GetSubscriptionRequest) (*Subscription, error)
func (*UnimplementedSubscriberServer) ListSnapshots(context.Context, *ListSnapshotsRequest) (*ListSnapshotsResponse, error)
func (*UnimplementedSubscriberServer) ListSubscriptions(context.Context, *ListSubscriptionsRequest) (*ListSubscriptionsResponse, error)
func (*UnimplementedSubscriberServer) ModifyAckDeadline(context.Context, *ModifyAckDeadlineRequest) (*emptypb.Empty, error)
func (*UnimplementedSubscriberServer) ModifyPushConfig(context.Context, *ModifyPushConfigRequest) (*emptypb.Empty, error)
func (*UnimplementedSubscriberServer) Pull(context.Context, *PullRequest) (*PullResponse, error)
func (*UnimplementedSubscriberServer) Seek(context.Context, *SeekRequest) (*SeekResponse, error)
func (*UnimplementedSubscriberServer) StreamingPull(Subscriber_StreamingPullServer) error
func (*UnimplementedSubscriberServer) UpdateSnapshot(context.Context, *UpdateSnapshotRequest) (*Snapshot, error)
func (*UnimplementedSubscriberServer) UpdateSubscription(context.Context, *UpdateSubscriptionRequest) (*Subscription, error)
Request for the UpdateSnapshot method.
type UpdateSnapshotRequest struct { // Required. The updated snapshot object. Snapshot *Snapshot `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"` // Required. Indicates which fields in the provided snapshot to update. // Must be specified and non-empty. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // contains filtered or unexported fields }
func (*UpdateSnapshotRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateSnapshotRequest.ProtoReflect.Descriptor instead.
func (x *UpdateSnapshotRequest) GetSnapshot() *Snapshot
func (x *UpdateSnapshotRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateSnapshotRequest) ProtoMessage()
func (x *UpdateSnapshotRequest) ProtoReflect() protoreflect.Message
func (x *UpdateSnapshotRequest) Reset()
func (x *UpdateSnapshotRequest) String() string
Request for the UpdateSubscription method.
type UpdateSubscriptionRequest struct { // Required. The updated subscription object. Subscription *Subscription `protobuf:"bytes,1,opt,name=subscription,proto3" json:"subscription,omitempty"` // Required. Indicates which fields in the provided subscription to update. // Must be specified and non-empty. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // contains filtered or unexported fields }
func (*UpdateSubscriptionRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateSubscriptionRequest.ProtoReflect.Descriptor instead.
func (x *UpdateSubscriptionRequest) GetSubscription() *Subscription
func (x *UpdateSubscriptionRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateSubscriptionRequest) ProtoMessage()
func (x *UpdateSubscriptionRequest) ProtoReflect() protoreflect.Message
func (x *UpdateSubscriptionRequest) Reset()
func (x *UpdateSubscriptionRequest) String() string
Request for the UpdateTopic method.
type UpdateTopicRequest struct { // Required. The updated topic object. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"` // Required. Indicates which fields in the provided topic to update. Must be // specified and non-empty. Note that if `update_mask` contains // "message_storage_policy" but the `message_storage_policy` is not set in // the `topic` provided above, then the updated value is determined by the // policy configured at the project or organization level. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` // contains filtered or unexported fields }
func (*UpdateTopicRequest) Descriptor() ([]byte, []int)
Deprecated: Use UpdateTopicRequest.ProtoReflect.Descriptor instead.
func (x *UpdateTopicRequest) GetTopic() *Topic
func (x *UpdateTopicRequest) GetUpdateMask() *fieldmaskpb.FieldMask
func (*UpdateTopicRequest) ProtoMessage()
func (x *UpdateTopicRequest) ProtoReflect() protoreflect.Message
func (x *UpdateTopicRequest) Reset()
func (x *UpdateTopicRequest) String() string
Request for the `ValidateMessage` method.
type ValidateMessageRequest struct { // Required. The name of the project in which to validate schemas. // Format is `projects/{project-id}`. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Types that are assignable to SchemaSpec: // // *ValidateMessageRequest_Name // *ValidateMessageRequest_Schema SchemaSpec isValidateMessageRequest_SchemaSpec `protobuf_oneof:"schema_spec"` // Message to validate against the provided `schema_spec`. Message []byte `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"` // The encoding expected for messages Encoding Encoding `protobuf:"varint,5,opt,name=encoding,proto3,enum=google.pubsub.v1.Encoding" json:"encoding,omitempty"` // contains filtered or unexported fields }
func (*ValidateMessageRequest) Descriptor() ([]byte, []int)
Deprecated: Use ValidateMessageRequest.ProtoReflect.Descriptor instead.
func (x *ValidateMessageRequest) GetEncoding() Encoding
func (x *ValidateMessageRequest) GetMessage() []byte
func (x *ValidateMessageRequest) GetName() string
func (x *ValidateMessageRequest) GetParent() string
func (x *ValidateMessageRequest) GetSchema() *Schema
func (m *ValidateMessageRequest) GetSchemaSpec() isValidateMessageRequest_SchemaSpec
func (*ValidateMessageRequest) ProtoMessage()
func (x *ValidateMessageRequest) ProtoReflect() protoreflect.Message
func (x *ValidateMessageRequest) Reset()
func (x *ValidateMessageRequest) String() string
type ValidateMessageRequest_Name struct { // Name of the schema against which to validate. // // Format is `projects/{project}/schemas/{schema}`. Name string `protobuf:"bytes,2,opt,name=name,proto3,oneof"` }
type ValidateMessageRequest_Schema struct { // Ad-hoc schema against which to validate Schema *Schema `protobuf:"bytes,3,opt,name=schema,proto3,oneof"` }
Response for the `ValidateMessage` method. Empty for now.
type ValidateMessageResponse struct {
// contains filtered or unexported fields
}
func (*ValidateMessageResponse) Descriptor() ([]byte, []int)
Deprecated: Use ValidateMessageResponse.ProtoReflect.Descriptor instead.
func (*ValidateMessageResponse) ProtoMessage()
func (x *ValidateMessageResponse) ProtoReflect() protoreflect.Message
func (x *ValidateMessageResponse) Reset()
func (x *ValidateMessageResponse) String() string
Request for the `ValidateSchema` method.
type ValidateSchemaRequest struct { // Required. The name of the project in which to validate schemas. // Format is `projects/{project-id}`. Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"` // Required. The schema object to validate. Schema *Schema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"` // contains filtered or unexported fields }
func (*ValidateSchemaRequest) Descriptor() ([]byte, []int)
Deprecated: Use ValidateSchemaRequest.ProtoReflect.Descriptor instead.
func (x *ValidateSchemaRequest) GetParent() string
func (x *ValidateSchemaRequest) GetSchema() *Schema
func (*ValidateSchemaRequest) ProtoMessage()
func (x *ValidateSchemaRequest) ProtoReflect() protoreflect.Message
func (x *ValidateSchemaRequest) Reset()
func (x *ValidateSchemaRequest) String() string
Response for the `ValidateSchema` method. Empty for now.
type ValidateSchemaResponse struct {
// contains filtered or unexported fields
}
func (*ValidateSchemaResponse) Descriptor() ([]byte, []int)
Deprecated: Use ValidateSchemaResponse.ProtoReflect.Descriptor instead.
func (*ValidateSchemaResponse) ProtoMessage()
func (x *ValidateSchemaResponse) ProtoReflect() protoreflect.Message
func (x *ValidateSchemaResponse) Reset()
func (x *ValidateSchemaResponse) String() string