Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prettier, Lint fix and Updating example for operations API #5

Merged
merged 3 commits into from
Jan 7, 2022
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 @@ -180,14 +180,14 @@
}
}
}
},
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataProtection/backupVaults/{vaultName}/operationStatus/{operationId}": {
"get": {
"tags": [
"OperationStatus"
],
"summary": "Gets the operation status for an operation over a BackupVault's context.",
"operationId": "OperationStatus_Get_BackupVaultContext",
"operationId": "OperationStatusBackupVaultContext_Get",
"produces": [
"application/json"
],
Expand Down Expand Up @@ -231,14 +231,14 @@
}
}
}
},
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataProtection/operationStatus/{operationId}": {
"get": {
"tags": [
"OperationStatus"
],
"summary": "Gets the operation status for an operation over a ResourceGroup's context.",
"operationId": "OperationStatus_Get_ResourceGroupContext",
"operationId": "OperationStatusResourceGroupContext_Get",
"produces": [
"application/json"
],
Expand Down Expand Up @@ -5846,16 +5846,16 @@
},
"x-ms-discriminator-value": "SecretStoreBasedAuthCredentials"
},
"SecretStoreResource": {
"description": "Class representing a secret store resource.",
"required": [
"secretStoreType"
],
"type": "object",
"properties": {
"uri": {
"description": "Uri to get to the resource",
"type": "string"
"SecretStoreResource": {
"description": "Class representing a secret store resource.",
"required": [
"secretStoreType"
],
"type": "object",
"properties": {
"uri": {
"description": "Uri to get to the resource",
"type": "string"
},
"secretStoreType": {
"description": "Gets or sets the type of secret store",
Expand All @@ -5868,12 +5868,12 @@
"name": "SecretStoreType",
"modelAsString": true
}
},
"value": {
"description": "Gets or sets value stored in secret store resource",
"type": "string"
}
}
},
"value": {
"description": "Gets or sets value stored in secret store resource",
"type": "string"
}
}
},
"SourceLifeCycle": {
"description": "Source LifeCycle",
Expand Down
Loading