split uri back out from path, added flattener (not yet enabled).
This commit is contained in:
Родитель
02200a9d68
Коммит
0e1eec97ba
|
@ -46,7 +46,7 @@ function run-autorest($src) {
|
|||
$txt = "$autorest --pipeline-model:v3 --input-file:$swaggerRoot$src --output-folder:$outputFolder --title:$name --output-artifact:openapi-document $args"
|
||||
write-host -fore GREEN "`n--------------------------------------------------------`nGenerating [$name]`n--------------------------------------------------------`n"
|
||||
echo $txt
|
||||
& $autorest "--version:c:\work\2019\autorest.megarepo\autorest" "--pipeline-model:v3" "--input-file:$swaggerRoot$src" "--output-folder:$outputFolder" "--clear-output-folder" "--title:$name" "--output-artifact:openapi-document" $args
|
||||
& $autorest "--version:c:\work\2019\autorest.megarepo\autorest" "--pipeline-model:v3" "--input-file:$swaggerRoot$src" "--output-folder:$outputFolder" "--clear-output-folder" "--title:$name" "--output-artifact:openapi-document" "--deduplicate-inline-models" $args
|
||||
$rc = $LastExitCode
|
||||
if( $rc -gt 0 ) {
|
||||
write-host -fore RED "`n--------------------------------------------------------`nFAILED GENERATION [$name]`n--------------------------------------------------------`n"
|
||||
|
|
|
@ -29,21 +29,27 @@ export class Flattener {
|
|||
// hasn't started yet.
|
||||
schema.extensions = schema.extensions || {};
|
||||
schema.extensions['x-ms-flattening'] = true;
|
||||
|
||||
|
||||
if (schema.properties) {
|
||||
const removeable = [];
|
||||
|
||||
for (const { key: index, value: property } of items(schema.properties)) {
|
||||
if (property.extensions?.['x-ms-client-flatten'] && isObjectSchema(property.schema)) {
|
||||
|
||||
// first, ensure tha the child is pre-flattened
|
||||
this.flattenSchema(property.schema);
|
||||
|
||||
// copy all of the properties from the child into this
|
||||
// schema
|
||||
|
||||
|
||||
for (const childProperty of values(property.schema.properties)) {
|
||||
schema.addProperty({
|
||||
schema.addProperty(new Property(childProperty.language.default.name, childProperty.language.default.description, childProperty.schema, {
|
||||
...(<any>childProperty),
|
||||
serializedName: `${property.serializedName}.${childProperty.serializedName}`,
|
||||
});
|
||||
flattenedNames: [property.serializedName, ...childProperty.flattenedNames ? childProperty.flattenedNames : [childProperty.serializedName]],
|
||||
required: property.required && childProperty.required
|
||||
}));
|
||||
}
|
||||
|
||||
// and then remove this property
|
||||
|
@ -69,6 +75,7 @@ export class Flattener {
|
|||
|
||||
process() {
|
||||
for (const schema of values(this.codeModel.schemas.objects)) {
|
||||
|
||||
this.flattenSchema(schema);
|
||||
}
|
||||
for (const schema of values(this.codeModel.schemas.objects)) {
|
||||
|
|
|
@ -396,6 +396,7 @@ export class ModelerFour {
|
|||
required: schema.required ? schema.required.indexOf(propertyName) > -1 : undefined,
|
||||
serializedName: propertyName,
|
||||
isDiscriminator: discriminatorProperty === propertyName ? true : undefined,
|
||||
extensions: this.interpret.getExtensionProperties(property),
|
||||
}));
|
||||
if (prop.isDiscriminator) {
|
||||
objectSchema.discriminator = new Discriminator(prop);
|
||||
|
@ -705,8 +706,8 @@ export class ModelerFour {
|
|||
// this.session.error(`String schema '${name}' with unknown format: '${schema.format}' is not valid`, ['Modeler'], schema);
|
||||
}
|
||||
}
|
||||
this.session.error(`The model ${name} does not have a recognized schema type '${schema.type}'`, ['Modeler', 'UnknownSchemaType']);
|
||||
throw new Error(`Unrecognized schema type:'${schema.type}' / format: ${schema.format}`);
|
||||
this.session.error(`The model ${name} does not have a recognized schema type '${schema.type}' ${JSON.stringify(schema)} `, ['Modeler', 'UnknownSchemaType']);
|
||||
throw new Error(`Unrecognized schema type:'${schema.type}' / format: ${schema.format} ${JSON.stringify(schema)} `);
|
||||
}) || fail('Unable to process schema.');
|
||||
}
|
||||
|
||||
|
@ -765,6 +766,8 @@ export class ModelerFour {
|
|||
const p = path.indexOf('?');
|
||||
path = p > -1 ? path.substr(0, p) : path;
|
||||
|
||||
let baseUri = '';
|
||||
|
||||
const { group, member } = this.interpret.getOperationId(httpMethod, path, operation);
|
||||
// get group and operation name
|
||||
// const opGroup = this.codeModel.
|
||||
|
@ -797,7 +800,6 @@ export class ModelerFour {
|
|||
if (length(server.variables) === 0) {
|
||||
// scenario 1 : single static value
|
||||
|
||||
|
||||
// check if we have the $host parameter foor this uri yet.
|
||||
let p = values(this.codeModel.globalParameters).first(each => each.language.default.name === '$host' && each.clientDefaultValue === uri);
|
||||
if (!p) {
|
||||
|
@ -805,7 +807,7 @@ export class ModelerFour {
|
|||
required: true,
|
||||
implementation: ImplementationLocation.Client,
|
||||
protocol: {
|
||||
http: new HttpParameter(ParameterLocation.Path)
|
||||
http: new HttpParameter(ParameterLocation.Uri)
|
||||
},
|
||||
clientDefaultValue: uri
|
||||
});
|
||||
|
@ -815,7 +817,7 @@ export class ModelerFour {
|
|||
// add it to the request
|
||||
op.request.addParameter(p);
|
||||
// and update the path for the operation.
|
||||
path = `{$host}${path}`;
|
||||
baseUri = '{$host}';
|
||||
} else {
|
||||
// scenario 3 : single parameterized value
|
||||
|
||||
|
@ -829,7 +831,7 @@ export class ModelerFour {
|
|||
required: true,
|
||||
implementation: ImplementationLocation.Client,
|
||||
protocol: {
|
||||
http: new HttpParameter(ParameterLocation.Path)
|
||||
http: new HttpParameter(ParameterLocation.Uri)
|
||||
},
|
||||
clientDefaultValue: clientdefault
|
||||
});
|
||||
|
@ -840,7 +842,8 @@ export class ModelerFour {
|
|||
op.request.addParameter(p);
|
||||
}
|
||||
// and update the path for the operation. (copy the template onto the path)
|
||||
path = `${uri}${path}`;
|
||||
// path = `${uri}${path}`;
|
||||
baseUri = uri;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -863,7 +866,7 @@ export class ModelerFour {
|
|||
required: true,
|
||||
implementation: ImplementationLocation.Client,
|
||||
protocol: {
|
||||
http: new HttpParameter(ParameterLocation.Path)
|
||||
http: new HttpParameter(ParameterLocation.Uri)
|
||||
},
|
||||
clientDefaultValue: servers[0].url
|
||||
});
|
||||
|
@ -874,7 +877,9 @@ export class ModelerFour {
|
|||
op.request.addParameter(p);
|
||||
|
||||
// update the path to have a $host parameter.
|
||||
path = `{$host}${path}`;
|
||||
//path = `{$host}${path}`;
|
||||
baseUri = '{$host}';
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -882,7 +887,8 @@ export class ModelerFour {
|
|||
// === Request ===
|
||||
const httpRequest = op.request.protocol.http = SetType(HttpRequest, {
|
||||
method: httpMethod,
|
||||
path: path // this.interpret.getPath(pathItem, operation, path),
|
||||
path: path, // this.interpret.getPath(pathItem, operation, path),
|
||||
url: baseUri
|
||||
});
|
||||
|
||||
// get all the parameters for the operation
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@autorest/modelerfour",
|
||||
"version": "4.0.0",
|
||||
"version": "4.1.0",
|
||||
"description": "AutoRest Modeler Version Four (component)",
|
||||
"directories": {
|
||||
"doc": "docs"
|
||||
|
@ -12,7 +12,7 @@
|
|||
"typings": "dist/exports.d.ts",
|
||||
"scripts": {
|
||||
"start": "node --max_old_space_size=4096 ./dist/main.js",
|
||||
"debug": "node --max_old_space_size=4096 --inspect-brk ./dist/main.js",
|
||||
"debug": "node --max_old_space_size=4096 --inspect-brk=localhost:19229 ./dist/main.js",
|
||||
"eslint-fix": "eslint . --fix --ext .ts",
|
||||
"eslint": "eslint . --ext .ts",
|
||||
"watch": "tsc -p . --watch",
|
||||
|
|
|
@ -8,7 +8,6 @@ import { Host, startSession } from '@azure-tools/autorest-extension-base';
|
|||
import { codeModelSchema, CodeModel } from '@azure-tools/codemodel';
|
||||
import { PreNamer } from './prenamer';
|
||||
|
||||
|
||||
export async function processRequest(host: Host) {
|
||||
const debug = await host.GetValue('debug') || false;
|
||||
|
||||
|
|
|
@ -1,3 +1,29 @@
|
|||
# AutoRest Modeler Four
|
||||
|
||||
## Changelog:
|
||||
|
||||
#### 4.1.56 - Breaking change:
|
||||
- version bump, change your configuration to specify version `~4.1.0` or greater
|
||||
|
||||
``` yaml
|
||||
use-extension:
|
||||
"@autorest/modelerfour" : "~4.1.0"
|
||||
```
|
||||
- each Http operation (via `.protocol.http`) will now have a separate `path` and `uri` properties.
|
||||
<br>Both are still templates, and will have parameters.
|
||||
<br>The parameters for the `uri` property will have `in` set to `ParameterLocation.Uri`
|
||||
<br>The parameters for the `path` property will continue to have `in` set to `ParameterLocation.Path`
|
||||
|
||||
- this package contains the initial code for the flattener plugin, however it is not yet enabled.
|
||||
- autorest-core recently added an option to aggressively deduplicate inline models (ie, ones without a name)
|
||||
and modeler-four based generator will have that enabled by default. (ie `deduplicate-inline-models: true`)
|
||||
<br>This may increase deduplication time on extremely large openapi models.
|
||||
|
||||
- updated `@azure-tools/codemodel` package to `3.0.241`:
|
||||
<br>`uri` (required) was added to `HttpRequest`
|
||||
<br>`flattenedNames` (optional) was added to `Property` (in anticipation of supporting flattening)
|
||||
|
||||
|
||||
|
||||
# Contributing
|
||||
|
||||
|
@ -63,4 +89,7 @@ scope-modelerfour/notags/emitter: # writing to disk settings
|
|||
output-uri-expr: | # forces filename if it gets written to disk.
|
||||
"code-model-v4-no-tags.yaml"
|
||||
|
||||
# the default preference for modeler-four based generators is to deduplicate inline models fully.
|
||||
# this may impact performance on extremely large models with a lot of inline schemas.
|
||||
deduplicate-inline-models: true
|
||||
```
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -159,7 +159,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -210,7 +210,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -261,7 +261,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -312,7 +312,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -557,11 +557,11 @@
|
|||
],
|
||||
"name": "components·schemas·petaptrue·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petaptrue·additionalproperties"
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petaptrue·additionalproperties",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapobject·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
"x-format": "any"
|
||||
"type": "object"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -615,7 +615,7 @@
|
|||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
},
|
||||
"required": [
|
||||
"id"
|
||||
|
@ -636,21 +636,6 @@
|
|||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·schemas·petapobject·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapobject·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"schemas:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -709,7 +694,8 @@
|
|||
],
|
||||
"name": "components·schemas·petapstring·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapstring·additionalproperties"
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapstring·additionalproperties",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinpropertieswithapstring·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -790,7 +776,8 @@
|
|||
],
|
||||
"name": "components·schemas·petapinproperties·properties·additionalproperties·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinproperties·properties·additionalproperties·additionalproperties"
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinproperties·properties·additionalproperties·additionalproperties",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "number"
|
||||
|
@ -828,7 +815,7 @@
|
|||
}
|
||||
},
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:21"
|
||||
"$ref": "#/components/schemas/schemas:11"
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
|
@ -880,38 +867,8 @@
|
|||
},
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:20"
|
||||
"$ref": "#/components/schemas/schemas:15"
|
||||
}
|
||||
},
|
||||
"schemas:20": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "number"
|
||||
},
|
||||
"schemas:21": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·schemas·petapinpropertieswithapstring·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/schemas/components·schemas·petapinpropertieswithapstring·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
|
@ -947,7 +904,12 @@
|
|||
],
|
||||
"name": "paths·additionalproperties-true·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-true·put·responses·default"
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-true·put·responses·default",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-true_subclass·put·responses·default",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-type-object·put·responses·default",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-type-string·put·responses·default",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-in-properties·put·responses·default",
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-in-properties-with-additionalproperties-string·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -981,28 +943,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·additionalproperties-true_subclass·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-true_subclass·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1025,28 +965,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·additionalproperties-type-object·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-type-object·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1069,28 +987,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·additionalproperties-type-string·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-type-string·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1113,28 +1009,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·additionalproperties-in-properties·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-in-properties·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1156,28 +1030,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///95?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·additionalproperties-in-properties-with-additionalproperties-string·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/additionalProperties.json#/components/responses/paths·additionalproperties-in-properties-with-additionalproperties-string·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -112,21 +112,21 @@
|
|||
"description": "Post a bunch of optional parameters grouped",
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:3"
|
||||
"$ref": "#/components/parameters/parameters:0"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:4",
|
||||
"$ref": "#/components/parameters/parameters:1",
|
||||
"description": "Query parameter with default"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -185,11 +185,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -231,21 +231,21 @@
|
|||
"description": "Post parameters with a shared parameter group object",
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:9"
|
||||
"$ref": "#/components/parameters/parameters:5"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:10",
|
||||
"$ref": "#/components/parameters/parameters:6",
|
||||
"description": "Query parameter with default"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -305,7 +305,12 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·0·schema"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·2·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postoptional·post·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·2·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-sharedparametergroupobject·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -320,149 +325,10 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"format": "int32",
|
||||
"default": 30,
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·parameters·2·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·2·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postoptional·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postoptional·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"format": "int32",
|
||||
"default": 30,
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"format": "int32",
|
||||
"default": 30,
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·2·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·2·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·3·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·3·schema"
|
||||
]
|
||||
},
|
||||
"format": "int32",
|
||||
"default": 30,
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-sharedparametergroupobject·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postrequired-path·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postoptional·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-postmultipleparametergroups·post·parameters·3·schema",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/schemas/paths·parametergrouping-sharedparametergroupobject·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
|
@ -521,7 +387,8 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postrequired-path·post·parameters·0"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postrequired-path·post·parameters·0",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postoptional·post·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "customHeader",
|
||||
|
@ -543,7 +410,8 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postrequired-path·post·parameters·1"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postrequired-path·post·parameters·1",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postoptional·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "query",
|
||||
|
@ -574,56 +442,11 @@
|
|||
"description": "Path parameter",
|
||||
"x-ms-parameter-grouping": {},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postoptional·post·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "customHeader",
|
||||
"in": "header",
|
||||
"x-ms-parameter-grouping": {},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postoptional·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "query",
|
||||
"in": "query",
|
||||
"description": "Query parameter with default",
|
||||
"x-ms-parameter-grouping": {},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -634,7 +457,8 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postmultipleparametergroups·post·parameters·0"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postmultipleparametergroups·post·parameters·0",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-sharedparametergroupobject·post·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "header-one",
|
||||
|
@ -643,7 +467,7 @@
|
|||
"name": "first-parameter-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -658,7 +482,8 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postmultipleparametergroups·post·parameters·1"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-postmultipleparametergroups·post·parameters·1",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-sharedparametergroupobject·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "query-one",
|
||||
|
@ -668,7 +493,7 @@
|
|||
"name": "first-parameter-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -692,7 +517,7 @@
|
|||
"postfix": "second-param-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -717,56 +542,7 @@
|
|||
"postfix": "second-param-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-sharedparametergroupobject·post·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "header-one",
|
||||
"in": "header",
|
||||
"x-ms-parameter-grouping": {
|
||||
"name": "first-parameter-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:10"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/parameters/paths·parametergrouping-sharedparametergroupobject·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "query-one",
|
||||
"in": "query",
|
||||
"description": "Query parameter with default",
|
||||
"x-ms-parameter-grouping": {
|
||||
"name": "first-parameter-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:11"
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"required": false,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -783,7 +559,10 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postrequired-path·post·responses·200"
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postrequired-path·post·responses·200",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postoptional·post·responses·200",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postmultipleparametergroups·post·responses·200",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-sharedparametergroupobject·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Success"
|
||||
|
@ -798,117 +577,9 @@
|
|||
],
|
||||
"name": "paths·parametergrouping-postrequired-path·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postrequired-path·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:12"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postoptional·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Success"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postoptional·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postoptional·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:12"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postmultipleparametergroups·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Success"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-postmultipleparametergroups·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postmultipleparametergroups·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:12"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-sharedparametergroupobject·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Success"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·parametergrouping-sharedparametergroupobject·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postrequired-path·post·responses·default",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postoptional·post·responses·default",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-postmultipleparametergroups·post·responses·default",
|
||||
"http://localhost:3000/swagger/azure-parameter-grouping.json#/components/responses/paths·parametergrouping-sharedparametergroupobject·post·responses·default"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -148,11 +148,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -188,7 +188,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -239,11 +239,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +279,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -402,11 +402,10 @@
|
|||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/schemas/paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/schemas/paths·azure-resource_flatten-dictionary·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/schemas/paths·azure-resource_flatten-dictionary·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
|
@ -703,7 +702,7 @@
|
|||
"$ref": "#/components/schemas/schemas:18"
|
||||
},
|
||||
"dictionaryofresources": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
"$ref": "#/components/schemas/schemas:19"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -724,6 +723,24 @@
|
|||
"items": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
},
|
||||
"schemas:19": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
|
@ -737,7 +754,9 @@
|
|||
],
|
||||
"name": "paths·azure-resource_flatten-array·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·put·responses·200"
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·put·responses·200",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·200",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
|
@ -752,7 +771,12 @@
|
|||
],
|
||||
"name": "paths·azure-resource_flatten-array·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·put·responses·default"
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·get·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·get·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -786,65 +810,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-array·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-array·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -867,65 +832,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-dictionary·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -947,28 +853,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource-x.json#/components/responses/paths·azure-resource_flatten-resourcecollection·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -148,11 +148,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -188,7 +188,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -239,11 +239,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +279,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -402,11 +402,10 @@
|
|||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/schemas/paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/schemas/paths·azure-resource_flatten-dictionary·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/schemas/paths·azure-resource_flatten-dictionary·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
|
@ -703,7 +702,7 @@
|
|||
"$ref": "#/components/schemas/schemas:18"
|
||||
},
|
||||
"dictionaryofresources": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
"$ref": "#/components/schemas/schemas:19"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -724,6 +723,24 @@
|
|||
"items": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
},
|
||||
"schemas:19": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
|
@ -737,7 +754,9 @@
|
|||
],
|
||||
"name": "paths·azure-resource_flatten-array·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·put·responses·200"
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·put·responses·200",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·200",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
|
@ -752,7 +771,12 @@
|
|||
],
|
||||
"name": "paths·azure-resource_flatten-array·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·put·responses·default"
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·get·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·get·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·default",
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -786,65 +810,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-array·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-array·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -867,65 +832,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-dictionary·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-dictionary·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -947,28 +853,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·azure-resource_flatten-resourcecollection·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/azure-resource.json#/components/responses/paths·azure-resource_flatten-resourcecollection·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -96,7 +96,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -142,11 +142,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The false Boolean value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -173,7 +173,7 @@
|
|||
"operationId": "bool_putFalse",
|
||||
"description": "Set Boolean value false",
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:1"
|
||||
"$ref": "#/components/requestBodies/requestBodies:0"
|
||||
},
|
||||
"x-ms-requestBody-index": 0,
|
||||
"tags": [
|
||||
|
@ -182,11 +182,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Empty Response",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -232,11 +232,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The null Boolean value",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -282,11 +282,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid Boolean value",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -304,7 +304,10 @@
|
|||
],
|
||||
"name": "paths·bool-true·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The true Boolean value",
|
||||
|
@ -326,7 +329,12 @@
|
|||
],
|
||||
"name": "paths·bool-true·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -348,201 +356,11 @@
|
|||
],
|
||||
"name": "paths·bool-true·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Empty Response"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-true·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The false Boolean value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-true·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Empty Response"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-false·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-null·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null Boolean value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid Boolean value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/responses/paths·bool-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -556,81 +374,11 @@
|
|||
],
|
||||
"name": "paths·bool-true·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-true·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-true·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-true·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-false·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-false·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-null·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-null·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-true·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-true·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-false·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-false·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-null·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/schemas/paths·bool-invalid·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -687,36 +435,14 @@
|
|||
],
|
||||
"name": "paths·bool-true·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/requestBodies/paths·bool-true·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-requestBody-name": "boolBody"
|
||||
},
|
||||
"requestBodies:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/requestBodies/paths·bool-true·put·requestbody",
|
||||
"http://localhost:3000/swagger/body-boolean.quirks.json#/components/requestBodies/paths·bool-false·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -96,7 +96,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -146,7 +146,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -182,11 +182,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Empty Response",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -236,7 +236,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -282,11 +282,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid Boolean value",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -326,7 +326,12 @@
|
|||
],
|
||||
"name": "paths·bool-true·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -348,33 +353,12 @@
|
|||
],
|
||||
"name": "paths·bool-true·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·put·responses·200"
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Empty Response"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-true·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-true·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -397,65 +381,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Empty Response"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-false·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -466,7 +391,8 @@
|
|||
],
|
||||
"name": "paths·bool-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null Boolean value",
|
||||
|
@ -477,72 +403,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid Boolean value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/responses/paths·bool-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -556,21 +416,7 @@
|
|||
],
|
||||
"name": "paths·bool-null·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-null·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-invalid·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-null·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-invalid·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -625,24 +471,7 @@
|
|||
],
|
||||
"name": "paths·bool-true·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-true·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean",
|
||||
"enum": [
|
||||
true
|
||||
]
|
||||
},
|
||||
"paths·bool-true·put·requestbody·content·application-json·schema": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-true·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-true·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-true·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -661,24 +490,7 @@
|
|||
],
|
||||
"name": "paths·bool-false·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-false·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "boolean",
|
||||
"enum": [
|
||||
false
|
||||
]
|
||||
},
|
||||
"paths·bool-false·put·requestbody·content·application-json·schema": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·bool-false·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-false·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-boolean.json#/components/schemas/paths·bool-false·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -705,7 +517,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/paths·bool-true·put·requestbody·content·application-json·schema"
|
||||
"$ref": "#/components/schemas/paths·bool-true·get·responses·200·content·application-json·schema"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -728,7 +540,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/paths·bool-false·put·requestbody·content·application-json·schema"
|
||||
"$ref": "#/components/schemas/paths·bool-false·get·responses·200·content·application-json·schema"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -156,7 +156,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -197,7 +197,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -243,11 +243,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid byte value '::::SWAGGER::::'",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -288,7 +288,11 @@
|
|||
],
|
||||
"name": "paths·byte-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-null·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-empty·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -323,28 +327,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·byte-empty·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-empty·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -355,7 +337,8 @@
|
|||
],
|
||||
"name": "paths·byte-nonascii·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Non-ascii base-64 encoded byte string hex(FF FE FD FC FB FA F9 F8 F7 F6)",
|
||||
|
@ -368,28 +351,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·byte-nonascii·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -404,73 +365,6 @@
|
|||
]
|
||||
},
|
||||
"description": "Empty Response"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·byte-nonascii·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-nonascii·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·byte-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid byte value '::::SWAGGER::::'",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"description": "The invalid byte value '::::SWAGGER::::'",
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·byte-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-byte.json#/components/responses/paths·byte-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -96,11 +96,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid date value",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -143,11 +143,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The overflow date value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -190,11 +190,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The underflow date value",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -245,7 +245,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -274,11 +274,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The max date value",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -319,17 +319,17 @@
|
|||
"operationId": "date_putMinDate",
|
||||
"description": "Put min date value 0000-01-01",
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:1"
|
||||
"$ref": "#/components/requestBodies/requestBodies:0"
|
||||
},
|
||||
"x-ms-requestBody-index": 0,
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The min date value",
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:13"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -362,7 +362,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:15"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -380,7 +380,11 @@
|
|||
],
|
||||
"name": "paths·date-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-invaliddate·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-overflowdate·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-underflowdate·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null date value",
|
||||
|
@ -402,139 +406,14 @@
|
|||
],
|
||||
"name": "paths·date-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-invaliddate·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-invaliddate·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid date value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-invaliddate·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-invaliddate·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-overflowdate·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-overflowdate·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The overflow date value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-overflowdate·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-overflowdate·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-underflowdate·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-underflowdate·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The underflow date value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-underflowdate·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-underflowdate·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-invaliddate·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-overflowdate·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-underflowdate·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-min·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-min·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -556,113 +435,11 @@
|
|||
],
|
||||
"name": "paths·date-max·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max date value"
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-max·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-max·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max date value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-max·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:12": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-min·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-max·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-min·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The min date value"
|
||||
},
|
||||
"responses:13": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-min·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-min·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
"description": "The max date value"
|
||||
},
|
||||
"responses:14": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -685,28 +462,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:15": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-min·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/responses/paths·date-min·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -802,29 +557,7 @@
|
|||
],
|
||||
"name": "paths·date-max·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/requestBodies/paths·date-max·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-requestBody-name": "dateBody"
|
||||
},
|
||||
"requestBodies:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·date-min·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-date.json#/components/requestBodies/paths·date-max·put·requestbody",
|
||||
"http://localhost:3000/swagger/body-date.json#/components/requestBodies/paths·date-min·put·requestbody"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -96,11 +96,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid datetime value",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -143,11 +143,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The overflow datetime value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -190,11 +190,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The underflow datetime value",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -245,7 +245,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -288,11 +288,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The max datetime value fri, 31 dec 9999 23:59:59 gmt",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -335,11 +335,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The max datetime value FRI, 31 DEC 9999 23:59:59 GMT",
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:13"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -380,17 +380,17 @@
|
|||
"operationId": "datetimerfc1123_putUtcMinDateTime",
|
||||
"description": "Put min datetime value Mon, 1 Jan 0001 00:00:00 GMT",
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:1"
|
||||
"$ref": "#/components/requestBodies/requestBodies:0"
|
||||
},
|
||||
"x-ms-requestBody-index": 0,
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The min datetime value Mon, 1 Jan 0001 00:00:00 GMT",
|
||||
"$ref": "#/components/responses/responses:14"
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:15"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -423,7 +423,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:17"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -441,7 +441,12 @@
|
|||
],
|
||||
"name": "paths·datetimerfc1123-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-invalid·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-overflow·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-underflow·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-lowercase·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-uppercase·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null datetime value",
|
||||
|
@ -463,139 +468,15 @@
|
|||
],
|
||||
"name": "paths·datetimerfc1123-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid datetime value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-overflow·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-overflow·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The overflow datetime value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-overflow·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-overflow·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-underflow·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-underflow·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The underflow datetime value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-underflow·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-underflow·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-invalid·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-overflow·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-underflow·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-lowercase·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-uppercase·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-min·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-min·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -617,157 +498,11 @@
|
|||
],
|
||||
"name": "paths·datetimerfc1123-max·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max datetime value Fri, 31 Dec 9999 23:59:59 GMT"
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-max·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-max-lowercase·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-lowercase·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max datetime value fri, 31 dec 9999 23:59:59 gmt",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-max-lowercase·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-lowercase·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:12": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-max-uppercase·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-uppercase·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max datetime value FRI, 31 DEC 9999 23:59:59 GMT",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:13": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-max-uppercase·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max-uppercase·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:14": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-min·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-max·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-min·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The min datetime value Mon, 1 Jan 0001 00:00:00 GMT"
|
||||
},
|
||||
"responses:15": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-min·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-min·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
"description": "The max datetime value Fri, 31 Dec 9999 23:59:59 GMT"
|
||||
},
|
||||
"responses:16": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -790,28 +525,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:17": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-min·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/responses/paths·datetimerfc1123-min·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -908,29 +621,7 @@
|
|||
],
|
||||
"name": "paths·datetimerfc1123-max·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/requestBodies/paths·datetimerfc1123-max·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-requestBody-name": "datetimeBody"
|
||||
},
|
||||
"requestBodies:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·datetimerfc1123-min·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/requestBodies/paths·datetimerfc1123-max·put·requestbody",
|
||||
"http://localhost:3000/swagger/body-datetime-rfc1123.json#/components/requestBodies/paths·datetimerfc1123-min·put·requestbody"
|
||||
]
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -104,7 +104,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -133,11 +133,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The positive duration value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -180,11 +180,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid duration value",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -202,7 +202,9 @@
|
|||
],
|
||||
"name": "paths·duration-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null duration value",
|
||||
|
@ -224,7 +226,10 @@
|
|||
],
|
||||
"name": "paths·duration-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-null·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -250,116 +255,6 @@
|
|||
]
|
||||
},
|
||||
"description": "A positive duration value"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·duration-positiveduration·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·duration-positiveduration·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The positive duration value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·duration-positiveduration·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-positiveduration·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·duration-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid duration value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·duration-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-duration.json#/components/responses/paths·duration-invalid·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
|
|
@ -102,11 +102,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The large file",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -152,11 +152,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The empty file stream",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -174,7 +174,9 @@
|
|||
],
|
||||
"name": "paths·files-stream-nonempty·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-nonempty·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-nonempty·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-verylarge·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-empty·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The PNG file",
|
||||
|
@ -186,7 +188,7 @@
|
|||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -201,114 +203,8 @@
|
|||
],
|
||||
"name": "paths·files-stream-nonempty·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-nonempty·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"image/png": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-verylarge·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-verylarge·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The large file",
|
||||
"content": {
|
||||
"image/png": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-verylarge·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-verylarge·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"image/png": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-empty·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-empty·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The empty file stream",
|
||||
"content": {
|
||||
"image/png": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-empty·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-nonempty·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-verylarge·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/responses/paths·files-stream-empty·get·responses·default"
|
||||
]
|
||||
},
|
||||
|
@ -338,81 +234,11 @@
|
|||
],
|
||||
"name": "paths·files-stream-nonempty·get·responses·200·content·image-png·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-nonempty·get·responses·200·content·image-png·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-nonempty·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-nonempty·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-verylarge·get·responses·200·content·image-png·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-verylarge·get·responses·200·content·image-png·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-verylarge·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-verylarge·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-empty·get·responses·200·content·image-png·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-empty·get·responses·200·content·image-png·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·files-stream-empty·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-nonempty·get·responses·200·content·image-png·schema",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-nonempty·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-verylarge·get·responses·200·content·image-png·schema",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-verylarge·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-empty·get·responses·200·content·image-png·schema",
|
||||
"http://localhost:3000/swagger/body-file.json#/components/schemas/paths·files-stream-empty·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
},
|
||||
"405": {
|
||||
"description": "Invalid input",
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -203,25 +203,11 @@
|
|||
],
|
||||
"name": "paths·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata-urlencoded.json#/components/responses/paths·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Pet updated."
|
||||
},
|
||||
"responses:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·get·responses·405",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata-urlencoded.json#/components/responses/paths·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-formdata-urlencoded.json#/components/responses/paths·get·responses·405"
|
||||
]
|
||||
},
|
||||
"description": "Invalid input"
|
||||
"description": "Pet updated."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -97,11 +97,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Serialized file stream",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -228,22 +228,10 @@
|
|||
],
|
||||
"name": "paths·formdata-stream-uploadfile·post·responses·200·content·application-octet_stream·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·post·responses·200·content·application-octet_stream·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·formdata-stream-uploadfile·post·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·post·responses·200·content·application-json·schema"
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·post·responses·200·content·application-octet_stream·schema",
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·post·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·put·responses·200·content·application-octet_stream·schema",
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·put·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
|
@ -264,36 +252,6 @@
|
|||
"type": "object",
|
||||
"format": "file"
|
||||
},
|
||||
"schemas:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·formdata-stream-uploadfile·put·responses·200·content·application-octet_stream·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·put·responses·200·content·application-octet_stream·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·formdata-stream-uploadfile·put·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/schemas/paths·formdata-stream-uploadfile·put·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "file"
|
||||
},
|
||||
"schemas:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -345,7 +303,8 @@
|
|||
],
|
||||
"name": "paths·formdata-stream-uploadfile·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·post·responses·200"
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·post·responses·200",
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Serialized file stream",
|
||||
|
@ -357,7 +316,7 @@
|
|||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -372,60 +331,7 @@
|
|||
],
|
||||
"name": "paths·formdata-stream-uploadfile·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/octet-stream": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·formdata-stream-uploadfile·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Serialized file stream",
|
||||
"content": {
|
||||
"application/octet-stream": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
},
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·formdata-stream-uploadfile·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·post·responses·default",
|
||||
"http://localhost:3000/swagger/body-formdata.json#/components/responses/paths·formdata-stream-uploadfile·put·responses·default"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -96,11 +96,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid int value",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -147,7 +147,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -190,11 +190,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The underflow Int32 value",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -241,7 +241,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -284,11 +284,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The underflow Int64 value",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -339,7 +339,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:13"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -386,11 +386,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The max int64 value",
|
||||
"$ref": "#/components/responses/responses:14"
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:15"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -431,17 +431,17 @@
|
|||
"operationId": "int_putMin32",
|
||||
"description": "Put min int32 value",
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:2"
|
||||
"$ref": "#/components/requestBodies/requestBodies:0"
|
||||
},
|
||||
"x-ms-requestBody-index": 0,
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The min int32 value",
|
||||
"$ref": "#/components/responses/responses:16"
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:17"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -482,17 +482,17 @@
|
|||
"operationId": "int_putMin64",
|
||||
"description": "Put min int64 value",
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:3"
|
||||
"$ref": "#/components/requestBodies/requestBodies:1"
|
||||
},
|
||||
"x-ms-requestBody-index": 0,
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The min int64 value",
|
||||
"$ref": "#/components/responses/responses:18"
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:19"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -539,7 +539,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:21"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -572,11 +572,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The datetime value encoded as Unix time",
|
||||
"$ref": "#/components/responses/responses:22"
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:23"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -619,11 +619,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The invalid Unix time value",
|
||||
"$ref": "#/components/responses/responses:24"
|
||||
"$ref": "#/components/responses/responses:20"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:25"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -666,11 +666,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "The null Unix time value",
|
||||
"$ref": "#/components/responses/responses:26"
|
||||
"$ref": "#/components/responses/responses:20"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:27"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -688,7 +688,8 @@
|
|||
],
|
||||
"name": "paths·int-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null int value",
|
||||
|
@ -710,51 +711,20 @@
|
|||
],
|
||||
"name": "paths·int-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid int value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalid·get·responses·default"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalid·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint32·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint32·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint64·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint64·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-32·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-64·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-32·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-64·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·put·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalidunixtime·get·responses·default",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-nullunixtime·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -776,7 +746,8 @@
|
|||
],
|
||||
"name": "paths·int-overflowint32·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint32·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint32·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint32·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The overflow Int32 value",
|
||||
|
@ -788,72 +759,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-overflowint32·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint32·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint32·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint32·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The underflow Int32 value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint32·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint32·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -864,7 +769,8 @@
|
|||
],
|
||||
"name": "paths·int-overflowint64·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint64·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint64·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint64·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The overflow Int64 value",
|
||||
|
@ -876,72 +782,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-overflowint64·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-overflowint64·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint64·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint64·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The underflow Int64 value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint64·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-underflowint64·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:12": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -952,144 +792,15 @@
|
|||
],
|
||||
"name": "paths·int-max-32·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-32·put·responses·200"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-32·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-64·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-32·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-64·put·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max int32 value"
|
||||
},
|
||||
"responses:13": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-max-32·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-32·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:14": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-max-64·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-64·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The max int64 value"
|
||||
},
|
||||
"responses:15": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-max-64·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-max-64·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:16": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-32·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-32·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The min int32 value"
|
||||
},
|
||||
"responses:17": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-32·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-32·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:18": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-64·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-64·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The min int64 value"
|
||||
},
|
||||
"responses:19": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-64·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-min-64·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:20": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1100,7 +811,9 @@
|
|||
],
|
||||
"name": "paths·int-unixtime·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·get·responses·200"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalidunixtime·get·responses·200",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-nullunixtime·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The date value encoded as Unix time",
|
||||
|
@ -1111,153 +824,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:21": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-unixtime·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:22": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-unixtime·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The datetime value encoded as Unix time"
|
||||
},
|
||||
"responses:23": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-unixtime·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-unixtime·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:24": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalidunixtime·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalidunixtime·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The invalid Unix time value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:12"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:25": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalidunixtime·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-invalidunixtime·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:26": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-nullunixtime·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-nullunixtime·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "The null Unix time value",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:27": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-nullunixtime·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/responses/paths·int-nullunixtime·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:14"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -1271,21 +837,7 @@
|
|||
],
|
||||
"name": "paths·int-null·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-null·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalid·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-null·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-invalid·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -1301,23 +853,10 @@
|
|||
],
|
||||
"name": "paths·int-overflowint32·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-overflowint32·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint32·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-underflowint32·get·responses·200·content·application-json·schema"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-overflowint32·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-underflowint32·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-max-32·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-min-32·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
|
@ -1333,86 +872,9 @@
|
|||
],
|
||||
"name": "paths·int-overflowint64·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-overflowint64·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-underflowint64·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-underflowint64·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"schemas:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-max-32·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-max-32·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"schemas:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-max-64·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-max-64·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"schemas:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-32·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-min-32·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"schemas:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-64·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-overflowint64·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-underflowint64·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-max-64·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-min-64·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -1429,54 +891,9 @@
|
|||
],
|
||||
"name": "paths·int-unixtime·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-unixtime·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "unixtime"
|
||||
},
|
||||
"schemas:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-unixtime·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-unixtime·put·requestbody·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "unixtime"
|
||||
},
|
||||
"schemas:12": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-invalidunixtime·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-invalidunixtime·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "integer",
|
||||
"format": "unixtime"
|
||||
},
|
||||
"schemas:13": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-nullunixtime·get·responses·200·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-unixtime·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-unixtime·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-invalidunixtime·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/schemas/paths·int-nullunixtime·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
|
@ -1534,13 +951,14 @@
|
|||
],
|
||||
"name": "paths·int-max-32·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-max-32·put·requestbody"
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-max-32·put·requestbody",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-min-32·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -1557,59 +975,14 @@
|
|||
],
|
||||
"name": "paths·int-max-64·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-max-64·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-requestBody-name": "intBody"
|
||||
},
|
||||
"requestBodies:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-32·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-min-32·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:8"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-requestBody-name": "intBody"
|
||||
},
|
||||
"requestBodies:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·int-min-64·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-max-64·put·requestbody",
|
||||
"http://localhost:3000/swagger/body-integer.json#/components/requestBodies/paths·int-min-64·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:9"
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -1632,7 +1005,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:11"
|
||||
"$ref": "#/components/schemas/schemas:10"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -102,7 +102,7 @@
|
|||
"description": "Subscription ID."
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:2",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "Resource Group ID."
|
||||
},
|
||||
{
|
||||
|
@ -124,7 +124,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -153,11 +153,11 @@
|
|||
"description": "Resets products.",
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:3",
|
||||
"$ref": "#/components/parameters/parameters:1",
|
||||
"description": "Subscription ID."
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:4",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "Resource Group ID."
|
||||
},
|
||||
{
|
||||
|
@ -175,11 +175,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "A list of caches",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -197,7 +197,9 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1"
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "resourceGroupName",
|
||||
|
@ -219,50 +221,7 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "subscriptionId",
|
||||
"in": "path",
|
||||
"description": "Subscription ID.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "resourceGroupName",
|
||||
"in": "path",
|
||||
"description": "Resource Group ID.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·0"
|
||||
]
|
||||
},
|
||||
|
@ -270,29 +229,7 @@
|
|||
"in": "path",
|
||||
"description": "Subscription ID.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "resourceGroupName",
|
||||
"in": "path",
|
||||
"description": "Resource Group ID.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -357,66 +294,10 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
|
@ -792,7 +673,8 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·200"
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·200",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "A list of caches",
|
||||
|
@ -814,7 +696,9 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·default"
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·get·responses·default",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·responses·default",
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -847,72 +731,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:21"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "A list of caches",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/complex-model.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-microsoft-cache-redis·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:21"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"requestBodies": {
|
||||
|
|
|
@ -158,7 +158,7 @@
|
|||
"in": "path",
|
||||
"description": "The subscription id with value 'test12'.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
|
@ -196,7 +196,8 @@
|
|||
],
|
||||
"name": "paths·customuri-subscriptionid-keyname·get·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/custom-baseUrl-more-options.json#/components/schemas/paths·customuri-subscriptionid-keyname·get·parameters·0·schema"
|
||||
"http://localhost:3000/swagger/custom-baseUrl-more-options.json#/components/schemas/paths·customuri-subscriptionid-keyname·get·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/custom-baseUrl-more-options.json#/components/schemas/components·parameters·subscriptionidparameter·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -217,21 +218,6 @@
|
|||
"default": "v1",
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·parameters·subscriptionidparameter·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/custom-baseUrl-more-options.json#/components/schemas/components·parameters·subscriptionidparameter·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
|
|
@ -4502,7 +4502,22 @@
|
|||
],
|
||||
"name": "paths·filesystem-path·patch·requestbody·content·application-octet_stream·schema",
|
||||
"originalLocations": [
|
||||
"https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2019-10-31/DataLakeStorage.json#/components/schemas/paths·filesystem-path·patch·requestbody·content·application-octet_stream·schema",
|
||||
"https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2019-10-31/DataLakeStorage.json#/components/schemas/paths·filesystem-path·patch·requestbody·content·application-octet_stream·schema"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
"format": "file"
|
||||
},
|
||||
"schemas:148": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2019-10-31"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·filesystem-path·patch·requestbody·content·text-plain·schema",
|
||||
"originalLocations": [
|
||||
"https://github.com/Azure/azure-rest-api-specs/blob/master/specification/storage/data-plane/Microsoft.StorageDataLake/stable/2019-10-31/DataLakeStorage.json#/components/schemas/paths·filesystem-path·patch·requestbody·content·text-plain·schema"
|
||||
]
|
||||
},
|
||||
|
@ -9936,7 +9951,7 @@
|
|||
},
|
||||
"text/plain": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:147"
|
||||
"$ref": "#/components/schemas/schemas:148"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -141,28 +141,7 @@
|
|||
],
|
||||
"name": "paths·extensibleenums-pet-petid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/extensible-enums-swagger.json#/components/responses/paths·extensibleenums-pet-petid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2016-07-07"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·extensibleenums-pet-addpet·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/extensible-enums-swagger.json#/components/responses/paths·extensibleenums-pet-petid·get·responses·200",
|
||||
"http://localhost:3000/swagger/extensible-enums-swagger.json#/components/responses/paths·extensibleenums-pet-addpet·post·responses·200"
|
||||
]
|
||||
},
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -102,11 +102,11 @@
|
|||
"responses": {
|
||||
"204": {
|
||||
"description": "Successfully returns the true boolean value",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -152,11 +152,11 @@
|
|||
"responses": {
|
||||
"204": {
|
||||
"description": "Successfully returns the true boolean value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -174,85 +174,15 @@
|
|||
],
|
||||
"name": "paths·http-success-200·head·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-200·head·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-200·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-200·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-204·head·responses·204",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-204·head·responses·204"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-204·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-204·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-404·head·responses·204",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-404·head·responses·204"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-404·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-200·head·responses·200",
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-200·head·responses·default",
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-204·head·responses·204",
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-204·head·responses·default",
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-404·head·responses·204",
|
||||
"http://localhost:3000/swagger/head-exceptions.json#/components/responses/paths·http-success-404·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
"description": "Successfully returns the true boolean value"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -56,11 +56,11 @@
|
|||
},
|
||||
"404": {
|
||||
"description": "Successfully returns the false boolean value",
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -106,15 +106,15 @@
|
|||
"responses": {
|
||||
"204": {
|
||||
"description": "Successfully returns the true boolean value",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"404": {
|
||||
"description": "Successfully returns the false boolean value",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -160,15 +160,15 @@
|
|||
"responses": {
|
||||
"204": {
|
||||
"description": "Successfully returns the true boolean value",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"404": {
|
||||
"description": "Successfully returns the false boolean value",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -186,130 +186,18 @@
|
|||
],
|
||||
"name": "paths·http-success-200·head·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-200·head·responses·404",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·404"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the false boolean value"
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-200·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-204·head·responses·204",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·204"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-204·head·responses·404",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·404"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the false boolean value"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-204·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-404·head·responses·204",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-404·head·responses·204"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the true boolean value"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-404·head·responses·404",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-404·head·responses·404"
|
||||
]
|
||||
},
|
||||
"description": "Successfully returns the false boolean value"
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·http-success-404·head·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·200",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·404",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-200·head·responses·default",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·204",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·404",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-204·head·responses·default",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-404·head·responses·204",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-404·head·responses·404",
|
||||
"http://localhost:3000/swagger/head.json#/components/responses/paths·http-success-404·head·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error"
|
||||
"description": "Successfully returns the true boolean value"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -97,7 +97,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -148,11 +148,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -188,7 +188,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -239,11 +239,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -279,7 +279,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:11"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -330,11 +330,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:12"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:13"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -370,7 +370,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:15"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -425,7 +425,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:17"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -463,11 +463,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:18"
|
||||
"$ref": "#/components/responses/responses:16"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:19"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -525,11 +525,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successful Response",
|
||||
"$ref": "#/components/responses/responses:20"
|
||||
"$ref": "#/components/responses/responses:16"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:21"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -788,11 +788,10 @@
|
|||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"name": "paths·model_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/paths·model_flatten-dictionary·put·requestbody·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/paths·model_flatten-dictionary·get·responses·200·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/paths·model_flatten-dictionary·get·responses·200·content·application-json·schema"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
|
@ -800,21 +799,6 @@
|
|||
"$ref": "#/components/schemas/schemas:16"
|
||||
}
|
||||
},
|
||||
"schemas:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening-parametergrouping-name·put·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/paths·model_flatten-customflattening-parametergrouping-name·put·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -959,7 +943,8 @@
|
|||
],
|
||||
"name": "components·schemas·resource·properties·tags·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/components·schemas·resource·properties·tags·additionalproperties"
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/components·schemas·resource·properties·tags·additionalproperties",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/paths·model_flatten-customflattening-parametergrouping-name·put·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -1126,7 +1111,7 @@
|
|||
"$ref": "#/components/schemas/schemas:23"
|
||||
},
|
||||
"dictionaryofresources": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
"$ref": "#/components/schemas/schemas:24"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -1148,6 +1133,24 @@
|
|||
"$ref": "#/components/schemas/schemas:16"
|
||||
}
|
||||
},
|
||||
"schemas:24": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "ResourceCollection-dictionaryofresources",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/schemas/ResourceCollection-dictionaryofresources"
|
||||
]
|
||||
},
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:16"
|
||||
}
|
||||
},
|
||||
"schemas:25": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1495,7 +1498,10 @@
|
|||
],
|
||||
"name": "paths·model_flatten-array·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·put·responses·200"
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·put·responses·200",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·put·responses·200",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·put·responses·200",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
|
@ -1510,7 +1516,17 @@
|
|||
],
|
||||
"name": "paths·model_flatten-array·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·put·responses·default"
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·put·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·get·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·put·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·get·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·put·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·get·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·put·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·get·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·put·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·post·responses·default",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening-parametergrouping-name·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
|
@ -1544,65 +1560,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-array·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-array·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-wrappedarray·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-wrappedarray·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1625,65 +1582,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-wrappedarray·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-wrappedarray·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:8": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-dictionary·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-dictionary·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1706,65 +1604,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-dictionary·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-dictionary·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:12": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-resourcecollection·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response"
|
||||
},
|
||||
"responses:13": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-resourcecollection·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:14": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1787,28 +1626,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:15": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-resourcecollection·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-resourcecollection·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:16": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1819,96 +1636,8 @@
|
|||
],
|
||||
"name": "paths·model_flatten-customflattening·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"$ref": "#/components/schemas/schemas:28"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:17": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:18": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successful Response",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"$ref": "#/components/schemas/schemas:28"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:19": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening·post·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·post·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:20": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening-parametergrouping-name·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·put·responses·200",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening·post·responses·200",
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening-parametergrouping-name·put·responses·200"
|
||||
]
|
||||
},
|
||||
|
@ -1921,28 +1650,6 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:21": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·model_flatten-customflattening-parametergrouping-name·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/model-flattening.json#/components/responses/paths·model_flatten-customflattening-parametergrouping-name·put·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": {
|
||||
|
@ -1966,7 +1673,7 @@
|
|||
"name": "flatten-parameter-group"
|
||||
},
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
"$ref": "#/components/schemas/schemas:13"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -135,7 +135,8 @@
|
|||
],
|
||||
"name": "paths·parameterflattening-resourcegroupname-availabilitysetname·patch·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/parameter-flattening.json#/components/schemas/paths·parameterflattening-resourcegroupname-availabilitysetname·patch·parameters·0·schema"
|
||||
"http://localhost:3000/swagger/parameter-flattening.json#/components/schemas/paths·parameterflattening-resourcegroupname-availabilitysetname·patch·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/parameter-flattening.json#/components/schemas/components·schemas·availabilitysetupdateparameters·properties·tags·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -197,23 +198,8 @@
|
|||
"title": "A set of tags.",
|
||||
"description": "A description about the set of tags.",
|
||||
"additionalProperties": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·schemas·availabilitysetupdateparameters·properties·tags·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/parameter-flattening.json#/components/schemas/components·schemas·availabilitysetupdateparameters·properties·tags·additionalproperties"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"requestBodies": {
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -169,7 +169,7 @@
|
|||
"$ref": "#/components/parameters/parameters:8"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:1",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. "
|
||||
},
|
||||
{
|
||||
|
@ -182,11 +182,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
},
|
||||
"204": {
|
||||
"description": "No Content",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -220,7 +220,7 @@
|
|||
"$ref": "#/components/parameters/parameters:8"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:2",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. "
|
||||
},
|
||||
{
|
||||
|
@ -233,7 +233,7 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -267,7 +267,7 @@
|
|||
"$ref": "#/components/parameters/parameters:8"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:3",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. "
|
||||
},
|
||||
{
|
||||
|
@ -285,7 +285,7 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:6"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -333,7 +333,7 @@
|
|||
"$ref": "#/components/parameters/parameters:8"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:4",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "The name of the storage account."
|
||||
},
|
||||
{
|
||||
|
@ -460,7 +460,7 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:9"
|
||||
"$ref": "#/components/responses/responses:8"
|
||||
}
|
||||
},
|
||||
"x-ms-pageable": {
|
||||
|
@ -511,7 +511,7 @@
|
|||
"$ref": "#/components/parameters/parameters:8"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:5",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. "
|
||||
},
|
||||
{
|
||||
|
@ -529,7 +529,7 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"$ref": "#/components/responses/responses:10"
|
||||
"$ref": "#/components/responses/responses:7"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -709,96 +709,6 @@
|
|||
}
|
||||
},
|
||||
"schemas": {
|
||||
"schemas:0": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1297,7 +1207,7 @@
|
|||
},
|
||||
"key2": {
|
||||
"description": "Gets the value of key 2.",
|
||||
"$ref": "#/components/schemas/schemas:35"
|
||||
"$ref": "#/components/schemas/schemas:34"
|
||||
}
|
||||
},
|
||||
"description": "The access keys for the storage account."
|
||||
|
@ -1312,27 +1222,12 @@
|
|||
],
|
||||
"name": "StorageAccountKeys-key1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountKeys-key1"
|
||||
]
|
||||
},
|
||||
"type": "string",
|
||||
"description": "Gets the value of key 1."
|
||||
},
|
||||
"schemas:35": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "StorageAccountKeys-key2",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountKeys-key1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountKeys-key2"
|
||||
]
|
||||
},
|
||||
"type": "string",
|
||||
"description": "Gets the value of key 2."
|
||||
"description": "Gets the value of key 1."
|
||||
},
|
||||
"schemas:36": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -1742,7 +1637,16 @@
|
|||
],
|
||||
"name": "components·schemas·resource·properties·tags·additionalproperties",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·schemas·resource·properties·tags·additionalproperties"
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·schemas·resource·properties·tags·additionalproperties",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·subscriptionidparameter·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·apiversionparameter·schema",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·resourcegroupname·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -1785,51 +1689,6 @@
|
|||
"type": "string",
|
||||
"description": "Resource Id"
|
||||
},
|
||||
"schemas:60": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·parameters·subscriptionidparameter·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·subscriptionidparameter·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:61": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·parameters·apiversionparameter·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·apiversionparameter·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:62": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·parameters·resourcegroupname·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/components·parameters·resourcegroupname·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"Reason": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -1863,21 +1722,23 @@
|
|||
],
|
||||
"name": "AccountType",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountPropertiesCreateParameters-accountType"
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountPropertiesCreateParameters-accountType",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountProperties-accountType",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountPropertiesUpdateParameters-accountType"
|
||||
]
|
||||
},
|
||||
"description": "Gets or sets the account type.",
|
||||
"x-ms-enum": {
|
||||
"name": "AccountType"
|
||||
},
|
||||
"type": "string",
|
||||
"description": "Gets or sets the account type.",
|
||||
"enum": [
|
||||
"Standard_LRS",
|
||||
"Standard_ZRS",
|
||||
"Standard_GRS",
|
||||
"Standard_RAGRS",
|
||||
"Premium_LRS"
|
||||
]
|
||||
],
|
||||
"x-ms-enum": {
|
||||
"name": "AccountType"
|
||||
}
|
||||
},
|
||||
"ProvisioningState": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -1913,18 +1774,19 @@
|
|||
],
|
||||
"name": "AccountStatus",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountProperties-statusOfPrimary"
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountProperties-statusOfPrimary",
|
||||
"http://localhost:3000/swagger/storage.json#/components/schemas/StorageAccountProperties-statusOfSecondary"
|
||||
]
|
||||
},
|
||||
"description": "Gets the status indicating whether the primary location of the storage account is available or unavailable.",
|
||||
"x-ms-enum": {
|
||||
"name": "AccountStatus"
|
||||
},
|
||||
"type": "string",
|
||||
"description": "Gets the status indicating whether the primary location of the storage account is available or unavailable.",
|
||||
"enum": [
|
||||
"Available",
|
||||
"Unavailable"
|
||||
]
|
||||
],
|
||||
"x-ms-enum": {
|
||||
"name": "AccountStatus"
|
||||
}
|
||||
},
|
||||
"KeyName": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -1987,116 +1849,11 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "accountName",
|
||||
"in": "path",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. ",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "accountName",
|
||||
"in": "path",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. ",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "accountName",
|
||||
"in": "path",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. ",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "accountName",
|
||||
"in": "path",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. ",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "accountName",
|
||||
"in": "path",
|
||||
"description": "The name of the storage account.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·parameters·1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·parameters·1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·parameters·1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·parameters·1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·parameters·1",
|
||||
"http://localhost:3000/swagger/storage.json#/components/parameters/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·parameters·1"
|
||||
]
|
||||
},
|
||||
|
@ -2104,7 +1861,7 @@
|
|||
"in": "path",
|
||||
"description": "The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only. ",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
"$ref": "#/components/schemas/schemas:57"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -2126,7 +1883,7 @@
|
|||
"in": "path",
|
||||
"description": "Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:60"
|
||||
"$ref": "#/components/schemas/schemas:57"
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
|
@ -2147,7 +1904,7 @@
|
|||
"in": "query",
|
||||
"description": "Client Api Version.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:61"
|
||||
"$ref": "#/components/schemas/schemas:57"
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
|
@ -2169,7 +1926,7 @@
|
|||
"description": "The name of the resource group within the user’s subscription.",
|
||||
"x-ms-parameter-location": "method",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:62"
|
||||
"$ref": "#/components/schemas/schemas:57"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
|
@ -2212,7 +1969,9 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·200"
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·200",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·responses·200",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
|
@ -2239,94 +1998,12 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·202",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·202"
|
||||
]
|
||||
},
|
||||
"description": "Accepted"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK"
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·responses·204",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·put·responses·202",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·responses·200",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·delete·responses·204"
|
||||
]
|
||||
},
|
||||
"description": "No Content"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:32"
|
||||
}
|
||||
},
|
||||
"text/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:32"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname·patch·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:32"
|
||||
}
|
||||
},
|
||||
"text/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:32"
|
||||
}
|
||||
}
|
||||
}
|
||||
"description": "Accepted"
|
||||
},
|
||||
"responses:7": {
|
||||
"x-ms-metadata": {
|
||||
|
@ -2338,7 +2015,8 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·responses·200"
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-listkeys·post·responses·200",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
|
@ -2365,33 +2043,7 @@
|
|||
],
|
||||
"name": "paths·subscriptions-subscriptionid-providers-microsoft-storage-storageaccounts·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-providers-microsoft-storage-storageaccounts·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:36"
|
||||
}
|
||||
},
|
||||
"text/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:36"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:9": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-providers-microsoft-storage-storageaccounts·get·responses·200",
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts·get·responses·200"
|
||||
]
|
||||
},
|
||||
|
@ -2409,33 +2061,6 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"responses:10": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2015-05-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/storage.json#/components/responses/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname-providers-microsoft-storage-storageaccounts-accountname-regeneratekey·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:33"
|
||||
}
|
||||
},
|
||||
"text/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:33"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:11": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
"in": "query",
|
||||
"description": "API Version with value '2014-04-01-preview'.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
|
@ -71,7 +71,7 @@
|
|||
"in": "path",
|
||||
"description": "Resource Group name 'testgroup101'.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:7"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -88,22 +88,9 @@
|
|||
],
|
||||
"name": "components·parameters·subscriptionidparameter·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/components·parameters·subscriptionidparameter·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "components·parameters·apiversionparameter·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/components·parameters·apiversionparameter·schema"
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/components·parameters·subscriptionidparameter·schema",
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/components·parameters·apiversionparameter·schema",
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname·get·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -203,21 +190,6 @@
|
|||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:7": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"2014-04-01-preview"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname·get·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/subscriptionId-apiVersion.json#/components/schemas/paths·subscriptions-subscriptionid-resourcegroups-resourcegroupname·get·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
|
|
|
@ -114,11 +114,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "Successfully received no query parameters",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -163,18 +163,18 @@
|
|||
],
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:2",
|
||||
"$ref": "#/components/parameters/parameters:1",
|
||||
"description": "an array of string ['ArrayQuery1', 'begin!*'();:@ &=+$,/?#[]end' , null, ''] using the mult-array format"
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Successfully received ?arrayQuery=ArrayQuery1%2cbegin%21%2A%27%28%29%3B%3A%40%20%26%3D%2B%24%2C%2F%3F%23%5B%5Dend%2c%2c",
|
||||
"$ref": "#/components/responses/responses:4"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -214,7 +214,8 @@
|
|||
],
|
||||
"name": "paths·queries-array-multi-string-empty·get·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/parameters/paths·queries-array-multi-string-empty·get·parameters·0"
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/parameters/paths·queries-array-multi-string-empty·get·parameters·0",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/parameters/paths·queries-array-multi-string-valid·get·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "arrayQuery",
|
||||
|
@ -225,28 +226,6 @@
|
|||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-valid·get·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/parameters/paths·queries-array-multi-string-valid·get·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "arrayQuery",
|
||||
"in": "query",
|
||||
"description": "an array of string ['ArrayQuery1', 'begin!*'();:@ &=+$,/?#[]end' , null, ''] using the mult-array format",
|
||||
"explode": true,
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
},
|
||||
"x-ms-parameter-location": "method"
|
||||
}
|
||||
},
|
||||
"schemas": {
|
||||
|
@ -293,7 +272,8 @@
|
|||
],
|
||||
"name": "paths·queries-array-multi-string-empty·get·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-empty·get·parameters·0·schema"
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-empty·get·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-valid·get·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "array",
|
||||
|
@ -311,39 +291,7 @@
|
|||
],
|
||||
"name": "paths·queries-array-multi-string-empty·get·parameters·0·schema·items",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-empty·get·parameters·0·schema·items"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-valid·get·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-valid·get·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/schemas:5"
|
||||
}
|
||||
},
|
||||
"schemas:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-valid·get·parameters·0·schema·items",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-empty·get·parameters·0·schema·items",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/schemas/paths·queries-array-multi-string-valid·get·parameters·0·schema·items"
|
||||
]
|
||||
},
|
||||
|
@ -400,7 +348,9 @@
|
|||
],
|
||||
"name": "paths·queries-array-multi-string-null·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-null·get·responses·200"
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-null·get·responses·200",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-empty·get·responses·200",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-valid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successfully received no query parameters"
|
||||
|
@ -415,80 +365,8 @@
|
|||
],
|
||||
"name": "paths·queries-array-multi-string-null·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-null·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-empty·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-empty·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successfully received no query parameters"
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-empty·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-empty·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:6"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-valid·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-valid·get·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Successfully received ?arrayQuery=ArrayQuery1%2cbegin%21%2A%27%28%29%3B%3A%40%20%26%3D%2B%24%2C%2F%3F%23%5B%5Dend%2c%2c"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·queries-array-multi-string-valid·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-null·get·responses·default",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-empty·get·responses·default",
|
||||
"http://localhost:3000/swagger/url-multi-collectionFormat.json#/components/responses/paths·queries-array-multi-string-valid·get·responses·default"
|
||||
]
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -105,11 +105,11 @@
|
|||
"$ref": "#/components/parameters/parameters:6"
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:2",
|
||||
"$ref": "#/components/parameters/parameters:0",
|
||||
"description": "Required string between 3 and 10 chars with pattern [a-zA-Z0-9]+."
|
||||
},
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:3",
|
||||
"$ref": "#/components/parameters/parameters:1",
|
||||
"description": "Required int multiple of 10 from 100 to 1000."
|
||||
},
|
||||
{
|
||||
|
@ -126,11 +126,11 @@
|
|||
"responses": {
|
||||
"200": {
|
||||
"description": "A list of caches",
|
||||
"$ref": "#/components/responses/responses:2"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
},
|
||||
"default": {
|
||||
"description": "Unexpected error",
|
||||
"$ref": "#/components/responses/responses:3"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -204,17 +204,17 @@
|
|||
"operationId": "postWithConstantInBody",
|
||||
"parameters": [
|
||||
{
|
||||
"$ref": "#/components/parameters/parameters:5"
|
||||
"$ref": "#/components/parameters/parameters:4"
|
||||
}
|
||||
],
|
||||
"requestBody": {
|
||||
"$ref": "#/components/requestBodies/requestBodies:1"
|
||||
"$ref": "#/components/requestBodies/requestBodies:0"
|
||||
},
|
||||
"x-ms-requestBody-index": 1,
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -232,7 +232,8 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1"
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1",
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "resourceGroupName",
|
||||
|
@ -254,50 +255,7 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2"
|
||||
]
|
||||
},
|
||||
"name": "id",
|
||||
"in": "path",
|
||||
"description": "Required int multiple of 10 from 100 to 1000.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1"
|
||||
]
|
||||
},
|
||||
"name": "resourceGroupName",
|
||||
"in": "path",
|
||||
"description": "Required string between 3 and 10 chars with pattern [a-zA-Z0-9]+.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:2"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·2",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2",
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·2"
|
||||
]
|
||||
},
|
||||
|
@ -305,7 +263,7 @@
|
|||
"in": "path",
|
||||
"description": "Required int multiple of 10 from 100 to 1000.",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -320,30 +278,7 @@
|
|||
],
|
||||
"name": "paths·validation-constantsinpath-constantparam-value·get·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·validation-constantsinpath-constantparam-value·get·parameters·0"
|
||||
]
|
||||
},
|
||||
"name": "constantParam",
|
||||
"in": "path",
|
||||
"schema": {
|
||||
"enum": [
|
||||
"constant"
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
},
|
||||
"parameters:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·validation-constantsinpath-constantparam-value·post·parameters·0",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·validation-constantsinpath-constantparam-value·get·parameters·0",
|
||||
"http://localhost:3000/swagger/validation.json#/components/parameters/paths·validation-constantsinpath-constantparam-value·post·parameters·0"
|
||||
]
|
||||
},
|
||||
|
@ -412,7 +347,8 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1·schema"
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·1·schema",
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"maxLength": 10,
|
||||
|
@ -430,42 +366,7 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2·schema"
|
||||
]
|
||||
},
|
||||
"multipleOf": 10,
|
||||
"maximum": 1000,
|
||||
"minimum": 100,
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·1·schema"
|
||||
]
|
||||
},
|
||||
"maxLength": 10,
|
||||
"minLength": 3,
|
||||
"pattern": "[a-zA-Z0-9]+",
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·2·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·parameters·2·schema",
|
||||
"http://localhost:3000/swagger/validation.json#/components/schemas/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·parameters·2·schema"
|
||||
]
|
||||
},
|
||||
|
@ -847,7 +748,9 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·200"
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·200",
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·responses·200",
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·validation-constantsinpath-constantparam-value·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "A list of caches",
|
||||
|
@ -869,50 +772,7 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "Unexpected error",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:15"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:2": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "A list of caches",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·get·responses·default",
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·responses·default"
|
||||
]
|
||||
},
|
||||
|
@ -939,28 +799,6 @@
|
|||
]
|
||||
},
|
||||
"description": "Success"
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·validation-constantsinpath-constantparam-value·post·responses·200",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/responses/paths·validation-constantsinpath-constantparam-value·post·responses·200"
|
||||
]
|
||||
},
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"requestBodies": {
|
||||
|
@ -974,28 +812,7 @@
|
|||
],
|
||||
"name": "paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/requestBodies/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·requestbody"
|
||||
]
|
||||
},
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:4"
|
||||
}
|
||||
}
|
||||
},
|
||||
"x-ms-requestBody-name": "body"
|
||||
},
|
||||
"requestBodies:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"1.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·validation-constantsinpath-constantparam-value·post·requestbody",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/validation.json#/components/requestBodies/paths·fakepath-subscriptionid-resourcegroupname-id-api_version-apiversion·put·requestbody",
|
||||
"http://localhost:3000/swagger/validation.json#/components/requestBodies/paths·validation-constantsinpath-constantparam-value·post·requestbody"
|
||||
]
|
||||
},
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -75,7 +75,7 @@
|
|||
},
|
||||
"default": {
|
||||
"description": "default stuff",
|
||||
"$ref": "#/components/responses/responses:5"
|
||||
"$ref": "#/components/responses/responses:1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -179,7 +179,7 @@
|
|||
"in": "path",
|
||||
"description": "what action the pet should do",
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:3"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
},
|
||||
"required": true,
|
||||
"x-ms-parameter-location": "method"
|
||||
|
@ -196,22 +196,9 @@
|
|||
],
|
||||
"name": "paths·errorstatuscodes-pets-petid-getpet·get·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-petid-getpet·get·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:1": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"0.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·errorstatuscodes-pets-petid-getpet·get·responses·400·content·application-json·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-petid-getpet·get·responses·400·content·application-json·schema"
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-petid-getpet·get·parameters·0·schema",
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-petid-getpet·get·responses·400·content·application-json·schema",
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-dosomething-whataction·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
|
@ -231,21 +218,6 @@
|
|||
},
|
||||
"type": "integer"
|
||||
},
|
||||
"schemas:3": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"0.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·errorstatuscodes-pets-dosomething-whataction·post·parameters·0·schema",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/schemas/paths·errorstatuscodes-pets-dosomething-whataction·post·parameters·0·schema"
|
||||
]
|
||||
},
|
||||
"type": "string"
|
||||
},
|
||||
"schemas:4": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
@ -711,7 +683,8 @@
|
|||
],
|
||||
"name": "paths·errorstatuscodes-pets-petid-getpet·get·responses·202",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/responses/paths·errorstatuscodes-pets-petid-getpet·get·responses·202"
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/responses/paths·errorstatuscodes-pets-petid-getpet·get·responses·202",
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/responses/paths·errorstatuscodes-pets-petid-getpet·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "something something dark side"
|
||||
|
@ -733,7 +706,7 @@
|
|||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/schemas:1"
|
||||
"$ref": "#/components/schemas/schemas:0"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -785,21 +758,6 @@
|
|||
},
|
||||
"x-ms-error-response": true
|
||||
},
|
||||
"responses:5": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
"0.0.0"
|
||||
],
|
||||
"filename": [
|
||||
"mem:///94?oai3.shaken.json"
|
||||
],
|
||||
"name": "paths·errorstatuscodes-pets-petid-getpet·get·responses·default",
|
||||
"originalLocations": [
|
||||
"http://localhost:3000/swagger/xms-error-responses.json#/components/responses/paths·errorstatuscodes-pets-petid-getpet·get·responses·default"
|
||||
]
|
||||
},
|
||||
"description": "default stuff"
|
||||
},
|
||||
"responses:6": {
|
||||
"x-ms-metadata": {
|
||||
"apiVersions": [
|
||||
|
|
|
@ -34,7 +34,7 @@ schemas: !<!Schemas>
|
|||
- *ref_0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_9
|
||||
schema: !<!BooleanSchema> &ref_11
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -62,7 +62,7 @@ schemas: !<!Schemas>
|
|||
- *ref_2
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_14
|
||||
schema: !<!NumberSchema> &ref_16
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -96,7 +96,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_8
|
||||
schema: !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -117,14 +117,14 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_33
|
||||
- !<!ObjectSchema> &ref_31
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_15
|
||||
schema: !<!NumberSchema> &ref_17
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -162,7 +162,7 @@ schemas: !<!Schemas>
|
|||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- !<!ObjectSchema> &ref_34
|
||||
- !<!ObjectSchema> &ref_32
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -187,7 +187,7 @@ schemas: !<!Schemas>
|
|||
- *ref_3
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_16
|
||||
schema: !<!NumberSchema> &ref_18
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -221,7 +221,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_10
|
||||
schema: !<!BooleanSchema> &ref_12
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -242,7 +242,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_35
|
||||
- !<!ObjectSchema> &ref_33
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -251,7 +251,7 @@ schemas: !<!Schemas>
|
|||
all:
|
||||
- !<!DictionarySchema> &ref_4
|
||||
type: dictionary
|
||||
elementType: !<!StringSchema> &ref_25
|
||||
elementType: !<!StringSchema> &ref_5
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -270,7 +270,69 @@ schemas: !<!Schemas>
|
|||
- *ref_4
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_17
|
||||
schema: !<!NumberSchema> &ref_19
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForid
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
required: true
|
||||
serializedName: id
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: id
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_25
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString-name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: name
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_13
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForstatus
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
readOnly: true
|
||||
required: false
|
||||
serializedName: status
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: status
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString
|
||||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_34
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_20
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -287,68 +349,6 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_26
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString-name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: name
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_11
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForstatus
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
readOnly: true
|
||||
required: false
|
||||
serializedName: status
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: status
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString
|
||||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_36
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_18
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForid
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
required: true
|
||||
serializedName: id
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: id
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_27
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -366,7 +366,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_12
|
||||
schema: !<!BooleanSchema> &ref_14
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -382,9 +382,9 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_6
|
||||
schema: !<!DictionarySchema> &ref_8
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_19
|
||||
elementType: !<!NumberSchema> &ref_7
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -413,35 +413,26 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_37
|
||||
- !<!ObjectSchema> &ref_35
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
parents: !<!Relations>
|
||||
all:
|
||||
- !<!DictionarySchema> &ref_5
|
||||
- !<!DictionarySchema> &ref_6
|
||||
type: dictionary
|
||||
elementType: !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_5
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Dictionary of string
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapstring·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
immediate:
|
||||
- *ref_5
|
||||
- *ref_6
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_20
|
||||
schema: !<!NumberSchema> &ref_21
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -457,7 +448,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_29
|
||||
schema: !<!StringSchema> &ref_27
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -475,7 +466,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_13
|
||||
schema: !<!BooleanSchema> &ref_15
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -491,7 +482,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_30
|
||||
schema: !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -509,30 +500,20 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_7
|
||||
schema: !<!DictionarySchema> &ref_9
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_21
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: number
|
||||
description: MISSING·SCHEMA-DESCRIPTION-NUMBER
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Dictionary of number
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: additionalProperties
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: additionalProperties
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -544,27 +525,26 @@ schemas: !<!Schemas>
|
|||
- *ref_2
|
||||
- *ref_3
|
||||
- *ref_4
|
||||
- *ref_6
|
||||
- *ref_5
|
||||
- *ref_7
|
||||
booleans:
|
||||
- *ref_8
|
||||
- *ref_6
|
||||
- *ref_9
|
||||
booleans:
|
||||
- *ref_10
|
||||
- *ref_11
|
||||
- *ref_12
|
||||
- *ref_13
|
||||
numbers:
|
||||
- *ref_14
|
||||
- *ref_15
|
||||
numbers:
|
||||
- *ref_16
|
||||
- *ref_17
|
||||
- *ref_18
|
||||
- *ref_19
|
||||
- *ref_20
|
||||
- *ref_7
|
||||
- *ref_21
|
||||
strings:
|
||||
- !<!StringSchema> &ref_31
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -574,15 +554,14 @@ schemas: !<!Schemas>
|
|||
- *ref_22
|
||||
- *ref_23
|
||||
- *ref_24
|
||||
- *ref_5
|
||||
- *ref_25
|
||||
- *ref_26
|
||||
- *ref_27
|
||||
- *ref_28
|
||||
- *ref_29
|
||||
- *ref_30
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_32
|
||||
schema: *ref_31
|
||||
- !<!Parameter> &ref_30
|
||||
schema: *ref_29
|
||||
clientDefaultValue: 'http://localhost:3000'
|
||||
implementation: Client
|
||||
required: true
|
||||
|
@ -592,7 +571,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: additionalProperties
|
||||
|
@ -606,7 +585,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_0
|
||||
implementation: Method
|
||||
|
@ -627,11 +606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true'
|
||||
path: /additionalProperties/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_0
|
||||
|
@ -648,7 +628,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -673,7 +653,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_1
|
||||
implementation: Method
|
||||
|
@ -694,11 +674,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true-subclass'
|
||||
path: /additionalProperties/true-subclass
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_1
|
||||
|
@ -715,7 +696,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -740,9 +721,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -761,14 +742,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/object'
|
||||
path: /additionalProperties/type/object
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -782,7 +764,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -807,9 +789,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -828,14 +810,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/string'
|
||||
path: /additionalProperties/type/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -849,7 +832,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -874,9 +857,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -895,14 +878,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties'
|
||||
path: /additionalProperties/in/properties
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -916,7 +900,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -941,9 +925,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -962,14 +946,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties/with/additionalProperties/string'
|
||||
path: /additionalProperties/in/properties/with/additionalProperties/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -983,7 +968,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -34,7 +34,7 @@ schemas: !<!Schemas>
|
|||
- *ref_4
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_26
|
||||
schema: !<!BooleanSchema> &ref_24
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -96,7 +96,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_25
|
||||
schema: !<!BooleanSchema> &ref_23
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -117,7 +117,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_32
|
||||
- !<!ObjectSchema> &ref_30
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -162,7 +162,7 @@ schemas: !<!Schemas>
|
|||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_5
|
||||
- !<!ObjectSchema> &ref_34
|
||||
- !<!ObjectSchema> &ref_32
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -221,7 +221,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_27
|
||||
schema: !<!BooleanSchema> &ref_25
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -242,7 +242,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_35
|
||||
- !<!ObjectSchema> &ref_33
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -304,7 +304,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_28
|
||||
schema: !<!BooleanSchema> &ref_26
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -325,7 +325,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_36
|
||||
- !<!ObjectSchema> &ref_34
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -366,7 +366,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_29
|
||||
schema: !<!BooleanSchema> &ref_27
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -384,7 +384,7 @@ schemas: !<!Schemas>
|
|||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_12
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_22
|
||||
elementType: !<!NumberSchema> &ref_1
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -413,7 +413,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_37
|
||||
- !<!ObjectSchema> &ref_35
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -422,26 +422,17 @@ schemas: !<!Schemas>
|
|||
all:
|
||||
- !<!DictionarySchema> &ref_16
|
||||
type: dictionary
|
||||
elementType: !<!StringSchema> &ref_1
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: components·schemas·petapinpropertieswithapstring·additionalproperties
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPInPropertiesWithAPString
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapstring·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
immediate:
|
||||
- *ref_16
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_23
|
||||
schema: !<!NumberSchema> &ref_22
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -475,7 +466,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_30
|
||||
schema: !<!BooleanSchema> &ref_28
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -511,28 +502,18 @@ schemas: !<!Schemas>
|
|||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_15
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_24
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties
|
||||
description: MISSING·SCHEMA-DESCRIPTION-NUMBER
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPInPropertiesWithAPString-additionalProperties
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: additionalProperties
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: additionalProperties
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -548,23 +529,22 @@ schemas: !<!Schemas>
|
|||
- *ref_16
|
||||
- *ref_15
|
||||
booleans:
|
||||
- *ref_23
|
||||
- *ref_24
|
||||
- *ref_25
|
||||
- *ref_26
|
||||
- *ref_27
|
||||
- *ref_28
|
||||
- *ref_29
|
||||
- *ref_30
|
||||
numbers:
|
||||
- *ref_17
|
||||
- *ref_18
|
||||
- *ref_19
|
||||
- *ref_20
|
||||
- *ref_21
|
||||
- *ref_1
|
||||
- *ref_22
|
||||
- *ref_23
|
||||
- *ref_24
|
||||
strings:
|
||||
- !<!StringSchema> &ref_31
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -577,12 +557,11 @@ schemas: !<!Schemas>
|
|||
- *ref_0
|
||||
- *ref_9
|
||||
- *ref_11
|
||||
- *ref_1
|
||||
- *ref_13
|
||||
- *ref_14
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_33
|
||||
schema: *ref_31
|
||||
- !<!Parameter> &ref_31
|
||||
schema: *ref_29
|
||||
clientDefaultValue: 'http://localhost:3000'
|
||||
implementation: Client
|
||||
required: true
|
||||
|
@ -592,7 +571,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: additionalProperties
|
||||
|
@ -606,7 +585,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
|
@ -627,11 +606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true'
|
||||
path: /additionalProperties/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -648,7 +628,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -673,7 +653,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
|
@ -694,11 +674,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true-subclass'
|
||||
path: /additionalProperties/true-subclass
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -715,7 +696,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -740,9 +721,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -761,14 +742,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/object'
|
||||
path: /additionalProperties/type/object
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -782,7 +764,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -807,9 +789,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -828,14 +810,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/string'
|
||||
path: /additionalProperties/type/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -849,7 +832,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -874,9 +857,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -895,14 +878,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties'
|
||||
path: /additionalProperties/in/properties
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -916,7 +900,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -941,9 +925,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_33
|
||||
- *ref_31
|
||||
- !<!Parameter>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -962,14 +946,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties/with/additionalProperties/string'
|
||||
path: /additionalProperties/in/properties/with/additionalProperties/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -983,7 +968,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_32
|
||||
schema: *ref_30
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -34,7 +34,7 @@ schemas: !<!Schemas>
|
|||
- *ref_0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_9
|
||||
schema: !<!BooleanSchema> &ref_11
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -62,7 +62,7 @@ schemas: !<!Schemas>
|
|||
- *ref_2
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_14
|
||||
schema: !<!NumberSchema> &ref_16
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -96,7 +96,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_8
|
||||
schema: !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -117,14 +117,14 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_33
|
||||
- !<!ObjectSchema> &ref_31
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_15
|
||||
schema: !<!NumberSchema> &ref_17
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -162,7 +162,7 @@ schemas: !<!Schemas>
|
|||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- !<!ObjectSchema> &ref_34
|
||||
- !<!ObjectSchema> &ref_32
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -187,7 +187,7 @@ schemas: !<!Schemas>
|
|||
- *ref_3
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_16
|
||||
schema: !<!NumberSchema> &ref_18
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -221,7 +221,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_10
|
||||
schema: !<!BooleanSchema> &ref_12
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -242,7 +242,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_35
|
||||
- !<!ObjectSchema> &ref_33
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -251,7 +251,7 @@ schemas: !<!Schemas>
|
|||
all:
|
||||
- !<!DictionarySchema> &ref_4
|
||||
type: dictionary
|
||||
elementType: !<!StringSchema> &ref_25
|
||||
elementType: !<!StringSchema> &ref_5
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -270,7 +270,69 @@ schemas: !<!Schemas>
|
|||
- *ref_4
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_17
|
||||
schema: !<!NumberSchema> &ref_19
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForid
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
required: true
|
||||
serializedName: id
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: id
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_25
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString-name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: name
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_13
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForstatus
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
readOnly: true
|
||||
required: false
|
||||
serializedName: status
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: status
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString
|
||||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_34
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_20
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -287,68 +349,6 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_26
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString-name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: name
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: name
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_11
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForstatus
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
readOnly: true
|
||||
required: false
|
||||
serializedName: status
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: status
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: PetAPString
|
||||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_36
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_18
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: typeForid
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
required: true
|
||||
serializedName: id
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: id
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_27
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -366,7 +366,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_12
|
||||
schema: !<!BooleanSchema> &ref_14
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -382,9 +382,9 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_6
|
||||
schema: !<!DictionarySchema> &ref_8
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_19
|
||||
elementType: !<!NumberSchema> &ref_7
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -413,35 +413,26 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-OBJECTSCHEMA
|
||||
namespace: Api100
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ObjectSchema> &ref_37
|
||||
- !<!ObjectSchema> &ref_35
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
parents: !<!Relations>
|
||||
all:
|
||||
- !<!DictionarySchema> &ref_5
|
||||
- !<!DictionarySchema> &ref_6
|
||||
type: dictionary
|
||||
elementType: !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_5
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Dictionary of string
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapstring·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
immediate:
|
||||
- *ref_5
|
||||
- *ref_6
|
||||
properties:
|
||||
- !<!Property>
|
||||
schema: !<!NumberSchema> &ref_20
|
||||
schema: !<!NumberSchema> &ref_21
|
||||
type: integer
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
|
@ -457,7 +448,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_29
|
||||
schema: !<!StringSchema> &ref_27
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -475,7 +466,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!BooleanSchema> &ref_13
|
||||
schema: !<!BooleanSchema> &ref_15
|
||||
type: boolean
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -491,7 +482,7 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!StringSchema> &ref_30
|
||||
schema: !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -509,30 +500,20 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!Property>
|
||||
schema: !<!DictionarySchema> &ref_7
|
||||
schema: !<!DictionarySchema> &ref_9
|
||||
type: dictionary
|
||||
elementType: !<!NumberSchema> &ref_21
|
||||
type: number
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: number
|
||||
description: MISSING·SCHEMA-DESCRIPTION-NUMBER
|
||||
protocol: !<!Protocols> {}
|
||||
elementType: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Dictionary of number
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
required: false
|
||||
serializedName: additionalProperties
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: additionalProperties
|
||||
description: Dictionary of <components·schemas·petapinpropertieswithapstring·properties·additionalproperties·additionalproperties>
|
||||
description: Dictionary of <components·schemas·petapinproperties·properties·additionalproperties·additionalproperties>
|
||||
protocol: !<!Protocols> {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -544,27 +525,26 @@ schemas: !<!Schemas>
|
|||
- *ref_2
|
||||
- *ref_3
|
||||
- *ref_4
|
||||
- *ref_6
|
||||
- *ref_5
|
||||
- *ref_7
|
||||
booleans:
|
||||
- *ref_8
|
||||
- *ref_6
|
||||
- *ref_9
|
||||
booleans:
|
||||
- *ref_10
|
||||
- *ref_11
|
||||
- *ref_12
|
||||
- *ref_13
|
||||
numbers:
|
||||
- *ref_14
|
||||
- *ref_15
|
||||
numbers:
|
||||
- *ref_16
|
||||
- *ref_17
|
||||
- *ref_18
|
||||
- *ref_19
|
||||
- *ref_20
|
||||
- *ref_7
|
||||
- *ref_21
|
||||
strings:
|
||||
- !<!StringSchema> &ref_31
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -574,15 +554,14 @@ schemas: !<!Schemas>
|
|||
- *ref_22
|
||||
- *ref_23
|
||||
- *ref_24
|
||||
- *ref_5
|
||||
- *ref_25
|
||||
- *ref_26
|
||||
- *ref_27
|
||||
- *ref_28
|
||||
- *ref_29
|
||||
- *ref_30
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_32
|
||||
schema: *ref_31
|
||||
- !<!Parameter> &ref_30
|
||||
schema: *ref_29
|
||||
clientDefaultValue: 'http://localhost:3000'
|
||||
implementation: Client
|
||||
required: true
|
||||
|
@ -592,7 +571,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: additionalProperties
|
||||
|
@ -606,7 +585,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_0
|
||||
implementation: Method
|
||||
|
@ -627,11 +606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true'
|
||||
path: /additionalProperties/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_0
|
||||
|
@ -648,7 +628,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -673,7 +653,7 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_1
|
||||
implementation: Method
|
||||
|
@ -694,11 +674,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/true-subclass'
|
||||
path: /additionalProperties/true-subclass
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_1
|
||||
|
@ -715,7 +696,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -740,9 +721,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -761,14 +742,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/object'
|
||||
path: /additionalProperties/type/object
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_34
|
||||
schema: *ref_32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -782,7 +764,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -807,9 +789,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -828,14 +810,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/type/string'
|
||||
path: /additionalProperties/type/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_35
|
||||
schema: *ref_33
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -849,7 +832,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -874,9 +857,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -895,14 +878,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties'
|
||||
path: /additionalProperties/in/properties
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_36
|
||||
schema: *ref_34
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -916,7 +900,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -941,9 +925,9 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_32
|
||||
- *ref_30
|
||||
- !<!Parameter>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -962,14 +946,15 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/additionalProperties/in/properties/with/additionalProperties/string'
|
||||
path: /additionalProperties/in/properties/with/additionalProperties/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_37
|
||||
schema: *ref_35
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -983,7 +968,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
schema: *ref_31
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
!<!CodeModel>
|
||||
schemas: !<!Schemas>
|
||||
objects:
|
||||
- !<!ObjectSchema> &ref_8
|
||||
- !<!ObjectSchema> &ref_7
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -58,7 +58,7 @@ schemas: !<!Schemas>
|
|||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_7
|
||||
- !<!NumberSchema> &ref_6
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -70,54 +70,6 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_0
|
||||
- !<!NumberSchema> &ref_10
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_12
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_14
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_16
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
strings:
|
||||
- !<!StringSchema> &ref_2
|
||||
type: string
|
||||
|
@ -136,57 +88,7 @@ schemas: !<!Schemas>
|
|||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_6
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- !<!StringSchema> &ref_9
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_3
|
||||
schema: *ref_2
|
||||
|
@ -199,7 +101,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-parameter-grouping
|
||||
|
@ -218,7 +120,7 @@ operationGroups:
|
|||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_8 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -230,7 +132,7 @@ operationGroups:
|
|||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_9 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -239,7 +141,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -252,7 +154,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -272,11 +174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/parameterGrouping/postRequired/{path}'
|
||||
path: '/parameterGrouping/postRequired/{path}'
|
||||
method: post
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -289,7 +192,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -316,10 +219,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -328,10 +231,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_9
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -345,8 +248,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postOptional'
|
||||
path: /parameterGrouping/postOptional
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -359,7 +263,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -384,10 +288,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_10
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -397,10 +301,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_11
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -410,7 +314,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -423,7 +327,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -441,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postMultipleParameterGroups'
|
||||
path: /parameterGrouping/postMultipleParameterGroups
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -455,7 +360,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -480,11 +385,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_10
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: header-one
|
||||
|
@ -493,11 +397,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_11
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query-one
|
||||
|
@ -511,8 +414,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/sharedParameterGroupObject'
|
||||
path: /parameterGrouping/sharedParameterGroupObject
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -525,7 +429,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
!<!CodeModel>
|
||||
schemas: !<!Schemas>
|
||||
objects:
|
||||
- !<!ObjectSchema> &ref_7
|
||||
- !<!ObjectSchema> &ref_6
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -58,7 +58,7 @@ schemas: !<!Schemas>
|
|||
name: paths·parametergrouping-postrequired-path·post·parameters·1·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_6
|
||||
- !<!NumberSchema> &ref_5
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -70,54 +70,6 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_0
|
||||
- !<!NumberSchema> &ref_10
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postoptional·post·parameters·1·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_12
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postmultipleparametergroups·post·parameters·1·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_14
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postmultipleparametergroups·post·parameters·3·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_16
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-sharedparametergroupobject·post·parameters·1·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
strings:
|
||||
- !<!StringSchema> &ref_2
|
||||
type: string
|
||||
|
@ -136,59 +88,9 @@ schemas: !<!Schemas>
|
|||
name: paths·parametergrouping-postrequired-path·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_5
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postrequired-path·post·parameters·2·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- !<!StringSchema> &ref_9
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postoptional·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postmultipleparametergroups·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-postmultipleparametergroups·post·parameters·2·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·parametergrouping-sharedparametergroupobject·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_8
|
||||
- !<!Parameter> &ref_7
|
||||
schema: *ref_2
|
||||
clientDefaultValue: 'http://localhost:3000'
|
||||
implementation: Client
|
||||
|
@ -199,7 +101,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-parameter-grouping
|
||||
|
@ -213,12 +115,12 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_8
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_8 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -230,7 +132,7 @@ operationGroups:
|
|||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_9 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -239,7 +141,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_5
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -252,7 +154,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -272,11 +174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/parameterGrouping/postRequired/{path}'
|
||||
path: '/parameterGrouping/postRequired/{path}'
|
||||
method: post
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -289,7 +192,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -314,12 +217,12 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_8
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -328,10 +231,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_9
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -345,8 +248,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postOptional'
|
||||
path: /parameterGrouping/postOptional
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -359,7 +263,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -382,12 +286,12 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_8
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_10
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -397,10 +301,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_11
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -410,7 +314,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -423,7 +327,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -441,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postMultipleParameterGroups'
|
||||
path: /parameterGrouping/postMultipleParameterGroups
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -455,7 +360,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -478,13 +383,12 @@ operationGroups:
|
|||
version: 1.0.0
|
||||
request: !<!Request>
|
||||
parameters:
|
||||
- *ref_8
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_10
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: header-one
|
||||
|
@ -493,11 +397,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_11
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query-one
|
||||
|
@ -511,8 +414,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/sharedParameterGroupObject'
|
||||
path: /parameterGrouping/sharedParameterGroupObject
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -525,7 +429,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
!<!CodeModel>
|
||||
schemas: !<!Schemas>
|
||||
objects:
|
||||
- !<!ObjectSchema> &ref_8
|
||||
- !<!ObjectSchema> &ref_7
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -58,7 +58,7 @@ schemas: !<!Schemas>
|
|||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_7
|
||||
- !<!NumberSchema> &ref_6
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -70,54 +70,6 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_0
|
||||
- !<!NumberSchema> &ref_10
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_12
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_14
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!NumberSchema> &ref_16
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
defaultValue: 30
|
||||
precision: 32
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: integer
|
||||
description: MISSING·SCHEMA-DESCRIPTION-INTEGER
|
||||
protocol: !<!Protocols> {}
|
||||
strings:
|
||||
- !<!StringSchema> &ref_2
|
||||
type: string
|
||||
|
@ -136,57 +88,7 @@ schemas: !<!Schemas>
|
|||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_6
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- !<!StringSchema> &ref_9
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
globalParameters:
|
||||
- !<!Parameter> &ref_3
|
||||
schema: *ref_2
|
||||
|
@ -199,7 +101,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-parameter-grouping
|
||||
|
@ -218,7 +120,7 @@ operationGroups:
|
|||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_8 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -230,7 +132,7 @@ operationGroups:
|
|||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: &ref_9 {}
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -239,7 +141,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -252,7 +154,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_7
|
||||
schema: *ref_6
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -272,11 +174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/parameterGrouping/postRequired/{path}'
|
||||
path: '/parameterGrouping/postRequired/{path}'
|
||||
method: post
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -289,7 +192,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -316,10 +219,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: customHeader
|
||||
|
@ -328,10 +231,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping: {}
|
||||
x-ms-parameter-grouping: *ref_9
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query
|
||||
|
@ -345,8 +248,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postOptional'
|
||||
path: /parameterGrouping/postOptional
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -359,7 +263,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -384,10 +288,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_10
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -397,10 +301,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
x-ms-parameter-grouping: &ref_11
|
||||
name: first-parameter-group
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -410,7 +314,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -423,7 +327,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
|
@ -441,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/postMultipleParameterGroups'
|
||||
path: /parameterGrouping/postMultipleParameterGroups
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -455,7 +360,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -480,11 +385,10 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_10
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: header-one
|
||||
|
@ -493,11 +397,10 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: header
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
extensions:
|
||||
x-ms-parameter-grouping:
|
||||
name: first-parameter-group
|
||||
x-ms-parameter-grouping: *ref_11
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: query-one
|
||||
|
@ -511,8 +414,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/parameterGrouping/sharedParameterGroupObject'
|
||||
path: /parameterGrouping/sharedParameterGroupObject
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -525,7 +429,7 @@ operationGroups:
|
|||
- '200'
|
||||
exceptions:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-report
|
||||
|
@ -129,8 +129,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/report/azure'
|
||||
path: /report/azure
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-report
|
||||
|
@ -129,8 +129,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/report/azure'
|
||||
path: /report/azure
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-report
|
||||
|
@ -129,8 +129,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/report/azure'
|
||||
path: /report/azure
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- *ref_2
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_3
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: DictionaryOfFlattenedProduct
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_4
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_18
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource-x
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_8
|
||||
- *ref_10
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_11
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_12
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_17
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource-x
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_19
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_12
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_19
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- *ref_2
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_3
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: DictionaryOfFlattenedProduct
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_4
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_18
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource-x
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- *ref_2
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_3
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: DictionaryOfFlattenedProduct
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_4
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_18
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_8
|
||||
- *ref_10
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_11
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azure-resource_flatten-dictionary·put·requestbody·content·application-json·schema
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_12
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_17
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_19
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_12
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_19
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -245,7 +245,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
- *ref_2
|
||||
- !<!ObjectSchema> &ref_21
|
||||
- !<!ObjectSchema> &ref_22
|
||||
type: object
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,6 +300,14 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
dictionaries:
|
||||
- *ref_3
|
||||
- !<!DictionarySchema> &ref_21
|
||||
type: dictionary
|
||||
elementType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: DictionaryOfFlattenedProduct
|
||||
description: Dictionary of <FlattenedProduct>
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_4
|
||||
arrays:
|
||||
- !<!ArraySchema> &ref_18
|
||||
|
@ -356,7 +364,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Resource Flattening for AutoRest
|
||||
title: azure-resource
|
||||
|
@ -391,11 +399,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -440,8 +449,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/array'
|
||||
path: /azure/resource-flatten/array
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -483,7 +493,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -502,11 +512,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -551,11 +562,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/dictionary'
|
||||
path: /azure/resource-flatten/dictionary
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
schema: *ref_21
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -594,7 +606,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_17
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -613,11 +625,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -662,11 +675,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azure/resource-flatten/resourcecollection'
|
||||
path: /azure/resource-flatten/resourcecollection
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_21
|
||||
schema: *ref_22
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -122,7 +122,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
constants:
|
||||
- *ref_0
|
||||
- !<!ConstantSchema> &ref_11
|
||||
- !<!ConstantSchema> &ref_10
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -142,6 +142,34 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_12
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_13
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_16
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
|
@ -170,21 +198,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_20
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_21
|
||||
- !<!ConstantSchema> &ref_14
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -212,7 +226,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_22
|
||||
- !<!ConstantSchema> &ref_15
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -240,21 +254,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_26
|
||||
- !<!ConstantSchema> &ref_21
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: path1/path2/path3
|
||||
|
@ -268,7 +268,7 @@ schemas: !<!Schemas>
|
|||
name: Constant0
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_30
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: value1&q2=value2&q3=value3
|
||||
|
@ -285,7 +285,7 @@ schemas: !<!Schemas>
|
|||
numbers:
|
||||
- *ref_2
|
||||
- *ref_3
|
||||
- !<!NumberSchema> &ref_32
|
||||
- !<!NumberSchema> &ref_24
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -308,197 +308,25 @@ schemas: !<!Schemas>
|
|||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_5
|
||||
- !<!StringSchema> &ref_10
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_12
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_14
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_24
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_25
|
||||
- !<!StringSchema> &ref_20
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_27
|
||||
- !<!StringSchema> &ref_22
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_31
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_33
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_34
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_35
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_36
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_37
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_38
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_39
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
|
@ -517,7 +345,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-special-properties
|
||||
|
@ -538,8 +366,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -589,8 +418,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/via-param/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/via-param/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -636,7 +466,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -652,8 +482,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -691,7 +522,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -707,8 +538,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -746,7 +578,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -757,7 +589,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_10
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -773,8 +605,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -812,7 +645,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -828,8 +661,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -867,7 +701,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -883,8 +717,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -930,7 +765,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -946,8 +781,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -985,13 +821,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'This should appear as a method parameter, use value null, client-side validation should prvenet the call'
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1001,8 +837,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1040,7 +877,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_11
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1056,8 +893,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1095,13 +933,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'The subscriptionId, which appears in the path, the value is always ''1234-5678-9012-3456'''
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1111,8 +949,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1158,7 +997,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_12
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1174,8 +1013,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1213,7 +1053,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_17
|
||||
schema: *ref_13
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1229,8 +1069,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1268,7 +1109,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_18
|
||||
schema: *ref_14
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1284,8 +1125,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1323,7 +1165,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_19
|
||||
schema: *ref_15
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1339,8 +1181,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1386,7 +1229,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_20
|
||||
schema: *ref_16
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1402,8 +1245,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1441,7 +1285,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_17
|
||||
implementation: Client
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1456,8 +1300,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/null'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1495,7 +1340,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_22
|
||||
schema: *ref_18
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1511,8 +1356,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1550,7 +1396,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_23
|
||||
schema: *ref_19
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1566,8 +1412,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1613,7 +1460,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_24
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1631,8 +1478,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1670,7 +1518,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_25
|
||||
schema: *ref_20
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1688,8 +1536,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1727,7 +1576,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_26
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1745,8 +1594,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1784,7 +1634,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_27
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1800,8 +1650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1839,7 +1690,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_28
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1854,8 +1705,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/null'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1893,7 +1745,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_29
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1909,8 +1761,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/path/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1948,7 +1801,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_30
|
||||
schema: *ref_23
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1964,8 +1817,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/swagger/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2011,7 +1865,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_31
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2021,7 +1875,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_32
|
||||
schema: *ref_24
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2031,7 +1885,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_33
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2046,8 +1900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/odata/filter'
|
||||
path: /azurespecials/odata/filter
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2095,7 +1950,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2113,8 +1968,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestId'
|
||||
path: /azurespecials/customNamedRequestId
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2125,7 +1981,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_35
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2158,7 +2014,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2177,8 +2033,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdParamGrouping'
|
||||
path: /azurespecials/customNamedRequestIdParamGrouping
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2189,7 +2046,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_37
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2222,7 +2079,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_38
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2240,8 +2097,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdHead'
|
||||
path: /azurespecials/customNamedRequestIdHead
|
||||
method: head
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2252,7 +2110,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_39
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
|
|
@ -122,7 +122,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
constants:
|
||||
- *ref_5
|
||||
- !<!ConstantSchema> &ref_11
|
||||
- !<!ConstantSchema> &ref_10
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -142,6 +142,34 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_12
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_13
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_16
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
|
@ -170,21 +198,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_20
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_21
|
||||
- !<!ConstantSchema> &ref_14
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -212,7 +226,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_22
|
||||
- !<!ConstantSchema> &ref_15
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -240,21 +254,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_6
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_26
|
||||
- !<!ConstantSchema> &ref_21
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: path1/path2/path3
|
||||
|
@ -268,7 +268,7 @@ schemas: !<!Schemas>
|
|||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_30
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: value1&q2=value2&q3=value3
|
||||
|
@ -285,7 +285,7 @@ schemas: !<!Schemas>
|
|||
numbers:
|
||||
- *ref_2
|
||||
- *ref_3
|
||||
- !<!NumberSchema> &ref_32
|
||||
- !<!NumberSchema> &ref_24
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -300,138 +300,6 @@ schemas: !<!Schemas>
|
|||
strings:
|
||||
- *ref_6
|
||||
- !<!StringSchema> &ref_8
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-overwrite-x_ms_client_request_id-via_param-method·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_0
|
||||
- !<!StringSchema> &ref_10
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: components·parameters·globalsubscriptionid·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_12
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-subscriptionid-method-string-none-path-local-1234_5678_9012_3456-subscriptionid·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-subscriptionid-method-string-none-path-local-null-subscriptionid·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_14
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-subscriptionid-swagger-string-none-path-local-1234_5678_9012_3456-subscriptionid·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_24
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-skipurlencoding-method-path-valid-unencodedpathparam·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_25
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_27
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-skipurlencoding-method-query-valid·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-skipurlencoding-method-query-null·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_31
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-odata-filter·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_33
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-odata-filter·get·parameters·2·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_34
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-customnamedrequestid·post·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_35
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -442,66 +310,26 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_36
|
||||
- *ref_0
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-customnamedrequestidparamgrouping·post·parameters·0·schema
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_37
|
||||
- !<!StringSchema> &ref_20
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-customnamedrequestidparamgrouping·post·responses·200·headers·foo_request_id·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_38
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-customnamedrequestidhead·head·parameters·0·schema
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_39
|
||||
- !<!StringSchema> &ref_22
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-customnamedrequestidhead·head·responses·200·headers·foo_request_id·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·azurespecials-apiversion-method-string-none-query-local-null·get·parameters·0·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: components·parameters·globalapiversion·schema
|
||||
name: ''
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_1
|
||||
|
@ -517,7 +345,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-special-properties
|
||||
|
@ -538,8 +366,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -589,8 +418,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/via-param/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/via-param/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -636,7 +466,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -652,8 +482,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -691,7 +522,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -707,8 +538,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -746,7 +578,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -757,7 +589,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_10
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -773,8 +605,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -812,7 +645,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -828,8 +661,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -867,7 +701,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -883,8 +717,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -930,7 +765,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -946,8 +781,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -985,13 +821,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'This should appear as a method parameter, use value null, client-side validation should prvenet the call'
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1001,8 +837,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1040,7 +877,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_11
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1056,8 +893,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1095,13 +933,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'The subscriptionId, which appears in the path, the value is always ''1234-5678-9012-3456'''
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1111,8 +949,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1158,7 +997,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_12
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1174,8 +1013,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1213,7 +1053,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_17
|
||||
schema: *ref_13
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1229,8 +1069,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1268,7 +1109,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_18
|
||||
schema: *ref_14
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1284,8 +1125,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1323,7 +1165,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_19
|
||||
schema: *ref_15
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1339,8 +1181,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1386,7 +1229,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_20
|
||||
schema: *ref_16
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1402,8 +1245,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1441,7 +1285,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_17
|
||||
implementation: Client
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1456,8 +1300,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/null'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1495,7 +1340,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_22
|
||||
schema: *ref_18
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1511,8 +1356,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1550,7 +1396,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_23
|
||||
schema: *ref_19
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1566,8 +1412,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1613,7 +1460,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_24
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1631,8 +1478,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1670,7 +1518,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_25
|
||||
schema: *ref_20
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1688,8 +1536,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1727,7 +1576,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_26
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1745,8 +1594,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1784,7 +1634,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_27
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1800,8 +1650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1839,7 +1690,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_28
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1854,8 +1705,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/null'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1893,7 +1745,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_29
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1909,8 +1761,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/path/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1948,7 +1801,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_30
|
||||
schema: *ref_23
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1964,8 +1817,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/swagger/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2011,7 +1865,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_31
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2021,7 +1875,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_32
|
||||
schema: *ref_24
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2031,7 +1885,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_33
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2046,8 +1900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/odata/filter'
|
||||
path: /azurespecials/odata/filter
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2095,7 +1950,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2113,8 +1968,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestId'
|
||||
path: /azurespecials/customNamedRequestId
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2125,7 +1981,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_35
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2158,7 +2014,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2177,8 +2033,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdParamGrouping'
|
||||
path: /azurespecials/customNamedRequestIdParamGrouping
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2189,7 +2046,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_37
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2222,7 +2079,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_38
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2240,8 +2097,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdHead'
|
||||
path: /azurespecials/customNamedRequestIdHead
|
||||
method: head
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2252,7 +2110,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_39
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
|
|
@ -122,7 +122,7 @@ schemas: !<!Schemas>
|
|||
protocol: !<!Protocols> {}
|
||||
constants:
|
||||
- *ref_0
|
||||
- !<!ConstantSchema> &ref_11
|
||||
- !<!ConstantSchema> &ref_10
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -142,6 +142,34 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_12
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_13
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_16
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
|
@ -170,21 +198,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_20
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_21
|
||||
- !<!ConstantSchema> &ref_14
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -212,7 +226,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_22
|
||||
- !<!ConstantSchema> &ref_15
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
|
@ -240,21 +254,7 @@ schemas: !<!Schemas>
|
|||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: 2015-07-01-preview
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_1
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ApiVersion-2015-07-01-preview
|
||||
description: Api Version (2015-07-01-preview)
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_26
|
||||
- !<!ConstantSchema> &ref_21
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: path1/path2/path3
|
||||
|
@ -268,7 +268,7 @@ schemas: !<!Schemas>
|
|||
name: Constant0
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_30
|
||||
- !<!ConstantSchema> &ref_23
|
||||
type: constant
|
||||
value: !<!ConstantValue>
|
||||
value: value1&q2=value2&q3=value3
|
||||
|
@ -285,7 +285,7 @@ schemas: !<!Schemas>
|
|||
numbers:
|
||||
- *ref_2
|
||||
- *ref_3
|
||||
- !<!NumberSchema> &ref_32
|
||||
- !<!NumberSchema> &ref_24
|
||||
type: integer
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -308,197 +308,25 @@ schemas: !<!Schemas>
|
|||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- *ref_5
|
||||
- !<!StringSchema> &ref_10
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_12
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_13
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_14
|
||||
- !<!StringSchema> &ref_11
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_15
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_24
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_25
|
||||
- !<!StringSchema> &ref_20
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_27
|
||||
- !<!StringSchema> &ref_22
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_28
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_29
|
||||
type: string
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_31
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_33
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_34
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_35
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_36
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_37
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_38
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema> &ref_39
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
header: foo-request-id
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
description: MISSING·SCHEMA-DESCRIPTION-STRING
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!StringSchema>
|
||||
type: string
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 2015-07-01-preview
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: string
|
||||
|
@ -517,7 +345,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: azure-special-properties
|
||||
|
@ -538,8 +366,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -589,8 +418,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/overwrite/x-ms-client-request-id/via-param/method/'
|
||||
path: /azurespecials/overwrite/x-ms-client-request-id/via-param/method/
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -636,7 +466,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -652,8 +482,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -691,7 +522,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -707,8 +538,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/global/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -746,7 +578,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -757,7 +589,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: path
|
||||
- !<!Parameter>
|
||||
schema: *ref_11
|
||||
schema: *ref_10
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -773,8 +605,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/globalNotProvided/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -812,7 +645,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -828,8 +661,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -867,7 +701,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -883,8 +717,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/global/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -930,7 +765,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_12
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -946,8 +781,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -985,13 +821,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_13
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'This should appear as a method parameter, use value null, client-side validation should prvenet the call'
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1001,8 +837,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/method/string/none/path/local/null/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1040,7 +877,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_14
|
||||
schema: *ref_11
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1056,8 +893,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/path/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1095,13 +933,13 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_15
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: subscriptionId
|
||||
description: 'The subscriptionId, which appears in the path, the value is always ''1234-5678-9012-3456'''
|
||||
description: 'This should appear as a method parameter, use value ''1234-5678-9012-3456'''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
|
@ -1111,8 +949,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
path: '/azurespecials/subscriptionId/swagger/string/none/path/local/1234-5678-9012-3456/{subscriptionId}'
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1158,7 +997,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_16
|
||||
schema: *ref_12
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1174,8 +1013,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1213,7 +1053,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_17
|
||||
schema: *ref_13
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1229,8 +1069,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/globalNotProvided/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1268,7 +1109,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_18
|
||||
schema: *ref_14
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1284,8 +1125,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1323,7 +1165,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_19
|
||||
schema: *ref_15
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1339,8 +1181,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/global/2015-07-01-preview
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1386,7 +1229,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_20
|
||||
schema: *ref_16
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1402,8 +1245,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1441,7 +1285,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_21
|
||||
schema: *ref_17
|
||||
implementation: Client
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1456,8 +1300,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/method/string/none/query/local/null'
|
||||
path: /azurespecials/apiVersion/method/string/none/query/local/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1495,7 +1340,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_22
|
||||
schema: *ref_18
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1511,8 +1356,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/path/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/path/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1550,7 +1396,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_23
|
||||
schema: *ref_19
|
||||
implementation: Client
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1566,8 +1412,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/apiVersion/swagger/string/none/query/local/2.0'
|
||||
path: /azurespecials/apiVersion/swagger/string/none/query/local/2.0
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1613,7 +1460,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_24
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1631,8 +1478,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/method/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1670,7 +1518,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_25
|
||||
schema: *ref_20
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1688,8 +1536,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/path/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1727,7 +1576,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_26
|
||||
schema: *ref_21
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -1745,8 +1594,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
path: '/azurespecials/skipUrlEncoding/swagger/path/valid/{unencodedPathParam}'
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1784,7 +1634,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_27
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1800,8 +1650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1839,7 +1690,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_28
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -1854,8 +1705,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/method/query/null'
|
||||
path: /azurespecials/skipUrlEncoding/method/query/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1893,7 +1745,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_29
|
||||
schema: *ref_22
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1909,8 +1761,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/path/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/path/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1948,7 +1801,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_30
|
||||
schema: *ref_23
|
||||
implementation: Method
|
||||
required: true
|
||||
language: !<!Languages>
|
||||
|
@ -1964,8 +1817,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/skipUrlEncoding/swagger/query/valid'
|
||||
path: /azurespecials/skipUrlEncoding/swagger/query/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2011,7 +1865,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_31
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2021,7 +1875,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_32
|
||||
schema: *ref_24
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2031,7 +1885,7 @@ operationGroups:
|
|||
http: !<!HttpParameter>
|
||||
in: query
|
||||
- !<!Parameter>
|
||||
schema: *ref_33
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
language: !<!Languages>
|
||||
default:
|
||||
|
@ -2046,8 +1900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/odata/filter'
|
||||
path: /azurespecials/odata/filter
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2095,7 +1950,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_34
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2113,8 +1968,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestId'
|
||||
path: /azurespecials/customNamedRequestId
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2125,7 +1981,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_35
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2158,7 +2014,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_36
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2177,8 +2033,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdParamGrouping'
|
||||
path: /azurespecials/customNamedRequestIdParamGrouping
|
||||
method: post
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2189,7 +2046,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_37
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
@ -2222,7 +2079,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_7
|
||||
- !<!Parameter>
|
||||
schema: *ref_38
|
||||
schema: *ref_8
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -2240,8 +2097,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/azurespecials/customNamedRequestIdHead'
|
||||
path: /azurespecials/customNamedRequestIdHead
|
||||
method: head
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2252,7 +2110,7 @@ operationGroups:
|
|||
http: !<!HttpResponse>
|
||||
headers:
|
||||
- !<!HttpHeader>
|
||||
schema: *ref_39
|
||||
schema: *ref_8
|
||||
header: foo-request-id
|
||||
statusCodes:
|
||||
- '200'
|
||||
|
|
|
@ -13948,7 +13948,7 @@ globalParameters:
|
|||
description: 'The URL of the service account, container, or blob that is the targe of the desired operation.'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
title: blobservice
|
||||
operationGroups:
|
||||
|
@ -14037,11 +14037,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14155,8 +14156,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_173
|
||||
|
@ -14272,8 +14274,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_187
|
||||
|
@ -14427,8 +14430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_198
|
||||
|
@ -14561,11 +14565,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: post
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_206
|
||||
|
@ -14664,8 +14669,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14812,8 +14818,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_223
|
||||
|
@ -14979,8 +14986,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15103,8 +15111,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15279,8 +15288,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15434,8 +15444,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15568,8 +15579,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_280
|
||||
|
@ -15757,11 +15769,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15939,8 +15952,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16110,8 +16124,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16278,8 +16293,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16451,8 +16467,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16633,8 +16650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16804,8 +16822,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_361
|
||||
|
@ -16989,8 +17008,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_371
|
||||
|
@ -17137,8 +17157,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17231,8 +17252,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17512,8 +17534,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17876,8 +17899,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18074,8 +18098,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18329,8 +18354,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!BinaryResponse>
|
||||
binary: true
|
||||
|
@ -18743,8 +18769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: head
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19031,8 +19058,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19368,8 +19396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19491,8 +19520,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19734,8 +19764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19970,8 +20001,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20169,8 +20201,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20353,8 +20386,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20534,8 +20568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20729,8 +20764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20915,8 +20951,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21150,8 +21187,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21431,8 +21469,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21707,8 +21746,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21861,8 +21901,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21999,8 +22040,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22111,8 +22153,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22267,11 +22310,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22410,8 +22454,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -22762,8 +22807,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23101,12 +23147,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23399,8 +23446,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23773,8 +23821,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23985,8 +24034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_820
|
||||
|
@ -24220,8 +24270,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_820
|
||||
|
@ -24441,8 +24492,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24636,8 +24688,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24811,8 +24864,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25152,8 +25206,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25458,13 +25513,14 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
- text/plain
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25829,8 +25885,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26199,12 +26256,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26448,12 +26506,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26745,8 +26804,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27112,11 +27172,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27294,8 +27355,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_970
|
||||
|
|
|
@ -13948,7 +13948,7 @@ globalParameters:
|
|||
description: 'The URL of the service account, container, or blob that is the targe of the desired operation.'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
title: blobservice
|
||||
operationGroups:
|
||||
|
@ -14037,11 +14037,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14155,8 +14156,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_172
|
||||
|
@ -14272,8 +14274,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_191
|
||||
|
@ -14427,8 +14430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_201
|
||||
|
@ -14561,11 +14565,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: post
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_210
|
||||
|
@ -14664,8 +14669,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14812,8 +14818,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_228
|
||||
|
@ -14979,8 +14986,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15103,8 +15111,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15279,8 +15288,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15434,8 +15444,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15568,8 +15579,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_287
|
||||
|
@ -15757,11 +15769,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15939,8 +15952,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16110,8 +16124,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16278,8 +16293,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16451,8 +16467,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16633,8 +16650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16804,8 +16822,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_366
|
||||
|
@ -16989,8 +17008,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_376
|
||||
|
@ -17137,8 +17157,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17231,8 +17252,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17512,8 +17534,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17876,8 +17899,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18074,8 +18098,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18329,8 +18354,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!BinaryResponse>
|
||||
binary: true
|
||||
|
@ -18743,8 +18769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: head
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19031,8 +19058,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19368,8 +19396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19491,8 +19520,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19734,8 +19764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19970,8 +20001,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20169,8 +20201,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20353,8 +20386,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20534,8 +20568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20729,8 +20764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20915,8 +20951,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21150,8 +21187,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21431,8 +21469,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21707,8 +21746,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21861,8 +21901,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21999,8 +22040,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22111,8 +22153,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22267,11 +22310,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22410,8 +22454,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_90
|
||||
|
@ -22762,8 +22807,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23101,12 +23147,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23399,8 +23446,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23773,8 +23821,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23985,8 +24034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_827
|
||||
|
@ -24220,8 +24270,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_827
|
||||
|
@ -24441,8 +24492,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24636,8 +24688,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24811,8 +24864,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25152,8 +25206,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25458,13 +25513,14 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
- text/plain
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25829,8 +25885,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26199,12 +26256,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26448,12 +26506,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26745,8 +26804,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27112,11 +27172,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27294,8 +27355,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_978
|
||||
|
|
|
@ -13948,7 +13948,7 @@ globalParameters:
|
|||
description: 'The URL of the service account, container, or blob that is the targe of the desired operation.'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
title: blobservice
|
||||
operationGroups:
|
||||
|
@ -14037,11 +14037,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14155,8 +14156,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_173
|
||||
|
@ -14272,8 +14274,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_187
|
||||
|
@ -14427,8 +14430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_198
|
||||
|
@ -14561,11 +14565,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: post
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_206
|
||||
|
@ -14664,8 +14669,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -14812,8 +14818,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/'
|
||||
path: /
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_223
|
||||
|
@ -14979,8 +14986,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15103,8 +15111,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15279,8 +15288,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15434,8 +15444,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15568,8 +15579,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_280
|
||||
|
@ -15757,11 +15769,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -15939,8 +15952,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16110,8 +16124,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16278,8 +16293,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16451,8 +16467,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16633,8 +16650,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -16804,8 +16822,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_361
|
||||
|
@ -16989,8 +17008,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_371
|
||||
|
@ -17137,8 +17157,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17231,8 +17252,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}'
|
||||
path: '/{containerName}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17512,8 +17534,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -17876,8 +17899,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18074,8 +18098,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -18329,8 +18354,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!BinaryResponse>
|
||||
binary: true
|
||||
|
@ -18743,8 +18769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: head
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19031,8 +19058,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: delete
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19368,8 +19396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{filesystem}/{path}'
|
||||
path: '/{filesystem}/{path}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19491,8 +19520,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19734,8 +19764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -19970,8 +20001,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20169,8 +20201,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20353,8 +20386,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20534,8 +20568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20729,8 +20764,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -20915,8 +20951,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21150,8 +21187,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21431,8 +21469,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21707,8 +21746,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21861,8 +21901,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -21999,8 +22040,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22111,8 +22153,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22267,11 +22310,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -22410,8 +22454,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_20
|
||||
|
@ -22762,8 +22807,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23101,12 +23147,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23399,8 +23446,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23773,8 +23821,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -23985,8 +24034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_820
|
||||
|
@ -24220,8 +24270,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_820
|
||||
|
@ -24441,8 +24492,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24636,8 +24688,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -24811,8 +24864,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25152,8 +25206,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25458,13 +25513,14 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
- text/plain
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -25829,8 +25885,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26199,12 +26256,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26448,12 +26506,13 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpBinaryRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
binary: true
|
||||
knownMediaType: binary
|
||||
mediaTypes:
|
||||
- application/octet-stream
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -26745,8 +26804,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27112,11 +27172,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: put
|
||||
knownMediaType: xml
|
||||
mediaTypes:
|
||||
- application/xml
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -27294,8 +27355,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{url}/{containerName}/{blob}'
|
||||
path: '/{containerName}/{blob}'
|
||||
method: get
|
||||
url: '{url}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_970
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -56,56 +56,6 @@ schemas: !<!Schemas>
|
|||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_6
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_7
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_9
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_0
|
||||
strings:
|
||||
|
@ -129,7 +79,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean.quirks
|
||||
|
@ -150,8 +100,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -193,7 +144,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -212,11 +163,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -261,11 +213,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -304,7 +257,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_8
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -323,11 +276,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -372,11 +326,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_9
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -420,11 +375,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -56,56 +56,6 @@ schemas: !<!Schemas>
|
|||
name: paths·bool-true·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_6
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-true·put·requestbody·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_7
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-false·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-false·put·requestbody·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_9
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-null·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-invalid·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_1
|
||||
strings:
|
||||
|
@ -129,7 +79,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean.quirks
|
||||
|
@ -150,8 +100,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -193,7 +144,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_5
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -212,11 +163,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -261,11 +213,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_3
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -304,7 +257,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_5
|
||||
- !<!Parameter>
|
||||
schema: *ref_8
|
||||
schema: *ref_3
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -323,11 +276,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -372,11 +326,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_9
|
||||
schema: *ref_3
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -420,11 +375,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_3
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -56,56 +56,6 @@ schemas: !<!Schemas>
|
|||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_6
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_7
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_9
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_0
|
||||
strings:
|
||||
|
@ -129,7 +79,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean.quirks
|
||||
|
@ -150,8 +100,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -193,7 +144,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_6
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -212,11 +163,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -261,11 +213,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -304,7 +257,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_3
|
||||
- !<!Parameter>
|
||||
schema: *ref_8
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -323,11 +276,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -372,11 +326,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_9
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -420,11 +375,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_4
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -53,17 +53,7 @@ schemas: !<!Schemas>
|
|||
name: bool
|
||||
description: simple boolean
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_11
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -97,7 +87,6 @@ schemas: !<!Schemas>
|
|||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
value: true
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
|
@ -108,38 +97,6 @@ schemas: !<!Schemas>
|
|||
name: Constant1
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_8
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Constant2
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_9
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Constant3
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_1
|
||||
strings:
|
||||
|
@ -163,7 +120,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean
|
||||
|
@ -184,8 +141,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -227,7 +185,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_4
|
||||
- !<!Parameter>
|
||||
schema: *ref_7
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -246,11 +204,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -295,11 +254,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -338,7 +298,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_4
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_7
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -357,11 +317,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -406,11 +367,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -454,11 +416,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_11
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -53,7 +53,7 @@ schemas: !<!Schemas>
|
|||
name: bool
|
||||
description: simple boolean
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -63,16 +63,6 @@ schemas: !<!Schemas>
|
|||
name: paths·bool-null·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_11
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-invalid·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
constants:
|
||||
- !<!ConstantSchema> &ref_4
|
||||
type: constant
|
||||
|
@ -92,23 +82,6 @@ schemas: !<!Schemas>
|
|||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_7
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
value: true
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-true·put·requestbody·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_8
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -124,22 +97,6 @@ schemas: !<!Schemas>
|
|||
name: paths·bool-false·get·responses·200·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_9
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: paths·bool-false·put·requestbody·content·application-json·schema
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_2
|
||||
strings:
|
||||
|
@ -163,7 +120,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean
|
||||
|
@ -184,8 +141,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -227,7 +185,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_6
|
||||
- !<!Parameter>
|
||||
schema: *ref_7
|
||||
schema: *ref_4
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -246,11 +204,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -295,11 +254,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -338,7 +298,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_6
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_7
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -357,11 +317,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -406,11 +367,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -454,11 +416,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_11
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -53,17 +53,7 @@ schemas: !<!Schemas>
|
|||
name: bool
|
||||
description: simple boolean
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_10
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: boolean
|
||||
description: MISSING·SCHEMA-DESCRIPTION-BOOLEAN
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!BooleanSchema> &ref_11
|
||||
- !<!BooleanSchema> &ref_8
|
||||
type: boolean
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
|
@ -97,7 +87,6 @@ schemas: !<!Schemas>
|
|||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
value: true
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
|
@ -108,38 +97,6 @@ schemas: !<!Schemas>
|
|||
name: Constant1
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_8
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Constant2
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
- !<!ConstantSchema> &ref_9
|
||||
type: constant
|
||||
apiVersions:
|
||||
- !<!ApiVersion>
|
||||
version: 1.0.0
|
||||
value: !<!ConstantValue>
|
||||
language:
|
||||
default:
|
||||
name: ''
|
||||
description: ''
|
||||
valueType: *ref_0
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: Constant3
|
||||
description: MISSING·SCHEMA-DESCRIPTION-CHOICE
|
||||
protocol: !<!Protocols> {}
|
||||
numbers:
|
||||
- *ref_1
|
||||
strings:
|
||||
|
@ -163,7 +120,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-boolean
|
||||
|
@ -184,8 +141,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -227,7 +185,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_4
|
||||
- !<!Parameter>
|
||||
schema: *ref_7
|
||||
schema: *ref_5
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -246,11 +204,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/true'
|
||||
path: /bool/true
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -295,11 +254,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_8
|
||||
schema: *ref_7
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -338,7 +298,7 @@ operationGroups:
|
|||
parameters:
|
||||
- *ref_4
|
||||
- !<!Parameter>
|
||||
schema: *ref_9
|
||||
schema: *ref_7
|
||||
implementation: Method
|
||||
required: true
|
||||
extensions:
|
||||
|
@ -357,11 +317,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/bool/false'
|
||||
path: /bool/false
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -406,11 +367,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/null'
|
||||
path: /bool/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_10
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
@ -454,11 +416,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/bool/invalid'
|
||||
path: /bool/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_11
|
||||
schema: *ref_8
|
||||
language: !<!Languages>
|
||||
default:
|
||||
name: ''
|
||||
|
|
|
@ -113,7 +113,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest Swagger BAT
|
||||
title: body-byte
|
||||
|
@ -134,8 +134,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/null'
|
||||
path: /byte/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -182,8 +183,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/empty'
|
||||
path: /byte/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -230,8 +232,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -292,11 +295,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -341,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/invalid'
|
||||
path: /byte/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
|
@ -113,7 +113,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest Swagger BAT
|
||||
title: body-byte
|
||||
|
@ -134,8 +134,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/null'
|
||||
path: /byte/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -182,8 +183,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/empty'
|
||||
path: /byte/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -230,8 +232,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -292,11 +295,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -341,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/invalid'
|
||||
path: /byte/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
|
@ -113,7 +113,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest Swagger BAT
|
||||
title: body-byte
|
||||
|
@ -134,8 +134,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/null'
|
||||
path: /byte/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -182,8 +183,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/empty'
|
||||
path: /byte/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -230,8 +232,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -292,11 +295,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/byte/nonAscii'
|
||||
path: /byte/nonAscii
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -341,8 +345,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/byte/invalid'
|
||||
path: /byte/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
|
@ -1742,7 +1742,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-complex
|
||||
|
@ -1763,8 +1763,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1836,11 +1837,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1885,8 +1887,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/invalid'
|
||||
path: /complex/basic/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1933,8 +1936,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/empty'
|
||||
path: /complex/basic/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1981,8 +1985,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/null'
|
||||
path: /complex/basic/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -2029,8 +2034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/notprovided'
|
||||
path: /complex/basic/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -2085,8 +2091,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_85
|
||||
|
@ -2147,11 +2154,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2196,8 +2204,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_86
|
||||
|
@ -2258,11 +2267,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2307,8 +2317,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_87
|
||||
|
@ -2369,11 +2380,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2418,8 +2430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_88
|
||||
|
@ -2480,11 +2493,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2529,8 +2543,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_89
|
||||
|
@ -2591,11 +2606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2640,8 +2656,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_90
|
||||
|
@ -2702,11 +2719,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2751,8 +2769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_91
|
||||
|
@ -2813,11 +2832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2862,8 +2882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_92
|
||||
|
@ -2924,11 +2945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2973,8 +2995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_93
|
||||
|
@ -3035,11 +3058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3084,8 +3108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_94
|
||||
|
@ -3146,11 +3171,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3195,8 +3221,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_95
|
||||
|
@ -3257,11 +3284,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3314,8 +3342,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3376,11 +3405,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3425,8 +3455,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3476,7 +3507,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty array
|
||||
description: 'Please put an array with 4 items: "1, 2, 3, 4", "", null, "&S#$(*Y", "The quick brown fox jumps over the lazy dog"'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3487,11 +3518,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3536,8 +3568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/notprovided'
|
||||
path: /complex/array/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3592,8 +3625,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3654,11 +3688,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3703,8 +3738,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3754,7 +3790,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty dictionary
|
||||
description: 'Please put a dictionary with 5 key-value pairs: "txt":"notepad", "bmp":"mspaint", "xls":"excel", "exe":"", "":null'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3765,11 +3801,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3814,8 +3851,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/null'
|
||||
path: /complex/dictionary/typed/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3862,8 +3900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/notprovided'
|
||||
path: /complex/dictionary/typed/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3918,8 +3957,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_2
|
||||
|
@ -3980,11 +4020,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4037,8 +4078,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -4132,11 +4174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4181,8 +4224,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/dotsyntax'
|
||||
path: /complex/polymorphism/dotsyntax
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_14
|
||||
|
@ -4229,8 +4273,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithDiscriminator'
|
||||
path: /complex/polymorphism/composedWithDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4277,8 +4322,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithoutDiscriminator'
|
||||
path: /complex/polymorphism/composedWithoutDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4325,8 +4371,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -4387,11 +4434,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4450,11 +4498,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingdiscriminator'
|
||||
path: /complex/polymorphism/missingdiscriminator
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -4507,32 +4556,39 @@ operationGroups:
|
|||
default:
|
||||
name: complexBody
|
||||
description: |-
|
||||
Please attempt put a sawshark that looks like this, the client should not allow this data to be sent:
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "snaggle toothed",
|
||||
"length": 18.5,
|
||||
"age": 2,
|
||||
"birthday": "2013-06-01T01:00:00Z",
|
||||
"location": "alaska",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"birthday": "2012-01-05T01:00:00Z",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4543,11 +4599,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingrequired/invalid'
|
||||
path: /complex/polymorphism/missingrequired/invalid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4600,8 +4657,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -4654,57 +4712,37 @@ operationGroups:
|
|||
description: |-
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "king",
|
||||
"length": 1,
|
||||
"age": 1,
|
||||
"location": "alaska",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "coho",
|
||||
"length": 2,
|
||||
"age": 2,
|
||||
"location": "atlantic",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4715,11 +4753,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4772,8 +4811,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_99
|
||||
|
@ -4834,11 +4874,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4891,8 +4932,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/flatten/valid'
|
||||
path: /complex/flatten/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_17
|
||||
|
|
|
@ -1742,7 +1742,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-complex
|
||||
|
@ -1763,8 +1763,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_81
|
||||
|
@ -1836,11 +1837,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1885,8 +1887,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/invalid'
|
||||
path: /complex/basic/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_81
|
||||
|
@ -1933,8 +1936,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/empty'
|
||||
path: /complex/basic/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_81
|
||||
|
@ -1981,8 +1985,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/null'
|
||||
path: /complex/basic/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_81
|
||||
|
@ -2029,8 +2034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/notprovided'
|
||||
path: /complex/basic/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_81
|
||||
|
@ -2085,8 +2091,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_85
|
||||
|
@ -2147,11 +2154,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2196,8 +2204,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_86
|
||||
|
@ -2258,11 +2267,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2307,8 +2317,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_87
|
||||
|
@ -2369,11 +2380,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2418,8 +2430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_88
|
||||
|
@ -2480,11 +2493,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2529,8 +2543,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_89
|
||||
|
@ -2591,11 +2606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2640,8 +2656,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_90
|
||||
|
@ -2702,11 +2719,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2751,8 +2769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_91
|
||||
|
@ -2813,11 +2832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2862,8 +2882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_92
|
||||
|
@ -2924,11 +2945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2973,8 +2995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_93
|
||||
|
@ -3035,11 +3058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3084,8 +3108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_94
|
||||
|
@ -3146,11 +3171,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3195,8 +3221,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_95
|
||||
|
@ -3257,11 +3284,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3314,8 +3342,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3376,11 +3405,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3425,8 +3455,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3476,7 +3507,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty array
|
||||
description: 'Please put an array with 4 items: "1, 2, 3, 4", "", null, "&S#$(*Y", "The quick brown fox jumps over the lazy dog"'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3487,11 +3518,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3536,8 +3568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/notprovided'
|
||||
path: /complex/array/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3592,8 +3625,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3654,11 +3688,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3703,8 +3738,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3754,7 +3790,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty dictionary
|
||||
description: 'Please put a dictionary with 5 key-value pairs: "txt":"notepad", "bmp":"mspaint", "xls":"excel", "exe":"", "":null'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3765,11 +3801,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3814,8 +3851,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/null'
|
||||
path: /complex/dictionary/typed/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3862,8 +3900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/notprovided'
|
||||
path: /complex/dictionary/typed/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3918,8 +3957,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_15
|
||||
|
@ -3980,11 +4020,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4037,8 +4078,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_18
|
||||
|
@ -4132,11 +4174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4181,8 +4224,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/dotsyntax'
|
||||
path: /complex/polymorphism/dotsyntax
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_33
|
||||
|
@ -4229,8 +4273,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithDiscriminator'
|
||||
path: /complex/polymorphism/composedWithDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4277,8 +4322,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithoutDiscriminator'
|
||||
path: /complex/polymorphism/composedWithoutDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4325,8 +4371,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_22
|
||||
|
@ -4387,11 +4434,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4450,11 +4498,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingdiscriminator'
|
||||
path: /complex/polymorphism/missingdiscriminator
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_22
|
||||
|
@ -4507,32 +4556,39 @@ operationGroups:
|
|||
default:
|
||||
name: complexBody
|
||||
description: |-
|
||||
Please attempt put a sawshark that looks like this, the client should not allow this data to be sent:
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "snaggle toothed",
|
||||
"length": 18.5,
|
||||
"age": 2,
|
||||
"birthday": "2013-06-01T01:00:00Z",
|
||||
"location": "alaska",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"birthday": "2012-01-05T01:00:00Z",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4543,11 +4599,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingrequired/invalid'
|
||||
path: /complex/polymorphism/missingrequired/invalid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4600,8 +4657,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_18
|
||||
|
@ -4654,57 +4712,37 @@ operationGroups:
|
|||
description: |-
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "king",
|
||||
"length": 1,
|
||||
"age": 1,
|
||||
"location": "alaska",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "coho",
|
||||
"length": 2,
|
||||
"age": 2,
|
||||
"location": "atlantic",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4715,11 +4753,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4772,8 +4811,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_99
|
||||
|
@ -4834,11 +4874,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4891,8 +4932,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/flatten/valid'
|
||||
path: /complex/flatten/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_40
|
||||
|
|
|
@ -1742,7 +1742,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-complex
|
||||
|
@ -1763,8 +1763,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1836,11 +1837,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/basic/valid'
|
||||
path: /complex/basic/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1885,8 +1887,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/invalid'
|
||||
path: /complex/basic/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1933,8 +1936,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/empty'
|
||||
path: /complex/basic/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -1981,8 +1985,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/null'
|
||||
path: /complex/basic/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -2029,8 +2034,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/basic/notprovided'
|
||||
path: /complex/basic/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_82
|
||||
|
@ -2085,8 +2091,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_85
|
||||
|
@ -2147,11 +2154,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/integer'
|
||||
path: /complex/primitive/integer
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2196,8 +2204,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_86
|
||||
|
@ -2258,11 +2267,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/long'
|
||||
path: /complex/primitive/long
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2307,8 +2317,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_87
|
||||
|
@ -2369,11 +2380,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/float'
|
||||
path: /complex/primitive/float
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2418,8 +2430,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_88
|
||||
|
@ -2480,11 +2493,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/double'
|
||||
path: /complex/primitive/double
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2529,8 +2543,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_89
|
||||
|
@ -2591,11 +2606,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/bool'
|
||||
path: /complex/primitive/bool
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2640,8 +2656,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_90
|
||||
|
@ -2702,11 +2719,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/string'
|
||||
path: /complex/primitive/string
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2751,8 +2769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_91
|
||||
|
@ -2813,11 +2832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/date'
|
||||
path: /complex/primitive/date
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2862,8 +2882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_92
|
||||
|
@ -2924,11 +2945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetime'
|
||||
path: /complex/primitive/datetime
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -2973,8 +2995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_93
|
||||
|
@ -3035,11 +3058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/datetimerfc1123'
|
||||
path: /complex/primitive/datetimerfc1123
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3084,8 +3108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_94
|
||||
|
@ -3146,11 +3171,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/duration'
|
||||
path: /complex/primitive/duration
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3195,8 +3221,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_95
|
||||
|
@ -3257,11 +3284,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/primitive/byte'
|
||||
path: /complex/primitive/byte
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3314,8 +3342,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3376,11 +3405,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/valid'
|
||||
path: /complex/array/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3425,8 +3455,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3476,7 +3507,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty array
|
||||
description: 'Please put an array with 4 items: "1, 2, 3, 4", "", null, "&S#$(*Y", "The quick brown fox jumps over the lazy dog"'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3487,11 +3518,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/array/empty'
|
||||
path: /complex/array/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3536,8 +3568,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/array/notprovided'
|
||||
path: /complex/array/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_96
|
||||
|
@ -3592,8 +3625,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3654,11 +3688,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/valid'
|
||||
path: /complex/dictionary/typed/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3703,8 +3738,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3754,7 +3790,7 @@ operationGroups:
|
|||
language: !<!Languages>
|
||||
default:
|
||||
name: complexBody
|
||||
description: Please put an empty dictionary
|
||||
description: 'Please put a dictionary with 5 key-value pairs: "txt":"notepad", "bmp":"mspaint", "xls":"excel", "exe":"", "":null'
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -3765,11 +3801,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/dictionary/typed/empty'
|
||||
path: /complex/dictionary/typed/empty
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -3814,8 +3851,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/null'
|
||||
path: /complex/dictionary/typed/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3862,8 +3900,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/dictionary/typed/notprovided'
|
||||
path: /complex/dictionary/typed/notprovided
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_97
|
||||
|
@ -3918,8 +3957,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_2
|
||||
|
@ -3980,11 +4020,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/inheritance/valid'
|
||||
path: /complex/inheritance/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4037,8 +4078,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -4132,11 +4174,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/valid'
|
||||
path: /complex/polymorphism/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4181,8 +4224,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/dotsyntax'
|
||||
path: /complex/polymorphism/dotsyntax
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_14
|
||||
|
@ -4229,8 +4273,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithDiscriminator'
|
||||
path: /complex/polymorphism/composedWithDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4277,8 +4322,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/composedWithoutDiscriminator'
|
||||
path: /complex/polymorphism/composedWithoutDiscriminator
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_98
|
||||
|
@ -4325,8 +4371,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -4387,11 +4434,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/complicated'
|
||||
path: /complex/polymorphism/complicated
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4450,11 +4498,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingdiscriminator'
|
||||
path: /complex/polymorphism/missingdiscriminator
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -4507,32 +4556,39 @@ operationGroups:
|
|||
default:
|
||||
name: complexBody
|
||||
description: |-
|
||||
Please attempt put a sawshark that looks like this, the client should not allow this data to be sent:
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "snaggle toothed",
|
||||
"length": 18.5,
|
||||
"age": 2,
|
||||
"birthday": "2013-06-01T01:00:00Z",
|
||||
"location": "alaska",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"birthday": "2012-01-05T01:00:00Z",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"picture": base64(FF FF FF FF FE),
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4543,11 +4599,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphism/missingrequired/invalid'
|
||||
path: /complex/polymorphism/missingrequired/invalid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4600,8 +4657,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_5
|
||||
|
@ -4654,57 +4712,37 @@ operationGroups:
|
|||
description: |-
|
||||
Please put a salmon that looks like this:
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "king",
|
||||
"length": 1,
|
||||
"age": 1,
|
||||
"location": "alaska",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "salmon",
|
||||
"species": "coho",
|
||||
"length": 2,
|
||||
"age": 2,
|
||||
"location": "atlantic",
|
||||
"iswild": true,
|
||||
"siblings": [
|
||||
{
|
||||
"fishtype": "shark",
|
||||
"species": "predator",
|
||||
"length": 20,
|
||||
"age": 6
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"fishtype": "sawshark",
|
||||
"species": "dangerous",
|
||||
"length": 10,
|
||||
"age": 105
|
||||
}
|
||||
]
|
||||
}
|
||||
'fishtype':'Salmon',
|
||||
'location':'alaska',
|
||||
'iswild':true,
|
||||
'species':'king',
|
||||
'length':1.0,
|
||||
'siblings':[
|
||||
{
|
||||
'fishtype':'Shark',
|
||||
'age':6,
|
||||
'birthday': '2012-01-05T01:00:00Z',
|
||||
'length':20.0,
|
||||
'species':'predator',
|
||||
},
|
||||
{
|
||||
'fishtype':'Sawshark',
|
||||
'age':105,
|
||||
'birthday': '1900-01-05T01:00:00Z',
|
||||
'length':10.0,
|
||||
'picture': new Buffer([255, 255, 255, 255, 254]).toString('base64'),
|
||||
'species':'dangerous',
|
||||
},
|
||||
{
|
||||
'fishtype': 'goblin',
|
||||
'age': 1,
|
||||
'birthday': '2015-08-08T00:00:00Z',
|
||||
'length': 30.0,
|
||||
'species': 'scary',
|
||||
'jawsize': 5
|
||||
}
|
||||
]
|
||||
};
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: body
|
||||
|
@ -4715,11 +4753,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/polymorphicrecursive/valid'
|
||||
path: /complex/polymorphicrecursive/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4772,8 +4811,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_99
|
||||
|
@ -4834,11 +4874,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/complex/readonlyproperty/valid'
|
||||
path: /complex/readonlyproperty/valid
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -4891,8 +4932,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/complex/flatten/valid'
|
||||
path: /complex/flatten/valid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_17
|
||||
|
|
|
@ -97,7 +97,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-date
|
||||
|
@ -118,8 +118,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/null'
|
||||
path: /date/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -166,8 +167,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/invaliddate'
|
||||
path: /date/invaliddate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -214,8 +216,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/overflowdate'
|
||||
path: /date/overflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -262,8 +265,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/underflowdate'
|
||||
path: /date/underflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -324,11 +328,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -373,8 +378,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -435,11 +441,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -484,8 +491,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -97,7 +97,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-date
|
||||
|
@ -118,8 +118,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/null'
|
||||
path: /date/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -166,8 +167,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/invaliddate'
|
||||
path: /date/invaliddate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -214,8 +216,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/overflowdate'
|
||||
path: /date/overflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -262,8 +265,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/underflowdate'
|
||||
path: /date/underflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -324,11 +328,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -373,8 +378,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -435,11 +441,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -484,8 +491,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -97,7 +97,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-date
|
||||
|
@ -118,8 +118,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/null'
|
||||
path: /date/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -166,8 +167,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/invaliddate'
|
||||
path: /date/invaliddate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -214,8 +216,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/overflowdate'
|
||||
path: /date/overflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -262,8 +265,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/underflowdate'
|
||||
path: /date/underflowdate
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -324,11 +328,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -373,8 +378,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/max'
|
||||
path: /date/max
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -435,11 +441,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -484,8 +491,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/date/min'
|
||||
path: /date/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime-rfc1123
|
||||
|
@ -119,8 +119,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/null'
|
||||
path: /datetimerfc1123/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -167,8 +168,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/invalid'
|
||||
path: /datetimerfc1123/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -215,8 +217,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/overflow'
|
||||
path: /datetimerfc1123/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -263,8 +266,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/underflow'
|
||||
path: /datetimerfc1123/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -325,11 +329,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/max'
|
||||
path: /datetimerfc1123/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -374,8 +379,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/lowercase'
|
||||
path: /datetimerfc1123/max/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -422,8 +428,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/uppercase'
|
||||
path: /datetimerfc1123/max/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -484,11 +491,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -533,8 +541,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime-rfc1123
|
||||
|
@ -119,8 +119,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/null'
|
||||
path: /datetimerfc1123/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -167,8 +168,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/invalid'
|
||||
path: /datetimerfc1123/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -215,8 +217,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/overflow'
|
||||
path: /datetimerfc1123/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -263,8 +266,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/underflow'
|
||||
path: /datetimerfc1123/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -325,11 +329,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/max'
|
||||
path: /datetimerfc1123/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -374,8 +379,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/lowercase'
|
||||
path: /datetimerfc1123/max/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -422,8 +428,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/uppercase'
|
||||
path: /datetimerfc1123/max/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -484,11 +491,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -533,8 +541,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -98,7 +98,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime-rfc1123
|
||||
|
@ -119,8 +119,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/null'
|
||||
path: /datetimerfc1123/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -167,8 +168,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/invalid'
|
||||
path: /datetimerfc1123/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -215,8 +217,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/overflow'
|
||||
path: /datetimerfc1123/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -263,8 +266,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/underflow'
|
||||
path: /datetimerfc1123/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -325,11 +329,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/max'
|
||||
path: /datetimerfc1123/max
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -374,8 +379,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/lowercase'
|
||||
path: /datetimerfc1123/max/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -422,8 +428,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/max/uppercase'
|
||||
path: /datetimerfc1123/max/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -484,11 +491,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -533,8 +541,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetimerfc1123/min'
|
||||
path: /datetimerfc1123/min
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
|
|
@ -115,7 +115,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime
|
||||
|
@ -136,8 +136,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/null'
|
||||
path: /datetime/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -184,8 +185,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/invalid'
|
||||
path: /datetime/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -232,8 +234,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/overflow'
|
||||
path: /datetime/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -280,8 +283,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/underflow'
|
||||
path: /datetime/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -342,11 +346,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/utc'
|
||||
path: /datetime/max/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -391,8 +396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/lowercase'
|
||||
path: /datetime/max/utc/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -439,8 +445,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/uppercase'
|
||||
path: /datetime/max/utc/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -501,11 +508,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset'
|
||||
path: /datetime/max/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -550,8 +558,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/lowercase'
|
||||
path: /datetime/max/localpositiveoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -598,8 +607,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/uppercase'
|
||||
path: /datetime/max/localpositiveoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -660,11 +670,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset'
|
||||
path: /datetime/max/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -709,8 +720,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/uppercase'
|
||||
path: /datetime/max/localnegativeoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -757,8 +769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/lowercase'
|
||||
path: /datetime/max/localnegativeoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -819,11 +832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -868,8 +882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -930,11 +945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -979,8 +995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -1041,11 +1058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1090,8 +1108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
|
@ -115,7 +115,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime
|
||||
|
@ -136,8 +136,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/null'
|
||||
path: /datetime/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -184,8 +185,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/invalid'
|
||||
path: /datetime/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -232,8 +234,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/overflow'
|
||||
path: /datetime/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -280,8 +283,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/underflow'
|
||||
path: /datetime/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -342,11 +346,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/utc'
|
||||
path: /datetime/max/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -391,8 +396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/lowercase'
|
||||
path: /datetime/max/utc/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -439,8 +445,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/uppercase'
|
||||
path: /datetime/max/utc/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -501,11 +508,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset'
|
||||
path: /datetime/max/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -550,8 +558,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/lowercase'
|
||||
path: /datetime/max/localpositiveoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -598,8 +607,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/uppercase'
|
||||
path: /datetime/max/localpositiveoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -660,11 +670,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset'
|
||||
path: /datetime/max/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -709,8 +720,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/uppercase'
|
||||
path: /datetime/max/localnegativeoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -757,8 +769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/lowercase'
|
||||
path: /datetime/max/localnegativeoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -819,11 +832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -868,8 +882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -930,11 +945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -979,8 +995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -1041,11 +1058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1090,8 +1108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
|
@ -115,7 +115,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-datetime
|
||||
|
@ -136,8 +136,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/null'
|
||||
path: /datetime/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -184,8 +185,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/invalid'
|
||||
path: /datetime/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -232,8 +234,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/overflow'
|
||||
path: /datetime/overflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -280,8 +283,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/underflow'
|
||||
path: /datetime/underflow
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -342,11 +346,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/utc'
|
||||
path: /datetime/max/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -391,8 +396,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/lowercase'
|
||||
path: /datetime/max/utc/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -439,8 +445,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/utc/uppercase'
|
||||
path: /datetime/max/utc/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -501,11 +508,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset'
|
||||
path: /datetime/max/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -550,8 +558,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/lowercase'
|
||||
path: /datetime/max/localpositiveoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -598,8 +607,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localpositiveoffset/uppercase'
|
||||
path: /datetime/max/localpositiveoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -660,11 +670,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset'
|
||||
path: /datetime/max/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -709,8 +720,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/uppercase'
|
||||
path: /datetime/max/localnegativeoffset/uppercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -757,8 +769,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/max/localnegativeoffset/lowercase'
|
||||
path: /datetime/max/localnegativeoffset/lowercase
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -819,11 +832,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -868,8 +882,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/utc'
|
||||
path: /datetime/min/utc
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_6
|
||||
|
@ -930,11 +945,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -979,8 +995,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localpositiveoffset'
|
||||
path: /datetime/min/localpositiveoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
@ -1041,11 +1058,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -1090,8 +1108,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/datetime/min/localnegativeoffset'
|
||||
path: /datetime/min/localnegativeoffset
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_7
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -79,7 +79,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-duration
|
||||
|
@ -100,8 +100,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/null'
|
||||
path: /duration/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -162,11 +163,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/duration/positiveduration'
|
||||
path: /duration/positiveduration
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -211,8 +213,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/positiveduration'
|
||||
path: /duration/positiveduration
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
@ -259,8 +262,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/invalid'
|
||||
path: /duration/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_4
|
||||
|
|
|
@ -79,7 +79,7 @@ globalParameters:
|
|||
description: server parameter
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpParameter>
|
||||
in: path
|
||||
in: uri
|
||||
info: !<!Info>
|
||||
description: Test Infrastructure for AutoRest
|
||||
title: body-duration
|
||||
|
@ -100,8 +100,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/null'
|
||||
path: /duration/null
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -162,11 +163,12 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpWithBodyRequest>
|
||||
path: '{$host}/duration/positiveduration'
|
||||
path: /duration/positiveduration
|
||||
method: put
|
||||
knownMediaType: json
|
||||
mediaTypes:
|
||||
- application/json
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!Response>
|
||||
language: !<!Languages>
|
||||
|
@ -211,8 +213,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/positiveduration'
|
||||
path: /duration/positiveduration
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
@ -259,8 +262,9 @@ operationGroups:
|
|||
description: ''
|
||||
protocol: !<!Protocols>
|
||||
http: !<!HttpRequest>
|
||||
path: '{$host}/duration/invalid'
|
||||
path: /duration/invalid
|
||||
method: get
|
||||
url: '{$host}'
|
||||
responses:
|
||||
- !<!SchemaResponse>
|
||||
schema: *ref_3
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче