aws-sdk-organizations 1.72.0 → 1.74.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 162f30bd271059884b85837abd5cf6f63df7fcf70f56ce1b821973b56b02e345
4
- data.tar.gz: 0b06f5bb24482b314f0eed58b3439aa54555fcb0c8d10d6cedc6d178ba95d256
3
+ metadata.gz: b1a6c924f9542c15ba6fb3dd7dc5df1ea9791d07e62686fcecca4cbdc7b96985
4
+ data.tar.gz: c9e6f9c1580e84b2f3ff671a72d0d6c3ff71e56b310746c7408dbc6ff2b8e7a1
5
5
  SHA512:
6
- metadata.gz: 84937fd2eb312592f7384bc2b8310f9f80e6bdc9b509f63d996b2214fff88674a1f7c4bda133a52e242886f878a91aed868868ed191ac7b65df6a97fcdbf62fe
7
- data.tar.gz: 51fae0fcf272d98be315c7b476dd8130f341f505aecc2c5063c55e9ce0a83978f003729da118ff61b60e67a797f0897e0953fad55556b72143c1618a7e32ecfc
6
+ metadata.gz: 880cf9a4145659cea8a3bfe07e5fd7a74ed9c2ccdac75c0d4b260b36f8876b1f4d6e77e9c140887c7bfef832a30106479edbf8c320a97faa86211e5a5aaf998c
7
+ data.tar.gz: d6d99136b5ce8aa9ef3a97a9bcb7d2246bb71358a2a72ba76605beaf90c32ac75fe408634958326784fbb9ab65701ec6fcbcf4c398d10f4c8f72995c816b7d35
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.74.0 (2023-03-02)
5
+ ------------------
6
+
7
+ * Feature - This release introduces a new reason code, ACCOUNT_CREATION_NOT_COMPLETE, to ConstraintViolationException in CreateOrganization API.
8
+
9
+ 1.73.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.72.0 (2022-11-28)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.74.0
@@ -728,7 +728,8 @@ module Aws::Organizations
728
728
  end
729
729
 
730
730
  # Closes an Amazon Web Services member account within an organization.
731
- # You can't close the management account with this API. This is an
731
+ # You can close an account when [all features are enabled ][1]. You
732
+ # can't close the management account with this API. This is an
732
733
  # asynchronous request that Amazon Web Services performs in the
733
734
  # background. Because `CloseAccount` operates asynchronously, it can
734
735
  # return a successful completion message even though account closure
@@ -746,12 +747,15 @@ module Aws::Organizations
746
747
  # * Check the CloudTrail log for the `CloseAccountResult` event that
747
748
  # gets published after the account closes successfully. For
748
749
  # information on using CloudTrail with Organizations, see [Logging and
749
- # monitoring in Organizations][1] in the *Organizations User Guide.*
750
+ # monitoring in Organizations][2] in the *Organizations User Guide.*
751
+ #
752
+ # <note markdown="1"> * You can close only 10% of member accounts, between 10 and 200,
753
+ # within a rolling 30 day period. This quota is not bound by a
754
+ # calendar month, but starts when you close an account.
750
755
  #
751
- # <note markdown="1"> * You can only close 10% of active member accounts within a rolling 30
752
- # day period. This quota is not bound by a calendar month, but starts
753
- # when you close an account. Within 30 days of that initial account
754
- # closure, you can't exceed the 10% account closure limit.
756
+ # After you reach this limit, you can close additional accounts in the
757
+ # Billing console. For more information, see [Closing an account][3]
758
+ # in the Amazon Web Services Billing and Cost Management User Guide.
755
759
  #
756
760
  # * To reinstate a closed account, contact Amazon Web Services Support
757
761
  # within the 90-day grace period while the account is in SUSPENDED
@@ -761,18 +765,20 @@ module Aws::Organizations
761
765
  # an Amazon Web Services GovCloud (US) account, the `CloseAccount`
762
766
  # request will close both accounts. To learn important pre-closure
763
767
  # details, see [ Closing an Amazon Web Services GovCloud (US)
