swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector Info API schemes: - https tags: - name: Info paths: /info: get: operationId: microsoftAzureMiscellaneousoperationsGetresourceinfo description: Return information about the current resource. parameters: - $ref: '#/parameters/Azure.Core.Foundations.ApiVersionParameter' responses: '200': description: The request has succeeded. schema: $ref: '#/definitions/ResourceDetails' default: description: An unexpected error response. schema: $ref: '#/definitions/ErrorResponse' x-ms-examples: Get Resource Details: $ref: ./examples/GetResourceDetails.json summary: Microsoft Azure Get Info tags: - Info definitions: CustomDocumentModelsDetails: type: object description: Details regarding custom document models. properties: count: type: integer format: int32 description: Number of custom document models in the current resource. limit: type: integer format: int32 description: Maximum number of custom document models supported in the current resource. required: - count - limit ErrorResponse: type: object description: Error response object. properties: error: $ref: '#/definitions/Error' description: Error info. required: - error QuotaDetails: type: object description: Quota used, limit, and next reset date/time. properties: used: type: integer format: int32 description: Amount of the resource quota used. quota: type: integer format: int32 description: Resource quota limit. quotaResetDateTime: type: string format: date-time description: Date/time when the resource quota usage will be reset. required: - used - quota - quotaResetDateTime ResourceDetails: type: object description: General information regarding the current resource. properties: customDocumentModels: $ref: '#/definitions/CustomDocumentModelsDetails' description: Details regarding custom document models. customNeuralDocumentModelBuilds: $ref: '#/definitions/QuotaDetails' description: Quota used, limit, and next reset date/time. required: - customDocumentModels - customNeuralDocumentModelBuilds InnerError: type: object description: An object containing more specific information about the error. properties: code: type: string description: One of a server-defined set of error codes. message: type: string description: A human-readable representation of the error. innererror: $ref: '#/definitions/InnerError' description: Inner error. Error: type: object description: The error object. properties: code: type: string description: One of a server-defined set of error codes. 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' x-ms-identifiers: [] innererror: $ref: '#/definitions/InnerError' description: An object containing more specific information than the current object about the error. required: - code - message parameters: Azure.Core.Foundations.ApiVersionParameter: name: api-version in: query description: The API version to use for this operation. required: true type: string minLength: 1 x-ms-parameter-location: method x-ms-client-name: apiVersion x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'