aws-sdk-organizations 1.72.0 → 1.73.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: 1a45af0d35a20cc99841327a8059ed1066fe53da7f7298cd08d24c7fd293c7a2
4
+ data.tar.gz: d83a94073d426846db764e0195f44ed9fbf9669ea39fb09acb72e38c80d12fdb
5
5
  SHA512:
6
- metadata.gz: 84937fd2eb312592f7384bc2b8310f9f80e6bdc9b509f63d996b2214fff88674a1f7c4bda133a52e242886f878a91aed868868ed191ac7b65df6a97fcdbf62fe
7
- data.tar.gz: 51fae0fcf272d98be315c7b476dd8130f341f505aecc2c5063c55e9ce0a83978f003729da118ff61b60e67a797f0897e0953fad55556b72143c1618a7e32ecfc
6
+ metadata.gz: c045e11601bab4953df087747a59c5f712ab4451c1ed95e6d3f79781425ceda53582e24f38085b8a031061ac037cd1b4a3e2318cb7b833adc6c7b52df62c498e
7
+ data.tar.gz: 28e9587d250fe63807be448c25e492fda123edf2e5fa51022ebc866c2d9345f55a505b22acd48099bbc49539d78bd4d8ff2f4e5dd00cfe5108576273c4335e9c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.72.0 (2022-11-28)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -5711,7 +5711,7 @@ module Aws::Organizations
5711
5711
  params: params,
5712
5712
  config: config)
5713
5713
  context[:gem_name] = 'aws-sdk-organizations'
5714
- context[:gem_version] = '1.72.0'
5714
+ context[:gem_version] = '1.73.0'
5715
5715
  Seahorse::Client::Request.new(handlers, context)
5716
5716
  end
5717
5717
 
