aws-sdk-cloudfront 1.10.0 → 1.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ab05bc5d733a426194206ea4ea00acf18f3d8a85
4
- data.tar.gz: dd6ca73241ebf06c88f2423b48884690e2265539
3
+ metadata.gz: 73a4ed82ae40dd3d6b44dd9905b641c197e37ccf
4
+ data.tar.gz: 728d808abb10a8bb4d2207485e04081e10d47eeb
5
5
  SHA512:
6
- metadata.gz: 195de790b88c0dc07a70b359f1c7ee6a1151ab43781dd4cb4e0d3bc24502e0306f906065b6f96ebe8226bc4ec35c68ba28992e5f3830660218693cc815e35fa5
7
- data.tar.gz: e995edb4fc11178bbcd01ff0dd9c89051eb0ba2eb7c4b3c8b74d639454e367e8b2774145c52fece729e635fe04cbbbb6c27e3818ea7d8244fee89f4872e3cb59
6
+ metadata.gz: 7f7da4f6d08587207f1100f31682e674574c2cea1bd768df4e23ea8c1386a08e53336f74bfe4134cfce9b13b8bfb9af66ace6612c14a5f31b14fc08d16ed3612
7
+ data.tar.gz: 1c61b90c01d5ae60fe137a9fdeda57626b747fb00cf3e62c5d410b167c73c1a1156ba1bc1acc900ec1176140c016e259529cf76dc3e747d5be52dbb7011f6b69
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-cloudfront/customizations'
43
43
  # @service
44
44
  module Aws::CloudFront
45
45
 
46
- GEM_VERSION = '1.10.0'
46
+ GEM_VERSION = '1.10.1'
47
47
 
48
48
  end
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
15
15
  require 'aws-sdk-core/plugins/retry_errors.rb'
16
16
  require 'aws-sdk-core/plugins/global_configuration.rb'
17
17
  require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
+ require 'aws-sdk-core/plugins/endpoint_discovery.rb'
18
19
  require 'aws-sdk-core/plugins/response_paging.rb'
19
20
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
21
  require 'aws-sdk-core/plugins/idempotency_token.rb'
@@ -45,6 +46,7 @@ module Aws::CloudFront
45
46
  add_plugin(Aws::Plugins::RetryErrors)
46
47
  add_plugin(Aws::Plugins::GlobalConfiguration)
47
48
  add_plugin(Aws::Plugins::RegionalEndpoint)
49
+ add_plugin(Aws::Plugins::EndpointDiscovery)
48
50
  add_plugin(Aws::Plugins::ResponsePaging)
49
51
  add_plugin(Aws::Plugins::StubResponses)
50
52
  add_plugin(Aws::Plugins::IdempotencyToken)
@@ -98,6 +100,10 @@ module Aws::CloudFront
98
100
  #
99
101
  # @option options [String] :access_key_id
100
102
  #
103
+ # @option options [Boolean] :active_endpoint_cache (false)
104
+ # When set to `true`, a thread polling for endpoints will be running in
105
+ # the background every 60 secs (default). Defaults to `false`.
106
+ #
101
107
  # @option options [Boolean] :client_side_monitoring (false)
102
108
  # When `true`, client-side metrics will be collected for all API requests from
103
109
  # this client.
@@ -123,6 +129,21 @@ module Aws::CloudFront
123
129
  # option. You should only configure an `:endpoint` when connecting
124
130
  # to test endpoints. This should be avalid HTTP(S) URI.
125
131
  #
132
+ # @option options [Integer] :endpoint_cache_max_entries (1000)
133
+ # Used for the maximum size limit of the LRU cache storing endpoints data
134
+ # for endpoint discovery enabled operations. Defaults to 1000.
135
+ #
136
+ # @option options [Integer] :endpoint_cache_max_threads (10)
137
+ # Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
138
+ #
139
+ # @option options [Integer] :endpoint_cache_poll_interval (60)
140
+ # When :endpoint_discovery and :active_endpoint_cache is enabled,
141
+ # Use this option to config the time interval in seconds for making
142
+ # requests fetching endpoints information. Defaults to 60 sec.
143
+ #
144
+ # @option options [Boolean] :endpoint_discovery (false)
145
+ # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
146
+ #
126
147
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
127
148
  # The log formatter.
