Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9465,6 +9465,11 @@
"conflictResolutionPolicy": {
"$ref": "#/definitions/ConflictResolutionPolicy",
"description": "The conflict resolution policy for the graph."
},
"analyticalStorageTtl": {
"type": "integer",
"format": "int64",
"description": "Analytical TTL."
}
},
"required": [
Expand Down Expand Up @@ -9645,7 +9650,7 @@
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "Generation time in UTC of the key in ISO-8601 format. A value of null means that the last key regeneration was triggered before 2022-06-18."
"description": "Generation time in UTC of the key in ISO-8601 format. If the value is missing from the object, it means that the last key regeneration was triggered before 2022-06-18."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,35 @@
"location": "WestUS",
"instanceId": "d9b26648-2f53-4541-b3d8-3044f4f9810d",
"restoreLocation": "WestUS",
"restoreTimestampInUtc": "10/13/2020 4:56"
"restoreTimestampInUtc": "06/01/2022 4:56"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablemongodbresources/Database1",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablemongodbresources",
"name": "Database1",
"databaseName": "Database1",
"collectionNames": [
"Collection1"
]
},
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablemongodbresources/Database2",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablemongodbresources",
"name": "Database2",
"databaseName": "Database2",
"collectionNames": [
"Collection1",
"Collection2"
]
},
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablemongodbresources/Database3",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablemongodbresources",
"name": "Database3",
"databaseName": "Database3",
"collectionNames": []
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,35 @@
"location": "WestUS",
"instanceId": "d9b26648-2f53-4541-b3d8-3044f4f9810d",
"restoreLocation": "WestUS",
"restoreTimestampInUtc": "10/13/2020 4:56"
"restoreTimestampInUtc": "06/01/2022 4:56"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablesqlresources/Database1",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablesqlresources",
"name": "Database1",
"databaseName": "Database1",
"collectionNames": [
"Container1"
]
},
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablesqlresources/Database2",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablesqlresources",
"name": "Database2",
"databaseName": "Database2",
"collectionNames": [
"Container1",
"Container2"
]
},
{
"id": "/subscriptions/2296c272-5d55-40d9-bc05-4d56dc2d7588/providers/Microsoft.DocumentDB/locations/westus/restorableDatabaseAccounts/d9b26648-2f53-4541-b3d8-3044f4f9810d/restorablesqlresources/Database3",
"type": "Microsoft.DocumentDB/locations/restorableDatabaseAccounts/restorablesqlresources",
"name": "Database3",
"databaseName": "Database3",
"collectionNames": []
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1252,13 +1252,45 @@
"readOnly": true,
"type": "array",
"items": {
"$ref": "../../preview/2022-05-15-preview/cosmos-db.json#/definitions/DatabaseRestoreResource"
"$ref": "#/definitions/RestorableSqlResourcesGetResult"
},
"description": "List of restorable SQL resources, including the database and collection names."
}
},
"description": "The List operation response, that contains the restorable SQL resources."
},
"RestorableSqlResourcesGetResult": {
"type": "object",
"description": "Specific Databases to restore.",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The unique resource identifier of the ARM resource."
},
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the ARM resource."
},
"type": {
"readOnly": true,
"type": "string",
"description": "The type of Azure resource."
},
"databaseName": {
"type": "string",
"description": "The name of the database available for restore."
},
"collectionNames": {
"type": "array",
"description": "The names of the collections available for restore.",
"items": {
"$ref": "cosmos-db.json#/definitions/CollectionName"
}
}
}
},
"RestorableMongodbDatabasesListResult": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1424,13 +1456,45 @@
"readOnly": true,
"type": "array",
"items": {
"$ref": "../../preview/2022-05-15-preview/cosmos-db.json#/definitions/DatabaseRestoreResource"
"$ref": "#/definitions/RestorableMongodbResourcesGetResult"
},
"description": "List of restorable MongoDB resources, including the database and collection names."
}
},
"description": "The List operation response, that contains the restorable MongoDB resources."
},
"RestorableMongodbResourcesGetResult": {
"type": "object",
"description": "Specific Databases to restore.",
"properties": {
"id": {
"readOnly": true,
"type": "string",
"description": "The unique resource identifier of the ARM resource."
},
"name": {
"readOnly": true,
"type": "string",
"description": "The name of the ARM resource."
},
"type": {
"readOnly": true,
"type": "string",
"description": "The type of Azure resource."
},
"databaseName": {
"type": "string",
"description": "The name of the database available for restore."
},
"collectionNames": {
"type": "array",
"description": "The names of the collections available for restore.",
"items": {
"$ref": "cosmos-db.json#/definitions/CollectionName"
}
}
}
},
"RestorableGremlinDatabasesListResult": {
"type": "object",
"properties": {
Expand Down