@@ -566,12 +566,9 @@ This call is made to create the bucket in the backend. If the bucket already exi
566
566
567
567
```
568
568
message ProvisionerCreateBucketRequest {
569
+ // This field is REQUIRED
569
570
string bucket_name = 1;
570
571
571
- string region = 2;
572
-
573
- string zone = 3;
574
-
575
572
map<string,string> bucket_context = 4;
576
573
577
574
enum AnonymousBucketAccessMode {
@@ -582,8 +579,6 @@ message ProvisionerCreateBucketRequest {
582
579
}
583
580
584
581
AnonymousBucketAccessMode anonymous_bucket_access_mode = 5;
585
-
586
- map<string,string> secrets = 6;
587
582
}
588
583
589
584
message ProvisionerCreateBucketResponse {
@@ -597,12 +592,9 @@ This call is made to delete the bucket in the backend. If the bucket has already
597
592
598
593
```
599
594
message ProvisionerDeleteBucketRequest {
595
+ // This field is REQUIRED
600
596
string bucket_name = 1;
601
597
602
- string region = 2;
603
-
604
- string zone = 3;
605
-
606
598
map<string,string> bucket_context = 4;
607
599
}
608
600
@@ -621,16 +613,14 @@ If the `principal` is empty, then a new service account should be created in the
621
613
622
614
```
623
615
message ProvisionerGrantBucketAccessRequest {
616
+ // This field is REQUIRED
624
617
string bucket_name = 1;
625
618
626
- string region = 2;
627
-
628
- string zone = 3;
629
-
630
619
map<string,string> bucket_context = 4;
631
620
632
621
string principal = 5;
633
622
623
+ // This field is REQUIRED
634
624
string access_policy = 6;
635
625
}
636
626
@@ -651,14 +641,12 @@ This call revokes all access to a particular bucket from a principal.
651
641
652
642
```
653
643
message ProvisionerRevokeBucketAccessRequest {
644
+ // This field is REQUIRED
654
645
string bucket_name = 1;
655
646
656
- string region = 2;
657
-
658
- string zone = 3;
659
-
660
647
map<string,string> bucket_context = 4;
661
648
649
+ // This field is REQUIRED
662
650
string principal = 5;
663
651
}
664
652
0 commit comments