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 @@ -45,7 +45,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
}
}
},
Expand Down Expand Up @@ -102,7 +106,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
},
"systemData": {
"createdAt": "2021-07-01T00:00:00.0Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
},
"systemData": {
"createdAt": "2021-07-01T00:00:00.0Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/6b052e15-03d3-4f17-b2e1-be7f07588291/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
},
"systemData": {
"createdAt": "2021-07-01T00:00:00.0Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/6b052e15-03d3-4f17-b2e1-be7f07588291/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
},
"systemData": {
"createdAt": "2021-07-01T00:00:00.0Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@
}
]
}
]
],
"customerDataStorage": {
"storageAccountResourceId": "/subscriptions/6b052e15-03d3-4f17-b2e1-be7f07588291/resourceGroups/exampleRG/providers/Microsoft.Storage/storageAccounts/exampleStorage",
"blobContainerName": "azurechaosstudioexperiments"
}
},
"systemData": {
"createdAt": "2021-07-01T00:00:00.0Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@
},
"description": "List of selectors.",
"minItems": 1
},
"customerDataStorage": {
"description": "Optional customer-managed Storage account where Experiment schema will be stored.",
"$ref": "#/definitions/customerDataStorageProperties",
"x-nullable": true
}
},
"required": [
Expand All @@ -117,6 +122,33 @@
],
"additionalProperties": false
},
"customerDataStorageProperties": {
"description": "Model that represents the Customer Managed Storage for an Experiment.",
"type": "object",
"properties": {
"storageAccountResourceId": {
"type": "string",
"description": "ARM Resource ID of the Storage account to use for Customer Data storage.",
"format": "arm-id",
"x-ms-arm-id-details": {
"allowedResources": [
{
"type": "Microsoft.Storage/storageAccounts"
}
]
}
},
"blobContainerName": {
"type": "string",
"description": "Name of the Azure Blob Storage container to use or create.",
"maxLength": 63,
"minLength": 3,
"pattern": "^[a-z0-9]([a-z0-9]|(-(?!-))){1,61}[a-z0-9]$",
"x-nullable": true
}
},
"additionalProperties": false
},
"experimentListResult": {
"type": "object",
"description": "Model that represents a list of Experiment resources and a link for pagination.",
Expand Down