128
149
  #
@@ -3857,7 +3878,7 @@ module Aws::CloudFront
3857
3878
  params: params,
3858
3879
  config: config)
3859
3880
  context[:gem_name] = 'aws-sdk-cloudfront'
3860
- context[:gem_version] = '1.10.0'
3881
+ context[:gem_version] = '1.10.1'
3861
3882
  Seahorse::Client::Request.new(handlers, context)
3862
3883
  end
3863
3884
 
@@ -1243,7 +1243,7 @@ module Aws::CloudFront
1243
1243
  }
1244
1244
 
1245
1245
  api.add_operation(:create_cloud_front_origin_access_identity, Seahorse::Model::Operation.new.tap do |o|
1246
- o.name = "CreateCloudFrontOriginAccessIdentity"
1246
+ o.name = "CreateCloudFrontOriginAccessIdentity2018_06_18"
1247
1247
  o.http_method = "POST"
1248
1248
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront"
1249
1249
  o.input = Shapes::ShapeRef.new(shape: CreateCloudFrontOriginAccessIdentityRequest)
@@ -1256,7 +1256,7 @@ module Aws::CloudFront
1256
1256
  end)
1257
1257
 
1258
1258
  api.add_operation(:create_distribution, Seahorse::Model::Operation.new.tap do |o|
1259
- o.name = "CreateDistribution"
1259
+ o.name = "CreateDistribution2018_06_18"
1260
1260
  o.http_method = "POST"
1261
1261
  o.http_request_uri = "/2018-06-18/distribution"
1262
1262
  o.input = Shapes::ShapeRef.new(shape: CreateDistributionRequest)
@@ -1307,7 +1307,7 @@ module Aws::CloudFront
1307
1307
  end)
1308
1308
 
1309
1309
  api.add_operation(:create_distribution_with_tags, Seahorse::Model::Operation.new.tap do |o|
1310
- o.name = "CreateDistributionWithTags"
1310
+ o.name = "CreateDistributionWithTags2018_06_18"
1311
1311
  o.http_method = "POST"
1312
1312
  o.http_request_uri = "/2018-06-18/distribution?WithTags"
1313
1313
  o.input = Shapes::ShapeRef.new(shape: CreateDistributionWithTagsRequest)
@@ -1359,7 +1359,7 @@ module Aws::CloudFront
1359
1359
  end)
1360
1360
 
1361
1361
  api.add_operation(:create_field_level_encryption_config, Seahorse::Model::Operation.new.tap do |o|
1362
- o.name = "CreateFieldLevelEncryptionConfig"
1362
+ o.name = "CreateFieldLevelEncryptionConfig2018_06_18"
1363
1363
  o.http_method = "POST"
1364
1364
  o.http_request_uri = "/2018-06-18/field-level-encryption"
1365
1365
  o.input = Shapes::ShapeRef.new(shape: CreateFieldLevelEncryptionConfigRequest)
@@ -1375,7 +1375,7 @@ module Aws::CloudFront
1375
1375
  end)
1376
1376
 
1377
1377
  api.add_operation(:create_field_level_encryption_profile, Seahorse::Model::Operation.new.tap do |o|
1378
- o.name = "CreateFieldLevelEncryptionProfile"
1378
+ o.name = "CreateFieldLevelEncryptionProfile2018_06_18"
1379
1379
  o.http_method = "POST"
1380
1380
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile"
1381
1381
  o.input = Shapes::ShapeRef.new(shape: CreateFieldLevelEncryptionProfileRequest)
@@ -1391,7 +1391,7 @@ module Aws::CloudFront
1391
1391
  end)
1392
1392
 
