Skip to content
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7a722ac
Adds base for updating Microsoft.DataProtection from version preview/…
Shashank1306s Aug 10, 2023
b7d59bb
Updates readme
Shashank1306s Aug 10, 2023
c202cce
Updates API version in new specs and examples
Shashank1306s Aug 10, 2023
c09de32
Merge branch 'main' of https://github.com/soumyapattnaik/azure-rest-a…
soumyapattnaik Aug 10, 2023
da8f098
changes for AKS vault tier restore
soumyapattnaik Aug 10, 2023
8480723
address typos
soumyapattnaik Aug 25, 2023
63d856a
Adds base for updating Microsoft.DataProtection from version stable/2…
asmitt Oct 19, 2023
27f7db9
Updates readme
asmitt Oct 19, 2023
8e2ccec
Updates API version in new specs and examples
asmitt Oct 19, 2023
9978155
copied changes for CRR from api-version 2023-04-01-preview
asmitt Oct 19, 2023
13913d8
added replicated regions to vault and filters to fetch CRR jobs
asmitt Oct 19, 2023
0ebe318
Adds base for updating Microsoft.DataProtection from version stable/2…
Shashank1306s Oct 23, 2023
0091391
Updates readme
Shashank1306s Oct 23, 2023
dc52fde
Updates API version in new specs and examples
Shashank1306s Oct 23, 2023
138cf0d
removed extension routing changes
asmitt Oct 25, 2023
2eb558d
changes for vault tier
soumyapattnaik Oct 25, 2023
d69d54d
completed with warnings job changes
asmitt Oct 25, 2023
2329daf
Add RecoveryPointState to DataProtection (#26426)
nickpacificomsft Oct 30, 2023
ec64439
Adds base for updating Microsoft.DataProtection from version stable/2…
asmitt Oct 19, 2023
456c431
Updates readme
asmitt Oct 19, 2023
3faccdf
Updates API version in new specs and examples
asmitt Oct 19, 2023
874df27
copied changes for CRR from api-version 2023-04-01-preview
asmitt Oct 19, 2023
ad74146
added replicated regions to vault and filters to fetch CRR jobs
asmitt Oct 19, 2023
81d884a
removed extension routing changes
asmitt Oct 25, 2023
75ee8cc
completed with warnings job changes
asmitt Oct 25, 2023
b42fbe9
Add RecoveryPointState to DataProtection (#26426)
nickpacificomsft Oct 30, 2023
599ff0b
Merge branch 'asmitt-dataprotection-Microsoft.DataProtection-2023-11-…
asmitt Oct 31, 2023
230cc84
merge changes for vault tier
soumyapattnaik Oct 31, 2023
6740990
pull from remote
soumyapattnaik Nov 10, 2023
66e4102
changes from 08-01 stable
soumyapattnaik Nov 10, 2023
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 @@ -7022,6 +7022,116 @@
},
"x-ms-discriminator-value": "KubernetesClusterRestoreCriteria"
},
"KubernetesClusterVaultTierRestoreCriteria": {
"description": "kubernetes Cluster Backup target info for restore operation from vault",
"required": [
"includeClusterScopeResources"
],
"type": "object",
"allOf": [
{
"$ref": "#/definitions/ItemLevelRestoreCriteria"
}
],
"properties": {
"includeClusterScopeResources": {
"description": "Gets or sets the include cluster resources property. This property if enabled will include cluster scope resources during restore from vault.",
"type": "boolean"
},
"includedNamespaces": {
"description": "Gets or sets the include namespaces property. This property sets the namespaces to be included during restore from vault.",
"items": {
"type": "string"
},
"type": "array"
},
"excludedNamespaces": {
"description": "Gets or sets the exclude namespaces property. This property sets the namespaces to be excluded during restore from vault.",
"items": {
"type": "string"
},
"type": "array"
},
"includedResourceTypes": {
"description": "Gets or sets the include resource types property. This property sets the resource types to be included during restore from vault.",
"items": {
"type": "string"
},
"type": "array"
},
"excludedResourceTypes": {
"description": "Gets or sets the exclude resource types property. This property sets the resource types to be excluded during restore from vault.",
"items": {
"type": "string"
},
"type": "array"
},
"labelSelectors": {
"description": "Gets or sets the LabelSelectors property. This property sets the resource with such label selectors to be included during restore from vault.",
"items": {
"type": "string"
},
"type": "array"
},
"persistentVolumeRestoreMode": {
"description": "Gets or sets the PV (Persistent Volume) Restore Mode property. This property sets whether volumes needs to be restored from vault.",
"enum": [
"RestoreWithVolumeData",
"RestoreWithoutVolumeData"
],
"type": "string",
"x-ms-enum": {
"name": "PersistentVolumeRestoreMode",
"modelAsString": true
}
},
"conflictPolicy": {
"description": "Gets or sets the Conflict Policy property. This property sets policy during conflict of resources during restore from vault.",
"enum": [
"Skip",
"Patch"
],
"type": "string",
"x-ms-enum": {
"name": "ExistingResourcePolicy",
"modelAsString": true
}
},
"namespaceMappings": {
"description": "Gets or sets the Namespace Mappings property. This property sets if namespace needs to be change during restore from vault.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"restoreHookReferences": {
"description": "Gets or sets the restore hook references. This property sets the hook reference to be executed during restore from vault.",
"items": {
"$ref": "#/definitions/NamespacedNameResource"
},
"x-ms-identifiers": [],
"type": "array"
},
"stagingResourceGroupId": {
"description": "Gets or sets the staging RG Id for creating staging disks and snapshots during restore from vault.",
"type": "string",
"format": "arm-id"
},
"stagingStorageAccountId": {
"description": "Gets or sets the staging Storage Account Id for creating backup extension object store data during restore from vault.",
"type": "string",
"format": "arm-id",
"x-ms-arm-id-details": {
"allowedResources": [
{
"type": "Microsoft.Storage/storageAccounts"
}
]
}
}
},
"x-ms-discriminator-value": "KubernetesClusterVaultTierRestoreCriteria"
},
"RecoveryPointDataStoreDetails": {
"description": "RecoveryPoint datastore details",
"properties": {
Expand Down