aws-sdk-cloudfront 1.113.0 → 1.115.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.
data/sig/client.rbs CHANGED
@@ -84,6 +84,34 @@ module Aws
84
84
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
85
85
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
86
86
 
87
+ interface _AssociateDistributionTenantWebACLResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDistributionTenantWebACLResult]
89
+ def id: () -> ::String
90
+ def web_acl_arn: () -> ::String
91
+ def etag: () -> ::String
92
+ end
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#associate_distribution_tenant_web_acl-instance_method
94
+ def associate_distribution_tenant_web_acl: (
95
+ id: ::String,
96
+ web_acl_arn: ::String,
97
+ ?if_match: ::String
98
+ ) -> _AssociateDistributionTenantWebACLResponseSuccess
99
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDistributionTenantWebACLResponseSuccess
100
+
101
+ interface _AssociateDistributionWebACLResponseSuccess
102
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDistributionWebACLResult]
103
+ def id: () -> ::String
104
+ def web_acl_arn: () -> ::String
105
+ def etag: () -> ::String
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#associate_distribution_web_acl-instance_method
108
+ def associate_distribution_web_acl: (
109
+ id: ::String,
110
+ web_acl_arn: ::String,
111
+ ?if_match: ::String
112
+ ) -> _AssociateDistributionWebACLResponseSuccess
113
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDistributionWebACLResponseSuccess
114
+
87
115
  interface _CopyDistributionResponseSuccess
88
116
  include ::Seahorse::Client::_ResponseSuccess[Types::CopyDistributionResult]
89
117
  def distribution: () -> Types::Distribution
@@ -178,6 +206,28 @@ module Aws
178
206
  ) -> _CreateCloudFrontOriginAccessIdentityResponseSuccess
179
207
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCloudFrontOriginAccessIdentityResponseSuccess
180
208
 
209
+ interface _CreateConnectionGroupResponseSuccess
210
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionGroupResult]
211
+ def connection_group: () -> Types::ConnectionGroup
212
+ def etag: () -> ::String
213
+ end
214
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#create_connection_group-instance_method
215
+ def create_connection_group: (
216
+ name: ::String,
217
+ ?ipv_6_enabled: bool,
218
+ ?tags: {
219
+ items: Array[
220
+ {
221
+ key: ::String,
222
+ value: ::String?
223
+ },
224
+ ]?
225
+ },
226
+ ?anycast_ip_list_id: ::String,
227
+ ?enabled: bool
228
+ ) -> _CreateConnectionGroupResponseSuccess
229
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionGroupResponseSuccess
230
+
181
231
  interface _CreateContinuousDeploymentPolicyResponseSuccess
182
232
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateContinuousDeploymentPolicyResult]
183
233
  def continuous_deployment_policy: () -> Types::ContinuousDeploymentPolicy
@@ -461,7 +511,7 @@ module Aws
461
511
  bucket: ::String?,
462
512
  prefix: ::String?
463
513
  }?,
464
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
514
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
465
515
  enabled: bool,
466
516
  viewer_certificate: {
467
517
  cloud_front_default_certificate: bool?,
@@ -484,11 +534,77 @@ module Aws
484
534
  is_ipv6_enabled: bool?,
485
535
  continuous_deployment_policy_id: ::String?,
486
536
  staging: bool?,
487
- anycast_ip_list_id: ::String?
537
+ anycast_ip_list_id: ::String?,
538
+ tenant_config: {
539
+ parameter_definitions: Array[
540
+ {
541
+ name: ::String,
542
+ definition: {
543
+ string_schema: {
544
+ comment: ::String?,
545
+ default_value: ::String?,
546
+ required: bool
547
+ }?
548
+ }
549
+ },
550
+ ]?
551
+ }?,
552
+ connection_mode: ("direct" | "tenant-only")?
488
553
  }
489
554
  ) -> _CreateDistributionResponseSuccess
490
555
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDistributionResponseSuccess
491
556
 