1393
1393
  api.add_operation(:create_invalidation, Seahorse::Model::Operation.new.tap do |o|
1394
- o.name = "CreateInvalidation"
1394
+ o.name = "CreateInvalidation2018_06_18"
1395
1395
  o.http_method = "POST"
1396
1396
  o.http_request_uri = "/2018-06-18/distribution/{DistributionId}/invalidation"
1397
1397
  o.input = Shapes::ShapeRef.new(shape: CreateInvalidationRequest)
@@ -1406,7 +1406,7 @@ module Aws::CloudFront
1406
1406
  end)
1407
1407
 
1408
1408
  api.add_operation(:create_public_key, Seahorse::Model::Operation.new.tap do |o|
1409
- o.name = "CreatePublicKey"
1409
+ o.name = "CreatePublicKey2018_06_18"
1410
1410
  o.http_method = "POST"
1411
1411
  o.http_request_uri = "/2018-06-18/public-key"
1412
1412
  o.input = Shapes::ShapeRef.new(shape: CreatePublicKeyRequest)
@@ -1417,7 +1417,7 @@ module Aws::CloudFront
1417
1417
  end)
1418
1418
 
1419
1419
  api.add_operation(:create_streaming_distribution, Seahorse::Model::Operation.new.tap do |o|
1420
- o.name = "CreateStreamingDistribution"
1420
+ o.name = "CreateStreamingDistribution2018_06_18"
1421
1421
  o.http_method = "POST"
1422
1422
  o.http_request_uri = "/2018-06-18/streaming-distribution"
1423
1423
  o.input = Shapes::ShapeRef.new(shape: CreateStreamingDistributionRequest)
@@ -1437,7 +1437,7 @@ module Aws::CloudFront
1437
1437
  end)
1438
1438
 
1439
1439
  api.add_operation(:create_streaming_distribution_with_tags, Seahorse::Model::Operation.new.tap do |o|
1440
- o.name = "CreateStreamingDistributionWithTags"
1440
+ o.name = "CreateStreamingDistributionWithTags2018_06_18"
1441
1441
  o.http_method = "POST"
1442
1442
  o.http_request_uri = "/2018-06-18/streaming-distribution?WithTags"
1443
1443
  o.input = Shapes::ShapeRef.new(shape: CreateStreamingDistributionWithTagsRequest)
@@ -1458,7 +1458,7 @@ module Aws::CloudFront
1458
1458
  end)
1459
1459
 
1460
1460
  api.add_operation(:delete_cloud_front_origin_access_identity, Seahorse::Model::Operation.new.tap do |o|
1461
- o.name = "DeleteCloudFrontOriginAccessIdentity"
1461
+ o.name = "DeleteCloudFrontOriginAccessIdentity2018_06_18"
1462
1462
  o.http_method = "DELETE"
1463
1463
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront/{Id}"
1464
1464
  o.input = Shapes::ShapeRef.new(shape: DeleteCloudFrontOriginAccessIdentityRequest)
@@ -1471,7 +1471,7 @@ module Aws::CloudFront
1471
1471
  end)
1472
1472
 
1473
1473
  api.add_operation(:delete_distribution, Seahorse::Model::Operation.new.tap do |o|
1474
- o.name = "DeleteDistribution"
1474
+ o.name = "DeleteDistribution2018_06_18"
1475
1475
  o.http_method = "DELETE"
1476
1476
  o.http_request_uri = "/2018-06-18/distribution/{Id}"
1477
1477
  o.input = Shapes::ShapeRef.new(shape: DeleteDistributionRequest)
@@ -1484,7 +1484,7 @@ module Aws::CloudFront
1484
1484
  end)
1485
1485
 
1486
1486
  api.add_operation(:delete_field_level_encryption_config, Seahorse::Model::Operation.new.tap do |o|
1487
- o.name = "DeleteFieldLevelEncryptionConfig"
1487
+ o.name = "DeleteFieldLevelEncryptionConfig2018_06_18"
1488
1488
  o.http_method = "DELETE"
1489
1489
  o.http_request_uri = "/2018-06-18/field-level-encryption/{Id}"
1490
1490
  o.input = Shapes::ShapeRef.new(shape: DeleteFieldLevelEncryptionConfigRequest)
@@ -1497,7 +1497,7 @@ module Aws::CloudFront
1497
1497
  end)
