123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952 |
- syntax = "proto3";
- package google.storage.v1;
- import "google/protobuf/timestamp.proto";
- import "google/protobuf/wrappers.proto";
- option go_package = "google.golang.org/genproto/googleapis/storage/v1;storage";
- option java_multiple_files = true;
- option java_outer_classname = "CloudStorageResourcesProto";
- option java_package = "com.google.storage.v1";
- message Bucket {
-
- message Billing {
-
- bool requester_pays = 1;
- }
-
-
-
-
- message Cors {
-
-
-
- repeated string origin = 1;
-
-
-
- repeated string method = 2;
-
-
-
- repeated string response_header = 3;
-
-
-
- int32 max_age_seconds = 4;
- }
-
- message Encryption {
-
-
- string default_kms_key_name = 1;
- }
-
- message IamConfiguration {
- message UniformBucketLevelAccess {
-
- bool enabled = 1;
-
-
-
-
- google.protobuf.Timestamp locked_time = 2;
- }
-
- enum PublicAccessPrevention {
-
- PUBLIC_ACCESS_PREVENTION_UNSPECIFIED = 0;
-
-
-
- ENFORCED = 1;
-
-
- INHERITED = 2;
- }
- UniformBucketLevelAccess uniform_bucket_level_access = 1;
-
- PublicAccessPrevention public_access_prevention = 2;
- }
-
-
- message Lifecycle {
-
-
- message Rule {
-
- message Action {
-
-
- string type = 1;
-
-
- string storage_class = 2;
- }
-
- message Condition {
-
-
- int32 age = 1;
-
-
-
-
- google.protobuf.Timestamp created_before = 2;
-
-
-
- google.protobuf.BoolValue is_live = 3;
-
-
-
- int32 num_newer_versions = 4;
-
-
-
-
- repeated string matches_storage_class = 5;
-
-
-
-
-
-
- string matches_pattern = 6;
-
-
- int32 days_since_custom_time = 7;
-
-
- google.protobuf.Timestamp custom_time_before = 8;
-
-
-
-
-
- int32 days_since_noncurrent_time = 9;
-
-
-
- google.protobuf.Timestamp noncurrent_time_before = 10;
-
-
- repeated string matches_prefix = 11;
-
-
- repeated string matches_suffix = 12;
- }
-
- Action action = 1;
-
- Condition condition = 2;
- }
-
-
- repeated Rule rule = 1;
- }
-
- message Logging {
-
- string log_bucket = 1;
-
- string log_object_prefix = 2;
- }
-
- message RetentionPolicy {
-
-
-
- google.protobuf.Timestamp effective_time = 1;
-
- bool is_locked = 2;
-
-
-
-
- int64 retention_period = 3;
- }
-
-
-
- message Versioning {
-
- bool enabled = 1;
- }
-
-
-
- message Website {
-
-
-
-
- string main_page_suffix = 1;
-
-
-
-
-
- string not_found_page = 2;
- }
-
- message Autoclass {
-
- bool enabled = 1;
-
- google.protobuf.Timestamp toggle_time = 2;
- }
-
- repeated BucketAccessControl acl = 1;
-
- repeated ObjectAccessControl default_object_acl = 2;
-
-
-
- Lifecycle lifecycle = 3;
-
-
-
-
- google.protobuf.Timestamp time_created = 4;
-
-
-
-
- string id = 5;
-
-
-
- string name = 6;
-
-
-
- int64 project_number = 7;
-
-
-
- int64 metageneration = 8;
-
-
- repeated Cors cors = 9;
-
-
-
-
-
- string location = 10;
-
-
-
-
-
-
- string storage_class = 11;
-
-
-
-
- string etag = 12;
-
-
-
- google.protobuf.Timestamp updated = 13;
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool default_event_based_hold = 14;
-
- map<string, string> labels = 15;
-
-
-
-
- Website website = 16;
-
- Versioning versioning = 17;
-
-
- Logging logging = 18;
-
- Owner owner = 19;
-
- Encryption encryption = 20;
-
- Billing billing = 21;
-
-
-
-
-
-
-
-
-
- RetentionPolicy retention_policy = 22;
-
- string location_type = 23;
-
- IamConfiguration iam_configuration = 24;
-
-
-
-
-
- repeated string zone_affinity = 25 [deprecated = true];
-
- bool satisfies_pzs = 26;
-
-
- Autoclass autoclass = 28;
- }
- message BucketAccessControl {
-
- string role = 1;
-
-
- string etag = 2;
-
- string id = 3;
-
- string bucket = 4;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string entity = 6;
-
- string entity_id = 7;
-
- string email = 8;
-
- string domain = 9;
-
- ProjectTeam project_team = 10;
- }
- message ListBucketAccessControlsResponse {
-
- repeated BucketAccessControl items = 1;
- }
- message ListBucketsResponse {
-
- repeated Bucket items = 1;
-
-
- string next_page_token = 2;
- }
- message Channel {
-
- string id = 1;
-
-
- string resource_id = 2;
-
- string resource_uri = 3;
-
-
- string token = 4;
-
- google.protobuf.Timestamp expiration = 5;
-
- string type = 6;
-
- string address = 7;
-
- map<string, string> params = 8;
-
- bool payload = 9;
- }
- message ListChannelsResponse {
- message Items {
-
- string channel_id = 1;
-
-
- string resource_id = 2;
-
- string push_url = 3;
-
- string subscriber_email = 4;
-
- google.protobuf.Timestamp creation_time = 5;
- }
-
- repeated Items items = 1;
- }
- message ChecksummedData {
-
- bytes content = 1;
-
- google.protobuf.UInt32Value crc32c = 2;
- }
- message ObjectChecksums {
-
-
-
- google.protobuf.UInt32Value crc32c = 1;
-
-
- string md5_hash = 2;
- }
- message CommonEnums {
-
- enum Projection {
-
- PROJECTION_UNSPECIFIED = 0;
-
- NO_ACL = 1;
-
- FULL = 2;
- }
-
- enum PredefinedBucketAcl {
-
- PREDEFINED_BUCKET_ACL_UNSPECIFIED = 0;
-
-
- BUCKET_ACL_AUTHENTICATED_READ = 1;
-
- BUCKET_ACL_PRIVATE = 2;
-
- BUCKET_ACL_PROJECT_PRIVATE = 3;
-
-
- BUCKET_ACL_PUBLIC_READ = 4;
-
-
- BUCKET_ACL_PUBLIC_READ_WRITE = 5;
- }
-
- enum PredefinedObjectAcl {
-
- PREDEFINED_OBJECT_ACL_UNSPECIFIED = 0;
-
-
- OBJECT_ACL_AUTHENTICATED_READ = 1;
-
-
- OBJECT_ACL_BUCKET_OWNER_FULL_CONTROL = 2;
-
-
- OBJECT_ACL_BUCKET_OWNER_READ = 3;
-
- OBJECT_ACL_PRIVATE = 4;
-
-
- OBJECT_ACL_PROJECT_PRIVATE = 5;
-
-
- OBJECT_ACL_PUBLIC_READ = 6;
- }
- }
- message ContentRange {
-
- int64 start = 1;
-
- int64 end = 2;
-
- int64 complete_length = 3;
- }
- message HmacKeyMetadata {
-
- string id = 1;
-
- string access_id = 2;
-
- string project_id = 3;
-
- string service_account_email = 4;
-
- string state = 5;
-
- google.protobuf.Timestamp time_created = 6;
-
- google.protobuf.Timestamp updated = 7;
-
- string etag = 8;
- }
- message Notification {
-
-
- string topic = 1;
-
-
- repeated string event_types = 2;
-
-
- map<string, string> custom_attributes = 3;
-
-
- string etag = 4;
-
-
- string object_name_prefix = 5;
-
- string payload_format = 6;
-
- string id = 7;
- }
- message ListNotificationsResponse {
-
- repeated Notification items = 1;
- }
- message Object {
-
- message CustomerEncryption {
-
- string encryption_algorithm = 1;
-
- string key_sha256 = 2;
- }
-
-
- string content_encoding = 1;
-
-
- string content_disposition = 2;
-
-
-
-
- string cache_control = 3;
-
- repeated ObjectAccessControl acl = 4;
-
-
- string content_language = 5;
-
-
-
-
-
-
- int64 metageneration = 6;
-
-
-
-
- google.protobuf.Timestamp time_deleted = 7;
-
-
-
-
- string content_type = 8;
-
-
-
-
- int64 size = 9;
-
-
-
- google.protobuf.Timestamp time_created = 10;
-
-
-
-
-
-
-
- google.protobuf.UInt32Value crc32c = 11;
-
-
-
-
- int32 component_count = 12;
-
-
-
-
-
-
-
-
- string md5_hash = 13;
-
-
-
-
- string etag = 14;
-
-
-
- google.protobuf.Timestamp updated = 15;
-
- string storage_class = 16;
-
-
- string kms_key_name = 17;
-
-
-
-
- google.protobuf.Timestamp time_storage_class_updated = 18;
-
-
-
-
-
- bool temporary_hold = 19;
-
-
-
-
-
-
-
-
- google.protobuf.Timestamp retention_expiration_time = 20;
-
- map<string, string> metadata = 21;
-
-
-
-
-
-
-
-
-
-
-
- google.protobuf.BoolValue event_based_hold = 29;
-
-
-
- string name = 23;
-
-
-
-
- string id = 24;
-
-
-
- string bucket = 25;
-
-
-
- int64 generation = 26;
-
-
-
- Owner owner = 27;
-
-
- CustomerEncryption customer_encryption = 28;
-
- google.protobuf.Timestamp custom_time = 30;
- }
- message ObjectAccessControl {
-
- string role = 1;
-
-
- string etag = 2;
-
- string id = 3;
-
- string bucket = 4;
-
- string object = 5;
-
- int64 generation = 6;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string entity = 7;
-
- string entity_id = 8;
-
- string email = 9;
-
- string domain = 10;
-
- ProjectTeam project_team = 11;
- }
- message ListObjectAccessControlsResponse {
-
- repeated ObjectAccessControl items = 1;
- }
- message ListObjectsResponse {
-
-
- repeated string prefixes = 1;
-
- repeated Object items = 2;
-
-
- string next_page_token = 3;
- }
- message ProjectTeam {
-
- string project_number = 1;
-
- string team = 2;
- }
- message ServiceAccount {
-
- string email_address = 1;
- }
- message Owner {
-
- string entity = 1;
-
- string entity_id = 2;
- }
|