swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector Revisions API schemes: - https tags: - name: Revisions paths: /revisions: get: tags: - Revisions summary: Microsoft Azure Gets A List Of Key Value Revisions operationId: microsoftAzureGetrevisions consumes: [] produces: - application/vnd.microsoft.appconfig.kvset+json - application/problem+json parameters: - name: key in: query description: A filter used to match keys. type: string - name: label in: query description: A filter used to match labels type: string - $ref: '#/parameters/SyncTokens' - $ref: '#/parameters/ApiVersion' - name: After in: query description: Instructs the server to return elements that appear after the element referred to by the specified token. type: string - name: Accept-Datetime in: header description: Requests the server to respond with the state of the resource at the specified time. type: string - $ref: '#/parameters/KeyValueFields' responses: '200': description: Success schema: $ref: '#/definitions/KeyValueListResult' headers: Sync-Token: description: Enables real-time consistency between requests by providing the returned value in the next request made to the server. type: string default: description: Error response describing why the operation failed schema: $ref: '#/definitions/Error' x-ms-examples: GetRevisions: $ref: ./examples/GetRevisions.json x-ms-pageable: itemName: items nextLinkName: '@nextLink' description: Needs a more full description created. head: tags: - Revisions summary: Microsoft Azure Requests The Headers And Status Of The Given Resource operationId: microsoftAzureCheckrevisions consumes: [] produces: [] parameters: - name: key in: query description: A filter used to match keys. type: string - name: label in: query description: A filter used to match labels type: string - $ref: '#/parameters/SyncTokens' - $ref: '#/parameters/ApiVersion' - name: After in: query description: Instructs the server to return elements that appear after the element referred to by the specified token. type: string - name: Accept-Datetime in: header description: Requests the server to respond with the state of the resource at the specified time. type: string - $ref: '#/parameters/KeyValueFields' responses: '200': description: Success headers: Sync-Token: description: Enables real-time consistency between requests by providing the returned value in the next request made to the server. type: string default: description: Error response. x-ms-examples: CheckRevisions: $ref: ./examples/CheckRevisions.json description: Needs a more full description created. definitions: KeyValue: type: object properties: key: type: string description: The key of the key-value. label: type: string description: The label the key-value belongs to. content_type: type: string description: The content type of the value stored within the key-value. value: type: string description: The value of the key-value. last_modified: format: date-time type: string description: A date representing the last time the key-value was modified. tags: type: object additionalProperties: type: string description: The tags of the key-value locked: type: boolean description: Indicates whether the key-value is locked. etag: type: string description: A value representing the current state of the resource. KeyValueListResult: description: The result of a list request. type: object properties: items: description: The collection value. type: array items: $ref: '#/definitions/KeyValue' '@nextLink': description: The URI that can be used to request the next set of paged results. type: string Error: description: Azure App Configuration error object. type: object properties: type: description: The type of the error. type: string title: description: A brief summary of the error. type: string name: description: The name of the parameter that resulted in the error. type: string detail: description: A detailed description of the error. type: string status: description: The HTTP status code that the error maps to. type: integer readOnly: true parameters: SyncTokens: name: Sync-Token in: header description: Used to guarantee real-time consistency between requests. type: string ApiVersion: name: api-version in: query description: The API version to be used with the HTTP request. required: true type: string KeyValueFields: name: $Select in: query description: Used to select what fields are present in the returned resource(s). type: array items: type: string enum: - key - label - content_type - value - last_modified - tags - locked - etag x-ms-enum: name: KeyValueFields modelAsString: true x-ms-parameter-location: method collectionFormat: csv x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'