akamai-edgegrid 3.5.2 → 3.5.3
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.
- package/CHANGELOG.md +6 -0
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/examples/README.md +3 -0
- package/examples/delete-credentials.js +1 -1
- package/examples/update-credentials.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/LICENSE
CHANGED
|
@@ -176,7 +176,7 @@ recommend that a file or class name and description of purpose be included on
|
|
|
176
176
|
the same "printed page" as the copyright notice for easier identification within
|
|
177
177
|
third-party archives.
|
|
178
178
|
|
|
179
|
-
Copyright
|
|
179
|
+
Copyright 2025 Akamai Technologies, Inc. All rights reserved.
|
|
180
180
|
|
|
181
181
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
182
182
|
you may not use these files except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -232,7 +232,7 @@ To report an issue or make a suggestion, create a new [GitHub issue](https://git
|
|
|
232
232
|
|
|
233
233
|
## License
|
|
234
234
|
|
|
235
|
-
Copyright
|
|
235
|
+
Copyright 2025 Akamai Technologies, Inc. All rights reserved.
|
|
236
236
|
|
|
237
237
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.
|
|
238
238
|
|
package/examples/README.md
CHANGED
|
@@ -9,6 +9,9 @@ To run any of the files:
|
|
|
9
9
|
1. Append the path to your `.edgerc`. The default is set to the home directory.
|
|
10
10
|
2. Provide the section heading for the set of credentials you'd like to use. The default is `default`.
|
|
11
11
|
3. For update and delete operations, replace the dummy `credentialId` with your valid `credentialId`.
|
|
12
|
+
|
|
13
|
+
> **Important:** Don't use the credentials you're actively using when running the update (inactivation) and delete operations. Otherwise, you'll block your access to the Akamai APIs.
|
|
14
|
+
|
|
12
15
|
4. Open a Terminal or shell instance and run the .js file.
|
|
13
16
|
|
|
14
17
|
```shell
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
//
|
|
9
9
|
// 2. Add the `credentialId` from the update example to the path. You can only delete inactive credentials. Sending the request on an active set will return a 400. Use the update credentials example for deactivation.
|
|
10
10
|
//
|
|
11
|
-
// **Important:** Don't use
|
|
11
|
+
// **Important:** Don't use the credentials you're actively using when deleting a set of credentials. Otherwise, you'll block your access to the Akamai APIs.
|
|
12
12
|
//
|
|
13
13
|
// 3. Open a Terminal or shell instance and run "node example/delete-credentials.js".
|
|
14
14
|
//
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
//
|
|
11
11
|
// 3. Edit the `expiresOn` date to today's date. Optionally, you can change the `description` value.
|
|
12
12
|
//
|
|
13
|
+
// **Important:** Don't use the credentials you're actively using when inactivating a set of credentials. Otherwise, you'll block your access to the Akamai APIs.
|
|
14
|
+
//
|
|
13
15
|
// 4. Open a Terminal or shell instance and run "node example/update-credentials.js".
|
|
14
16
|
//
|
|
15
17
|
// A successful call returns an object with modified credentials.
|