1498
1498
 
1499
1499
  api.add_operation(:delete_field_level_encryption_profile, Seahorse::Model::Operation.new.tap do |o|
1500
- o.name = "DeleteFieldLevelEncryptionProfile"
1500
+ o.name = "DeleteFieldLevelEncryptionProfile2018_06_18"
1501
1501
  o.http_method = "DELETE"
1502
1502
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile/{Id}"
1503
1503
  o.input = Shapes::ShapeRef.new(shape: DeleteFieldLevelEncryptionProfileRequest)
@@ -1510,7 +1510,7 @@ module Aws::CloudFront
1510
1510
  end)
1511
1511
 
1512
1512
  api.add_operation(:delete_public_key, Seahorse::Model::Operation.new.tap do |o|
1513
- o.name = "DeletePublicKey"
1513
+ o.name = "DeletePublicKey2018_06_18"
1514
1514
  o.http_method = "DELETE"
1515
1515
  o.http_request_uri = "/2018-06-18/public-key/{Id}"
1516
1516
  o.input = Shapes::ShapeRef.new(shape: DeletePublicKeyRequest)
@@ -1523,7 +1523,7 @@ module Aws::CloudFront
1523
1523
  end)
1524
1524
 
1525
1525
  api.add_operation(:delete_streaming_distribution, Seahorse::Model::Operation.new.tap do |o|
1526
- o.name = "DeleteStreamingDistribution"
1526
+ o.name = "DeleteStreamingDistribution2018_06_18"
1527
1527
  o.http_method = "DELETE"
1528
1528
  o.http_request_uri = "/2018-06-18/streaming-distribution/{Id}"
1529
1529
  o.input = Shapes::ShapeRef.new(shape: DeleteStreamingDistributionRequest)
@@ -1536,7 +1536,7 @@ module Aws::CloudFront
1536
1536
  end)
1537
1537
 
1538
1538
  api.add_operation(:get_cloud_front_origin_access_identity, Seahorse::Model::Operation.new.tap do |o|
1539
- o.name = "GetCloudFrontOriginAccessIdentity"
1539
+ o.name = "GetCloudFrontOriginAccessIdentity2018_06_18"
1540
1540
  o.http_method = "GET"
1541
1541
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront/{Id}"
1542
1542
  o.input = Shapes::ShapeRef.new(shape: GetCloudFrontOriginAccessIdentityRequest)
@@ -1546,7 +1546,7 @@ module Aws::CloudFront
1546
1546
  end)
1547
1547
 
1548
1548
  api.add_operation(:get_cloud_front_origin_access_identity_config, Seahorse::Model::Operation.new.tap do |o|
1549
- o.name = "GetCloudFrontOriginAccessIdentityConfig"
1549
+ o.name = "GetCloudFrontOriginAccessIdentityConfig2018_06_18"
1550
1550
  o.http_method = "GET"
1551
1551
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront/{Id}/config"
1552
1552
  o.input = Shapes::ShapeRef.new(shape: GetCloudFrontOriginAccessIdentityConfigRequest)
@@ -1556,7 +1556,7 @@ module Aws::CloudFront
1556
1556
  end)
1557
1557
 
1558
1558
  api.add_operation(:get_distribution, Seahorse::Model::Operation.new.tap do |o|
1559
- o.name = "GetDistribution"
1559
+ o.name = "GetDistribution2018_06_18"
1560
1560
  o.http_method = "GET"
1561
1561
  o.http_request_uri = "/2018-06-18/distribution/{Id}"
1562
1562
  o.input = Shapes::ShapeRef.new(shape: GetDistributionRequest)
@@ -1566,7 +1566,7 @@ module Aws::CloudFront
1566
1566
  end)
1567
1567
 
