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

settings-specs #20937

Merged
merged 23 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from 6 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
@@ -0,0 +1,22 @@
{
"parameters": {
"vaultBaseUrl": "https://myvault.vault.azure.net/",
"api-version": "7.4-preview.1"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "AllowKeyManagementOperationsThroughARM",
"value": "true",
"type": "boolean",
"description": "If false, all key management operations must happen through the Managed HSM data plane. If true, allows users to manage keys via the Azure Resource Manager."
}
]
}
}
}
}


Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"parameters": {
"vaultBaseUrl": "https://myvault.vault.azure.net/",
"setting-name": "AllowKeyManagementOperationsThroughARM",
"api-version": "7.4-preview.1",
"parameters": {
"value":"true"
}
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "AllowKeyManagementOperationsThroughARM",
"value": "true",
"type": "boolean",
"description": "If false, all key management operations must happen through the Managed HSM data plane. If true, allows users to manage keys via the Azure Resource Manager."

}
]
}
}
}
}


Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
{
"swagger": "2.0",
"info": {
"title": "KeyVaultClient",
"description": "The key vault client performs cryptographic key operations and vault operations against the Key Vault service.",
"version": "7.4-preview.1"
},
"x-ms-parameterized-host": {
"hostTemplate": "{vaultBaseUrl}",
"useSchemePrefix": false,
"positionInOperation": "first",
"parameters": [
{
"name": "vaultBaseUrl",
"description": "The vault name, for example https://myvault.vault.azure.net.",
"required": true,
"type": "string",
"in": "path",
"x-ms-skip-url-encoding": true

}
]
},
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/settings/{setting-name}": {
"patch": {
"tags": [
"Settings"
],
"operationId": "UpdateSettings",
"summary": "Updates key vault account setting, stores it, then returns the setting name and value to the client.",
"description": "Description of the pool setting to be updated",
"parameters": [
{
"$ref": "#/parameters/SettingNameParameter"
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/UpdateSettingsRequest"
maddiemlucas marked this conversation as resolved.
Show resolved Hide resolved
},
"description": "The parameters to update an account setting."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "An account setting containing the name of the setting and the value it is set to. ",
"schema": {
"$ref": "#/definitions/Setting"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Update Setting": {
"$ref": "./examples/UpdateSetting-example.json"
}
}
},
"get": {
"tags": [
"Settings"
],
"operationId": "GetSettingValue",
"summary": "Get specified account setting value.",
"description": "Retrieves the value of a specified, value account setting.",
"parameters": [
{
"$ref": "#/parameters/SettingNameParameter"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "An account setting containing the name of the setting and the value it is set to.",
"schema": {
"$ref": "#/definitions/Setting"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"GetSetting": {
"$ref": "./examples/UpdateSetting-example.json"
}
}
}
},
"/settings": {
"get": {
"tags": [
"Settings"
],
"operationId": "GetSettings",
"summary": "List account settings.",
"description": "Retrieves a list of all the available account settings that can be configured.",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A response message containing a list of account settings with their associated value.",
"schema": {
"$ref": "#/definitions/SettingsListResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"GetSettings": {
"$ref": "./examples/ListSettings-example.json"
}
}
}
}
},
"definitions": {
"UpdateSettingsRequest": {
"properties": {
"value": {
"type": "string",
"description": "The value of the pool setting."
}
},
"description": "The update settings request object.",
"required": [
"value"
]
},

"Setting": {
"properties": {
"name": {
"type": "string",
"description": "The account setting to be updated"
},
"value": {
"type": "string",
"description": "The value of the pool setting."
},
"type": {
"type": {
maddiemlucas marked this conversation as resolved.
Show resolved Hide resolved
"enum": [
"boolean",
"string",
"integer",
"float"
],
"description": "The type specifier of the value."
}
},
"required": [
"name",
"value"
],
"description": "The update settings response object containing the setting name and its value."
},
"SettingsListResult": {
"properties": {
maddiemlucas marked this conversation as resolved.
Show resolved Hide resolved
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/Setting"
},
"readOnly": true,
"description": "A response message containing a list of account settings with their associated value."
}
},
"description": "The settings list result."
}
},
"parameters": {
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client API version."
},
"SettingNameParameter":
{
"name": "setting-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the account setting. Must be a valid settings option."
}
}
}