@aws-sdk/client-artifact 3.710.0 → 3.711.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -89,6 +89,39 @@ declare const ListCustomerAgreementsCommand_base: {
89
89
  * <p>Base exception class for all service exceptions from Artifact service.</p>
90
90
  *
91
91
  * @public
92
+ * @example Invoke ListCustomerAgreements operation
93
+ * ```javascript
94
+ * // The ListCustomerAgreements operation returns a collection of customer-agreement resources in the ACTIVE state for the calling credential.
95
+ * const input = {};
96
+ * const command = new ListCustomerAgreementsCommand(input);
97
+ * const response = await client.send(command);
98
+ * /* response ==
99
+ * {
100
+ * "customerAgreements": [
101
+ * {
102
+ * "name": "Name of agreement",
103
+ * "type": "DEFAULT",
104
+ * "acceptanceTerms": [
105
+ * "terms acknowledged when agreement was accepted"
106
+ * ],
107
+ * "agreementArn": "arn:aws:artifact:::agreement/agreement-abcdef0123456789",
108
+ * "arn": "arn:aws:artifact::111111111111:customer-agreement/customer-agreement-abcdef0123456789",
109
+ * "awsAccountId": "111111111111",
110
+ * "description": "Description of agreement",
111
+ * "effectiveStart": "2022-04-01T20:32:04Z",
112
+ * "id": "customer-agreement-abcdef0123456789",
113
+ * "state": "ACTIVE",
114
+ * "terminateTerms": [
115
+ * "terms that must be acknowledged to terminate this agreement"
116
+ * ]
117
+ * }
118
+ * ],
119
+ * "nextToken": "gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7gPFEGk7CF4wS901w7ppYclt7"
120
+ * }
121
+ * *\/
122
+ * // example id: example-1
123
+ * ```
124
+ *
92
125
  */
93
126
  export declare class ListCustomerAgreementsCommand extends ListCustomerAgreementsCommand_base {
94
127
  /** @internal type navigation helper, not in runtime. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-artifact",
3
3
  "description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native",
4
- "version": "3.710.0",
4
+ "version": "3.711.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",