@@ -9,286 +9,121 @@
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 (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ 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"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"organizations"}]})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"organizations"}]})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"organizations"}]})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
+ end
46
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"organizations"}]})
47
+ end
48
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn")
49
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
50
+ 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"))
51
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.amazonwebservices.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"organizations"}]})
52
+ end
53
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
54
+ end
55
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
56
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
57
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"organizations"}]})
58
+ end
59
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
60
+ end
61
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
62
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
63
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.amazonwebservices.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"organizations"}]})
64
+ end
65
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
66
+ end
67
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"organizations"}]})
68
+ end
69
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
70
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
71
+ 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"))
72
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"organizations"}]})
73
+ end
74
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
75
+ end
76
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
77
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
78
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"organizations"}]})
79
+ end
80
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
81
+ end
82
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
83
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
84
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"organizations"}]})
85
+ end
86
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
87
+ end
88
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"organizations"}]})
89
+ end
90
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
91
+ 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"))
92
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
93
+ end
94
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
95
+ end
96
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
97
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
98
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
99
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.us-east-1.amazonaws.com", headers: {}, properties: {})
100
+ end
101
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
102
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
103
+ end
104
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
105
+ end
106
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
107
+ end
108
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
109
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
110
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
111
+ end
112
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
113
+ end
114
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-global")
115
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-east-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-east-1", "signingName"=>"organizations"}]})
116
+ end
117
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-cn-global")
118
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"cn-northwest-1", "signingName"=>"organizations"}]})
119
+ end
120
+ if Aws::Endpoints::Matchers.string_equals?(region, "aws-us-gov-global")
121
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.us-gov-west-1.amazonaws.com", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingRegion"=>"us-gov-west-1", "signingName"=>"organizations"}]})
122
+ end
123
+ return Aws::Endpoints::Endpoint.new(url: "https://organizations.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
124
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
125
+ raise ArgumentError, 'No endpoint could be resolved'
24
126
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
127
  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
128
  end
294
129
  end
@@ -25,13 +25,6 @@ module Aws::Organizations
25
25
  include Aws::Structure
26
26
  end
27
27
 
28
- # @note When making an API call, you may pass AcceptHandshakeRequest
29
- # data as a hash:
30
- #
31
- # {
32
- # handshake_id: "HandshakeId", # required
33
- # }
34
- #
35
28
  # @!attribute [rw] handshake_id
36
29
  # The unique identifier (ID) of the handshake that you want to accept.
37
30
  #
@@ -267,14 +260,6 @@ module Aws::Organizations
267
260
  include Aws::Structure
268
261
  end
269
262
 
270
- # @note When making an API call, you may pass AttachPolicyRequest
271
- # data as a hash:
272
- #
273
- # {
274
- # policy_id: "PolicyId", # required
275
- # target_id: "PolicyTargetId", # required
276
- # }
277
- #
278
263
  # @!attribute [rw] policy_id
279
264
  # The unique identifier (ID) of the policy that you want to attach to
280
265
  # the target. You can get the ID for the policy by calling the
@@ -323,13 +308,6 @@ module Aws::Organizations
323
308
  include Aws::Structure
324
309
  end
325
310
 
326
- # @note When making an API call, you may pass CancelHandshakeRequest
327
- # data as a hash:
328
- #
329
- # {
330
- # handshake_id: "HandshakeId", # required
331
- # }
332
- #
333
311
  # @!attribute [rw] handshake_id
334
312
  # The unique identifier (ID) of the handshake that you want to cancel.
335
313
  # You can get the ID from the ListHandshakesForOrganization operation.
@@ -411,13 +389,6 @@ module Aws::Organizations
411
389
  include Aws::Structure
412
390
  end
413
391
 
414
- # @note When making an API call, you may pass CloseAccountRequest
415
- # data as a hash:
416
- #
417
- # {
418
- # account_id: "AccountId", # required
419
- # }
420
- #
421
392
  # @!attribute [rw] account_id
422
393
  # Retrieves the Amazon Web Services account Id for the current
423
394
  # `CloseAccount` API request.
@@ -657,22 +628,6 @@ module Aws::Organizations
657
628
  include Aws::Structure
658
629
  end
659
630
 
660
- # @note When making an API call, you may pass CreateAccountRequest
661
- # data as a hash:
662
- #
663
- # {
664
- # email: "Email", # required
665
- # account_name: "CreateAccountName", # required
666
- # role_name: "RoleName",
667
- # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
668
- # tags: [
669
- # {
670
- # key: "TagKey", # required
671
- # value: "TagValue", # required
672
- # },
673
- # ],
674
- # }
675
- #
676
631
  # @!attribute [rw] email
677
632
  # The email address of the owner to assign to the new member account.
678
633
  # This email address must not already be associated with another
@@ -957,22 +912,6 @@ module Aws::Organizations
957
912
  include Aws::Structure
958
913
  end
959
914
 
960
- # @note When making an API call, you may pass CreateGovCloudAccountRequest
961
- # data as a hash:
962
- #
963
- # {
964
- # email: "Email", # required
965
- # account_name: "CreateAccountName", # required
966
- # role_name: "RoleName",
967
- # iam_user_access_to_billing: "ALLOW", # accepts ALLOW, DENY
968
- # tags: [
969
- # {
970
- # key: "TagKey", # required
971
- # value: "TagValue", # required
972
- # },
973
- # ],
974
- # }
975
- #
976
915
  # @!attribute [rw] email
977
916
  # Specifies the email address of the owner to assign to the new member
978
917
  # account in the commercial Region. This email address must not
@@ -1116,13 +1055,6 @@ module Aws::Organizations
1116
1055
  include Aws::Structure
1117
1056
  end
1118
1057
 
1119
- # @note When making an API call, you may pass CreateOrganizationRequest
1120
- # data as a hash:
1121
- #
1122
- # {
1123
- # feature_set: "ALL", # accepts ALL, CONSOLIDATED_BILLING
1124
- # }
1125
- #
1126
1058
  # @!attribute [rw] feature_set
1127
1059
  # Specifies the feature set supported by the new organization. Each
1128
1060
  # feature set supports different levels of functionality.
@@ -1168,20 +1100,6 @@ module Aws::Organizations
1168
1100
  include Aws::Structure
1169
1101
  end
1170
1102
 
1171
- # @note When making an API call, you may pass CreateOrganizationalUnitRequest
1172
- # data as a hash:
1173
- #
1174
- # {
1175
- # parent_id: "ParentId", # required
1176
- # name: "OrganizationalUnitName", # required
1177
- # tags: [
1178
- # {
1179
- # key: "TagKey", # required
1180
- # value: "TagValue", # required
1181
- # },
1182
- # ],
1183
- # }
1184
- #
1185
1103
  # @!attribute [rw] parent_id
1186
1104
  # The unique identifier (ID) of the parent root or OU that you want to
1187
1105
  # create the new OU in.
@@ -1247,22 +1165,6 @@ module Aws::Organizations
1247
1165
  include Aws::Structure
1248
1166
  end
1249
1167
 
1250
- # @note When making an API call, you may pass CreatePolicyRequest
1251
- # data as a hash:
1252
- #
1253
- # {
1254
- # content: "PolicyContent", # required
1255
- # description: "PolicyDescription", # required
1256
- # name: "PolicyName", # required
1257
- # type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
1258
- # tags: [
1259
- # {
1260
- # key: "TagKey", # required
1261
- # value: "TagValue", # required
1262
- # },
1263
- # ],
1264
- # }
1265
- #
1266
1168
  # @!attribute [rw] content
1267
1169
  # The policy text content to add to the new policy. The text that you
1268
1170
  # supply must adhere to the rules of the policy type you specify in
@@ -1346,13 +1248,6 @@ module Aws::Organizations
1346
1248
  include Aws::Structure
1347
1249
  end
1348
1250
 
1349
- # @note When making an API call, you may pass DeclineHandshakeRequest
1350
- # data as a hash:
1351
- #
1352
- # {
1353
- # handshake_id: "HandshakeId", # required
1354
- # }
1355
- #
1356
1251
  # @!attribute [rw] handshake_id
1357
1252
  # The unique identifier (ID) of the handshake that you want to
1358
1253
  # decline. You can get the ID from the ListHandshakesForAccount
@@ -1465,13 +1360,6 @@ module Aws::Organizations
1465
1360
  include Aws::Structure
1466
1361
  end
1467
1362
 
1468
- # @note When making an API call, you may pass DeleteOrganizationalUnitRequest
1469
- # data as a hash:
1470
- #
1471
- # {
1472
- # organizational_unit_id: "OrganizationalUnitId", # required
1473
- # }
1474
- #
1475
1363
  # @!attribute [rw] organizational_unit_id
1476
1364
  # The unique identifier (ID) of the organizational unit that you want
1477
1365
  # to delete. You can get the ID from the
@@ -1496,13 +1384,6 @@ module Aws::Organizations
1496
1384
  include Aws::Structure
1497
1385
  end
1498
1386
 
1499
- # @note When making an API call, you may pass DeletePolicyRequest
1500
- # data as a hash:
1501
- #
1502
- # {
1503
- # policy_id: "PolicyId", # required
1504
- # }
1505
- #
1506
1387
  # @!attribute [rw] policy_id
1507
1388
  # The unique identifier (ID) of the policy that you want to delete.
1508
1389
  # You can get the ID from the ListPolicies or ListPoliciesForTarget
@@ -1525,14 +1406,6 @@ module Aws::Organizations
1525
1406
  include Aws::Structure
1526
1407
  end
1527
1408
 
1528
- # @note When making an API call, you may pass DeregisterDelegatedAdministratorRequest
1529
- # data as a hash:
1530
- #
1531
- # {
1532
- # account_id: "AccountId", # required
1533
- # service_principal: "ServicePrincipal", # required
1534
- # }
1535
- #
1536
1409
  # @!attribute [rw] account_id
1537
1410
  # The account ID number of the member account in the organization that
1538
1411
  # you want to deregister as a delegated administrator.
@@ -1558,13 +1431,6 @@ module Aws::Organizations
1558
1431
  include Aws::Structure
1559
1432
  end
1560
1433
 
1561
- # @note When making an API call, you may pass DescribeAccountRequest
1562
- # data as a hash:
1563
- #
1564
- # {
1565
- # account_id: "AccountId", # required
1566
- # }
1567
- #
1568
1434
  # @!attribute [rw] account_id
1569
1435
  # The unique identifier (ID) of the Amazon Web Services account that
1570
1436
  # you want information about. You can get the ID from the ListAccounts
@@ -1598,13 +1464,6 @@ module Aws::Organizations
1598
1464
  include Aws::Structure
1599
1465
  end
1600
1466
 
1601
- # @note When making an API call, you may pass DescribeCreateAccountStatusRequest
1602
- # data as a hash:
1603
- #
1604
- # {
1605
- # create_account_request_id: "CreateAccountRequestId", # required
1606
- # }
1607
- #
1608
1467
  # @!attribute [rw] create_account_request_id
1609
1468
  # Specifies the `Id` value that uniquely identifies the
1610
1469
  # `CreateAccount` request. You can get the value from the
@@ -1641,14 +1500,6 @@ module Aws::Organizations
1641
1500
  include Aws::Structure
1642
1501
  end
1643
1502
 
1644
- # @note When making an API call, you may pass DescribeEffectivePolicyRequest
1645
- # data as a hash:
1646
- #
1647
- # {
1648
- # policy_type: "TAG_POLICY", # required, accepts TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
1649
- # target_id: "PolicyTargetId",
1650
- # }
1651
- #
1652
1503
  # @!attribute [rw] policy_type
1653
1504
  # The type of policy that you want information about. You can specify
1654
1505
  # one of the following values:
@@ -1693,13 +1544,6 @@ module Aws::Organizations
1693
1544
  include Aws::Structure
1694
1545
  end
1695
1546
 
1696
- # @note When making an API call, you may pass DescribeHandshakeRequest
1697
- # data as a hash:
1698
- #
1699
- # {
1700
- # handshake_id: "HandshakeId", # required
1701
- # }
1702
- #
1703
1547
  # @!attribute [rw] handshake_id
1704
1548
  # The unique identifier (ID) of the handshake that you want
1705
1549
  # information about. You can get the ID from the original call to
@@ -1752,13 +1596,6 @@ module Aws::Organizations
1752
1596
  include Aws::Structure
1753
1597
  end
1754
1598
 
1755
- # @note When making an API call, you may pass DescribeOrganizationalUnitRequest
1756
- # data as a hash:
1757
- #
1758
- # {
1759
- # organizational_unit_id: "OrganizationalUnitId", # required
1760
- # }
1761
- #
1762
1599
  # @!attribute [rw] organizational_unit_id
1763
1600
  # The unique identifier (ID) of the organizational unit that you want
1764
1601
  # details about. You can get the ID from the
@@ -1795,13 +1632,6 @@ module Aws::Organizations
1795
1632
  include Aws::Structure
1796
1633
  end
1797
1634
 
1798
- # @note When making an API call, you may pass DescribePolicyRequest
1799
- # data as a hash:
1800
- #
1801
- # {
1802
- # policy_id: "PolicyId", # required
1803
- # }
1804
- #
1805
1635
  # @!attribute [rw] policy_id
1806
1636
  # The unique identifier (ID) of the policy that you want details
1807
1637
  # about. You can get the ID from the ListPolicies or
@@ -1862,14 +1692,6 @@ module Aws::Organizations
1862
1692
  include Aws::Structure
1863
1693
  end
1864
1694
 
1865
- # @note When making an API call, you may pass DetachPolicyRequest
1866
- # data as a hash:
1867
- #
1868
- # {
1869
- # policy_id: "PolicyId", # required
1870
- # target_id: "PolicyTargetId", # required
1871
- # }
1872
- #
1873
1695
  # @!attribute [rw] policy_id
1874
1696
  # The unique identifier (ID) of the policy you want to detach. You can
1875
1697
  # get the ID from the ListPolicies or ListPoliciesForTarget
@@ -1917,13 +1739,6 @@ module Aws::Organizations
1917
1739
  include Aws::Structure
1918
1740
  end
1919
1741
 
1920
- # @note When making an API call, you may pass DisableAWSServiceAccessRequest
1921
- # data as a hash:
1922
- #
1923
- # {
1924
- # service_principal: "ServicePrincipal", # required
1925
- # }
1926
- #
1927
1742
  # @!attribute [rw] service_principal
1928
1743
  # The service principal name of the Amazon Web Services service for
1929
1744
  # which you want to disable integration with your organization. This
@@ -1939,14 +1754,6 @@ module Aws::Organizations
1939
1754
  include Aws::Structure
1940
1755
  end
1941
1756
 
1942
- # @note When making an API call, you may pass DisablePolicyTypeRequest
1943
- # data as a hash:
1944
- #
1945
- # {
1946
- # root_id: "RootId", # required
1947
- # policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
1948
- # }
1949
- #
1950
1757
  # @!attribute [rw] root_id
1951
1758
  # The unique identifier (ID) of the root in which you want to disable
1952
1759
  # a policy type. You can get the ID from the ListRoots operation.
@@ -2119,13 +1926,6 @@ module Aws::Organizations
2119
1926
  include Aws::Structure
2120
1927
  end
2121
1928
 
2122
- # @note When making an API call, you may pass EnableAWSServiceAccessRequest
2123
- # data as a hash:
2124
- #
2125
- # {
2126
- # service_principal: "ServicePrincipal", # required
2127
- # }
2128
- #
2129
1929
  # @!attribute [rw] service_principal
2130
1930
  # The service principal name of the Amazon Web Services service for
2131
1931
  # which you want to enable integration with your organization. This is
@@ -2160,14 +1960,6 @@ module Aws::Organizations
2160
1960
  include Aws::Structure
2161
1961
  end
2162
1962
 
2163
- # @note When making an API call, you may pass EnablePolicyTypeRequest
2164
- # data as a hash:
2165
- #
2166
- # {
2167
- # root_id: "RootId", # required
2168
- # policy_type: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
2169
- # }
2170
- #
2171
1963
  # @!attribute [rw] root_id
2172
1964
  # The unique identifier (ID) of the root in which you want to enable a
2173
1965
  # policy type. You can get the ID from the ListRoots operation.
@@ -2471,14 +2263,6 @@ module Aws::Organizations
2471
2263
  # Specifies the criteria that are used to select the handshakes for the
2472
2264
  # operation.
2473
2265
  #
2474
- # @note When making an API call, you may pass HandshakeFilter
2475
- # data as a hash:
2476
- #
2477
- # {
2478
- # action_type: "INVITE", # accepts INVITE, ENABLE_ALL_FEATURES, APPROVE_ALL_FEATURES, ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE
2479
- # parent_handshake_id: "HandshakeId",
2480
- # }
2481
- #
2482
2266
  # @!attribute [rw] action_type
2483
2267
  # Specifies the type of handshake action.
2484
2268
  #
@@ -2525,14 +2309,6 @@ module Aws::Organizations
2525
2309
 
2526
2310
  # Identifies a participant in a handshake.
2527
2311
  #
2528
- # @note When making an API call, you may pass HandshakeParty
2529
- # data as a hash:
2530
- #
2531
- # {
2532
- # id: "HandshakePartyId", # required
2533
- # type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, EMAIL
2534
- # }
2535
- #
2536
2312
  # @!attribute [rw] id
2537
2313
  # The unique identifier (ID) for the party.
2538
2314
  #
@@ -2712,23 +2488,6 @@ module Aws::Organizations
2712
2488
  include Aws::Structure
2713
2489
  end
2714
2490
 
2715
- # @note When making an API call, you may pass InviteAccountToOrganizationRequest
2716
- # data as a hash:
2717
- #
2718
- # {
2719
- # target: { # required
2720
- # id: "HandshakePartyId", # required
2721
- # type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, EMAIL
2722
- # },
2723
- # notes: "HandshakeNotes",
2724
- # tags: [
2725
- # {
2726
- # key: "TagKey", # required
2727
- # value: "TagValue", # required
2728
- # },
2729
- # ],
2730
- # }
2731
- #
2732
2491
  # @!attribute [rw] target
2733
2492
  # The identifier (ID) of the Amazon Web Services account that you want
2734
2493
  # to invite to join your organization. This is a JSON object that
@@ -2805,14 +2564,6 @@ module Aws::Organizations
2805
2564
  include Aws::Structure
2806
2565
  end
2807
2566
 
2808
- # @note When making an API call, you may pass ListAWSServiceAccessForOrganizationRequest
2809
- # data as a hash:
2810
- #
2811
- # {
2812
- # next_token: "NextToken",
2813
- # max_results: 1,
2814
- # }
2815
- #
2816
2567
  # @!attribute [rw] next_token
2817
2568
  # The parameter for receiving additional results if you receive a
2818
2569
  # `NextToken` response in a previous request. A `NextToken` response
@@ -2867,15 +2618,6 @@ module Aws::Organizations
2867
2618
  include Aws::Structure
2868
2619
  end
2869
2620
 
2870
- # @note When making an API call, you may pass ListAccountsForParentRequest
2871
- # data as a hash:
2872
- #
2873
- # {
2874
- # parent_id: "ParentId", # required
2875
- # next_token: "NextToken",
2876
- # max_results: 1,
2877
- # }
2878
- #
2879
2621
  # @!attribute [rw] parent_id
2880
2622
  # The unique identifier (ID) for the parent root or organization unit
2881
2623
  # (OU) whose accounts you want to list.
@@ -2933,14 +2675,6 @@ module Aws::Organizations
2933
2675
  include Aws::Structure
2934
2676
  end
2935
2677
 
2936
- # @note When making an API call, you may pass ListAccountsRequest
2937
- # data as a hash:
2938
- #
2939
- # {
2940
- # next_token: "NextToken",
2941
- # max_results: 1,
2942
- # }
2943
- #
2944
2678
  # @!attribute [rw] next_token
2945
2679
  # The parameter for receiving additional results if you receive a
2946
2680
  # `NextToken` response in a previous request. A `NextToken` response
@@ -2992,16 +2726,6 @@ module Aws::Organizations
2992
2726
  include Aws::Structure
2993
2727
  end
2994
2728
 
2995
- # @note When making an API call, you may pass ListChildrenRequest
2996
- # data as a hash:
2997
- #
2998
- # {
2999
- # parent_id: "ParentId", # required
3000
- # child_type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATIONAL_UNIT
3001
- # next_token: "NextToken",
3002
- # max_results: 1,
3003
- # }
3004
- #
3005
2729
  # @!attribute [rw] parent_id
3006
2730
  # The unique identifier (ID) for the parent root or OU whose children
3007
2731
  # you want to list.
@@ -3080,15 +2804,6 @@ module Aws::Organizations
3080
2804
  include Aws::Structure
3081
2805
  end
3082
2806
 
3083
- # @note When making an API call, you may pass ListCreateAccountStatusRequest
3084
- # data as a hash:
3085
- #
3086
- # {
3087
- # states: ["IN_PROGRESS"], # accepts IN_PROGRESS, SUCCEEDED, FAILED
3088
- # next_token: "NextToken",
3089
- # max_results: 1,
3090
- # }
3091
- #
3092
2807
  # @!attribute [rw] states
3093
2808
  # A list of one or more states that you want included in the response.
3094
2809
  # If this parameter isn't present, all requests are included in the
@@ -3149,15 +2864,6 @@ module Aws::Organizations
3149
2864
  include Aws::Structure
3150
2865
  end
3151
2866
 
3152
- # @note When making an API call, you may pass ListDelegatedAdministratorsRequest
3153
- # data as a hash:
3154
- #
3155
- # {
3156
- # service_principal: "ServicePrincipal",
3157
- # next_token: "NextToken",
3158
- # max_results: 1,
3159
- # }
3160
- #
3161
2867
  # @!attribute [rw] service_principal
3162
2868
  # Specifies a service principal name. If specified, then the operation
3163
2869
  # lists the delegated administrators only for the specified service.
@@ -3218,15 +2924,6 @@ module Aws::Organizations
3218
2924
  include Aws::Structure
3219
2925
  end
3220
2926
 
3221
- # @note When making an API call, you may pass ListDelegatedServicesForAccountRequest
3222
- # data as a hash:
3223
- #
3224
- # {
3225
- # account_id: "AccountId", # required
3226
- # next_token: "NextToken",
3227
- # max_results: 1,
3228
- # }
3229
- #
3230
2927
  # @!attribute [rw] account_id
3231
2928
  # The account ID number of a delegated administrator account in the
3232
2929
  # organization.
@@ -3284,18 +2981,6 @@ module Aws::Organizations
3284
2981
  include Aws::Structure
3285
2982
  end
3286
2983
 
3287
- # @note When making an API call, you may pass ListHandshakesForAccountRequest
3288
- # data as a hash:
3289
- #
3290
- # {
3291
- # filter: {
3292
- # action_type: "INVITE", # accepts INVITE, ENABLE_ALL_FEATURES, APPROVE_ALL_FEATURES, ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE
3293
- # parent_handshake_id: "HandshakeId",
3294
- # },
3295
- # next_token: "NextToken",
3296
- # max_results: 1,
3297
- # }
3298
- #
3299
2984
  # @!attribute [rw] filter
3300
2985
  # Filters the handshakes that you want included in the response. The
3301
2986
  # default is all types. Use the `ActionType` element to limit the
@@ -3360,18 +3045,6 @@ module Aws::Organizations
3360
3045
  include Aws::Structure
3361
3046
  end
3362
3047
 
3363
- # @note When making an API call, you may pass ListHandshakesForOrganizationRequest
3364
- # data as a hash:
3365
- #
3366
- # {
3367
- # filter: {
3368
- # action_type: "INVITE", # accepts INVITE, ENABLE_ALL_FEATURES, APPROVE_ALL_FEATURES, ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE
3369
- # parent_handshake_id: "HandshakeId",
3370
- # },
3371
- # next_token: "NextToken",
3372
- # max_results: 1,
3373
- # }
3374
- #
3375
3048
  # @!attribute [rw] filter
3376
3049
  # A filter of the handshakes that you want included in the response.
3377
3050
  # The default is all types. Use the `ActionType` element to limit the
@@ -3436,15 +3109,6 @@ module Aws::Organizations
3436
3109
  include Aws::Structure
3437
3110
  end
3438
3111
 
3439
- # @note When making an API call, you may pass ListOrganizationalUnitsForParentRequest
3440
- # data as a hash:
3441
- #
3442
- # {
3443
- # parent_id: "ParentId", # required
3444
- # next_token: "NextToken",
3445
- # max_results: 1,
3446
- # }
3447
- #
3448
3112
  # @!attribute [rw] parent_id
3449
3113
  # The unique identifier (ID) of the root or OU whose child OUs you
3450
3114
  # want to list.
@@ -3518,15 +3182,6 @@ module Aws::Organizations
3518
3182
  include Aws::Structure
3519
3183
  end
3520
3184
 
3521
- # @note When making an API call, you may pass ListParentsRequest
3522
- # data as a hash:
3523
- #
3524
- # {
3525
- # child_id: "ChildId", # required
3526
- # next_token: "NextToken",
3527
- # max_results: 1,
3528
- # }
3529
- #
3530
3185
  # @!attribute [rw] child_id
3531
3186
  # The unique identifier (ID) of the OU or account whose parent
3532
3187
  # containers you want to list. Don't specify a root.
@@ -3599,16 +3254,6 @@ module Aws::Organizations
3599
3254
  include Aws::Structure
3600
3255
  end
3601
3256
 
3602
- # @note When making an API call, you may pass ListPoliciesForTargetRequest
3603
- # data as a hash:
3604
- #
3605
- # {
3606
- # target_id: "PolicyTargetId", # required
3607
- # filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
3608
- # next_token: "NextToken",
3609
- # max_results: 1,
3610
- # }
3611
- #
3612
3257
  # @!attribute [rw] target_id
3613
3258
  # The unique identifier (ID) of the root, organizational unit, or
3614
3259
  # account whose policies you want to list.
@@ -3705,15 +3350,6 @@ module Aws::Organizations
3705
3350
  include Aws::Structure
3706
3351
  end
3707
3352
 
3708
- # @note When making an API call, you may pass ListPoliciesRequest
3709
- # data as a hash:
3710
- #
3711
- # {
3712
- # filter: "SERVICE_CONTROL_POLICY", # required, accepts SERVICE_CONTROL_POLICY, TAG_POLICY, BACKUP_POLICY, AISERVICES_OPT_OUT_POLICY
3713
- # next_token: "NextToken",
3714
- # max_results: 1,
3715
- # }
3716
- #
3717
3353
  # @!attribute [rw] filter
3718
3354
  # Specifies the type of policy that you want to include in the
3719
3355
  # response. You must specify one of the following values:
@@ -3788,14 +3424,6 @@ module Aws::Organizations
3788
3424
  include Aws::Structure
3789
3425
  end
3790
3426
 
3791
- # @note When making an API call, you may pass ListRootsRequest
3792
- # data as a hash:
3793
- #
3794
- # {
3795
- # next_token: "NextToken",
3796
- # max_results: 1,
3797
- # }
3798
- #
3799
3427
  # @!attribute [rw] next_token
3800
3428
  # The parameter for receiving additional results if you receive a
3801
3429
  # `NextToken` response in a previous request. A `NextToken` response
@@ -3847,14 +3475,6 @@ module Aws::Organizations
3847
3475
  include Aws::Structure
3848
3476
  end
3849
3477
 
3850
- # @note When making an API call, you may pass ListTagsForResourceRequest
3851
- # data as a hash:
3852
- #
3853
- # {
3854
- # resource_id: "TaggableResourceId", # required
3855
- # next_token: "NextToken",
3856
- # }
3857
- #
3858
3478
  # @!attribute [rw] resource_id
3859
3479
  # The ID of the resource with the tags to list.
3860
3480
  #
@@ -3910,15 +3530,6 @@ module Aws::Organizations
3910
3530
  include Aws::Structure
3911
3531
  end
3912
3532
 
3913
- # @note When making an API call, you may pass ListTargetsForPolicyRequest
3914
- # data as a hash:
3915
- #
3916
- # {
3917
- # policy_id: "PolicyId", # required
3918
- # next_token: "NextToken",
3919
- # max_results: 1,
3920
- # }
3921
- #
3922
3533
  # @!attribute [rw] policy_id
3923
3534
  # The unique identifier (ID) of the policy whose attachments you want
3924
3535
  # to know.
@@ -4021,15 +3632,6 @@ module Aws::Organizations
4021
3632
  include Aws::Structure
4022
3633
  end
4023
3634
 
4024
- # @note When making an API call, you may pass MoveAccountRequest
4025
- # data as a hash:
4026
- #
4027
- # {
4028
- # account_id: "AccountId", # required
4029
- # source_parent_id: "ParentId", # required
4030
- # destination_parent_id: "ParentId", # required
4031
- # }
4032
- #
4033
3635
  # @!attribute [rw] account_id
4034
3636
  # The unique identifier (ID) of the account that you want to move.
4035
3637
  #
@@ -4613,19 +4215,6 @@ module Aws::Organizations
4613
4215
  include Aws::Structure
4614
4216
  end
4615
4217
 
4616
- # @note When making an API call, you may pass PutResourcePolicyRequest
4617
- # data as a hash:
4618
- #
4619
- # {
4620
- # content: "ResourcePolicyContent", # required
4621
- # tags: [
4622
- # {
4623
- # key: "TagKey", # required
4624
- # value: "TagValue", # required
4625
- # },
4626
- # ],
4627
- # }
4628
- #
4629
4218
  # @!attribute [rw] content
4630
4219
  # If provided, the new content for the resource policy. The text must
4631
4220
  # be correctly formatted JSON that complies with the syntax for the
@@ -4679,14 +4268,6 @@ module Aws::Organizations
4679
4268
  include Aws::Structure
4680
4269
  end
4681
4270
 
4682
- # @note When making an API call, you may pass RegisterDelegatedAdministratorRequest
4683
- # data as a hash:
4684
- #
4685
- # {
4686
- # account_id: "AccountId", # required
4687
- # service_principal: "ServicePrincipal", # required
4688
- # }
4689
- #
4690
4271
  # @!attribute [rw] account_id
4691
4272
  # The account ID number of the member account in the organization to
4692
4273
  # register as a delegated administrator.
@@ -4706,13 +4287,6 @@ module Aws::Organizations
4706
4287
  include Aws::Structure
4707
4288
  end
4708
4289
 
4709
- # @note When making an API call, you may pass RemoveAccountFromOrganizationRequest
4710
- # data as a hash:
4711
- #
4712
- # {
4713
- # account_id: "AccountId", # required
4714
- # }
4715
- #
4716
4290
  # @!attribute [rw] account_id
4717
4291
  # The unique identifier (ID) of the member account that you want to
4718
4292
  # remove from the organization.
@@ -4903,14 +4477,6 @@ module Aws::Organizations
4903
4477
  #
4904
4478
  # * Policy
4905
4479
  #
4906
- # @note When making an API call, you may pass Tag
4907
- # data as a hash:
4908
- #
4909
- # {
4910
- # key: "TagKey", # required
4911
- # value: "TagValue", # required
4912
- # }
4913
- #
4914
4480
  # @!attribute [rw] key
4915
4481
  # The key identifier, or name, of the tag.
4916
4482
  # @return [String]
@@ -4930,19 +4496,6 @@ module Aws::Organizations
4930
4496
  include Aws::Structure
4931
4497
  end
4932
4498
 
4933
- # @note When making an API call, you may pass TagResourceRequest
4934
- # data as a hash:
4935
- #
4936
- # {
4937
- # resource_id: "TaggableResourceId", # required
4938
- # tags: [ # required
4939
- # {
4940
- # key: "TagKey", # required
4941
- # value: "TagValue", # required
4942
- # },
4943
- # ],
4944
- # }
4945
- #
4946
4499
  # @!attribute [rw] resource_id
4947
4500
  # The ID of the resource to add a tag to.
4948
4501
  #
@@ -5037,14 +4590,6 @@ module Aws::Organizations
5037
4590
  include Aws::Structure
5038
4591
  end
5039
4592
 
5040
- # @note When making an API call, you may pass UntagResourceRequest
5041
- # data as a hash:
5042
- #
5043
- # {
5044
- # resource_id: "TaggableResourceId", # required
5045
- # tag_keys: ["TagKey"], # required
5046
- # }
5047
- #
5048
4593
  # @!attribute [rw] resource_id
5049
4594
  # The ID of the resource to remove a tag from.
5050
4595
  #
@@ -5075,14 +4620,6 @@ module Aws::Organizations
5075
4620
  include Aws::Structure
5076
4621
  end
5077
4622
 
5078
- # @note When making an API call, you may pass UpdateOrganizationalUnitRequest
5079
- # data as a hash:
5080
- #
5081
- # {
5082
- # organizational_unit_id: "OrganizationalUnitId", # required
5083
- # name: "OrganizationalUnitName",
5084
- # }
5085
- #
5086
4623
  # @!attribute [rw] organizational_unit_id
5087
4624
  # The unique identifier (ID) of the OU that you want to rename. You
5088
4625
  # can get the ID from the ListOrganizationalUnitsForParent operation.
@@ -5131,16 +4668,6 @@ module Aws::Organizations
5131
4668
  include Aws::Structure
5132
4669
  end
5133
4670
 
5134
- # @note When making an API call, you may pass UpdatePolicyRequest
5135
- # data as a hash:
5136
- #
5137
- # {
5138
- # policy_id: "PolicyId", # required
5139
- # name: "PolicyName",
5140
- # description: "PolicyDescription",
5141
- # content: "PolicyContent",
5142
- # }
5143
- #
5144
4671
  # @!attribute [rw] policy_id
5145
4672
  # The unique identifier (ID) of the policy that you want to update.
5146
4673
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-organizations/customizations'
52
52
  # @!group service
53
53
  module Aws::Organizations
54
54
 
55
- GEM_VERSION = '1.72.0'
55
+ GEM_VERSION = '1.73.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-organizations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.72.0
4
+ version: 1.73.0
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: 2022-11-28 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core