Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 34e443e

Browse files
committedNov 1, 2022
feat(firestore): update the api
#### firestore:v1 The following keys were added: - schemas.GoogleFirestoreAdminV1ExportDocumentsRequest.properties.namespaceIds (Total Keys: 2) - schemas.GoogleFirestoreAdminV1ImportDocumentsRequest.properties.namespaceIds (Total Keys: 2)
1 parent 522e74b commit 34e443e

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed
 

‎docs/dyn/firestore_v1.projects.databases.html

+6
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@ <h3>Method Details</h3>
178178
&quot;collectionIds&quot;: [ # Which collection ids to export. Unspecified means all collections.
179179
&quot;A String&quot;,
180180
],
181+
&quot;namespaceIds&quot;: [ # An empty list represents all namespaces. This is the preferred usage for databases that don&#x27;t use namespaces. An empty string element represents the default namespace. This should be used if the database has data in non-default namespaces, but doesn&#x27;t want to include them. Each namespace in this list must be unique.
182+
&quot;A String&quot;,
183+
],
181184
&quot;outputUriPrefix&quot;: &quot;A String&quot;, # The output URI. Currently only supports Google Cloud Storage URIs of the form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name of the Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional Google Cloud Storage namespace path. When choosing a name, be sure to consider Google Cloud Storage naming guidelines: https://cloud.google.com/storage/docs/naming. If the URI is a bucket (without a namespace path), a prefix will be generated based on the start time.
182185
}
183186

@@ -249,6 +252,9 @@ <h3>Method Details</h3>
249252
&quot;A String&quot;,
250253
],
251254
&quot;inputUriPrefix&quot;: &quot;A String&quot;, # Location of the exported files. This must match the output_uri_prefix of an ExportDocumentsResponse from an export that has completed successfully. See: google.firestore.admin.v1.ExportDocumentsResponse.output_uri_prefix.
255+
&quot;namespaceIds&quot;: [ # An empty list represents all namespaces. This is the preferred usage for databases that don&#x27;t use namespaces. An empty string element represents the default namespace. This should be used if the database has data in non-default namespaces, but doesn&#x27;t want to include them. Each namespace in this list must be unique.
256+
&quot;A String&quot;,
257+
],
252258
}
253259

254260
x__xgafv: string, V1 error format.

‎googleapiclient/discovery_cache/documents/firestore.v1.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@
13821382
}
13831383
}
13841384
},
1385-
"revision": "20220915",
1385+
"revision": "20221017",
13861386
"rootUrl": "https://firestore.googleapis.com/",
13871387
"schemas": {
13881388
"Aggregation": {
@@ -2088,6 +2088,13 @@
20882088
},
20892089
"type": "array"
20902090
},
2091+
"namespaceIds": {
2092+
"description": "An empty list represents all namespaces. This is the preferred usage for databases that don't use namespaces. An empty string element represents the default namespace. This should be used if the database has data in non-default namespaces, but doesn't want to include them. Each namespace in this list must be unique.",
2093+
"items": {
2094+
"type": "string"
2095+
},
2096+
"type": "array"
2097+
},
20912098
"outputUriPrefix": {
20922099
"description": "The output URI. Currently only supports Google Cloud Storage URIs of the form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name of the Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional Google Cloud Storage namespace path. When choosing a name, be sure to consider Google Cloud Storage naming guidelines: https://cloud.google.com/storage/docs/naming. If the URI is a bucket (without a namespace path), a prefix will be generated based on the start time.",
20932100
"type": "string"
@@ -2263,6 +2270,13 @@
22632270
"inputUriPrefix": {
22642271
"description": "Location of the exported files. This must match the output_uri_prefix of an ExportDocumentsResponse from an export that has completed successfully. See: google.firestore.admin.v1.ExportDocumentsResponse.output_uri_prefix.",
22652272
"type": "string"
2273+
},
2274+
"namespaceIds": {
2275+
"description": "An empty list represents all namespaces. This is the preferred usage for databases that don't use namespaces. An empty string element represents the default namespace. This should be used if the database has data in non-default namespaces, but doesn't want to include them. Each namespace in this list must be unique.",
2276+
"items": {
2277+
"type": "string"
2278+
},
2279+
"type": "array"
22662280
}
22672281
},
22682282
"type": "object"

‎googleapiclient/discovery_cache/documents/firestore.v1beta1.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@
950950
}
951951
}
952952
},
953-
"revision": "20220921",
953+
"revision": "20221017",
954954
"rootUrl": "https://firestore.googleapis.com/",
955955
"schemas": {
956956
"Aggregation": {

‎googleapiclient/discovery_cache/documents/firestore.v1beta2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@
415415
}
416416
}
417417
},
418-
"revision": "20220921",
418+
"revision": "20221017",
419419
"rootUrl": "https://firestore.googleapis.com/",
420420
"schemas": {
421421
"Empty": {

0 commit comments

Comments
 (0)
Please sign in to comment.