557
+ interface _CreateDistributionTenantResponseSuccess
558
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDistributionTenantResult]
559
+ def distribution_tenant: () -> Types::DistributionTenant
560
+ def etag: () -> ::String
561
+ end
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#create_distribution_tenant-instance_method
563
+ def create_distribution_tenant: (
564
+ distribution_id: ::String,
565
+ name: ::String,
566
+ domains: Array[
567
+ {
568
+ domain: ::String
569
+ },
570
+ ],
571
+ ?tags: {
572
+ items: Array[
573
+ {
574
+ key: ::String,
575
+ value: ::String?
576
+ },
577
+ ]?
578
+ },
579
+ ?customizations: {
580
+ web_acl: {
581
+ action: ("override" | "disable"),
582
+ arn: ::String?
583
+ }?,
584
+ certificate: {
585
+ arn: ::String
586
+ }?,
587
+ geo_restrictions: {
588
+ restriction_type: ("blacklist" | "whitelist" | "none"),
589
+ locations: Array[::String]?
590
+ }?
591
+ },
592
+ ?parameters: Array[
593
+ {
594
+ name: ::String,
595
+ value: ::String
596
+ },
597
+ ],
598
+ ?connection_group_id: ::String,
599
+ ?managed_certificate_request: {
600
+ validation_token_host: ("cloudfront" | "self-hosted"),
601
+ primary_domain_name: ::String?,
602
+ certificate_transparency_logging_preference: ("enabled" | "disabled")?
603
+ },
604
+ ?enabled: bool
605
+ ) -> _CreateDistributionTenantResponseSuccess
606
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDistributionTenantResponseSuccess
607
+
492
608
  interface _CreateDistributionWithTagsResponseSuccess
493
609
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateDistributionWithTagsResult]
494
610
  def distribution: () -> Types::Distribution
@@ -741,7 +857,7 @@ module Aws
741
857
  bucket: ::String?,
742
858
  prefix: ::String?
743
859
  }?,
744
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
860
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
745
861
  enabled: bool,
746
862
  viewer_certificate: {
747
863
  cloud_front_default_certificate: bool?,
@@ -764,7 +880,22 @@ module Aws
764
880
  is_ipv6_enabled: bool?,
765
881
  continuous_deployment_policy_id: ::String?,
766
882
  staging: bool?,
767
- anycast_ip_list_id: ::String?
883
+ anycast_ip_list_id: ::String?,
884
+ tenant_config: {
885
+ parameter_definitions: Array[
886
+ {
887
+ name: ::String,
888
+ definition: {
889
+ string_schema: {
890
+ comment: ::String?,
891
+ default_value: ::String?,
892
+ required: bool
893
+ }?
894
+ }
895
+ },
896
+ ]?
897
+ }?,
898
+ connection_mode: ("direct" | "tenant-only")?
768
899
  },
769
900
  tags: {
770
901
  items: Array[
@@ -890,6 +1021,24 @@ module Aws
890
1021
  ) -> _CreateInvalidationResponseSuccess
891
1022
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInvalidationResponseSuccess
892
1023
 
1024
+ interface _CreateInvalidationForDistributionTenantResponseSuccess
1025
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInvalidationForDistributionTenantResult]
1026
+ def location: () -> ::String
1027
+ def invalidation: () -> Types::Invalidation
1028
+ end
1029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#create_invalidation_for_distribution_tenant-instance_method
1030
+ def create_invalidation_for_distribution_tenant: (
1031
+ id: ::String,
1032
+ invalidation_batch: {
1033
+ paths: {
1034
+ quantity: ::Integer,
1035
+ items: Array[::String]?
1036
+ },
1037
+ caller_reference: ::String
1038
+ }
1039
+ ) -> _CreateInvalidationForDistributionTenantResponseSuccess
1040
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInvalidationForDistributionTenantResponseSuccess
1041
+
893
1042
  interface _CreateKeyGroupResponseSuccess
894
1043
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateKeyGroupResult]
895
1044
  def key_group: () -> Types::KeyGroup
@@ -1146,7 +1295,7 @@ module Aws
1146
1295
  quantity: ::Integer,
1147
1296
  items: Array[::String]?
1148
1297
  },
1149
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
1298
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
1150
1299
  enabled: bool
1151
1300
  }
1152
1301
  ) -> _CreateStreamingDistributionResponseSuccess
@@ -1182,7 +1331,7 @@ module Aws
1182
1331
  quantity: ::Integer,
1183
1332
  items: Array[::String]?
1184
1333
  },
1185
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
1334
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
1186
1335
  enabled: bool
1187
1336
  },
