aws-sdk-ssoadmin 1.21.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4e91d5fef15591e4d65ea4e882edf18b0706ada240520c907ef0b7727855ee3
4
- data.tar.gz: e35c7b2008d32393017cff7fdd2cec9bccfcc6a713bb29280a8e66da64072d66
3
+ metadata.gz: 4836d3ad4fffc40a84d863336740897b653fede7e77432faf6d3b484113b6aa7
4
+ data.tar.gz: 59ff886c0c31d73fc0e35963c70fa01905af533a0cccd389a37df5274651402c
5
5
  SHA512:
6
- metadata.gz: b215f4ed306ce76a23259fc2bfb4d753be105aef285078b156b35058503e43ce61b32a36c50cfc9f0c82601a4e8530244dc3e202bda31f414fd8cdf7fe8c6817
7
- data.tar.gz: df74256f3f4707b46fea560224ecfff3a6860d8076f6597eae1c1559a87d415e934fb8f1b9ab25393cfd8d6400de5e143b0bd8090e6dc3af17d5a15f1e31e1f5
6
+ metadata.gz: 96eef30d1123feabe598ddcff1a06e99f514a6c58c0e716263bfa5e6e7825c039fe73ac4feddcf155d27e060c7f5c75b5c54c07d7233223d84f57b40221149a6
7
+ data.tar.gz: d9aa8401876cd4e664cd556a67d3a50473a9fb0dc0b38ea28ea9ad56c03f83774c4faf1d2dbf0b31dca28b069f21b5bb50b9047a98d530f059703055ee21da3c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.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.21.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -2090,7 +2090,7 @@ module Aws::SSOAdmin
2090
2090
  params: params,
2091
2091
  config: config)
2092
2092
  context[:gem_name] = 'aws-sdk-ssoadmin'
2093
- context[:gem_version] = '1.21.0'
2093
+ context[:gem_version] = '1.22.0'
2094
2094
  Seahorse::Client::Request.new(handlers, context)
2095
2095
  end
2096
2096
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::SSOAdmin
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.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ 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"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://sso-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://sso-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://sso.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://sso.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3Nzby1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zc28tZmlwcy57UmVn
89
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
90
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJj
91
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRo
92
- aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJl
93
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
94
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBl
95
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
96
- YW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
97
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFj
98
- ayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
99
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc3NvLntSZWdpb259LntQ
100
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
101
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
102
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
103
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
104
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
105
- Ijp7InVybCI6Imh0dHBzOi8vc3NvLntSZWdpb259LntQYXJ0aXRpb25SZXN1
106
- bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
107
- InR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -18,16 +18,6 @@ module Aws::SSOAdmin
18
18
  # the attribute values of the authenticated user into IAM for use in
19
19
  # policy evaluation.
20
20
  #
21
- # @note When making an API call, you may pass AccessControlAttribute
22
- # data as a hash:
23
- #
24
- # {
25
- # key: "AccessControlAttributeKey", # required
26
- # value: { # required
27
- # source: ["AccessControlAttributeValueSource"], # required
28
- # },
29
- # }
30
- #
31
21
  # @!attribute [rw] key
32
22
  # The name of the attribute associated with your identities in your
33
23
  # identity source. This is used to map a specified attribute in your
@@ -56,13 +46,6 @@ module Aws::SSOAdmin
56
46
  #
57
47
  # [1]: https://docs.aws.amazon.com/singlesignon/latest/userguide/attributemappingsconcept.html
58
48
  #
59
- # @note When making an API call, you may pass AccessControlAttributeValue
60
- # data as a hash:
61
- #
62
- # {
63
- # source: ["AccessControlAttributeValueSource"], # required
64
- # }
65
- #
66
49
  # @!attribute [rw] source
67
50
  # The identity source to use when mapping a specified attribute to IAM
68
51
  # Identity Center.
@@ -223,18 +206,6 @@ module Aws::SSOAdmin
223
206
  include Aws::Structure
224
207
  end
225
208
 
226
- # @note When making an API call, you may pass AttachCustomerManagedPolicyReferenceToPermissionSetRequest
227
- # data as a hash:
228
- #
229
- # {
230
- # instance_arn: "InstanceArn", # required
231
- # permission_set_arn: "PermissionSetArn", # required
232
- # customer_managed_policy_reference: { # required
233
- # name: "ManagedPolicyName", # required
234
- # path: "ManagedPolicyPath",
235
- # },
236
- # }
237
- #
238
209
  # @!attribute [rw] instance_arn
