Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d1a3a36
Make AuthCreateBaseDTO a dictionary
marcus-robinson Feb 22, 2022
cc6543b
Fix missing base paths and hosts
marcus-robinson Feb 22, 2022
fe9e460
Prevent 404 response when sandbox path is missing trailing slash.
marcus-robinson Feb 22, 2022
b1f1de9
Support 404 responses from flow service.
marcus-robinson Feb 22, 2022
d367031
fix issue where getActiveSandboxes fails when trailing slash is missing.
marcus-robinson Feb 22, 2022
480f8ea
Make createFieldGroup.definitions a dictionary.
marcus-robinson Mar 2, 2022
ebb1f65
add 404 response to dataset delete
marcus-robinson Mar 3, 2022
955e509
remove exmple loyalty object from definition
marcus-robinson Mar 3, 2022
2a24c98
define response for field group update
marcus-robinson Mar 3, 2022
7063538
fix incorrect /stats response
marcus-robinson Mar 3, 2022
5ee1a94
incorrect produces val for schemas and fieldgroups
marcus-robinson Mar 4, 2022
a1d5170
incorrect produces val for fieldgroups
marcus-robinson Mar 4, 2022
ab25de2
Add defaults to Accept header
marcus-robinson Mar 4, 2022
f42f232
Add produces field to schema and fieldgroup
marcus-robinson Mar 4, 2022
2cd59c8
change produces field on schema and fieldgroup
marcus-robinson Mar 4, 2022
cbed6ae
Fix "unknown escape character" error
marcus-robinson Mar 7, 2022
ae2c57a
fix incorrect use of required field
marcus-robinson Mar 7, 2022
769466b
fix incorrect streaming message def
marcus-robinson Mar 7, 2022
c1ed038
fix incorrect batch streaming message def
marcus-robinson Mar 7, 2022
2e82123
add 404 to ingest
marcus-robinson Mar 9, 2022
770764b
Support default responses
marcus-robinson Mar 11, 2022
9c3fc53
add body to uploadSmallFile request
marcus-robinson Mar 16, 2022
985f0f2
add id to dataset response
marcus-robinson Mar 25, 2022
ac19aa0
remove id from dataset response
marcus-robinson Mar 25, 2022
0d781bc
add immutableTags property to schema lookup response
marcus-robinson Apr 27, 2022
03a3f2b
list schemas/classes/fieldgroups/datatypes now return full object.
marcus-robinson May 25, 2022
73022d3
fix incorrect accept headers
marcus-robinson Jun 3, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
188 changes: 115 additions & 73 deletions acpdr/swagger-specs/access-control.yaml

Large diffs are not rendered by default.

51 changes: 47 additions & 4 deletions acpdr/swagger-specs/audit-query.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,21 @@ paths:
required: false
type: string
responses:
default:
description: Unexpected error
schema:
$ref: '#/definitions/ErrorResponse'
'200':
description: A successful response returns a list of audit events that match the request query.
schema:
$ref: "#/definitions/CollectionModel"
'400':
schema:
$ref: '#/definitions/ErrorResponse'
description: The request was malformed. Ensure that you are including all required headers before trying again.
'404':
schema:
$ref: '#/definitions/ErrorResponse'
description: The resource was not found.
"/audit/export":
get:
Expand All @@ -83,19 +91,27 @@ paths:
- $ref: '#/parameters/x-request-id'
- $ref: '#/parameters/property'
responses:
default:
description: Unexpected error
schema:
$ref: '#/definitions/ErrorResponse'
'204':
description: The request was successful but no results were found.
'307':
description: The request was successful and the results have been generated into a CSV file for export. A link to the export file is provided in the `Location` response header.
'400':
schema:
$ref: '#/definitions/ErrorResponse'
description: The request was malformed. Ensure that you are including all required headers before trying again.
'404':
schema:
$ref: '#/definitions/ErrorResponse'
description: The resource was not found.
parameters:
authorization:
name: Authorization
description: 'The access token which can be copied from your Experience Platform integration, prefixed with "Bearer ".
For more information on how to obtain this value, visit the [authentication tutorial](http://www.adobe.com/go/platform-api-authentication-en).'
description: 'The access token which can be copied from your Experience Platform integration, prefixed with "Bearer ".
For more information on how to obtain this value, visit the [authentication tutorial](http://www.adobe.com/go/platform-api-authentication-en).'
required: true
type: string
in: header
Expand All @@ -122,8 +138,8 @@ parameters:
in: query
description: >-
You can filter list results by including a `property` query parameter. The value must be an array that contains one or more of a comma-separated list of properties. For example: `?property=action==create,assetType==Sandbox`.


The properties that can be used for filtering are `timestamp`, `status`, `action`, `user`, and `assetType`.
required: false
type: array
Expand All @@ -137,6 +153,33 @@ parameters:
description: A tracing ID associated with the request. If one is not provided on the request, the server generates one automatically.
required: false
definitions:
ErrorResponse:
type: object
properties:
timestamp:
type: string
example: '2019-05-10T22:24:54.914'
type:
type: string
example: 'http://ns.adobe.com/adobecloud/problem/namespacevalidation'
status:
type: integer
example: 404
error:
type: string
example: NAMESPACE_NOT_FOUND
detail:
type: string
example: "Requested resource https://ns.adobe.com/{TENANT_ID}/schemas/20af3f1d4b175f27ba59529d1b51a0c79fc25df454117 with version 1 is not found"
description:
type: string
example: Namespace id not found for given IMS Org 09A55EBC5639E6017F000101@AdobeOrg
title:
type: string
example: Namespace validation
report:
type: object
additionalProperties: true
AbstractAuditLog:
type: object
properties:
Expand Down
Loading