1188
1337
  tags: {
@@ -1248,6 +1397,13 @@ module Aws
1248
1397
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1249
1398
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1250
1399
 
1400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#delete_connection_group-instance_method
1401
+ def delete_connection_group: (
1402
+ id: ::String,
1403
+ if_match: ::String
1404
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1405
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1406
+
1251
1407
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#delete_continuous_deployment_policy-instance_method
1252
1408
  def delete_continuous_deployment_policy: (
1253
1409
  id: ::String,
@@ -1262,6 +1418,13 @@ module Aws
1262
1418
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1263
1419
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1264
1420
 
1421
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#delete_distribution_tenant-instance_method
1422
+ def delete_distribution_tenant: (
1423
+ id: ::String,
1424
+ if_match: ::String
1425
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1427
+
1265
1428
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#delete_field_level_encryption_config-instance_method
1266
1429
  def delete_field_level_encryption_config: (
1267
1430
  id: ::String,
@@ -1383,6 +1546,30 @@ module Aws
1383
1546
  ) -> _DescribeKeyValueStoreResponseSuccess
1384
1547
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeKeyValueStoreResponseSuccess
1385
1548
 
1549
+ interface _DisassociateDistributionTenantWebACLResponseSuccess
1550
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateDistributionTenantWebACLResult]
1551
+ def id: () -> ::String
1552
+ def etag: () -> ::String
1553
+ end
1554
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#disassociate_distribution_tenant_web_acl-instance_method
1555
+ def disassociate_distribution_tenant_web_acl: (
1556
+ id: ::String,
1557
+ ?if_match: ::String
1558
+ ) -> _DisassociateDistributionTenantWebACLResponseSuccess
1559
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateDistributionTenantWebACLResponseSuccess
1560
+
1561
+ interface _DisassociateDistributionWebACLResponseSuccess
1562
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateDistributionWebACLResult]
1563
+ def id: () -> ::String
1564
+ def etag: () -> ::String
1565
+ end
1566
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#disassociate_distribution_web_acl-instance_method
1567
+ def disassociate_distribution_web_acl: (
1568
+ id: ::String,
1569
+ ?if_match: ::String
1570
+ ) -> _DisassociateDistributionWebACLResponseSuccess
1571
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateDistributionWebACLResponseSuccess
1572
+
1386
1573
  interface _GetAnycastIpListResponseSuccess
1387
1574
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAnycastIpListResult]
1388
1575
  def anycast_ip_list: () -> Types::AnycastIpList
@@ -1438,6 +1625,28 @@ module Aws
1438
1625
  ) -> _GetCloudFrontOriginAccessIdentityConfigResponseSuccess
1439
1626
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCloudFrontOriginAccessIdentityConfigResponseSuccess
1440
1627
 
1628
+ interface _GetConnectionGroupResponseSuccess
1629
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionGroupResult]
1630
+ def connection_group: () -> Types::ConnectionGroup
1631
+ def etag: () -> ::String
1632
+ end
1633
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_connection_group-instance_method
1634
+ def get_connection_group: (
1635
+ identifier: ::String
1636
+ ) -> _GetConnectionGroupResponseSuccess
1637
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionGroupResponseSuccess
1638
+
1639
+ interface _GetConnectionGroupByRoutingEndpointResponseSuccess
1640
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionGroupByRoutingEndpointResult]
1641
+ def connection_group: () -> Types::ConnectionGroup
1642
+ def etag: () -> ::String
1643
+ end
1644
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_connection_group_by_routing_endpoint-instance_method
1645
+ def get_connection_group_by_routing_endpoint: (
1646
+ routing_endpoint: ::String
1647
+ ) -> _GetConnectionGroupByRoutingEndpointResponseSuccess
1648
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionGroupByRoutingEndpointResponseSuccess
1649
+
1441
1650
  interface _GetContinuousDeploymentPolicyResponseSuccess
1442
1651
  include ::Seahorse::Client::_ResponseSuccess[Types::GetContinuousDeploymentPolicyResult]
1443
1652
  def continuous_deployment_policy: () -> Types::ContinuousDeploymentPolicy
@@ -1482,6 +1691,28 @@ module Aws
1482
1691
  ) -> _GetDistributionConfigResponseSuccess
1483
1692
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDistributionConfigResponseSuccess
1484
1693
 