1568
1568
  api.add_operation(:get_distribution_config, Seahorse::Model::Operation.new.tap do |o|
1569
- o.name = "GetDistributionConfig"
1569
+ o.name = "GetDistributionConfig2018_06_18"
1570
1570
  o.http_method = "GET"
1571
1571
  o.http_request_uri = "/2018-06-18/distribution/{Id}/config"
1572
1572
  o.input = Shapes::ShapeRef.new(shape: GetDistributionConfigRequest)
@@ -1576,7 +1576,7 @@ module Aws::CloudFront
1576
1576
  end)
1577
1577
 
1578
1578
  api.add_operation(:get_field_level_encryption, Seahorse::Model::Operation.new.tap do |o|
1579
- o.name = "GetFieldLevelEncryption"
1579
+ o.name = "GetFieldLevelEncryption2018_06_18"
1580
1580
  o.http_method = "GET"
1581
1581
  o.http_request_uri = "/2018-06-18/field-level-encryption/{Id}"
1582
1582
  o.input = Shapes::ShapeRef.new(shape: GetFieldLevelEncryptionRequest)
@@ -1586,7 +1586,7 @@ module Aws::CloudFront
1586
1586
  end)
1587
1587
 
1588
1588
  api.add_operation(:get_field_level_encryption_config, Seahorse::Model::Operation.new.tap do |o|
1589
- o.name = "GetFieldLevelEncryptionConfig"
1589
+ o.name = "GetFieldLevelEncryptionConfig2018_06_18"
1590
1590
  o.http_method = "GET"
1591
1591
  o.http_request_uri = "/2018-06-18/field-level-encryption/{Id}/config"
1592
1592
  o.input = Shapes::ShapeRef.new(shape: GetFieldLevelEncryptionConfigRequest)
@@ -1596,7 +1596,7 @@ module Aws::CloudFront
1596
1596
  end)
1597
1597
 
1598
1598
  api.add_operation(:get_field_level_encryption_profile, Seahorse::Model::Operation.new.tap do |o|
1599
- o.name = "GetFieldLevelEncryptionProfile"
1599
+ o.name = "GetFieldLevelEncryptionProfile2018_06_18"
1600
1600
  o.http_method = "GET"
1601
1601
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile/{Id}"
1602
1602
  o.input = Shapes::ShapeRef.new(shape: GetFieldLevelEncryptionProfileRequest)
@@ -1606,7 +1606,7 @@ module Aws::CloudFront
1606
1606
  end)
1607
1607
 
1608
1608
  api.add_operation(:get_field_level_encryption_profile_config, Seahorse::Model::Operation.new.tap do |o|
1609
- o.name = "GetFieldLevelEncryptionProfileConfig"
1609
+ o.name = "GetFieldLevelEncryptionProfileConfig2018_06_18"
1610
1610
  o.http_method = "GET"
1611
1611
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile/{Id}/config"
1612
1612
  o.input = Shapes::ShapeRef.new(shape: GetFieldLevelEncryptionProfileConfigRequest)
@@ -1616,7 +1616,7 @@ module Aws::CloudFront
1616
1616
  end)
1617
1617
 
1618
1618
  api.add_operation(:get_invalidation, Seahorse::Model::Operation.new.tap do |o|
1619
- o.name = "GetInvalidation"
1619
+ o.name = "GetInvalidation2018_06_18"
1620
1620
  o.http_method = "GET"
1621
1621
  o.http_request_uri = "/2018-06-18/distribution/{DistributionId}/invalidation/{Id}"
1622
1622
  o.input = Shapes::ShapeRef.new(shape: GetInvalidationRequest)
@@ -1627,7 +1627,7 @@ module Aws::CloudFront
1627
1627
  end)
1628
1628
 
1629
1629
  api.add_operation(:get_public_key, Seahorse::Model::Operation.new.tap do |o|
1630
- o.name = "GetPublicKey"
1630
+ o.name = "GetPublicKey2018_06_18"
1631
1631
  o.http_method = "GET"
1632
1632
  o.http_request_uri = "/2018-06-18/public-key/{Id}"
1633
1633
  o.input = Shapes::ShapeRef.new(shape: GetPublicKeyRequest)
@@ -1637,7 +1637,7 @@ module Aws::CloudFront
1637
1637
  end)