764
- # account][2] in the <i> Amazon Web Services GovCloud User Guide</i>.
768
+ # account][4] in the <i> Amazon Web Services GovCloud User Guide</i>.
765
769
  #
766
770
  # </note>
767
771
  #
768
772
  # For more information about closing accounts, see [Closing an Amazon
769
- # Web Services account][3] in the *Organizations User Guide.*
773
+ # Web Services account][5] in the *Organizations User Guide.*
770
774
  #
771
775
  #
772
776
  #
773
- # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_security_incident-response.html#orgs_cloudtrail-integration
774
- # [2]: https://docs.aws.amazon.com/govcloud-us/latest/UserGuide/Closing-govcloud-account.html
775
- # [3]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_close.html
777
+ # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_org_support-all-features.html
778
+ # [2]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_security_incident-response.html#orgs_cloudtrail-integration
779
+ # [3]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/close-account.html
780
+ # [4]: https://docs.aws.amazon.com/govcloud-us/latest/UserGuide/Closing-govcloud-account.html
781
+ # [5]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_close.html
776
782
  #
777
783
  # @option params [required, String] :account_id
778
784
  # Retrieves the Amazon Web Services account Id for the current
@@ -969,9 +975,9 @@ module Aws::Organizations
969
975
  # `null`. For more information about tagging, see [Tagging Organizations
970
976
  # resources][1] in the Organizations User Guide.
971
977
  #
972
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the maximum allowed
973
- # number of tags for an account, then the entire request fails and the
974
- # account is not created.
978
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the maximum
979
+ # allowed number of tags for an account, then the entire request fails
980
+ # and the account is not created.
975
981
  #
976
982
  # </note>
977
983
  #
@@ -1277,9 +1283,9 @@ module Aws::Organizations
1277
1283
  # `null`. For more information about tagging, see [Tagging Organizations
1278
1284
  # resources][1] in the Organizations User Guide.
1279
1285
  #
1280
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the maximum allowed
1281
- # number of tags for an account, then the entire request fails and the
1282
- # account is not created.
1286
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the maximum
1287
+ # allowed number of tags for an account, then the entire request fails
1288
+ # and the account is not created.
1283
1289
  #
1284
1290
  # </note>
1285
1291
  #
@@ -1500,9 +1506,9 @@ module Aws::Organizations
1500
1506
  # For more information about tagging, see [Tagging Organizations
1501
1507
  # resources][1] in the Organizations User Guide.
1502
1508
  #
1503
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
1504
- # of tags for an OU, then the entire request fails and the OU is not
1505
- # created.
1509
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the allowed
1510
+ # number of tags for an OU, then the entire request fails and the OU is
1511
+ # not created.
1506
1512
  #
1507
1513
  # </note>
1508
1514
  #
@@ -1622,9 +1628,9 @@ module Aws::Organizations
1622
1628
  # `null`. For more information about tagging, see [Tagging Organizations
1623
1629
  # resources][1] in the Organizations User Guide.
1624
1630
  #
1625
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
1626
- # of tags for a policy, then the entire request fails and the policy is
1627
- # not created.
1631
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the allowed
1632
+ # number of tags for a policy, then the entire request fails and the
1633
+ # policy is not created.
1628
1634
  #
1629
1635
  # </note>
1630
1636
  #
@@ -2505,7 +2511,7 @@ module Aws::Organizations
2505
2511
  #
2506
2512
  # You can only call this operation from the organization's management
2507
2513
  # account or by a member account that is a delegated administrator for
2508
- # an AWS service.
2514
+ # an Amazon Web Services service.
2509
2515
  #
2510
2516
  # @return [Types::DescribeResourcePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2511
2517
  #
@@ -3140,9 +3146,9 @@ module Aws::Organizations
3140
3146
  # invitation and the acceptance, then that tags could potentially be
3141
3147
  # non-compliant.
3142
3148
  #
3143
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the allowed number
3144
- # of tags for an account, then the entire request fails and invitations
3145
- # are not sent.
3149
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the allowed
3150
+ # number of tags for an account, then the entire request fails and
3151
+ # invitations are not sent.
3146
3152
  #
