123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651 |
- syntax = "proto3";
- package google.cloud.bigquery.dataexchange.v1beta1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/iam/v1/iam_policy.proto";
- import "google/iam/v1/policy.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/field_mask.proto";
- import "google/protobuf/wrappers.proto";
- option csharp_namespace = "Google.Cloud.BigQuery.DataExchange.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/dataexchange/v1beta1;dataexchange";
- option java_multiple_files = true;
- option java_outer_classname = "DataExchangeProto";
- option java_package = "com.google.cloud.bigquery.dataexchange.v1beta1";
- option php_namespace = "Google\\Cloud\\BigQuery\\DataExchange\\V1beta1";
- option ruby_package = "Google::Cloud::Bigquery::DataExchange::V1beta1";
- option (google.api.resource_definition) = {
- type: "bigquery.googleapis.com/Dataset"
- pattern: "projects/{project}/datasets/{dataset}"
- };
- service AnalyticsHubService {
- option (google.api.default_host) = "analyticshub.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/bigquery,"
- "https://www.googleapis.com/auth/cloud-platform";
-
- rpc ListDataExchanges(ListDataExchangesRequest) returns (ListDataExchangesResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{parent=projects/*/locations/*}/dataExchanges"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
- rpc ListOrgDataExchanges(ListOrgDataExchangesRequest) returns (ListOrgDataExchangesResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{organization=organizations/*/locations/*}/dataExchanges"
- };
- option (google.api.method_signature) = "organization";
- }
-
- rpc GetDataExchange(GetDataExchangeRequest) returns (DataExchange) {
- option (google.api.http) = {
- get: "/v1beta1/{name=projects/*/locations/*/dataExchanges/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc CreateDataExchange(CreateDataExchangeRequest) returns (DataExchange) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*}/dataExchanges"
- body: "data_exchange"
- };
- option (google.api.method_signature) = "parent,data_exchange";
- }
-
- rpc UpdateDataExchange(UpdateDataExchangeRequest) returns (DataExchange) {
- option (google.api.http) = {
- patch: "/v1beta1/{data_exchange.name=projects/*/locations/*/dataExchanges/*}"
- body: "data_exchange"
- };
- option (google.api.method_signature) = "data_exchange,update_mask";
- }
-
- rpc DeleteDataExchange(DeleteDataExchangeRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/dataExchanges/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListListings(ListListingsRequest) returns (ListListingsResponse) {
- option (google.api.http) = {
- get: "/v1beta1/{parent=projects/*/locations/*/dataExchanges/*}/listings"
- };
- option (google.api.method_signature) = "parent";
- }
-
- rpc GetListing(GetListingRequest) returns (Listing) {
- option (google.api.http) = {
- get: "/v1beta1/{name=projects/*/locations/*/dataExchanges/*/listings/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc CreateListing(CreateListingRequest) returns (Listing) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*/dataExchanges/*}/listings"
- body: "listing"
- };
- option (google.api.method_signature) = "parent,listing";
- }
-
- rpc UpdateListing(UpdateListingRequest) returns (Listing) {
- option (google.api.http) = {
- patch: "/v1beta1/{listing.name=projects/*/locations/*/dataExchanges/*/listings/*}"
- body: "listing"
- };
- option (google.api.method_signature) = "listing,update_mask";
- }
-
- rpc DeleteListing(DeleteListingRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1beta1/{name=projects/*/locations/*/dataExchanges/*/listings/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
-
-
-
- rpc SubscribeListing(SubscribeListingRequest) returns (SubscribeListingResponse) {
- option (google.api.http) = {
- post: "/v1beta1/{name=projects/*/locations/*/dataExchanges/*/listings/*}:subscribe"
- body: "*"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*}:getIamPolicy"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*/listings/*}:getIamPolicy"
- body: "*"
- }
- };
- }
-
- rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*}:setIamPolicy"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*/listings/*}:setIamPolicy"
- body: "*"
- }
- };
- }
-
- rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) {
- option (google.api.http) = {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*}:testIamPermissions"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{resource=projects/*/locations/*/dataExchanges/*/listings/*}:testIamPermissions"
- body: "*"
- }
- };
- }
- }
- message DataExchange {
- option (google.api.resource) = {
- type: "analyticshub.googleapis.com/DataExchange"
- pattern: "projects/{project}/locations/{location}/dataExchanges/{data_exchange}"
- };
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string description = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
- string primary_contact = 4 [(google.api.field_behavior) = OPTIONAL];
-
- string documentation = 5 [(google.api.field_behavior) = OPTIONAL];
-
- int32 listing_count = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- bytes icon = 7 [(google.api.field_behavior) = OPTIONAL];
- }
- message DataProvider {
-
- string name = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
- string primary_contact = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message Publisher {
-
- string name = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
- string primary_contact = 2 [(google.api.field_behavior) = OPTIONAL];
- }
- message DestinationDatasetReference {
-
-
-
- string dataset_id = 1 [(google.api.field_behavior) = REQUIRED];
-
- string project_id = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DestinationDataset {
-
- DestinationDatasetReference dataset_reference = 1 [(google.api.field_behavior) = REQUIRED];
-
- google.protobuf.StringValue friendly_name = 2 [(google.api.field_behavior) = OPTIONAL];
-
- google.protobuf.StringValue description = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
- map<string, string> labels = 4 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- string location = 5 [(google.api.field_behavior) = REQUIRED];
- }
- message Listing {
- option (google.api.resource) = {
- type: "analyticshub.googleapis.com/Listing"
- pattern: "projects/{project}/locations/{location}/dataExchanges/{data_exchange}/listings/{listing}"
- };
-
-
-
-
-
-
-
- message BigQueryDatasetSource {
-
-
- string dataset = 1 [(google.api.resource_reference) = {
- type: "bigquery.googleapis.com/Dataset"
- }];
- }
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
-
- ACTIVE = 1;
- }
-
- enum Category {
- CATEGORY_UNSPECIFIED = 0;
- CATEGORY_OTHERS = 1;
- CATEGORY_ADVERTISING_AND_MARKETING = 2;
- CATEGORY_COMMERCE = 3;
- CATEGORY_CLIMATE_AND_ENVIRONMENT = 4;
- CATEGORY_DEMOGRAPHICS = 5;
- CATEGORY_ECONOMICS = 6;
- CATEGORY_EDUCATION = 7;
- CATEGORY_ENERGY = 8;
- CATEGORY_FINANCIAL = 9;
- CATEGORY_GAMING = 10;
- CATEGORY_GEOSPATIAL = 11;
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12;
- CATEGORY_MEDIA = 13;
- CATEGORY_PUBLIC_SECTOR = 14;
- CATEGORY_RETAIL = 15;
- CATEGORY_SPORTS = 16;
- CATEGORY_SCIENCE_AND_RESEARCH = 17;
- CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18;
- CATEGORY_TRAVEL_AND_TOURISM = 19;
- }
-
- oneof source {
-
- BigQueryDatasetSource bigquery_dataset = 6 [(google.api.field_behavior) = REQUIRED];
- }
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string description = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
- string primary_contact = 4 [(google.api.field_behavior) = OPTIONAL];
-
- string documentation = 5 [(google.api.field_behavior) = OPTIONAL];
-
- State state = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
- bytes icon = 8 [(google.api.field_behavior) = OPTIONAL];
-
- DataProvider data_provider = 9 [(google.api.field_behavior) = OPTIONAL];
-
- repeated Category categories = 10 [(google.api.field_behavior) = OPTIONAL];
-
-
- Publisher publisher = 11 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- string request_access = 12 [(google.api.field_behavior) = OPTIONAL];
- }
- message ListDataExchangesRequest {
-
-
- 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 ListDataExchangesResponse {
-
- repeated DataExchange data_exchanges = 1;
-
- string next_page_token = 2;
- }
- message ListOrgDataExchangesRequest {
-
-
- string organization = 1 [(google.api.field_behavior) = REQUIRED];
-
-
- int32 page_size = 2;
-
-
- string page_token = 3;
- }
- message ListOrgDataExchangesResponse {
-
- repeated DataExchange data_exchanges = 1;
-
- string next_page_token = 2;
- }
- message GetDataExchangeRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/DataExchange"
- }
- ];
- }
- message CreateDataExchangeRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
-
-
-
-
- string data_exchange_id = 2 [(google.api.field_behavior) = REQUIRED];
-
- DataExchange data_exchange = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message UpdateDataExchangeRequest {
-
-
-
- google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = REQUIRED];
-
- DataExchange data_exchange = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteDataExchangeRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/DataExchange"
- }
- ];
- }
- message ListListingsRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/DataExchange"
- }
- ];
-
-
- int32 page_size = 2;
-
-
- string page_token = 3;
- }
- message ListListingsResponse {
-
- repeated Listing listings = 1;
-
- string next_page_token = 2;
- }
- message GetListingRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/Listing"
- }
- ];
- }
- message CreateListingRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/DataExchange"
- }
- ];
-
-
-
-
-
- string listing_id = 2 [(google.api.field_behavior) = REQUIRED];
-
- Listing listing = 3 [(google.api.field_behavior) = REQUIRED];
- }
- message UpdateListingRequest {
-
-
-
- google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = REQUIRED];
-
- Listing listing = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message DeleteListingRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/Listing"
- }
- ];
- }
- message SubscribeListingRequest {
-
- oneof destination {
-
- DestinationDataset destination_dataset = 3;
- }
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "analyticshub.googleapis.com/Listing"
- }
- ];
- }
- message SubscribeListingResponse {
- }
|