1638
1638
 
1639
1639
  api.add_operation(:get_public_key_config, Seahorse::Model::Operation.new.tap do |o|
1640
- o.name = "GetPublicKeyConfig"
1640
+ o.name = "GetPublicKeyConfig2018_06_18"
1641
1641
  o.http_method = "GET"
1642
1642
  o.http_request_uri = "/2018-06-18/public-key/{Id}/config"
1643
1643
  o.input = Shapes::ShapeRef.new(shape: GetPublicKeyConfigRequest)
@@ -1647,7 +1647,7 @@ module Aws::CloudFront
1647
1647
  end)
1648
1648
 
1649
1649
  api.add_operation(:get_streaming_distribution, Seahorse::Model::Operation.new.tap do |o|
1650
- o.name = "GetStreamingDistribution"
1650
+ o.name = "GetStreamingDistribution2018_06_18"
1651
1651
  o.http_method = "GET"
1652
1652
  o.http_request_uri = "/2018-06-18/streaming-distribution/{Id}"
1653
1653
  o.input = Shapes::ShapeRef.new(shape: GetStreamingDistributionRequest)
@@ -1657,7 +1657,7 @@ module Aws::CloudFront
1657
1657
  end)
1658
1658
 
1659
1659
  api.add_operation(:get_streaming_distribution_config, Seahorse::Model::Operation.new.tap do |o|
1660
- o.name = "GetStreamingDistributionConfig"
1660
+ o.name = "GetStreamingDistributionConfig2018_06_18"
1661
1661
  o.http_method = "GET"
1662
1662
  o.http_request_uri = "/2018-06-18/streaming-distribution/{Id}/config"
1663
1663
  o.input = Shapes::ShapeRef.new(shape: GetStreamingDistributionConfigRequest)
@@ -1667,7 +1667,7 @@ module Aws::CloudFront
1667
1667
  end)
1668
1668
 
1669
1669
  api.add_operation(:list_cloud_front_origin_access_identities, Seahorse::Model::Operation.new.tap do |o|
1670
- o.name = "ListCloudFrontOriginAccessIdentities"
1670
+ o.name = "ListCloudFrontOriginAccessIdentities2018_06_18"
1671
1671
  o.http_method = "GET"
1672
1672
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront"
1673
1673
  o.input = Shapes::ShapeRef.new(shape: ListCloudFrontOriginAccessIdentitiesRequest)
@@ -1683,7 +1683,7 @@ module Aws::CloudFront
1683
1683
  end)
1684
1684
 
1685
1685
  api.add_operation(:list_distributions, Seahorse::Model::Operation.new.tap do |o|
1686
- o.name = "ListDistributions"
1686
+ o.name = "ListDistributions2018_06_18"
1687
1687
  o.http_method = "GET"
1688
1688
  o.http_request_uri = "/2018-06-18/distribution"
1689
1689
  o.input = Shapes::ShapeRef.new(shape: ListDistributionsRequest)
@@ -1699,7 +1699,7 @@ module Aws::CloudFront
1699
1699
  end)
1700
1700
 
1701
1701
  api.add_operation(:list_distributions_by_web_acl_id, Seahorse::Model::Operation.new.tap do |o|
1702
- o.name = "ListDistributionsByWebACLId"
1702
+ o.name = "ListDistributionsByWebACLId2018_06_18"
1703
1703
  o.http_method = "GET"
1704
1704
  o.http_request_uri = "/2018-06-18/distributionsByWebACLId/{WebACLId}"
1705
1705
  o.input = Shapes::ShapeRef.new(shape: ListDistributionsByWebACLIdRequest)
@@ -1709,7 +1709,7 @@ module Aws::CloudFront
1709
1709
  end)
1710
1710
 
