-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBucketPlacement.php
More file actions
63 lines (56 loc) · 1.12 KB
/
Copy pathBucketPlacement.php
File metadata and controls
63 lines (56 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php declare(strict_types=1);
namespace MyENA\RGW\Models;
use MyENA\RGW\AbstractModel;
use OpenApi\Annotations as OA;
/**
* @OA\Schema(
* schema="RGWBucketPlacement",
* type="object",
* @OA\Property(
* property="data_pool",
* type="integer"
* ),
* @OA\Property(
* property="data_extra_pool",
* type="integer"
* ),
* @OA\Property(
* property="index_pool",
* type="integer"
* )
* )
*/
/**
* Class BucketPlacement
* @package MyENA\RGW\Models
*/
class BucketPlacement extends AbstractModel
{
/** @var string */
protected $dataPool = 0;
/** @var string */
protected $dataExtraPool = 0;
/** @var string */
protected $indexPool = 0;
/**
* @return string
*/
public function getDataPool(): string
{
return $this->dataPool;
}
/**
* @return string
*/
public function getDataExtraPool(): string
{
return $this->dataExtraPool;
}
/**
* @return string
*/
public function getIndexPool(): string
{
return $this->indexPool;
}
}