swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector endpointSettings API schemes: - https tags: - name: endpointSettings paths: /endpointSettings: get: summary: Microsoft Azure Gets Endpoint Settings For An Endpoint operationId: microsoftAzureEndpointsettingsGetsettings parameters: [] consumes: - application/json produces: - application/json responses: '200': description: Response with endpoint settings info in it. schema: $ref: '#/definitions/EndpointSettingsDTO' x-nullable: true default: description: Error response. schema: $ref: '#/definitions/ErrorResponse' x-ms-examples: Successful query: $ref: ./examples/SuccessfulGetEpSettings.json description: Needs a more full description created. tags: - endpointSettings definitions: ErrorResponse: type: object description: Error response. As per Microsoft One API guidelines - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses. additionalProperties: false properties: error: description: The error object. allOf: - $ref: '#/definitions/Error' ErrorCode: type: string description: Human readable error code. x-ms-enum: name: ErrorCodeType modelAsString: true enum: - BadArgument - Forbidden - NotFound - KbNotFound - Unauthorized - Unspecified - EndpointKeysError - QuotaExceeded - QnaRuntimeError - SKULimitExceeded - OperationNotFound - ServiceError - ValidationFailure - ExtractionFailure InnerErrorModel: type: object description: An object containing more specific information about the error. As per Microsoft One API guidelines - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses. additionalProperties: false properties: code: type: string description: A more specific error code than was provided by the containing error. innerError: description: An object containing more specific information than the current object about the error. $ref: '#/definitions/InnerErrorModel' ActiveLearningSettingsDTO: type: object description: Active Learning settings of the endpoint. additionalProperties: false properties: enable: type: string description: True/False string providing Active Learning EndpointSettingsDTO: type: object description: Endpoint settings. additionalProperties: false properties: activeLearning: description: Active Learning settings of the endpoint. allOf: - $ref: '#/definitions/ActiveLearningSettingsDTO' Error: type: object description: The error object. As per Microsoft One API guidelines - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses. additionalProperties: false required: - code properties: code: description: One of a server-defined set of error codes. $ref: '#/definitions/ErrorCode' message: type: string description: A human-readable representation of the error. target: type: string description: The target of the error. details: type: array description: An array of details about specific errors that led to this reported error. items: $ref: '#/definitions/Error' innerError: description: An object containing more specific information than the current object about the error. $ref: '#/definitions/InnerErrorModel' x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'