1694
+ interface _GetDistributionTenantResponseSuccess
1695
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDistributionTenantResult]
1696
+ def distribution_tenant: () -> Types::DistributionTenant
1697
+ def etag: () -> ::String
1698
+ end
1699
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_distribution_tenant-instance_method
1700
+ def get_distribution_tenant: (
1701
+ identifier: ::String
1702
+ ) -> _GetDistributionTenantResponseSuccess
1703
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDistributionTenantResponseSuccess
1704
+
1705
+ interface _GetDistributionTenantByDomainResponseSuccess
1706
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDistributionTenantByDomainResult]
1707
+ def distribution_tenant: () -> Types::DistributionTenant
1708
+ def etag: () -> ::String
1709
+ end
1710
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_distribution_tenant_by_domain-instance_method
1711
+ def get_distribution_tenant_by_domain: (
1712
+ domain: ::String
1713
+ ) -> _GetDistributionTenantByDomainResponseSuccess
1714
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDistributionTenantByDomainResponseSuccess
1715
+
1485
1716
  interface _GetFieldLevelEncryptionResponseSuccess
1486
1717
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFieldLevelEncryptionResult]
1487
1718
  def field_level_encryption: () -> Types::FieldLevelEncryption
@@ -1550,6 +1781,17 @@ module Aws
1550
1781
  ) -> _GetInvalidationResponseSuccess
1551
1782
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInvalidationResponseSuccess
1552
1783
 
1784
+ interface _GetInvalidationForDistributionTenantResponseSuccess
1785
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetInvalidationForDistributionTenantResult]
1786
+ def invalidation: () -> Types::Invalidation
1787
+ end
1788
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_invalidation_for_distribution_tenant-instance_method
1789
+ def get_invalidation_for_distribution_tenant: (
1790
+ distribution_tenant_id: ::String,
1791
+ id: ::String
1792
+ ) -> _GetInvalidationForDistributionTenantResponseSuccess
1793
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInvalidationForDistributionTenantResponseSuccess
1794
+
1553
1795
  interface _GetKeyGroupResponseSuccess
1554
1796
  include ::Seahorse::Client::_ResponseSuccess[Types::GetKeyGroupResult]
1555
1797
  def key_group: () -> Types::KeyGroup
@@ -1572,6 +1814,16 @@ module Aws
1572
1814
  ) -> _GetKeyGroupConfigResponseSuccess
1573
1815
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetKeyGroupConfigResponseSuccess
1574
1816
 
1817
+ interface _GetManagedCertificateDetailsResponseSuccess
1818
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetManagedCertificateDetailsResult]
1819
+ def managed_certificate_details: () -> Types::ManagedCertificateDetails
1820
+ end
1821
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#get_managed_certificate_details-instance_method
1822
+ def get_managed_certificate_details: (
1823
+ identifier: ::String
1824
+ ) -> _GetManagedCertificateDetailsResponseSuccess
1825
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedCertificateDetailsResponseSuccess
1826
+
1575
1827
  interface _GetMonitoringSubscriptionResponseSuccess
1576
1828
  include ::Seahorse::Client::_ResponseSuccess[Types::GetMonitoringSubscriptionResult]
1577
1829
  def monitoring_subscription: () -> Types::MonitoringSubscription
@@ -1761,6 +2013,21 @@ module Aws
1761
2013
  ) -> _ListConflictingAliasesResponseSuccess
1762
2014
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConflictingAliasesResponseSuccess
1763
2015
 
2016
+ interface _ListConnectionGroupsResponseSuccess
2017
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionGroupsResult]
2018
+ def next_marker: () -> ::String
2019
+ def connection_groups: () -> ::Array[Types::ConnectionGroupSummary]
2020
+ end
2021
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_connection_groups-instance_method
2022
+ def list_connection_groups: (
2023
+ ?association_filter: {
2024
+ anycast_ip_list_id: ::String?
2025
+ },
2026
+ ?marker: ::String,
2027
+ ?max_items: ::Integer
2028
+ ) -> _ListConnectionGroupsResponseSuccess
2029
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionGroupsResponseSuccess
2030
+
1764
2031
  interface _ListContinuousDeploymentPoliciesResponseSuccess
1765
2032
  include ::Seahorse::Client::_ResponseSuccess[Types::ListContinuousDeploymentPoliciesResult]
1766
2033
  def continuous_deployment_policy_list: () -> Types::ContinuousDeploymentPolicyList