3147
3153
  # </note>
3148
3154
  #
@@ -5207,16 +5213,16 @@ module Aws::Organizations
5207
5213
  # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_scp-syntax.html
5208
5214
  #
5209
5215
  # @option params [Array<Types::Tag>] :tags
5210
- # Updates the list of tags that you want to attach to the newly-created
5211
- # resource policy. For each tag in the list, you must specify both a tag
5212
- # key and a value. You can set the value to an empty string, but you
5213
- # can't set it to `null`. For more information about tagging, see
5214
- # [Tagging Organizations resources][1] in the Organizations User Guide.
5216
+ # A list of tags that you want to attach to the newly created resource
5217
+ # policy. For each tag in the list, you must specify both a tag key and
5218
+ # a value. You can set the value to an empty string, but you can't set
5219
+ # it to `null`. For more information about tagging, see [Tagging
5220
+ # Organizations resources][1] in the Organizations User Guide.
5215
5221
  #
5216
5222
  # <note markdown="1"> Calls with tags apply to the initial creation of the resource policy,
5217
- # otherwise an exception is thrown. If any one of the tags is invalid or
5218
- # if you exceed the allowed number of tags for the resource policy, then
5219
- # the entire request fails and the resource policy is not created.
5223
+ # otherwise an exception is thrown. If any one of the tags is not valid
5224
+ # or if you exceed the allowed number of tags for the resource policy,
5225
+ # then the entire request fails and the resource policy is not created.
5220
5226
  #
5221
5227
  # </note>
5222
5228
  #
@@ -5418,8 +5424,8 @@ module Aws::Organizations
5418
5424
  # For each tag in the list, you must specify both a tag key and a value.
5419
5425
  # The value can be an empty string, but you can't set it to `null`.
5420
5426
  #
5421
- # <note markdown="1"> If any one of the tags is invalid or if you exceed the maximum allowed
5422
- # number of tags for a resource, then the entire request fails.
5427
+ # <note markdown="1"> If any one of the tags is not valid or if you exceed the maximum
5428
+ # allowed number of tags for a resource, then the entire request fails.
5423
5429
  #
5424
5430
  # </note>
5425
5431
  #
@@ -5711,7 +5717,7 @@ module Aws::Organizations
5711
5717
  params: params,
5712
5718
  config: config)
5713
5719
  context[:gem_name] = 'aws-sdk-organizations'
5714
- context[:gem_version] = '1.72.0'
5720
+ context[:gem_version] = '1.74.0'
5715
5721
  Seahorse::Client::Request.new(handlers, context)
5716
5722
  end
5717
5723
 
@@ -50,9 +50,6 @@ module Aws::Organizations
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -9,286 +9,124 @@
9
9
 
