|
| 1 | +// Copyright 2018 Google LLC |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGE_STORAGE_CLASS_H_ |
| 16 | +#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGE_STORAGE_CLASS_H_ |
| 17 | + |
| 18 | +#include "google/cloud/storage/version.h" |
| 19 | + |
| 20 | +namespace google { |
| 21 | +namespace cloud { |
| 22 | +namespace storage { |
| 23 | +inline namespace STORAGE_CLIENT_NS { |
| 24 | +/** |
| 25 | + * Define functions with the well-know storage classes. |
| 26 | + * |
| 27 | + * These functions are provided to avoid typos when setting or comparing storage |
| 28 | + * classes. |
| 29 | + */ |
| 30 | +namespace storage_class { |
| 31 | +char const* Standard() { |
| 32 | + static constexpr char kStorageClass[] = "STANDARD"; |
| 33 | + return kStorageClass; |
| 34 | +} |
| 35 | + |
| 36 | +char const* MultiRegional() { |
| 37 | + static constexpr char kStorageClass[] = "MULTI_REGIONAL"; |
| 38 | + return kStorageClass; |
| 39 | +} |
| 40 | + |
| 41 | +char const* Regional() { |
| 42 | + static constexpr char kStorageClass[] = "REGIONAL"; |
| 43 | + return kStorageClass; |
| 44 | +} |
| 45 | + |
| 46 | +char const* Nearline() { |
| 47 | + static constexpr char kStorageClass[] = "NEARLINE"; |
| 48 | + return kStorageClass; |
| 49 | +} |
| 50 | + |
| 51 | +char const* Coldline() { |
| 52 | + static constexpr char kStorageClass[] = "COLDLINE"; |
| 53 | + return kStorageClass; |
| 54 | +} |
| 55 | + |
| 56 | +char const* DurableReducedAvailability() { |
| 57 | + static constexpr char kStorageClass[] = "DURABLE_REDUCED_AVAILABILITY"; |
| 58 | + return kStorageClass; |
| 59 | +} |
| 60 | + |
| 61 | +} // namespace storage_class |
| 62 | +} // namespace STORAGE_CLIENT_NS |
| 63 | +} // namespace storage |
| 64 | +} // namespace cloud |
| 65 | +} // namespace google |
| 66 | + |
| 67 | +#endif // GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGE_STORAGE_CLASS_H_ |
0 commit comments