akamai_ccu 1.3.3 → 1.3.4
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.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/akamai_ccu/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3d0a61d0f9ebed4ee01089a94de93ce8eca3f70
|
|
4
|
+
data.tar.gz: 825989b16f621c573c37facbba7e31aacd3f8534
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ccb47292f48276e4e0c5b17577aca576ab0f701db0c15067af30a6c25f1cc9a814187b287550a5b74df7e0c878b890f00a0efd2d483cd3ae64812f888340059
|
|
7
|
+
data.tar.gz: 2b81b1d97d34d5020e993896a00a6880f142b7a9aa2c94cf1d63420289d19f6b34303f7364b0c0200b25534f57895a614dbf8e194357b3f2c2cc1fa1cb96b240
|
data/README.md
CHANGED
|
@@ -126,7 +126,7 @@ AkamaiCCU::Wrapper.delete_by_url!(%w[https://akaa-baseurl-xxx-xxx.luna.akamaiapi
|
|
|
126
126
|
|
|
127
127
|
#### Reuse client
|
|
128
128
|
By default `Wrapper` class methods create a brand new Net::HTTP client on each call.
|
|
129
|
-
If this is an issue for you, you can
|
|
129
|
+
If this is an issue for you, you can use the `Wrapper#call` instance method and update the `endpoint` collaborator to switch API:
|
|
130
130
|
```ruby
|
|
131
131
|
wrapper = AkamaiCCU::Wrapper.new(secret: secret, endpoint: AkamaiCCU::Endpoint.by_name("invalidate_by_url"))
|
|
132
132
|
wrapper.call(%w[https://akaa-baseurl-xxx-xxx.luna.akamaiapis.net/*.css])
|
|
@@ -156,6 +156,7 @@ Usage: invalidate --edgerc=./.edgerc --production --cp="12345, 98765"
|
|
|
156
156
|
-t, --txt=TXT Load secret by TXT file
|
|
157
157
|
-c, --cp=CP Specify contents by provider (CP) codes
|
|
158
158
|
-u, --url=URL Specify contents by URLs
|
|
159
|
+
-b, --bulk=BULK Specify bulk contents in a file
|
|
159
160
|
--headers=HEADERS Specify HTTP headers to sign
|
|
160
161
|
-p, --production Purge on production network
|
|
161
162
|
-h, --help Prints this help
|
data/lib/akamai_ccu/version.rb
CHANGED