10
10
  module Aws::Organizations
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
+ end
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
21
25
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
29
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
30
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
31
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.aws", headers: {}, properties: {})
32
+ end
33
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
34
+ end
35
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
36
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-east-1"}]})
38
+ end
39
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
40
+ end
41
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
42
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
43
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.aws", headers: {}, properties: {})
44
+ end
45
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ end
47
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-east-1"}]})
48
+ end
49
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn")
50
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
51
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
52
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.amazonwebservices.com.cn", headers: {}, properties: {})
53
+ end
54
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
55
+ end
56
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
57
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
58
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.amazonaws.com.cn", headers: {}, properties: {})
59
+ end
60
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
61
+ end
62
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
63
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
64
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.amazonwebservices.com.cn", headers: {}, properties: {})
65
+ end
66
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
67
+ end
68
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"cn-northwest-1"}]})
69
+ end
70
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
71
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
72
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
73
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.aws", headers: {}, properties: {})
74
+ end
75
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
76
+ end
77
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
78
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
79
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-gov-west-1"}]})
80
+ end
81
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
82
+ end
83
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
84
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
85
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.aws", headers: {}, properties: {})
86
+ end
87
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
88
+ end
89
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-gov-west-1"}]})
90
+ end
91
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
92
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
93
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
94
+ end
95
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
96
+ end
97
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
98
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
99
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
100
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-east-1"}]})
101
+ end
102
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
103
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-gov-west-1"}]})
104
+ end
105
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
106
+ end
107
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
108
+ end
109
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
110
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
111
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
112
+ end
113
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
114
+ end
115
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
116
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-east-1"}]})
117
+ end
118
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-cn-global")
119
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"cn-northwest-1"}]})
120
+ end
121
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
122
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"organizations", "signingRegion"=>"us-gov-west-1"}]})
123
+ end
124
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
125
+ end
126
+ end
127
+ raise ArgumentError, "Invalid Configuration: Missing Region"
128
+ raise ArgumentError, 'No endpoint could be resolved'
24
129
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
130
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6InN0cmlu
67
- Z0VxdWFscyIsImFyZ3YiOlt7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJl
68
- ZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19LCJhd3MiXX1dLCJ0eXBl
69
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
70
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
71
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
72
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
73
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
74
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
75
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
76
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
77
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
78
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
79
- Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5pemF0aW9ucy1maXBzLntSZWdpb259
80
- LmFwaS5hd3MiLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1l
81
- Ijoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoidXMtZWFzdC0xIiwic2lnbmlu
82
- Z05hbWUiOiJvcmdhbml6YXRpb25zIn1dfSwiaGVhZGVycyI6e319LCJ0eXBl
83
- IjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQ
84
- UyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRp
85
- b24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJv
86
- ciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
87
- cmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUi
88
- LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
89
- IiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYi
90
- OiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBl
91
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQi
92
- OnsidXJsIjoiaHR0cHM6Ly9vcmdhbml6YXRpb25zLWZpcHMudXMtZWFzdC0x
93
- LmFtYXpvbmF3cy5jb20iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpb
94
- eyJuYW1lIjoic2lndjQiLCJzaWduaW5nUmVnaW9uIjoidXMtZWFzdC0xIiwi
95
- c2lnbmluZ05hbWUiOiJvcmdhbml6YXRpb25zIn1dfSwiaGVhZGVycyI6e319
96
- LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9y
97
- IjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
98
- dCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
99
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNl
100
- RHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
101
- Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3Ry
102
- dWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25S
103
- ZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVl
104
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwi
105
- OiJodHRwczovL29yZ2FuaXphdGlvbnMue1JlZ2lvbn0uYXBpLmF3cyIsInBy
106
- b3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2NCIsInNp
107
- Z25pbmdSZWdpb24iOiJ1cy1lYXN0LTEiLCJzaWduaW5nTmFtZSI6Im9yZ2Fu
108
- aXphdGlvbnMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
109
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5h
110
- YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFs
111
- U3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVu
112
- ZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5pemF0aW9ucy51cy1lYXN0
113
- LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMi
114
- Olt7Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdSZWdpb24iOiJ1cy1lYXN0LTEi
115
- LCJzaWduaW5nTmFtZSI6Im9yZ2FuaXphdGlvbnMifV19LCJoZWFkZXJzIjp7
116
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6
117
- InN0cmluZ0VxdWFscyIsImFyZ3YiOlt7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
118
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19LCJhd3MtY24i
119
- XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJm
120
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0s
121
- dHJ1ZV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
122
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
123
- W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
124
- W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
125
- b25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5F
126
- cXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7
127
- InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJd
128
- fV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10s
129
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5pemF0aW9ucy1maXBz
130
- LntSZWdpb259LmFwaS5hbWF6b253ZWJzZXJ2aWNlcy5jb20uY24iLCJwcm9w
131
- ZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWdu
132
- aW5nUmVnaW9uIjoiY24tbm9ydGh3ZXN0LTEiLCJzaWduaW5nTmFtZSI6Im9y
133
- Z2FuaXphdGlvbnMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
134
- dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFs
135
- U3RhY2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
136
- dCBzdXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNv
137
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJl
138
- ZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
139
- eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
140
- dHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlv
141
- blJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwi
142
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
143
- dHRwczovL29yZ2FuaXphdGlvbnMtZmlwcy57UmVnaW9ufS5hbWF6b25hd3Mu
144
- Y29tLmNuIiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6
145
- InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6ImNuLW5vcnRod2VzdC0xIiwic2ln
146
- bmluZ05hbWUiOiJvcmdhbml6YXRpb25zIn1dfSwiaGVhZGVycyI6e319LCJ0
147
- eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
148
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
149
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
150
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
151
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
152
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
153
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
154
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
155
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
156
- dHRwczovL29yZ2FuaXphdGlvbnMue1JlZ2lvbn0uYXBpLmFtYXpvbndlYnNl
157
- cnZpY2VzLmNvbS5jbiIsInByb3BlcnRpZXMiOnsiYXV0aFNjaGVtZXMiOlt7
158
- Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdSZWdpb24iOiJjbi1ub3J0aHdlc3Qt
159
- MSIsInNpZ25pbmdOYW1lIjoib3JnYW5pemF0aW9ucyJ9XX0sImhlYWRlcnMi
160
- Ont9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJl
161
- cnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlv
162
- biBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9
163
- XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
164
- Ly9vcmdhbml6YXRpb25zLmNuLW5vcnRod2VzdC0xLmFtYXpvbmF3cy5jb20u
165
- Y24iLCJwcm9wZXJ0aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2ln
166
- djQiLCJzaWduaW5nUmVnaW9uIjoiY24tbm9ydGh3ZXN0LTEiLCJzaWduaW5n
167
- TmFtZSI6Im9yZ2FuaXphdGlvbnMifV19LCJoZWFkZXJzIjp7fX0sInR5cGUi
168
- OiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6InN0cmluZ0Vx
169
- dWFscyIsImFyZ3YiOlt7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
170
- IlBhcnRpdGlvblJlc3VsdCJ9LCJuYW1lIl19LCJhd3MtdXMtZ292Il19XSwi
171
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJi
172
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVd
173
- fSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1
174
- YWxTdGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
175
- bmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVl
176
- LHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVz
177
- dWx0In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxz
178
- IiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYi
179
- OiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0s
180
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRw
181
- b2ludCI6eyJ1cmwiOiJodHRwczovL29yZ2FuaXphdGlvbnMtZmlwcy57UmVn
182
- aW9ufS5hcGkuYXdzIiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3si
183
- bmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InVzLWdvdi13ZXN0LTEi
184
- LCJzaWduaW5nTmFtZSI6Im9yZ2FuaXphdGlvbnMifV19LCJoZWFkZXJzIjp7
185
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
186
- b3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlz
187
- IHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBvciBib3RoIiwidHlw
188
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
189
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBl
190
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
191
- YW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
192
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1d
193
- fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJl
194
- bmRwb2ludCI6eyJ1cmwiOiJodHRwczovL29yZ2FuaXphdGlvbnMudXMtZ292
195
- LXdlc3QtMS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6eyJhdXRoU2No
196
- ZW1lcyI6W3sibmFtZSI6InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InVzLWdv
197
- di13ZXN0LTEiLCJzaWduaW5nTmFtZSI6Im9yZ2FuaXphdGlvbnMifV19LCJo
198
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
199
- IjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0
200
- aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0s
201
- eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
202
- eyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIs
203
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
204
- LCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
205
- IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwi
206
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
207
- aW50Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5pemF0aW9ucy57UmVnaW9ufS5h
208
- cGkuYXdzIiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6
209
- InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6InVzLWdvdi13ZXN0LTEiLCJzaWdu
210
- aW5nTmFtZSI6Im9yZ2FuaXphdGlvbnMifV19LCJoZWFkZXJzIjp7fX0sInR5
211
- cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJE
212
- dWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
213
- b3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
214
- ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5p
215
- emF0aW9ucy51cy1nb3Ytd2VzdC0xLmFtYXpvbmF3cy5jb20iLCJwcm9wZXJ0
216
- aWVzIjp7ImF1dGhTY2hlbWVzIjpbeyJuYW1lIjoic2lndjQiLCJzaWduaW5n
217
- UmVnaW9uIjoidXMtZ292LXdlc3QtMSIsInNpZ25pbmdOYW1lIjoib3JnYW5p
218
- emF0aW9ucyJ9XX0sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
219
- fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
220
- Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
221
- bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
222
- eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
223
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
224
- Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
225
- XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
226
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
227
- InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
228
- IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
229
- Ly9vcmdhbml6YXRpb25zLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
230
- dCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
231
- cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltd
232
- LCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0
233
- IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgi
234
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
235
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0s
236
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
237
- Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
238
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQ
239
- UyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
240
- W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
241
- Ijoic3RyaW5nRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn0sImF3
242
- cy1nbG9iYWwiXX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL29yZ2Fu
243
- aXphdGlvbnMtZmlwcy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3Bl
244
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsi
245
- Y29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJy
246
- ZWYiOiJSZWdpb24ifSwiYXdzLXVzLWdvdi1nbG9iYWwiXX1dLCJlbmRwb2lu
247
- dCI6eyJ1cmwiOiJodHRwczovL29yZ2FuaXphdGlvbnMudXMtZ292LXdlc3Qt
248
- MS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
249
- fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9p
250
- bnQiOnsidXJsIjoiaHR0cHM6Ly9vcmdhbml6YXRpb25zLWZpcHMue1JlZ2lv
251
- bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
252
- e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29u
253
- ZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlz
254
- IHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJy
255
- b3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
256
- YXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6
257
- InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFu
258
- RXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2Ijpb
259
- eyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2si
260
- XX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltd
261
- LCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL29yZ2FuaXphdGlvbnMue1Jl
262
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
263
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
264
- In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBl
265
- bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1
266
- YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwi
267
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJz
268
- dHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdpb24ifSwiYXdzLWds
269
- b2JhbCJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vb3JnYW5pemF0
270
- aW9ucy51cy1lYXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRpZXMiOnsi
271
- YXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdSZWdpb24i
272
- OiJ1cy1lYXN0LTEiLCJzaWduaW5nTmFtZSI6Im9yZ2FuaXphdGlvbnMifV19
273
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9u
274
- cyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJSZWdp
275
- b24ifSwiYXdzLWNuLWdsb2JhbCJdfV0sImVuZHBvaW50Ijp7InVybCI6Imh0
276
- dHBzOi8vb3JnYW5pemF0aW9ucy5jbi1ub3J0aHdlc3QtMS5hbWF6b25hd3Mu
277
- Y29tLmNuIiwicHJvcGVydGllcyI6eyJhdXRoU2NoZW1lcyI6W3sibmFtZSI6
278
- InNpZ3Y0Iiwic2lnbmluZ1JlZ2lvbiI6ImNuLW5vcnRod2VzdC0xIiwic2ln
279
- bmluZ05hbWUiOiJvcmdhbml6YXRpb25zIn1dfSwiaGVhZGVycyI6e319LCJ0
280
- eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5n
281
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn0sImF3cy11cy1nb3Yt
282
- Z2xvYmFsIl19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9vcmdhbml6
283
- YXRpb25zLnVzLWdvdi13ZXN0LTEuYW1hem9uYXdzLmNvbSIsInByb3BlcnRp
284
- ZXMiOnsiYXV0aFNjaGVtZXMiOlt7Im5hbWUiOiJzaWd2NCIsInNpZ25pbmdS
285
- ZWdpb24iOiJ1cy1nb3Ytd2VzdC0xIiwic2lnbmluZ05hbWUiOiJvcmdhbml6
286
- YXRpb25zIn1dfSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7
287
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL29y
288
- Z2FuaXphdGlvbnMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
289
- aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
290
- ZHBvaW50In1dfV19XX0=
291
-
292
- JSON
293
131
  end
294
132
  end