123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640 |
- syntax = "proto3";
- package google.cloud.pubsublite.v1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/pubsublite/v1/common.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/field_mask.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.PubSubLite.V1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/pubsublite/v1;pubsublite";
- option java_multiple_files = true;
- option java_outer_classname = "AdminProto";
- option java_package = "com.google.cloud.pubsublite.proto";
- option php_namespace = "Google\\Cloud\\PubSubLite\\V1";
- option ruby_package = "Google::Cloud::PubSubLite::V1";
- service AdminService {
- option (google.api.default_host) = "pubsublite.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
-
- rpc CreateTopic(CreateTopicRequest) returns (Topic) {
- option (google.api.http) = {
- post: "/v1/admin/{parent=projects/*/locations/*}/topics"
- body: "topic"
- };
- option (google.api.method_signature) = "parent,topic,topic_id";
- }
-
- rpc GetTopic(GetTopicRequest) returns (Topic) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/topics/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc GetTopicPartitions(GetTopicPartitionsRequest) returns (TopicPartitions) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/topics/*}/partitions"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListTopics(ListTopicsRequest) returns (ListTopicsResponse) {
- option (google.api.http) = {
- get: "/v1/admin/{parent=projects/*/locations/*}/topics"
- };
- option (google.api.method_signature) = "parent";
- }
-
- rpc UpdateTopic(UpdateTopicRequest) returns (Topic) {
- option (google.api.http) = {
- patch: "/v1/admin/{topic.name=projects/*/locations/*/topics/*}"
- body: "topic"
- };
- option (google.api.method_signature) = "topic,update_mask";
- }
-
- rpc DeleteTopic(DeleteTopicRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/admin/{name=projects/*/locations/*/topics/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListTopicSubscriptions(ListTopicSubscriptionsRequest) returns (ListTopicSubscriptionsResponse) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/topics/*}/subscriptions"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc CreateSubscription(CreateSubscriptionRequest) returns (Subscription) {
- option (google.api.http) = {
- post: "/v1/admin/{parent=projects/*/locations/*}/subscriptions"
- body: "subscription"
- };
- option (google.api.method_signature) = "parent,subscription,subscription_id";
- }
-
- rpc GetSubscription(GetSubscriptionRequest) returns (Subscription) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/subscriptions/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListSubscriptions(ListSubscriptionsRequest) returns (ListSubscriptionsResponse) {
- option (google.api.http) = {
- get: "/v1/admin/{parent=projects/*/locations/*}/subscriptions"
- };
- option (google.api.method_signature) = "parent";
- }
-
- rpc UpdateSubscription(UpdateSubscriptionRequest) returns (Subscription) {
- option (google.api.http) = {
- patch: "/v1/admin/{subscription.name=projects/*/locations/*/subscriptions/*}"
- body: "subscription"
- };
- option (google.api.method_signature) = "subscription,update_mask";
- }
-
- rpc DeleteSubscription(DeleteSubscriptionRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/admin/{name=projects/*/locations/*/subscriptions/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc SeekSubscription(SeekSubscriptionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1/admin/{name=projects/*/locations/*/subscriptions/*}:seek"
- body: "*"
- };
- option (google.longrunning.operation_info) = {
- response_type: "SeekSubscriptionResponse"
- metadata_type: "OperationMetadata"
- };
- }
-
- rpc CreateReservation(CreateReservationRequest) returns (Reservation) {
- option (google.api.http) = {
- post: "/v1/admin/{parent=projects/*/locations/*}/reservations"
- body: "reservation"
- };
- option (google.api.method_signature) = "parent,reservation,reservation_id";
- }
-
- rpc GetReservation(GetReservationRequest) returns (Reservation) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/reservations/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListReservations(ListReservationsRequest) returns (ListReservationsResponse) {
- option (google.api.http) = {
- get: "/v1/admin/{parent=projects/*/locations/*}/reservations"
- };
- option (google.api.method_signature) = "parent";
- }
-
- rpc UpdateReservation(UpdateReservationRequest) returns (Reservation) {
- option (google.api.http) = {
- patch: "/v1/admin/{reservation.name=projects/*/locations/*/reservations/*}"
- body: "reservation"
- };
- option (google.api.method_signature) = "reservation,update_mask";
- }
-
- rpc DeleteReservation(DeleteReservationRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1/admin/{name=projects/*/locations/*/reservations/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListReservationTopics(ListReservationTopicsRequest) returns (ListReservationTopicsResponse) {
- option (google.api.http) = {
- get: "/v1/admin/{name=projects/*/locations/*/reservations/*}/topics"
- };
- option (google.api.method_signature) = "name";
- }
- }
- message CreateTopicRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- Topic topic = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string topic_id = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message GetTopicRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Topic"
- }
- ];
- }
- message GetTopicPartitionsRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Topic"
- }
- ];
- }
- message TopicPartitions {
-
- int64 partition_count = 1;
- }
- message ListTopicsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
-
-
- int32 page_size = 2;
-
-
-
-
-
- string page_token = 3;
- }
- message ListTopicsResponse {
-
-
- repeated Topic topics = 1;
-
-
- string next_page_token = 2;
- }
- message UpdateTopicRequest {
-
- Topic topic = 1 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteTopicRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Topic"
- }
- ];
- }
- message ListTopicSubscriptionsRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Topic"
- }
- ];
-
-
-
- int32 page_size = 2;
-
-
-
-
-
- string page_token = 3;
- }
- message ListTopicSubscriptionsResponse {
-
-
- repeated string subscriptions = 1;
-
-
- string next_page_token = 2;
- }
- message CreateSubscriptionRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- Subscription subscription = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string subscription_id = 3 [(google.api.field_behavior) = REQUIRED];
-
-
-
- bool skip_backlog = 4;
- }
- message GetSubscriptionRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Subscription"
- }
- ];
- }
- message ListSubscriptionsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
-
-
- int32 page_size = 2;
-
-
-
-
-
- string page_token = 3;
- }
- message ListSubscriptionsResponse {
-
-
- repeated Subscription subscriptions = 1;
-
-
- string next_page_token = 2;
- }
- message UpdateSubscriptionRequest {
-
-
- Subscription subscription = 1 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteSubscriptionRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Subscription"
- }
- ];
- }
- message SeekSubscriptionRequest {
-
- enum NamedTarget {
-
- NAMED_TARGET_UNSPECIFIED = 0;
-
- TAIL = 1;
-
-
- HEAD = 2;
- }
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Subscription"
- }
- ];
-
- oneof target {
-
- NamedTarget named_target = 2;
-
-
-
- TimeTarget time_target = 3;
- }
- }
- message SeekSubscriptionResponse {
- }
- message OperationMetadata {
-
- google.protobuf.Timestamp create_time = 1;
-
-
- google.protobuf.Timestamp end_time = 2;
-
-
-
- string target = 3;
-
- string verb = 4;
- }
- message CreateReservationRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- Reservation reservation = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string reservation_id = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message GetReservationRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Reservation"
- }
- ];
- }
- message ListReservationsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
-
-
- int32 page_size = 2;
-
-
-
-
-
- string page_token = 3;
- }
- message ListReservationsResponse {
-
-
- repeated Reservation reservations = 1;
-
-
- string next_page_token = 2;
- }
- message UpdateReservationRequest {
-
- Reservation reservation = 1 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteReservationRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Reservation"
- }
- ];
- }
- message ListReservationTopicsRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "pubsublite.googleapis.com/Reservation"
- }
- ];
-
-
-
- int32 page_size = 2;
-
-
-
-
-
- string page_token = 3;
- }
- message ListReservationTopicsResponse {
-
-
- repeated string topics = 1;
-
-
- string next_page_token = 2;
- }
|