@@ -1772,6 +2039,36 @@ module Aws
1772
2039
  ) -> _ListContinuousDeploymentPoliciesResponseSuccess
1773
2040
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContinuousDeploymentPoliciesResponseSuccess
1774
2041
 
2042
+ interface _ListDistributionTenantsResponseSuccess
2043
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDistributionTenantsResult]
2044
+ def next_marker: () -> ::String
2045
+ def distribution_tenant_list: () -> ::Array[Types::DistributionTenantSummary]
2046
+ end
2047
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_distribution_tenants-instance_method
2048
+ def list_distribution_tenants: (
2049
+ ?association_filter: {
2050
+ distribution_id: ::String?,
2051
+ connection_group_id: ::String?
2052
+ },
2053
+ ?marker: ::String,
2054
+ ?max_items: ::Integer
2055
+ ) -> _ListDistributionTenantsResponseSuccess
2056
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDistributionTenantsResponseSuccess
2057
+
2058
+ interface _ListDistributionTenantsByCustomizationResponseSuccess
2059
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDistributionTenantsByCustomizationResult]
2060
+ def next_marker: () -> ::String
2061
+ def distribution_tenant_list: () -> ::Array[Types::DistributionTenantSummary]
2062
+ end
2063
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_distribution_tenants_by_customization-instance_method
2064
+ def list_distribution_tenants_by_customization: (
2065
+ ?web_acl_arn: ::String,
2066
+ ?certificate_arn: ::String,
2067
+ ?marker: ::String,
2068
+ ?max_items: ::Integer
2069
+ ) -> _ListDistributionTenantsByCustomizationResponseSuccess
2070
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDistributionTenantsByCustomizationResponseSuccess
2071
+
1775
2072
  interface _ListDistributionsResponseSuccess
1776
2073
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDistributionsResult]
1777
2074
  def distribution_list: () -> Types::DistributionList
@@ -1807,6 +2104,18 @@ module Aws
1807
2104
  ) -> _ListDistributionsByCachePolicyIdResponseSuccess
1808
2105
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDistributionsByCachePolicyIdResponseSuccess
1809
2106
 
2107
+ interface _ListDistributionsByConnectionModeResponseSuccess
2108
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDistributionsByConnectionModeResult]
2109
+ def distribution_list: () -> Types::DistributionList
2110
+ end
2111
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_distributions_by_connection_mode-instance_method
2112
+ def list_distributions_by_connection_mode: (
2113
+ ?marker: ::String,
2114
+ ?max_items: ::Integer,
2115
+ connection_mode: ("direct" | "tenant-only")
2116
+ ) -> _ListDistributionsByConnectionModeResponseSuccess
2117
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDistributionsByConnectionModeResponseSuccess
2118
+
1810
2119
  interface _ListDistributionsByKeyGroupResponseSuccess
1811
2120
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDistributionsByKeyGroupResult]
1812
2121
  def distribution_id_list: () -> Types::DistributionIdList
@@ -1880,6 +2189,23 @@ module Aws
1880
2189
  ) -> _ListDistributionsByWebACLIdResponseSuccess
1881
2190
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDistributionsByWebACLIdResponseSuccess
1882
2191
 
2192
+ interface _ListDomainConflictsResponseSuccess
2193
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainConflictsResult]
2194
+ def domain_conflicts: () -> ::Array[Types::DomainConflict]
2195
+ def next_marker: () -> ::String
2196
+ end
2197
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_domain_conflicts-instance_method
2198
+ def list_domain_conflicts: (
2199
+ domain: ::String,
2200
+ domain_control_validation_resource: {
2201
+ distribution_id: ::String?,
2202
+ distribution_tenant_id: ::String?
2203
+ },
2204
+ ?max_items: ::Integer,
2205
+ ?marker: ::String
2206
+ ) -> _ListDomainConflictsResponseSuccess
2207
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainConflictsResponseSuccess
2208
+
1883
2209
  interface _ListFieldLevelEncryptionConfigsResponseSuccess
1884
2210
  include ::Seahorse::Client::_ResponseSuccess[Types::ListFieldLevelEncryptionConfigsResult]
1885
2211
  def field_level_encryption_list: () -> Types::FieldLevelEncryptionList
@@ -1926,6 +2252,18 @@ module Aws
1926
2252
  ) -> _ListInvalidationsResponseSuccess