239
210
  # The ARN of the IAM Identity Center instance under which the
240
211
  # operation will be executed.
@@ -264,15 +235,6 @@ module Aws::SSOAdmin
264
235
  #
265
236
  class AttachCustomerManagedPolicyReferenceToPermissionSetResponse < Aws::EmptyStructure; end
266
237
 
267
- # @note When making an API call, you may pass AttachManagedPolicyToPermissionSetRequest
268
- # data as a hash:
269
- #
270
- # {
271
- # instance_arn: "InstanceArn", # required
272
- # permission_set_arn: "PermissionSetArn", # required
273
- # managed_policy_arn: "ManagedPolicyArn", # required
274
- # }
275
- #
276
238
  # @!attribute [rw] instance_arn
277
239
  # The ARN of the IAM Identity Center instance under which the
278
240
  # operation will be executed. For more information about ARNs, see
@@ -343,18 +305,6 @@ module Aws::SSOAdmin
343
305
  include Aws::Structure
344
306
  end
345
307
 
346
- # @note When making an API call, you may pass CreateAccountAssignmentRequest
347
- # data as a hash:
348
- #
349
- # {
350
- # instance_arn: "InstanceArn", # required
351
- # target_id: "TargetId", # required
352
- # target_type: "AWS_ACCOUNT", # required, accepts AWS_ACCOUNT
353
- # permission_set_arn: "PermissionSetArn", # required
354
- # principal_type: "USER", # required, accepts USER, GROUP
355
- # principal_id: "PrincipalId", # required
356
- # }
357
- #
358
308
  # @!attribute [rw] instance_arn
359
309
  # The ARN of the IAM Identity Center instance under which the
360
310
  # operation will be executed. For more information about ARNs, see
@@ -415,23 +365,6 @@ module Aws::SSOAdmin
415
365
  include Aws::Structure
416
366
  end
417
367
 
418
- # @note When making an API call, you may pass CreateInstanceAccessControlAttributeConfigurationRequest
419
- # data as a hash:
420
- #
421
- # {
422
- # instance_arn: "InstanceArn", # required
423
- # instance_access_control_attribute_configuration: { # required
424
- # access_control_attributes: [ # required
425
- # {
426
- # key: "AccessControlAttributeKey", # required
427
- # value: { # required
428
- # source: ["AccessControlAttributeValueSource"], # required
429
- # },
430
- # },
431
- # ],
432
- # },
433
- # }
434
- #
435
368
  # @!attribute [rw] instance_arn
436
369
  # The ARN of the IAM Identity Center instance under which the
437
370
  # operation will be executed.
@@ -461,23 +394,6 @@ module Aws::SSOAdmin
461
394
  #
462
395
  class CreateInstanceAccessControlAttributeConfigurationResponse < Aws::EmptyStructure; end
463
396
 
464
- # @note When making an API call, you may pass CreatePermissionSetRequest
465
- # data as a hash:
466
- #
467
- # {
468
- # name: "PermissionSetName", # required
469
- # description: "PermissionSetDescription",
470
- # instance_arn: "InstanceArn", # required
471
- # session_duration: "Duration",
472
- # relay_state: "RelayState",
473
- # tags: [
474
- # {
475
- # key: "TagKey", # required
476
- # value: "TagValue", # required
477
- # },
478
- # ],
479
- # }
480
- #
481
397
  # @!attribute [rw] name
482
398
  # The name of the PermissionSet.
483
399
  # @return [String]
@@ -537,14 +453,6 @@ module Aws::SSOAdmin
537
453
  # have an IAM policy that matches the name and path in each AWS account
538
454
  # where you want to deploy your permission set.
539
455
  #
540
- # @note When making an API call, you may pass CustomerManagedPolicyReference
541
- # data as a hash:
542
- #
543
- # {
544
- # name: "ManagedPolicyName", # required
545
- # path: "ManagedPolicyPath",
546
- # }
547
- #
548
456
  # @!attribute [rw] name
549
457
  # The name of the IAM policy that you have configured in each account
550
458
  # where you want to deploy your permission set.
@@ -570,18 +478,6 @@ module Aws::SSOAdmin
570
478
  include Aws::Structure
571
479
  end
572
480
 
