-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Jun 19, 2024
1 parent
ea0c69a
commit 4fb139e
Showing
26 changed files
with
895 additions
and
511 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[ | ||
{ | ||
"type": "feature", | ||
"category": "Artifact", | ||
"description": "This release adds an acceptanceType field to the ReportSummary structure (used in the ListReports API response)." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "Athena", | ||
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "CUR", | ||
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "DirectConnect", | ||
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "ElasticTranscoder", | ||
"description": "Add v2 smoke tests and smithy smokeTests trait for SDK testing." | ||
}, | ||
{ | ||
"type": "feature", | ||
"category": "OpenSearch", | ||
"description": "This release enables customers to use JSON Web Tokens (JWT) for authentication on their Amazon OpenSearch Service domains." | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,118 @@ | ||
{ | ||
"version": "1.0", | ||
"examples": { | ||
"GetAccountSettings": [ | ||
{ | ||
"input": { | ||
}, | ||
"output": { | ||
"accountSettings": { | ||
"notificationSubscriptionStatus": "SUBSCRIBED" | ||
} | ||
}, | ||
"description": "Get the current account settings.", | ||
"id": "example-1", | ||
"title": "Invoke GetAccountSettings operation" | ||
} | ||
], | ||
"GetReport": [ | ||
{ | ||
"input": { | ||
"reportId": "report-1hVFddebtfDNJAUf", | ||
"termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7" | ||
}, | ||
"output": { | ||
"documentPresignedUrl": "<Presigned S3 URL>" | ||
}, | ||
"description": "The GetReport operation is invoked on a reportId and on a optional version.\n Callers must provide a termToken, which is provided by the GetTermForReport\n operation. If callers do not provide a version, it will default to the\n report's latest version", | ||
"id": "example-1", | ||
"title": "Invoke GetReport operation on the latest version of a specific report" | ||
} | ||
], | ||
"GetReportMetadata": [ | ||
{ | ||
"input": { | ||
"reportId": "report-bqhUJF3FrQZsMJpb" | ||
}, | ||
"output": { | ||
"reportDetails": { | ||
"version": 1, | ||
"name": "Name of report", | ||
"arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb:1", | ||
"category": "Artifact Category", | ||
"companyName": "AWS", | ||
"createdAt": "2022-05-27T23:17:00.343940Z", | ||
"description": "Description of report", | ||
"id": "report-bqhUJF3FrQZsMJpb", | ||
"periodEnd": "2022-04-01T20:32:04Z", | ||
"periodStart": "2022-04-01T20:32:04Z", | ||
"productName": "Product of report", | ||
"series": "Artifact Series", | ||
"state": "PUBLISHED", | ||
"termArn": "arn:aws:artifact:us-east-1::term/term-gLJGG12NyPtYcmtu:1" | ||
} | ||
}, | ||
"description": "The GetReportMetadata operation is invoked on a reportId and on a optional version.\n If callers do not provide a version, it will default to the report's latest version.", | ||
"id": "example-1", | ||
"title": "Invoke GetReportMetadata operation on the latest version of a specific report" | ||
} | ||
], | ||
"GetTermForReport": [ | ||
{ | ||
"input": { | ||
"reportId": "report-bqhUJF3FrQZsMJpb" | ||
}, | ||
"output": { | ||
"documentPresignedUrl": "<Presigned S3 URL>", | ||
"termToken": "term-token-gPFEGk7CF4wS901w7ppYclt7" | ||
}, | ||
"description": "The GetTermForReport operation is invoked on a reportId and on a optional version.\n If callers do not provide a version, it will default to the report's latest version.", | ||
"id": "example-1", | ||
"title": "Invoke GetTermForReport operation on the latest version of a specific report" | ||
} | ||
], | ||
"ListReports": [ | ||
{ | ||
"input": { | ||
}, | ||
"output": { | ||
"nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7", | ||
"reports": [ | ||
{ | ||
"version": 1, | ||
"name": "Name of report", | ||
"arn": "arn:aws:artifact:us-east-1::report/report-bqhUJF3FrQZsMJpb", | ||
"category": "Artifact Category", | ||
"companyName": "AWS", | ||
"description": "Description of report", | ||
"id": "report-bqhUJF3FrQZsMJpb", | ||
"periodEnd": "2022-04-01T20:32:04Z", | ||
"periodStart": "2022-04-01T20:32:04Z", | ||
"productName": "Product of report", | ||
"series": "Artifact Series", | ||
"state": "PUBLISHED" | ||
} | ||
] | ||
}, | ||
"description": "The ListReports operation returns a collection of report resources.", | ||
"id": "example-1", | ||
"title": "Invoke ListReports operation" | ||
} | ||
], | ||
"PutAccountSettings": [ | ||
{ | ||
"input": { | ||
"notificationSubscriptionStatus": "SUBSCRIBED" | ||
}, | ||
"output": { | ||
"accountSettings": { | ||
"notificationSubscriptionStatus": "SUBSCRIBED" | ||
} | ||
}, | ||
"description": "Set the account settings.", | ||
"id": "example-1", | ||
"title": "Invoke PutAccountSettings operation" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.