1711
1711
  api.add_operation(:list_field_level_encryption_configs, Seahorse::Model::Operation.new.tap do |o|
1712
- o.name = "ListFieldLevelEncryptionConfigs"
1712
+ o.name = "ListFieldLevelEncryptionConfigs2018_06_18"
1713
1713
  o.http_method = "GET"
1714
1714
  o.http_request_uri = "/2018-06-18/field-level-encryption"
1715
1715
  o.input = Shapes::ShapeRef.new(shape: ListFieldLevelEncryptionConfigsRequest)
@@ -1718,7 +1718,7 @@ module Aws::CloudFront
1718
1718
  end)
1719
1719
 
1720
1720
  api.add_operation(:list_field_level_encryption_profiles, Seahorse::Model::Operation.new.tap do |o|
1721
- o.name = "ListFieldLevelEncryptionProfiles"
1721
+ o.name = "ListFieldLevelEncryptionProfiles2018_06_18"
1722
1722
  o.http_method = "GET"
1723
1723
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile"
1724
1724
  o.input = Shapes::ShapeRef.new(shape: ListFieldLevelEncryptionProfilesRequest)
@@ -1727,7 +1727,7 @@ module Aws::CloudFront
1727
1727
  end)
1728
1728
 
1729
1729
  api.add_operation(:list_invalidations, Seahorse::Model::Operation.new.tap do |o|
1730
- o.name = "ListInvalidations"
1730
+ o.name = "ListInvalidations2018_06_18"
1731
1731
  o.http_method = "GET"
1732
1732
  o.http_request_uri = "/2018-06-18/distribution/{DistributionId}/invalidation"
1733
1733
  o.input = Shapes::ShapeRef.new(shape: ListInvalidationsRequest)
@@ -1745,7 +1745,7 @@ module Aws::CloudFront
1745
1745
  end)
1746
1746
 
1747
1747
  api.add_operation(:list_public_keys, Seahorse::Model::Operation.new.tap do |o|
1748
- o.name = "ListPublicKeys"
1748
+ o.name = "ListPublicKeys2018_06_18"
1749
1749
  o.http_method = "GET"
1750
1750
  o.http_request_uri = "/2018-06-18/public-key"
1751
1751
  o.input = Shapes::ShapeRef.new(shape: ListPublicKeysRequest)
@@ -1754,7 +1754,7 @@ module Aws::CloudFront
1754
1754
  end)
1755
1755
 
1756
1756
  api.add_operation(:list_streaming_distributions, Seahorse::Model::Operation.new.tap do |o|
1757
- o.name = "ListStreamingDistributions"
1757
+ o.name = "ListStreamingDistributions2018_06_18"
1758
1758
  o.http_method = "GET"
1759
1759
  o.http_request_uri = "/2018-06-18/streaming-distribution"
1760
1760
  o.input = Shapes::ShapeRef.new(shape: ListStreamingDistributionsRequest)
@@ -1770,7 +1770,7 @@ module Aws::CloudFront
1770
1770
  end)
1771
1771
 
1772
1772
  api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
1773
- o.name = "ListTagsForResource"
1773
+ o.name = "ListTagsForResource2018_06_18"
1774
1774
  o.http_method = "GET"
1775
1775
  o.http_request_uri = "/2018-06-18/tagging"
1776
1776
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
@@ -1782,7 +1782,7 @@ module Aws::CloudFront
1782
1782
  end)
1783
1783
 
1784
1784
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
1785
- o.name = "TagResource"
1785
+ o.name = "TagResource2018_06_18"
1786
1786
  o.http_method = "POST"
1787
1787
  o.http_request_uri = "/2018-06-18/tagging?Operation=Tag"
1788
1788
  o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
@@ -1794,7 +1794,7 @@ module Aws::CloudFront
1794
1794
  end)
1795
1795
 
1796
1796
  api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
1797
- o.name = "UntagResource"
1797
+ o.name = "UntagResource2018_06_18"
1798
1798
  o.http_method = "POST"
1799
1799
  o.http_request_uri = "/2018-06-18/tagging?Operation=Untag"