573
- # @note When making an API call, you may pass DeleteAccountAssignmentRequest
574
- # data as a hash:
575
- #
576
- # {
577
- # instance_arn: "InstanceArn", # required
578
- # target_id: "TargetId", # required
579
- # target_type: "AWS_ACCOUNT", # required, accepts AWS_ACCOUNT
580
- # permission_set_arn: "PermissionSetArn", # required
581
- # principal_type: "USER", # required, accepts USER, GROUP
582
- # principal_id: "PrincipalId", # required
583
- # }
584
- #
585
481
  # @!attribute [rw] instance_arn
586
482
  # The ARN of the IAM Identity Center instance under which the
587
483
  # operation will be executed. For more information about ARNs, see
@@ -641,14 +537,6 @@ module Aws::SSOAdmin
641
537
  include Aws::Structure
642
538
  end
643
539
 
644
- # @note When making an API call, you may pass DeleteInlinePolicyFromPermissionSetRequest
645
- # data as a hash:
646
- #
647
- # {
648
- # instance_arn: "InstanceArn", # required
649
- # permission_set_arn: "PermissionSetArn", # required
650
- # }
651
- #
652
540
  # @!attribute [rw] instance_arn
653
541
  # The ARN of the IAM Identity Center instance under which the
654
542
  # operation will be executed. For more information about ARNs, see
@@ -674,13 +562,6 @@ module Aws::SSOAdmin
674
562
  #
675
563
  class DeleteInlinePolicyFromPermissionSetResponse < Aws::EmptyStructure; end
676
564
 
677
- # @note When making an API call, you may pass DeleteInstanceAccessControlAttributeConfigurationRequest
678
- # data as a hash:
679
- #
680
- # {
681
- # instance_arn: "InstanceArn", # required
682
- # }
683
- #
684
565
  # @!attribute [rw] instance_arn
685
566
  # The ARN of the IAM Identity Center instance under which the
686
567
  # operation will be executed.
@@ -698,14 +579,6 @@ module Aws::SSOAdmin
698
579
  #
699
580
  class DeleteInstanceAccessControlAttributeConfigurationResponse < Aws::EmptyStructure; end
700
581
 
701
- # @note When making an API call, you may pass DeletePermissionSetRequest
702
- # data as a hash:
703
- #
704
- # {
705
- # instance_arn: "InstanceArn", # required
706
- # permission_set_arn: "PermissionSetArn", # required
707
- # }
708
- #
709
582
  # @!attribute [rw] instance_arn
710
583
  # The ARN of the IAM Identity Center instance under which the
711
584
  # operation will be executed. For more information about ARNs, see
@@ -731,14 +604,6 @@ module Aws::SSOAdmin
731
604
  #
732
605
  class DeletePermissionSetResponse < Aws::EmptyStructure; end
733
606
 
734
- # @note When making an API call, you may pass DeletePermissionsBoundaryFromPermissionSetRequest
735
- # data as a hash:
736
- #
737
- # {
738
- # instance_arn: "InstanceArn", # required
739
- # permission_set_arn: "PermissionSetArn", # required
740
- # }
741
- #
742
607
  # @!attribute [rw] instance_arn
743
608
  # The ARN of the IAM Identity Center instance under which the
744
609
  # operation will be executed.
@@ -761,14 +626,6 @@ module Aws::SSOAdmin
761
626
  #
762
627
  class DeletePermissionsBoundaryFromPermissionSetResponse < Aws::EmptyStructure; end
763
628
 
764
- # @note When making an API call, you may pass DescribeAccountAssignmentCreationStatusRequest
765
- # data as a hash:
766
- #
767
- # {
768
- # instance_arn: "InstanceArn", # required
769
- # account_assignment_creation_request_id: "UUId", # required
770
- # }
771
- #
772
629
  # @!attribute [rw] instance_arn
773
630
  # The ARN of the IAM Identity Center instance under which the
774
631
  # operation will be executed. For more information about ARNs, see
@@ -802,14 +659,6 @@ module Aws::SSOAdmin
802
659
  include Aws::Structure
803
660
  end
804
661
 
805
- # @note When making an API call, you may pass DescribeAccountAssignmentDeletionStatusRequest
806
- # data as a hash:
807
- #
808
- # {
809
- # instance_arn: "InstanceArn", # required
810
- # account_assignment_deletion_request_id: "UUId", # required
811
- # }
812
- #
813
662
  # @!attribute [rw] instance_arn
