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

New ApiVersion 2022-09-01-preview : Fix Linter errors #23706

Merged
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 @@ -311,7 +311,13 @@
}
},
"202": {
"description": "Request to create or update API was accepted. Location header contains the URL where the status of the long running operation can be checked."
"description": "Request to create or update API was accepted. Location header contains the URL where the status of the long running operation can be checked.",
"headers": {
"location": {
"description": "Location header",
"type": "string"
}
}
},
"200": {
"description": "API was successfully updated.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down Expand Up @@ -476,11 +479,6 @@
"$ref": "./examples/ApiManagementGetWorkspacePolicy.json"
}
},
"produces": [
"application/json",
"application/vnd.ms-azure-apim.policy+xml",
"application/vnd.ms-azure-apim.policy.raw+xml"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
Expand Down Expand Up @@ -2092,6 +2090,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down Expand Up @@ -4085,7 +4086,7 @@
"202": {
"description": "Request to create or update API was accepted. Location header contains the URL where the status of the long running operation can be checked.",
"headers": {
"Location": {
"location": {
"type": "string"
}
}
Expand Down Expand Up @@ -5099,6 +5100,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down Expand Up @@ -5402,6 +5406,9 @@
"$ref": "./apimanagement.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
Expand Down Expand Up @@ -5469,11 +5476,6 @@
"$ref": "./examples/ApiManagementGetWorkspaceApiPolicy.json"
}
},
"produces": [
"application/json",
"application/vnd.ms-azure-apim.policy+xml",
"application/vnd.ms-azure-apim.policy.raw+xml"
],
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
Expand Down Expand Up @@ -5714,7 +5716,8 @@
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
},
"x-ms-odata": "./definitions.json#/definitions/SchemaContract"
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/apis/{apiId}/schemas/{schemaId}": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,12 @@
},
"primaryKey": {
"type": "string",
"x-ms-secret": true,
"description": "Primary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value."
},
"secondaryKey": {
"type": "string",
"x-ms-secret": true,
"description": "Secondary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value."
},
"enabled": {
Expand Down Expand Up @@ -139,10 +141,12 @@
},
"primaryKey": {
"type": "string",
"x-ms-secret": true,
"description": "Primary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value."
},
"secondaryKey": {
"type": "string",
"x-ms-secret": true,
"description": "Secondary access key. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value."
},
"enabled": {
Expand Down Expand Up @@ -1853,6 +1857,7 @@
"properties": {
"clientSecret": {
"type": "string",
"x-ms-secret": true,
"description": "oAuth Authorization Server Secrets."
},
"resourceOwnerUsername": {
Expand Down Expand Up @@ -7367,6 +7372,7 @@
"properties": {
"clientSecret": {
"type": "string",
"x-ms-secret": true,
"description": "Client or app secret used in IdentityProviders, Aad, OpenID or OAuth."
}
},
Expand All @@ -7387,6 +7393,7 @@
"properties": {
"validationKey": {
"type": "string",
"x-ms-secret": true,
"description": "This is secret value of the validation key in portal settings."
}
},
Expand Down