20
20
import com .google .cloud .StringEnumValue ;
21
21
22
22
/**
23
- * Enums for the storage classes. See https://cloud.google.com/storage/docs/storage-classes for
24
- * details.
23
+ * Enums for the storage classes. See <a
24
+ * href="https://cloud.google.com/storage/docs/storage-classes">https://cloud.google.com/storage/docs/storage-classes</a>
25
+ * for details.
25
26
*/
26
27
public final class StorageClass extends StringEnumValue {
27
28
private static final long serialVersionUID = -6938125060419556331L ;
@@ -42,42 +43,61 @@ public StorageClass apply(String constant) {
42
43
new StringEnumType (StorageClass .class , CONSTRUCTOR );
43
44
44
45
/**
45
- * Standard storage class. See: https://cloud.google.com/storage/docs/storage-classes for details
46
+ * Standard storage class.
47
+ *
48
+ * @see <a
49
+ * href="https://cloud.google.com/storage/docs/storage-classes#standard">https://cloud.google.com/storage/docs/storage-classes#standard</a>
46
50
*/
47
51
public static final StorageClass STANDARD = type .createAndRegister ("STANDARD" );
48
52
49
53
/**
50
- * Nearline storage class. See: https://cloud.google.com/storage/docs/storage-classes for details
54
+ * Nearline storage class.
55
+ *
56
+ * @see <a
57
+ * href="https://cloud.google.com/storage/docs/storage-classes#nearline">https://cloud.google.com/storage/docs/storage-classes#nearline</a>
51
58
*/
52
59
public static final StorageClass NEARLINE = type .createAndRegister ("NEARLINE" );
53
60
54
61
/**
55
- * Coldline storage class. See: https://cloud.google.com/storage/docs/storage-classes for details
62
+ * Coldline storage class.
63
+ *
64
+ * @see <a
65
+ * href="https://cloud.google.com/storage/docs/storage-classes#coldline">https://cloud.google.com/storage/docs/storage-classes#coldline</a>
56
66
*/
57
67
public static final StorageClass COLDLINE = type .createAndRegister ("COLDLINE" );
58
68
59
69
/**
60
- * Archive storage class. See: https://cloud.google.com/storage/docs/storage-classes for details
70
+ * Archive storage class.
71
+ *
72
+ * @see <a
73
+ * href="https://cloud.google.com/storage/docs/storage-classes#archive">https://cloud.google.com/storage/docs/storage-classes#archive</a>
61
74
*/
62
75
public static final StorageClass ARCHIVE = type .createAndRegister ("ARCHIVE" );
63
76
64
77
/**
65
- * Regional storage class. This is supported as a legacy storage class and will be deprecated in
66
- * the future. See: https://cloud.google.com/storage/docs/storage-classes for details
78
+ * Legacy Regional storage class, use {@link #STANDARD} instead. This class will be deprecated in
79
+ * the future.
80
+ *
81
+ * @see <a
82
+ * href="https://cloud.google.com/storage/docs/storage-classes#legacy">https://cloud.google.com/storage/docs/storage-classes#legacy</a>
67
83
*/
68
84
public static final StorageClass REGIONAL = type .createAndRegister ("REGIONAL" );
69
85
70
86
/**
71
- * Multi-regional storage class. This is supported as a legacy storage class and will be
72
- * deprecated in the future. See: https://cloud.google.com/storage/docs/storage-classes for
73
- * details
87
+ * Legacy Multi-regional storage class, use {@link #STANDARD} instead. This class will be
88
+ * deprecated in the future.
89
+ *
90
+ * @see <a
91
+ * href="https://cloud.google.com/storage/docs/storage-classes#legacy">https://cloud.google.com/storage/docs/storage-classes#legacy</a>
74
92
*/
75
93
public static final StorageClass MULTI_REGIONAL = type .createAndRegister ("MULTI_REGIONAL" );
76
94
77
95
/**
78
- * Durable Reduced Availability storage class. This is supported as a legacy storage class and
79
- * will be deprecated in the future. See: https://cloud.google.com/storage/docs/storage-classes
80
- * for details
96
+ * Legacy Durable Reduced Availability storage class, use {@link #STANDARD} instead. This class
97
+ * will be deprecated in the future.
98
+ *
99
+ * @see <a
100
+ * href="https://cloud.google.com/storage/docs/storage-classes#legacy">https://cloud.google.com/storage/docs/storage-classes#legacy</a>
81
101
*/
82
102
public static final StorageClass DURABLE_REDUCED_AVAILABILITY =
83
103
type .createAndRegister ("DURABLE_REDUCED_AVAILABILITY" );
0 commit comments