814
663
  # The ARN of the IAM Identity Center instance under which the
815
664
  # operation will be executed. For more information about ARNs, see
@@ -843,13 +692,6 @@ module Aws::SSOAdmin
843
692
  include Aws::Structure
844
693
  end
845
694
 
846
- # @note When making an API call, you may pass DescribeInstanceAccessControlAttributeConfigurationRequest
847
- # data as a hash:
848
- #
849
- # {
850
- # instance_arn: "InstanceArn", # required
851
- # }
852
- #
853
695
  # @!attribute [rw] instance_arn
854
696
  # The ARN of the IAM Identity Center instance under which the
855
697
  # operation will be executed.
@@ -887,14 +729,6 @@ module Aws::SSOAdmin
887
729
  include Aws::Structure
888
730
  end
889
731
 
890
- # @note When making an API call, you may pass DescribePermissionSetProvisioningStatusRequest
891
- # data as a hash:
892
- #
893
- # {
894
- # instance_arn: "InstanceArn", # required
895
- # provision_permission_set_request_id: "UUId", # required
896
- # }
897
- #
898
732
  # @!attribute [rw] instance_arn
899
733
  # The ARN of the IAM Identity Center instance under which the
900
734
  # operation will be executed. For more information about ARNs, see
@@ -929,14 +763,6 @@ module Aws::SSOAdmin
929
763
  include Aws::Structure
930
764
  end
931
765
 
932
- # @note When making an API call, you may pass DescribePermissionSetRequest
933
- # data as a hash:
934
- #
935
- # {
936
- # instance_arn: "InstanceArn", # required
937
- # permission_set_arn: "PermissionSetArn", # required
938
- # }
939
- #
940
766
  # @!attribute [rw] instance_arn
941
767
  # The ARN of the IAM Identity Center instance under which the
942
768
  # operation will be executed. For more information about ARNs, see
@@ -970,18 +796,6 @@ module Aws::SSOAdmin
970
796
  include Aws::Structure
971
797
  end
972
798
 
973
- # @note When making an API call, you may pass DetachCustomerManagedPolicyReferenceFromPermissionSetRequest
974
- # data as a hash:
975
- #
976
- # {
977
- # instance_arn: "InstanceArn", # required
978
- # permission_set_arn: "PermissionSetArn", # required
979
- # customer_managed_policy_reference: { # required
980
- # name: "ManagedPolicyName", # required
981
- # path: "ManagedPolicyPath",
982
- # },
983
- # }
984
- #
985
799
  # @!attribute [rw] instance_arn
986
800
  # The ARN of the IAM Identity Center instance under which the
987
801
  # operation will be executed.
@@ -1011,15 +825,6 @@ module Aws::SSOAdmin
1011
825
  #
1012
826
  class DetachCustomerManagedPolicyReferenceFromPermissionSetResponse < Aws::EmptyStructure; end
1013
827
 
1014
- # @note When making an API call, you may pass DetachManagedPolicyFromPermissionSetRequest
1015
- # data as a hash:
1016
- #
1017
- # {
1018
- # instance_arn: "InstanceArn", # required
1019
- # permission_set_arn: "PermissionSetArn", # required
1020
- # managed_policy_arn: "ManagedPolicyArn", # required
1021
- # }
1022
- #
1023
828
  # @!attribute [rw] instance_arn
1024
829
  # The ARN of the IAM Identity Center instance under which the
1025
830
  # operation will be executed. For more information about ARNs, see
@@ -1051,14 +856,6 @@ module Aws::SSOAdmin
1051
856
  #
1052
857
  class DetachManagedPolicyFromPermissionSetResponse < Aws::EmptyStructure; end
1053
858
 
1054
- # @note When making an API call, you may pass GetInlinePolicyForPermissionSetRequest
1055
- # data as a hash:
1056
- #
1057
- # {
1058
- # instance_arn: "InstanceArn", # required
1059
- # permission_set_arn: "PermissionSetArn", # required
1060
- # }
1061
- #
1062
859
  # @!attribute [rw] instance_arn
1063
860
  # The ARN of the IAM Identity Center instance under which the
1064
861
  # operation will be executed. For more information about ARNs, see
@@ -1092,14 +889,6 @@ module Aws::SSOAdmin
1092
889
  include Aws::Structure
1093
890
  end
1094
891
 
