awspec 0.56.0 → 0.56.1
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/doc/resource_types.md +1 -1
- data/lib/awspec/stub/cloudfront_distribution.rb +4 -2
- data/lib/awspec/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: 761b06f2753d247a1d7e9d472fd8e02b028fe403
|
|
4
|
+
data.tar.gz: 38329c670345d3563c6af1910f9b039e92c809ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c1b621ec8438f7df924cc61ebb9f25febea68cee4a1e340bea28744b790efed48daf9a62fe01a8c6885ebaf6214cd8554d6c5aa0caddd428e4688ca383aed4a
|
|
7
|
+
data.tar.gz: 804fa724043cc0d32660b24f7893a1f1e959065b07886cf1478fa000568cce69fa806a6fdbc42348915f8a435e2b0fc7b9ac26218bae81123b579dfed3fda658
|
data/doc/resource_types.md
CHANGED
|
@@ -1839,7 +1839,7 @@ describe cloudfront_distribution('123456789zyxw.cloudfront.net') do
|
|
|
1839
1839
|
end
|
|
1840
1840
|
```
|
|
1841
1841
|
|
|
1842
|
-
### its(:id), its(:arn), its(:status), its(:last_modified_time), its(:domain_name), its(:comment), its(:price_class), its(:enabled), its(:web_acl_id)
|
|
1842
|
+
### its(:id), its(:arn), its(:status), its(:last_modified_time), its(:domain_name), its(:comment), its(:price_class), its(:enabled), its(:web_acl_id), its(:http_version)
|
|
1843
1843
|
## <a name="elastictranscoder_pipeline">elastictranscoder_pipeline</a>
|
|
1844
1844
|
|
|
1845
1845
|
ElastictranscoderPipeline resource type.
|
|
@@ -103,7 +103,8 @@ Aws.config[:cloudfront] = {
|
|
|
103
103
|
items: []
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
-
web_acl_id: ''
|
|
106
|
+
web_acl_id: '',
|
|
107
|
+
http_version: 'http2'
|
|
107
108
|
},
|
|
108
109
|
{
|
|
109
110
|
id: 'E2CLOUDFRONTXX',
|
|
@@ -197,7 +198,8 @@ Aws.config[:cloudfront] = {
|
|
|
197
198
|
items: []
|
|
198
199
|
}
|
|
199
200
|
},
|
|
200
|
-
web_acl_id: ''
|
|
201
|
+
web_acl_id: '',
|
|
202
|
+
http_version: 'http1.1'
|
|
201
203
|
}
|
|
202
204
|
]
|
|
203
205
|
}
|
data/lib/awspec/version.rb
CHANGED