You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Filter the returned objects. Currently only supported for the contexts field. If delimiter is set, the returned prefixes are exempt from this filter.",
3311
+
"location": "query",
3312
+
"type": "string"
3313
+
},
3309
3314
"includeFoldersAsPrefixes": {
3310
3315
"description": "Only applicable if delimiter is set to '/'. If true, will also include folders and managed folders (besides objects) in the returned prefixes.",
3311
3316
"location": "query",
@@ -4539,7 +4544,7 @@
4539
4544
}
4540
4545
}
4541
4546
},
4542
-
"revision": "20250605",
4547
+
"revision": "20250629",
4543
4548
"rootUrl": "https://storage.googleapis.com/",
4544
4549
"schemas": {
4545
4550
"AdvanceRelocateBucketOperationRequest": {
@@ -5932,6 +5937,20 @@
5932
5937
"description": "Content-Type of the object data. If an object is stored without a Content-Type, it is served as application/octet-stream.",
5933
5938
"type": "string"
5934
5939
},
5940
+
"contexts": {
5941
+
"description": "User-defined or system-defined object contexts. Each object context is a key-payload pair, where the key provides the identification and the payload holds the associated value and additional metadata.",
5942
+
"properties": {
5943
+
"custom": {
5944
+
"additionalProperties": {
5945
+
"$ref": "ObjectCustomContextPayload",
5946
+
"description": "A single user-defined object context."
5947
+
},
5948
+
"description": "User-defined object contexts.",
5949
+
"type": "object"
5950
+
}
5951
+
},
5952
+
"type": "object"
5953
+
},
5935
5954
"crc32c": {
5936
5955
"description": "CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte order. For more information about using the CRC32c checksum, see [Data Validation and Change Detection](https://cloud.google.com/storage/docs/data-validation).",
5937
5956
"type": "string"
@@ -6201,6 +6220,27 @@
6201
6220
},
6202
6221
"type": "object"
6203
6222
},
6223
+
"ObjectCustomContextPayload": {
6224
+
"description": "The payload of a single user-defined object context.",
6225
+
"id": "ObjectCustomContextPayload",
6226
+
"properties": {
6227
+
"createTime": {
6228
+
"description": "The time at which the object context was created in RFC 3339 format.",
6229
+
"format": "date-time",
6230
+
"type": "string"
6231
+
},
6232
+
"updateTime": {
6233
+
"description": "The time at which the object context was last updated in RFC 3339 format.",
6234
+
"format": "date-time",
6235
+
"type": "string"
6236
+
},
6237
+
"value": {
6238
+
"description": "The value of the object context.",
* Content-Type of the object data. If an object is stored without a Content-Type, it is served as application/octet-stream.
1007
1007
*/
1008
1008
contentType?: string | null;
1009
+
/**
1010
+
* User-defined or system-defined object contexts. Each object context is a key-payload pair, where the key provides the identification and the payload holds the associated value and additional metadata.
* CRC32c checksum, as described in RFC 4960, Appendix B; encoded using base64 in big-endian byte order. For more information about using the CRC32c checksum, see [Data Validation and Change Detection](https://cloud.google.com/storage/docs/data-validation).
* // Filter results to objects whose names are lexicographically before endOffset. If startOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
12776
12805
* endOffset: 'placeholder-value',
12806
+
* // Filter the returned objects. Currently only supported for the contexts field. If delimiter is set, the returned prefixes are exempt from this filter.
12807
+
* filter: 'placeholder-value',
12777
12808
* // Only applicable if delimiter is set to '/'. If true, will also include folders and managed folders (besides objects) in the returned prefixes.
12778
12809
* includeFoldersAsPrefixes: 'placeholder-value',
12779
12810
* // If true, objects that end in exactly one instance of delimiter will have their metadata included in items in addition to prefixes.
* Filter results to objects whose names are lexicographically before endOffset. If startOffset is also set, the objects listed will have names between startOffset (inclusive) and endOffset (exclusive).
14817
14855
*/
14818
14856
endOffset?: string;
14857
+
/**
14858
+
* Filter the returned objects. Currently only supported for the contexts field. If delimiter is set, the returned prefixes are exempt from this filter.
14859
+
*/
14860
+
filter?: string;
14819
14861
/**
14820
14862
* Only applicable if delimiter is set to '/'. If true, will also include folders and managed folders (besides objects) in the returned prefixes.
0 commit comments