1095
- # @note When making an API call, you may pass GetPermissionsBoundaryForPermissionSetRequest
1096
- # data as a hash:
1097
- #
1098
- # {
1099
- # instance_arn: "InstanceArn", # required
1100
- # permission_set_arn: "PermissionSetArn", # required
1101
- # }
1102
- #
1103
892
  # @!attribute [rw] instance_arn
1104
893
  # The ARN of the IAM Identity Center instance under which the
1105
894
  # operation will be executed.
@@ -1133,20 +922,6 @@ module Aws::SSOAdmin
1133
922
  # Specifies the attributes to add to your attribute-based access control
1134
923
  # (ABAC) configuration.
1135
924
  #
1136
- # @note When making an API call, you may pass InstanceAccessControlAttributeConfiguration
1137
- # data as a hash:
1138
- #
1139
- # {
1140
- # access_control_attributes: [ # required
1141
- # {
1142
- # key: "AccessControlAttributeKey", # required
1143
- # value: { # required
1144
- # source: ["AccessControlAttributeValueSource"], # required
1145
- # },
1146
- # },
1147
- # ],
1148
- # }
1149
- #
1150
925
  # @!attribute [rw] access_control_attributes
1151
926
  # Lists the attributes that are configured for ABAC in the specified
1152
927
  # IAM Identity Center instance.
@@ -1198,18 +973,6 @@ module Aws::SSOAdmin
1198
973
  include Aws::Structure
1199
974
  end
1200
975
 
1201
- # @note When making an API call, you may pass ListAccountAssignmentCreationStatusRequest
1202
- # data as a hash:
1203
- #
1204
- # {
1205
- # instance_arn: "InstanceArn", # required
1206
- # max_results: 1,
1207
- # next_token: "Token",
1208
- # filter: {
1209
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, SUCCEEDED
1210
- # },
1211
- # }
1212
- #
1213
976
  # @!attribute [rw] instance_arn
1214
977
  # The ARN of the IAM Identity Center instance under which the
1215
978
  # operation will be executed. For more information about ARNs, see
@@ -1260,18 +1023,6 @@ module Aws::SSOAdmin
1260
1023
  include Aws::Structure
1261
1024
  end
1262
1025
 
1263
- # @note When making an API call, you may pass ListAccountAssignmentDeletionStatusRequest
1264
- # data as a hash:
1265
- #
1266
- # {
1267
- # instance_arn: "InstanceArn", # required
1268
- # max_results: 1,
1269
- # next_token: "Token",
1270
- # filter: {
1271
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, SUCCEEDED
1272
- # },
1273
- # }
1274
- #
1275
1026
  # @!attribute [rw] instance_arn
1276
1027
  # The ARN of the IAM Identity Center instance under which the
1277
1028
  # operation will be executed. For more information about ARNs, see
@@ -1322,17 +1073,6 @@ module Aws::SSOAdmin
1322
1073
  include Aws::Structure
1323
1074
  end
1324
1075
 
1325
- # @note When making an API call, you may pass ListAccountAssignmentsRequest
1326
- # data as a hash:
1327
- #
1328
- # {
1329
- # instance_arn: "InstanceArn", # required
1330
- # account_id: "TargetId", # required
1331
- # permission_set_arn: "PermissionSetArn", # required
1332
- # max_results: 1,
1333
- # next_token: "Token",
1334
- # }
1335
- #
1336
1076
  # @!attribute [rw] instance_arn
1337
1077
  # The ARN of the IAM Identity Center instance under which the
1338
1078
  # operation will be executed. For more information about ARNs, see
@@ -1390,17 +1130,6 @@ module Aws::SSOAdmin
1390
1130
  include Aws::Structure
1391
1131
  end
1392
1132
 
1393
- # @note When making an API call, you may pass ListAccountsForProvisionedPermissionSetRequest
1394
- # data as a hash:
1395
- #
1396
- # {
1397
- # instance_arn: "InstanceArn", # required
1398
- # permission_set_arn: "PermissionSetArn", # required
1399
- # provisioning_status: "LATEST_PERMISSION_SET_PROVISIONED", # accepts LATEST_PERMISSION_SET_PROVISIONED, LATEST_PERMISSION_SET_NOT_PROVISIONED
1400
- # max_results: 1,
1401
- # next_token: "Token",
1402
- # }
1403
- #
1404
1133
  # @!attribute [rw] instance_arn
1405
1134
  # The ARN of the IAM Identity Center instance under which the
