swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector ExposureControl API schemes: - https tags: - name: ExposureControl paths: /features: post: tags: - ExposureControl description: Gets details from a list of features. operationId: microsoftAzureExposurecontrolGetfeatures consumes: - application/json produces: - application/json parameters: - $ref: '#/parameters/api-version' - in: body name: body required: true schema: $ref: '#/definitions/BatchFeatureRequest' responses: '200': description: Success schema: $ref: '#/definitions/BatchFeatureStatus' default: description: An error response received from the provider. schema: $ref: '#/definitions/ErrorResponseModel' x-ms-examples: ExposureControl_GetFeatures: $ref: ./examples/ExposureControl_GetFeatures.json summary: Microsoft Azure Post Features definitions: ErrorResponseModel: description: Default error response model type: object properties: error: $ref: '#/definitions/ErrorModel' ErrorModel: description: Default error model type: object properties: code: description: Gets or sets the code. type: string readOnly: true details: description: Gets or sets the details. type: array items: $ref: '#/definitions/ErrorModel' readOnly: true message: description: Gets or sets the messages. type: string readOnly: true target: description: Gets or sets the target. type: string readOnly: true BatchFeatureRequest: description: Feature request model type: object properties: features: description: Set of features uniqueItems: true type: array items: type: string BatchFeatureStatus: description: List of features with enabled status type: object properties: features: description: Features with enabled status type: object additionalProperties: type: boolean readOnly: true parameters: api-version: in: query name: api-version description: The api version to use. required: true type: string x-ms-client-name: ApiVersion x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'