1800
1800
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
@@ -1806,7 +1806,7 @@ module Aws::CloudFront
1806
1806
  end)
1807
1807
 
1808
1808
  api.add_operation(:update_cloud_front_origin_access_identity, Seahorse::Model::Operation.new.tap do |o|
1809
- o.name = "UpdateCloudFrontOriginAccessIdentity"
1809
+ o.name = "UpdateCloudFrontOriginAccessIdentity2018_06_18"
1810
1810
  o.http_method = "PUT"
1811
1811
  o.http_request_uri = "/2018-06-18/origin-access-identity/cloudfront/{Id}/config"
1812
1812
  o.input = Shapes::ShapeRef.new(shape: UpdateCloudFrontOriginAccessIdentityRequest)
@@ -1822,7 +1822,7 @@ module Aws::CloudFront
1822
1822
  end)
1823
1823
 
1824
1824
  api.add_operation(:update_distribution, Seahorse::Model::Operation.new.tap do |o|
1825
- o.name = "UpdateDistribution"
1825
+ o.name = "UpdateDistribution2018_06_18"
1826
1826
  o.http_method = "PUT"
1827
1827
  o.http_request_uri = "/2018-06-18/distribution/{Id}/config"
1828
1828
  o.input = Shapes::ShapeRef.new(shape: UpdateDistributionRequest)
@@ -1873,7 +1873,7 @@ module Aws::CloudFront
1873
1873
  end)
1874
1874
 
1875
1875
  api.add_operation(:update_field_level_encryption_config, Seahorse::Model::Operation.new.tap do |o|
1876
- o.name = "UpdateFieldLevelEncryptionConfig"
1876
+ o.name = "UpdateFieldLevelEncryptionConfig2018_06_18"
1877
1877
  o.http_method = "PUT"
1878
1878
  o.http_request_uri = "/2018-06-18/field-level-encryption/{Id}/config"
1879
1879
  o.input = Shapes::ShapeRef.new(shape: UpdateFieldLevelEncryptionConfigRequest)
@@ -1892,7 +1892,7 @@ module Aws::CloudFront
1892
1892
  end)
1893
1893
 
1894
1894
  api.add_operation(:update_field_level_encryption_profile, Seahorse::Model::Operation.new.tap do |o|
1895
- o.name = "UpdateFieldLevelEncryptionProfile"
1895
+ o.name = "UpdateFieldLevelEncryptionProfile2018_06_18"
1896
1896
  o.http_method = "PUT"
1897
1897
  o.http_request_uri = "/2018-06-18/field-level-encryption-profile/{Id}/config"
1898
1898
  o.input = Shapes::ShapeRef.new(shape: UpdateFieldLevelEncryptionProfileRequest)
@@ -1912,7 +1912,7 @@ module Aws::CloudFront
1912
1912
  end)
1913
1913
 
1914
1914
  api.add_operation(:update_public_key, Seahorse::Model::Operation.new.tap do |o|
1915
- o.name = "UpdatePublicKey"
1915
+ o.name = "UpdatePublicKey2018_06_18"
1916
1916
  o.http_method = "PUT"
1917
1917
  o.http_request_uri = "/2018-06-18/public-key/{Id}/config"
1918
1918
  o.input = Shapes::ShapeRef.new(shape: UpdatePublicKeyRequest)
@@ -1927,7 +1927,7 @@ module Aws::CloudFront
1927
1927
  end)
1928
1928
 
1929
1929
  api.add_operation(:update_streaming_distribution, Seahorse::Model::Operation.new.tap do |o|
1930
- o.name = "UpdateStreamingDistribution"
1930
+ o.name = "UpdateStreamingDistribution2018_06_18"
1931
1931
  o.http_method = "PUT"
1932
1932
  o.http_request_uri = "/2018-06-18/streaming-distribution/{Id}/config"
1933
1933
  o.input = Shapes::ShapeRef.new(shape: UpdateStreamingDistributionRequest)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudfront
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-24 00:00:00.000000000 Z
11
+ date: 2018-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core