1406
1135
  # operation will be executed. For more information about ARNs, see
@@ -1457,16 +1186,6 @@ module Aws::SSOAdmin
1457
1186
  include Aws::Structure
1458
1187
  end
1459
1188
 
1460
- # @note When making an API call, you may pass ListCustomerManagedPolicyReferencesInPermissionSetRequest
1461
- # data as a hash:
1462
- #
1463
- # {
1464
- # instance_arn: "InstanceArn", # required
1465
- # permission_set_arn: "PermissionSetArn", # required
1466
- # max_results: 1,
1467
- # next_token: "Token",
1468
- # }
1469
- #
1470
1189
  # @!attribute [rw] instance_arn
1471
1190
  # The ARN of the IAM Identity Center instance under which the
1472
1191
  # operation will be executed.
@@ -1515,14 +1234,6 @@ module Aws::SSOAdmin
1515
1234
  include Aws::Structure
1516
1235
  end
1517
1236
 
1518
- # @note When making an API call, you may pass ListInstancesRequest
1519
- # data as a hash:
1520
- #
1521
- # {
1522
- # max_results: 1,
1523
- # next_token: "Token",
1524
- # }
1525
- #
1526
1237
  # @!attribute [rw] max_results
1527
1238
  # The maximum number of results to display for the instance.
1528
1239
  # @return [Integer]
@@ -1560,16 +1271,6 @@ module Aws::SSOAdmin
1560
1271
  include Aws::Structure
1561
1272
  end
1562
1273
 
1563
- # @note When making an API call, you may pass ListManagedPoliciesInPermissionSetRequest
1564
- # data as a hash:
1565
- #
1566
- # {
1567
- # instance_arn: "InstanceArn", # required
1568
- # permission_set_arn: "PermissionSetArn", # required
1569
- # max_results: 1,
1570
- # next_token: "Token",
1571
- # }
1572
- #
1573
1274
  # @!attribute [rw] instance_arn
1574
1275
  # The ARN of the IAM Identity Center instance under which the
1575
1276
  # operation will be executed. For more information about ARNs, see
@@ -1620,18 +1321,6 @@ module Aws::SSOAdmin
1620
1321
  include Aws::Structure
1621
1322
  end
1622
1323
 
1623
- # @note When making an API call, you may pass ListPermissionSetProvisioningStatusRequest
1624
- # data as a hash:
1625
- #
1626
- # {
1627
- # instance_arn: "InstanceArn", # required
1628
- # max_results: 1,
1629
- # next_token: "Token",
1630
- # filter: {
1631
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, SUCCEEDED
1632
- # },
1633
- # }
1634
- #
1635
1324
  # @!attribute [rw] instance_arn
1636
1325
  # The ARN of the IAM Identity Center instance under which the
1637
1326
  # operation will be executed. For more information about ARNs, see
@@ -1682,17 +1371,6 @@ module Aws::SSOAdmin
1682
1371
  include Aws::Structure
1683
1372
  end
1684
1373
 
1685
- # @note When making an API call, you may pass ListPermissionSetsProvisionedToAccountRequest
1686
- # data as a hash:
1687
- #
1688
- # {
1689
- # instance_arn: "InstanceArn", # required
1690
- # account_id: "AccountId", # required
1691
- # provisioning_status: "LATEST_PERMISSION_SET_PROVISIONED", # accepts LATEST_PERMISSION_SET_PROVISIONED, LATEST_PERMISSION_SET_NOT_PROVISIONED
1692
- # max_results: 1,
1693
- # next_token: "Token",
1694
- # }
1695
- #
1696
1374
  # @!attribute [rw] instance_arn
1697
1375
  # The ARN of the IAM Identity Center instance under which the
1698
1376
  # operation will be executed. For more information about ARNs, see
@@ -1749,15 +1427,6 @@ module Aws::SSOAdmin
1749
1427
  include Aws::Structure
1750
1428
  end
1751
1429
 
1752
- # @note When making an API call, you may pass ListPermissionSetsRequest
1753
- # data as a hash:
1754
- #
1755
- # {
1756
- # instance_arn: "InstanceArn", # required
1757
- # next_token: "Token",
1758
- # max_results: 1,
1759
- # }
1760
- #
1761
1430
  # @!attribute [rw] instance_arn
1762
1431
  # The ARN of the IAM Identity Center instance under which the
1763
1432
  # operation will be executed. For more information about ARNs, see
