MCPcopy Create free account
hub / github.com/apache/cloudberry / BucketContent

Class BucketContent

gpcontrib/gpcloud/include/s3interface.h:24–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22};
23
24struct BucketContent {
25 BucketContent() : name(""), size(0) {
26 }
27 BucketContent(string name, uint64_t size) {
28 this->name = name;
29 this->size = size;
30 }
31 ~BucketContent() {
32 }
33
34 string getName() const {
35 return this->name;
36 };
37 uint64_t getSize() const {
38 return this->size;
39 };
40
41 string name;
42 uint64_t size;
43};
44
45struct ListBucketResult {
46 string Name;

Callers 3

TEST_FFunction · 0.85
TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 3

TEST_FFunction · 0.68
TEST_FFunction · 0.68