1927
2253
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInvalidationsResponseSuccess
1928
2254
 
2255
+ interface _ListInvalidationsForDistributionTenantResponseSuccess
2256
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInvalidationsForDistributionTenantResult]
2257
+ def invalidation_list: () -> Types::InvalidationList
2258
+ end
2259
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#list_invalidations_for_distribution_tenant-instance_method
2260
+ def list_invalidations_for_distribution_tenant: (
2261
+ id: ::String,
2262
+ ?marker: ::String,
2263
+ ?max_items: ::Integer
2264
+ ) -> _ListInvalidationsForDistributionTenantResponseSuccess
2265
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInvalidationsForDistributionTenantResponseSuccess
2266
+
1929
2267
  interface _ListKeyGroupsResponseSuccess
1930
2268
  include ::Seahorse::Client::_ResponseSuccess[Types::ListKeyGroupsResult]
1931
2269
  def key_group_list: () -> Types::KeyGroupList
@@ -2145,6 +2483,21 @@ module Aws
2145
2483
  ) -> _UpdateCloudFrontOriginAccessIdentityResponseSuccess
2146
2484
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCloudFrontOriginAccessIdentityResponseSuccess
2147
2485
 
2486
+ interface _UpdateConnectionGroupResponseSuccess
2487
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionGroupResult]
2488
+ def connection_group: () -> Types::ConnectionGroup
2489
+ def etag: () -> ::String
2490
+ end
2491
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#update_connection_group-instance_method
2492
+ def update_connection_group: (
2493
+ id: ::String,
2494
+ ?ipv_6_enabled: bool,
2495
+ if_match: ::String,
2496
+ ?anycast_ip_list_id: ::String,
2497
+ ?enabled: bool
2498
+ ) -> _UpdateConnectionGroupResponseSuccess
2499
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionGroupResponseSuccess
2500
+
2148
2501
  interface _UpdateContinuousDeploymentPolicyResponseSuccess
2149
2502
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContinuousDeploymentPolicyResult]
2150
2503
  def continuous_deployment_policy: () -> Types::ContinuousDeploymentPolicy
@@ -2428,7 +2781,7 @@ module Aws
2428
2781
  bucket: ::String?,
2429
2782
  prefix: ::String?
2430
2783
  }?,
2431
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
2784
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
2432
2785
  enabled: bool,
2433
2786
  viewer_certificate: {
2434
2787
  cloud_front_default_certificate: bool?,
@@ -2451,13 +2804,72 @@ module Aws
2451
2804
  is_ipv6_enabled: bool?,
2452
2805
  continuous_deployment_policy_id: ::String?,
2453
2806
  staging: bool?,
2454
- anycast_ip_list_id: ::String?
2807
+ anycast_ip_list_id: ::String?,
2808
+ tenant_config: {
2809
+ parameter_definitions: Array[
2810
+ {
2811
+ name: ::String,
2812
+ definition: {
2813
+ string_schema: {
2814
+ comment: ::String?,
2815
+ default_value: ::String?,
2816
+ required: bool
2817
+ }?
2818
+ }
2819
+ },
2820
+ ]?
2821
+ }?,
2822
+ connection_mode: ("direct" | "tenant-only")?
2455
2823
  },
2456
2824
  id: ::String,
2457
2825
  ?if_match: ::String
2458
2826
  ) -> _UpdateDistributionResponseSuccess
2459
2827
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDistributionResponseSuccess
2460
2828
 