@@ -1803,15 +1472,6 @@ module Aws::SSOAdmin
1803
1472
  include Aws::Structure
1804
1473
  end
1805
1474
 
1806
- # @note When making an API call, you may pass ListTagsForResourceRequest
1807
- # data as a hash:
1808
- #
1809
- # {
1810
- # instance_arn: "InstanceArn", # required
1811
- # resource_arn: "TaggableResourceArn", # required
1812
- # next_token: "Token",
1813
- # }
1814
- #
1815
1475
  # @!attribute [rw] instance_arn
1816
1476
  # The ARN of the IAM Identity Center instance under which the
1817
1477
  # operation will be executed. For more information about ARNs, see
@@ -1859,13 +1519,6 @@ module Aws::SSOAdmin
1859
1519
 
1860
1520
  # Filters he operation status list based on the passed attribute value.
1861
1521
  #
1862
- # @note When making an API call, you may pass OperationStatusFilter
1863
- # data as a hash:
1864
- #
1865
- # {
1866
- # status: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, SUCCEEDED
1867
- # }
1868
- #
1869
1522
  # @!attribute [rw] status
1870
1523
  # Filters the list operations result based on the status attribute.
1871
1524
  # @return [String]
@@ -2012,17 +1665,6 @@ module Aws::SSOAdmin
2012
1665
  # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html
2013
1666
  # [2]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html
2014
1667
  #
2015
- # @note When making an API call, you may pass PermissionsBoundary
2016
- # data as a hash:
2017
- #
2018
- # {
2019
- # customer_managed_policy_reference: {
2020
- # name: "ManagedPolicyName", # required
2021
- # path: "ManagedPolicyPath",
2022
- # },
2023
- # managed_policy_arn: "ManagedPolicyArn",
2024
- # }
2025
- #
2026
1668
  # @!attribute [rw] customer_managed_policy_reference
2027
1669
  # Specifies the name and path of a customer managed policy. You must
2028
1670
  # have an IAM policy that matches the name and path in each AWS
@@ -2043,16 +1685,6 @@ module Aws::SSOAdmin
2043
1685
  include Aws::Structure
2044
1686
  end
2045
1687
 
2046
- # @note When making an API call, you may pass ProvisionPermissionSetRequest
2047
- # data as a hash:
2048
- #
2049
- # {
2050
- # instance_arn: "InstanceArn", # required
2051
- # permission_set_arn: "PermissionSetArn", # required
2052
- # target_id: "TargetId",
2053
- # target_type: "AWS_ACCOUNT", # required, accepts AWS_ACCOUNT, ALL_PROVISIONED_ACCOUNTS
2054
- # }
2055
- #
2056
1688
  # @!attribute [rw] instance_arn
2057
1689
  # The ARN of the IAM Identity Center instance under which the
2058
1690
  # operation will be executed. For more information about ARNs, see
@@ -2097,15 +1729,6 @@ module Aws::SSOAdmin
2097
1729
  include Aws::Structure
2098
1730
  end
2099
1731
 
2100
- # @note When making an API call, you may pass PutInlinePolicyToPermissionSetRequest
2101
- # data as a hash:
2102
- #
2103
- # {
2104
- # instance_arn: "InstanceArn", # required
2105
- # permission_set_arn: "PermissionSetArn", # required
2106
- # inline_policy: "PermissionSetPolicyDocument", # required
2107
- # }
2108
- #
2109
1732
  # @!attribute [rw] instance_arn
2110
1733
  # The ARN of the IAM Identity Center instance under which the
2111
1734
  # operation will be executed. For more information about ARNs, see
@@ -2136,21 +1759,6 @@ module Aws::SSOAdmin
2136
1759
  #
2137
1760
  class PutInlinePolicyToPermissionSetResponse < Aws::EmptyStructure; end
2138
1761
 
2139
- # @note When making an API call, you may pass PutPermissionsBoundaryToPermissionSetRequest
2140
- # data as a hash:
2141
- #
2142
- # {
2143
- # instance_arn: "InstanceArn", # required
2144
- # permission_set_arn: "PermissionSetArn", # required
2145
- # permissions_boundary: { # required
2146
- # customer_managed_policy_reference: {
2147
- # name: "ManagedPolicyName", # required
2148
- # path: "ManagedPolicyPath",
2149
- # },
2150
- # managed_policy_arn: "ManagedPolicyArn",
2151
- # },
2152
- # }
2153
- #
2154
1762
  # @!attribute [rw] instance_arn