2829
+ interface _UpdateDistributionTenantResponseSuccess
2830
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDistributionTenantResult]
2831
+ def distribution_tenant: () -> Types::DistributionTenant
2832
+ def etag: () -> ::String
2833
+ end
2834
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#update_distribution_tenant-instance_method
2835
+ def update_distribution_tenant: (
2836
+ id: ::String,
2837
+ ?distribution_id: ::String,
2838
+ ?domains: Array[
2839
+ {
2840
+ domain: ::String
2841
+ },
2842
+ ],
2843
+ ?customizations: {
2844
+ web_acl: {
2845
+ action: ("override" | "disable"),
2846
+ arn: ::String?
2847
+ }?,
2848
+ certificate: {
2849
+ arn: ::String
2850
+ }?,
2851
+ geo_restrictions: {
2852
+ restriction_type: ("blacklist" | "whitelist" | "none"),
2853
+ locations: Array[::String]?
2854
+ }?
2855
+ },
2856
+ ?parameters: Array[
2857
+ {
2858
+ name: ::String,
2859
+ value: ::String
2860
+ },
2861
+ ],
2862
+ ?connection_group_id: ::String,
2863
+ if_match: ::String,
2864
+ ?managed_certificate_request: {
2865
+ validation_token_host: ("cloudfront" | "self-hosted"),
2866
+ primary_domain_name: ::String?,
2867
+ certificate_transparency_logging_preference: ("enabled" | "disabled")?
2868
+ },
2869
+ ?enabled: bool
2870
+ ) -> _UpdateDistributionTenantResponseSuccess
2871
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDistributionTenantResponseSuccess
2872
+
2461
2873
  interface _UpdateDistributionWithStagingConfigResponseSuccess
2462
2874
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDistributionWithStagingConfigResult]
2463
2875
  def distribution: () -> Types::Distribution
@@ -2471,6 +2883,23 @@ module Aws
2471
2883
  ) -> _UpdateDistributionWithStagingConfigResponseSuccess
2472
2884
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDistributionWithStagingConfigResponseSuccess
2473
2885
 
2886
+ interface _UpdateDomainAssociationResponseSuccess
2887
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainAssociationResult]
2888
+ def domain: () -> ::String
2889
+ def resource_id: () -> ::String
2890
+ def etag: () -> ::String
2891
+ end
2892
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#update_domain_association-instance_method
2893
+ def update_domain_association: (
2894
+ domain: ::String,
2895
+ target_resource: {
2896
+ distribution_id: ::String?,
2897
+ distribution_tenant_id: ::String?
2898
+ },
2899
+ ?if_match: ::String
2900
+ ) -> _UpdateDomainAssociationResponseSuccess
2901
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainAssociationResponseSuccess
2902
+
2474
2903
  interface _UpdateFieldLevelEncryptionConfigResponseSuccess
2475
2904
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFieldLevelEncryptionConfigResult]
2476
2905
  def field_level_encryption: () -> Types::FieldLevelEncryption
@@ -2809,7 +3238,7 @@ module Aws
2809
3238
  quantity: ::Integer,
2810
3239
  items: Array[::String]?
2811
3240
  },
2812
- price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All")?,
3241
+ price_class: ("PriceClass_100" | "PriceClass_200" | "PriceClass_All" | "None")?,
2813
3242
  enabled: bool
2814
3243
  },
2815
3244
  id: ::String,
@@ -2840,6 +3269,17 @@ module Aws
2840
3269
  ) -> _UpdateVpcOriginResponseSuccess
2841
3270
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVpcOriginResponseSuccess
2842
3271
 
3272
+ interface _VerifyDnsConfigurationResponseSuccess
3273
+ include ::Seahorse::Client::_ResponseSuccess[Types::VerifyDnsConfigurationResult]
3274
+ def dns_configuration_list: () -> ::Array[Types::DnsConfiguration]
3275
+ end
3276
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#verify_dns_configuration-instance_method
3277
+ def verify_dns_configuration: (
3278
+ ?domain: ::String,
3279
+ identifier: ::String
3280
+ ) -> _VerifyDnsConfigurationResponseSuccess
3281
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _VerifyDnsConfigurationResponseSuccess
3282
+
2843
3283
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFront/Client.html#wait_until-instance_method
2844
3284
  def wait_until: (:distribution_deployed waiter_name,
2845
3285
  id: ::String
@@ -2850,6 +3290,11 @@ module Aws
2850
3290
  id: ::String
2851
3291
  ) -> Client::_GetInvalidationResponseSuccess
2852
3292
  | (:invalidation_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetInvalidationResponseSuccess
3293
+ | (:invalidation_for_distribution_tenant_completed waiter_name,
3294
+ distribution_tenant_id: ::String,
3295
+ id: ::String
3296
+ ) -> Client::_GetInvalidationForDistributionTenantResponseSuccess
3297
+ | (:invalidation_for_distribution_tenant_completed waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetInvalidationForDistributionTenantResponseSuccess
2853
3298
  | (:streaming_distribution_deployed waiter_name,
2854
3299
  id: ::String
2855
3300
  ) -> Client::_GetStreamingDistributionResponseSuccess