2155
1763
  # The ARN of the IAM Identity Center instance under which the
2156
1764
  # operation will be executed.
@@ -2210,14 +1818,6 @@ module Aws::SSOAdmin
2210
1818
  # can only be applied to permission sets and cannot be applied to
2211
1819
  # corresponding roles that IAM Identity Center creates in AWS accounts.
2212
1820
  #
2213
- # @note When making an API call, you may pass Tag
2214
- # data as a hash:
2215
- #
2216
- # {
2217
- # key: "TagKey", # required
2218
- # value: "TagValue", # required
2219
- # }
2220
- #
2221
1821
  # @!attribute [rw] key
2222
1822
  # The key for the tag.
2223
1823
  # @return [String]
@@ -2235,20 +1835,6 @@ module Aws::SSOAdmin
2235
1835
  include Aws::Structure
2236
1836
  end
2237
1837
 
2238
- # @note When making an API call, you may pass TagResourceRequest
2239
- # data as a hash:
2240
- #
2241
- # {
2242
- # instance_arn: "InstanceArn", # required
2243
- # resource_arn: "TaggableResourceArn", # required
2244
- # tags: [ # required
2245
- # {
2246
- # key: "TagKey", # required
2247
- # value: "TagValue", # required
2248
- # },
2249
- # ],
2250
- # }
2251
- #
2252
1838
  # @!attribute [rw] instance_arn
2253
1839
  # The ARN of the IAM Identity Center instance under which the
2254
1840
  # operation will be executed. For more information about ARNs, see
@@ -2293,15 +1879,6 @@ module Aws::SSOAdmin
2293
1879
  include Aws::Structure
2294
1880
  end
2295
1881
 
2296
- # @note When making an API call, you may pass UntagResourceRequest
2297
- # data as a hash:
2298
- #
2299
- # {
2300
- # instance_arn: "InstanceArn", # required
2301
- # resource_arn: "TaggableResourceArn", # required
2302
- # tag_keys: ["TagKey"], # required
2303
- # }
2304
- #
2305
1882
  # @!attribute [rw] instance_arn
2306
1883
  # The ARN of the IAM Identity Center instance under which the
2307
1884
  # operation will be executed. For more information about ARNs, see
@@ -2332,23 +1909,6 @@ module Aws::SSOAdmin
2332
1909
  #
2333
1910
  class UntagResourceResponse < Aws::EmptyStructure; end
2334
1911
 
2335
- # @note When making an API call, you may pass UpdateInstanceAccessControlAttributeConfigurationRequest
2336
- # data as a hash:
2337
- #
2338
- # {
2339
- # instance_arn: "InstanceArn", # required
2340
- # instance_access_control_attribute_configuration: { # required
2341
- # access_control_attributes: [ # required
2342
- # {
2343
- # key: "AccessControlAttributeKey", # required
2344
- # value: { # required
2345
- # source: ["AccessControlAttributeValueSource"], # required
2346
- # },
2347
- # },
2348
- # ],
2349
- # },
2350
- # }
2351
- #
2352
1912
  # @!attribute [rw] instance_arn
2353
1913
  # The ARN of the IAM Identity Center instance under which the
2354
1914
  # operation will be executed.
@@ -2371,17 +1931,6 @@ module Aws::SSOAdmin
2371
1931
  #
2372
1932
  class UpdateInstanceAccessControlAttributeConfigurationResponse < Aws::EmptyStructure; end
2373
1933
 
2374
- # @note When making an API call, you may pass UpdatePermissionSetRequest
2375
- # data as a hash:
2376
- #
2377
- # {
2378
- # instance_arn: "InstanceArn", # required
2379
- # permission_set_arn: "PermissionSetArn", # required
2380
- # description: "PermissionSetDescription",
2381
- # session_duration: "Duration",
2382
- # relay_state: "RelayState",
2383
- # }
2384
- #
2385
1934
  # @!attribute [rw] instance_arn
2386
1935
  # The ARN of the IAM Identity Center instance under which the
2387
1936
  # operation will be executed. For more information about ARNs, see
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ssoadmin/customizations'
52
52
  # @!group service
53
53
  module Aws::SSOAdmin
54
54
 
55
- GEM_VERSION = '1.21.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssoadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.0
4
+ version: 1.22.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-10-25 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