aws-sdk-rolesanywhere 1.43.0 → 1.45.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.
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ require 'aws-sdk-core/waiters'
11
+
12
+ module Aws::RolesAnywhere
13
+ module Waiters
14
+ end
15
+ end
@@ -49,12 +49,13 @@ module Aws::RolesAnywhere
49
49
  end
50
50
  autoload :Client, 'aws-sdk-rolesanywhere/client'
51
51
  autoload :Errors, 'aws-sdk-rolesanywhere/errors'
52
+ autoload :Waiters, 'aws-sdk-rolesanywhere/waiters'
52
53
  autoload :Resource, 'aws-sdk-rolesanywhere/resource'
53
54
  autoload :EndpointParameters, 'aws-sdk-rolesanywhere/endpoint_parameters'
54
55
  autoload :EndpointProvider, 'aws-sdk-rolesanywhere/endpoint_provider'
55
56
  autoload :Endpoints, 'aws-sdk-rolesanywhere/endpoints'
56
57
 
57
- GEM_VERSION = '1.43.0'
58
+ GEM_VERSION = '1.45.0'
58
59
 
59
60
  end
60
61
 
data/sig/client.rbs CHANGED
@@ -84,20 +84,20 @@ module Aws
84
84
  end
85
85
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#create_profile-instance_method
86
86
  def create_profile: (
87
- ?accept_role_session_name: bool,
88
- ?duration_seconds: ::Integer,
89
- ?enabled: bool,
90
- ?managed_policy_arns: Array[::String],
91
87
  name: ::String,
92
88
  ?require_instance_properties: bool,
93
- role_arns: Array[::String],
94
89
  ?session_policy: ::String,
90
+ role_arns: Array[::String],
91
+ ?managed_policy_arns: Array[::String],
92
+ ?duration_seconds: ::Integer,
93
+ ?enabled: bool,
95
94
  ?tags: Array[
96
95
  {
97
96
  key: ::String,
98
97
  value: ::String
99
98
  },
100
- ]
99
+ ],
100
+ ?accept_role_session_name: bool
101
101
  ) -> _CreateProfileResponseSuccess
102
102
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProfileResponseSuccess
103
103
 
@@ -107,28 +107,28 @@ module Aws
107
107
  end
108
108
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#create_trust_anchor-instance_method
109
109
  def create_trust_anchor: (
110
- ?enabled: bool,
111
110
  name: ::String,
112
- ?notification_settings: Array[
113
- {
114
- channel: ("ALL")?,
115
- enabled: bool,
116
- event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY"),
117
- threshold: ::Integer?
118
- },
119
- ],
120
111
  source: {
112
+ source_type: ("AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY")?,
121
113
  source_data: {
122
- acm_pca_arn: ::String?,
123
- x509_certificate_data: ::String?
124
- }?,
125
- source_type: ("AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY")?
114
+ x509_certificate_data: ::String?,
115
+ acm_pca_arn: ::String?
116
+ }?
126
117
  },
118
+ ?enabled: bool,
127
119
  ?tags: Array[
128
120
  {
129
121
  key: ::String,
130
122
  value: ::String
131
123
  },
124
+ ],
125
+ ?notification_settings: Array[
126
+ {
127
+ enabled: bool,
128
+ event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY"),
129
+ threshold: ::Integer?,
130
+ channel: ("ALL")?
131
+ },
132
132
  ]
133
133
  ) -> _CreateTrustAnchorResponseSuccess
134
134
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTrustAnchorResponseSuccess
@@ -139,8 +139,8 @@ module Aws
139
139
  end
140
140
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#delete_attribute_mapping-instance_method
141
141
  def delete_attribute_mapping: (
142
- certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN"),
143
142
  profile_id: ::String,
143
+ certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN"),
144
144
  ?specifiers: Array[::String]
145
145
  ) -> _DeleteAttributeMappingResponseSuccess
146
146
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAttributeMappingResponseSuccess
@@ -281,9 +281,9 @@ module Aws
281
281
  end
282
282
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#import_crl-instance_method
283
283
  def import_crl: (
284
+ name: ::String,
284
285
  crl_data: ::String,
285
286
  ?enabled: bool,
286
- name: ::String,
287
287
  ?tags: Array[
288
288
  {
289
289
  key: ::String,
@@ -296,8 +296,8 @@ module Aws
296
296
 
297
297
  interface _ListCrlsResponseSuccess
298
298
  include ::Seahorse::Client::_ResponseSuccess[Types::ListCrlsResponse]
299
- def crls: () -> ::Array[Types::CrlDetail]
300
299
  def next_token: () -> ::String
300
+ def crls: () -> ::Array[Types::CrlDetail]
301
301
  end
302
302
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#list_crls-instance_method
303
303
  def list_crls: (
@@ -320,8 +320,8 @@ module Aws
320
320
 
321
321
  interface _ListSubjectsResponseSuccess
322
322
  include ::Seahorse::Client::_ResponseSuccess[Types::ListSubjectsResponse]
323
- def next_token: () -> ::String
324
323
  def subjects: () -> ::Array[Types::SubjectSummary]
324
+ def next_token: () -> ::String
325
325
  end
326
326
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#list_subjects-instance_method
327
327
  def list_subjects: (
@@ -358,13 +358,13 @@ module Aws
358
358
  end
359
359
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#put_attribute_mapping-instance_method
360
360
  def put_attribute_mapping: (
361
+ profile_id: ::String,
361
362
  certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN"),
362
363
  mapping_rules: Array[
363
364
  {
364
365
  specifier: ::String
365
366
  },
366
- ],
367
- profile_id: ::String
367
+ ]
368
368
  ) -> _PutAttributeMappingResponseSuccess
369
369
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAttributeMappingResponseSuccess
370
370
 
@@ -374,15 +374,15 @@ module Aws
374
374
  end
375
375
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#put_notification_settings-instance_method
376
376
  def put_notification_settings: (
377
+ trust_anchor_id: ::String,
377
378
  notification_settings: Array[
378
379
  {
379
- channel: ("ALL")?,
380
380
  enabled: bool,
381
381
  event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY"),
382
- threshold: ::Integer?
382
+ threshold: ::Integer?,
383
+ channel: ("ALL")?
383
384
  },
384
- ],
385
- trust_anchor_id: ::String
385
+ ]
386
386
  ) -> _PutNotificationSettingsResponseSuccess
387
387
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutNotificationSettingsResponseSuccess
388
388
 
@@ -392,13 +392,13 @@ module Aws
392
392
  end
393
393
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#reset_notification_settings-instance_method
394
394
  def reset_notification_settings: (
395
+ trust_anchor_id: ::String,
395
396
  notification_setting_keys: Array[
396
397
  {
397
- channel: ("ALL")?,
398
- event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY")
398
+ event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY"),
399
+ channel: ("ALL")?
399
400
  },
400
- ],
401
- trust_anchor_id: ::String
401
+ ]
402
402
  ) -> _ResetNotificationSettingsResponseSuccess
403
403
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResetNotificationSettingsResponseSuccess
404
404
 
@@ -433,9 +433,9 @@ module Aws
433
433
  end
434
434
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#update_crl-instance_method
435
435
  def update_crl: (
436
- ?crl_data: ::String,
437
436
  crl_id: ::String,
438
- ?name: ::String
437
+ ?name: ::String,
438
+ ?crl_data: ::String
439
439
  ) -> _UpdateCrlResponseSuccess
440
440
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCrlResponseSuccess
441
441
 
@@ -445,13 +445,13 @@ module Aws
445
445
  end
446
446
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#update_profile-instance_method
447
447
  def update_profile: (
448
- ?accept_role_session_name: bool,
449
- ?duration_seconds: ::Integer,
450
- ?managed_policy_arns: Array[::String],
451
- ?name: ::String,
452
448
  profile_id: ::String,
449
+ ?name: ::String,
450
+ ?session_policy: ::String,
453
451
  ?role_arns: Array[::String],
454
- ?session_policy: ::String
452
+ ?managed_policy_arns: Array[::String],
453
+ ?duration_seconds: ::Integer,
454
+ ?accept_role_session_name: bool
455
455
  ) -> _UpdateProfileResponseSuccess
456
456
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProfileResponseSuccess
457
457
 
@@ -461,15 +461,15 @@ module Aws
461
461
  end
462
462
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RolesAnywhere/Client.html#update_trust_anchor-instance_method
463
463
  def update_trust_anchor: (
464
+ trust_anchor_id: ::String,
464
465
  ?name: ::String,
465
466
  ?source: {
467
+ source_type: ("AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY")?,
466
468
  source_data: {
467
- acm_pca_arn: ::String?,
468
- x509_certificate_data: ::String?
469
- }?,
470
- source_type: ("AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY")?
471
- },
472
- trust_anchor_id: ::String
469
+ x509_certificate_data: ::String?,
470
+ acm_pca_arn: ::String?
471
+ }?
472
+ }
473
473
  ) -> _UpdateTrustAnchorResponseSuccess
474
474
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTrustAnchorResponseSuccess
475
475
  end
data/sig/types.rbs CHANGED
@@ -20,45 +20,45 @@ module Aws::RolesAnywhere
20
20
  end
21
21
 
22
22
  class CreateProfileRequest
23
- attr_accessor accept_role_session_name: bool
24
- attr_accessor duration_seconds: ::Integer
25
- attr_accessor enabled: bool
26
- attr_accessor managed_policy_arns: ::Array[::String]
27
23
  attr_accessor name: ::String
28
24
  attr_accessor require_instance_properties: bool
29
- attr_accessor role_arns: ::Array[::String]
30
25
  attr_accessor session_policy: ::String
26
+ attr_accessor role_arns: ::Array[::String]
27
+ attr_accessor managed_policy_arns: ::Array[::String]
28
+ attr_accessor duration_seconds: ::Integer
29
+ attr_accessor enabled: bool
31
30
  attr_accessor tags: ::Array[Types::Tag]
31
+ attr_accessor accept_role_session_name: bool
32
32
  SENSITIVE: []
33
33
  end
34
34
 
35
35
  class CreateTrustAnchorRequest
36
- attr_accessor enabled: bool
37
36
  attr_accessor name: ::String
38
- attr_accessor notification_settings: ::Array[Types::NotificationSetting]
39
37
  attr_accessor source: Types::Source
38
+ attr_accessor enabled: bool
40
39
  attr_accessor tags: ::Array[Types::Tag]
40
+ attr_accessor notification_settings: ::Array[Types::NotificationSetting]
41
41
  SENSITIVE: []
42
42
  end
43
43
 
44
44
  class CredentialSummary
45
- attr_accessor enabled: bool
46
- attr_accessor failed: bool
47
- attr_accessor issuer: ::String
48
45
  attr_accessor seen_at: ::Time
49
46
  attr_accessor serial_number: ::String
47
+ attr_accessor issuer: ::String
48
+ attr_accessor enabled: bool
50
49
  attr_accessor x509_certificate_data: ::String
50
+ attr_accessor failed: bool
51
51
  SENSITIVE: []
52
52
  end
53
53
 
54
54
  class CrlDetail
55
- attr_accessor created_at: ::Time
56
- attr_accessor crl_arn: ::String
57
- attr_accessor crl_data: ::String
58
55
  attr_accessor crl_id: ::String
59
- attr_accessor enabled: bool
56
+ attr_accessor crl_arn: ::String
60
57
  attr_accessor name: ::String
58
+ attr_accessor enabled: bool
59
+ attr_accessor crl_data: ::String
61
60
  attr_accessor trust_anchor_arn: ::String
61
+ attr_accessor created_at: ::Time
62
62
  attr_accessor updated_at: ::Time
63
63
  SENSITIVE: []
64
64
  end
@@ -69,8 +69,8 @@ module Aws::RolesAnywhere
69
69
  end
70
70
 
71
71
  class DeleteAttributeMappingRequest
72
- attr_accessor certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN")
73
72
  attr_accessor profile_id: ::String
73
+ attr_accessor certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN")
74
74
  attr_accessor specifiers: ::Array[::String]
75
75
  SENSITIVE: []
76
76
  end
@@ -81,24 +81,24 @@ module Aws::RolesAnywhere
81
81
  end
82
82
 
83
83
  class ImportCrlRequest
84
+ attr_accessor name: ::String
84
85
  attr_accessor crl_data: ::String
85
86
  attr_accessor enabled: bool
86
- attr_accessor name: ::String
87
87
  attr_accessor tags: ::Array[Types::Tag]
88
88
  attr_accessor trust_anchor_arn: ::String
89
89
  SENSITIVE: []
90
90
  end
91
91
 
92
92
  class InstanceProperty
93
- attr_accessor failed: bool
94
- attr_accessor properties: ::Hash[::String, ::String]
95
93
  attr_accessor seen_at: ::Time
94
+ attr_accessor properties: ::Hash[::String, ::String]
95
+ attr_accessor failed: bool
96
96
  SENSITIVE: []
97
97
  end
98
98
 
99
99
  class ListCrlsResponse
100
- attr_accessor crls: ::Array[Types::CrlDetail]
101
100
  attr_accessor next_token: ::String
101
+ attr_accessor crls: ::Array[Types::CrlDetail]
102
102
  SENSITIVE: []
103
103
  end
104
104
 
@@ -115,8 +115,8 @@ module Aws::RolesAnywhere
115
115
  end
116
116
 
117
117
  class ListSubjectsResponse
118
- attr_accessor next_token: ::String
119
118
  attr_accessor subjects: ::Array[Types::SubjectSummary]
119
+ attr_accessor next_token: ::String
120
120
  SENSITIVE: []
121
121
  end
122
122
 
@@ -142,43 +142,43 @@ module Aws::RolesAnywhere
142
142
  end
143
143
 
144
144
  class NotificationSetting
145
- attr_accessor channel: ("ALL")
146
145
  attr_accessor enabled: bool
147
146
  attr_accessor event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY")
148
147
  attr_accessor threshold: ::Integer
148
+ attr_accessor channel: ("ALL")
149
149
  SENSITIVE: []
150
150
  end
151
151
 
152
152
  class NotificationSettingDetail
153
- attr_accessor channel: ("ALL")
154
- attr_accessor configured_by: ::String
155
153
  attr_accessor enabled: bool
156
154
  attr_accessor event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY")
157
155
  attr_accessor threshold: ::Integer
156
+ attr_accessor channel: ("ALL")
157
+ attr_accessor configured_by: ::String
158
158
  SENSITIVE: []
159
159
  end
160
160
 
161
161
  class NotificationSettingKey
162
- attr_accessor channel: ("ALL")
163
162
  attr_accessor event: ("CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY")
163
+ attr_accessor channel: ("ALL")
164
164
  SENSITIVE: []
165
165
  end
166
166
 
167
167
  class ProfileDetail
168
- attr_accessor accept_role_session_name: bool
169
- attr_accessor attribute_mappings: ::Array[Types::AttributeMapping]
170
- attr_accessor created_at: ::Time
171
- attr_accessor created_by: ::String
172
- attr_accessor duration_seconds: ::Integer
173
- attr_accessor enabled: bool
174
- attr_accessor managed_policy_arns: ::Array[::String]
175
- attr_accessor name: ::String
176
- attr_accessor profile_arn: ::String
177
168
  attr_accessor profile_id: ::String
169
+ attr_accessor profile_arn: ::String
170
+ attr_accessor name: ::String
178
171
  attr_accessor require_instance_properties: bool
179
- attr_accessor role_arns: ::Array[::String]
172
+ attr_accessor enabled: bool
173
+ attr_accessor created_by: ::String
180
174
  attr_accessor session_policy: ::String
175
+ attr_accessor role_arns: ::Array[::String]
176
+ attr_accessor managed_policy_arns: ::Array[::String]
177
+ attr_accessor created_at: ::Time
181
178
  attr_accessor updated_at: ::Time
179
+ attr_accessor duration_seconds: ::Integer
180
+ attr_accessor accept_role_session_name: bool
181
+ attr_accessor attribute_mappings: ::Array[Types::AttributeMapping]
182
182
  SENSITIVE: []
183
183
  end
184
184
 
@@ -188,9 +188,9 @@ module Aws::RolesAnywhere
188
188
  end
189
189
 
190
190
  class PutAttributeMappingRequest
191
+ attr_accessor profile_id: ::String
191
192
  attr_accessor certificate_field: ("x509Subject" | "x509Issuer" | "x509SAN")
192
193
  attr_accessor mapping_rules: ::Array[Types::MappingRule]
193
- attr_accessor profile_id: ::String
194
194
  SENSITIVE: []
195
195
  end
196
196
 
@@ -200,8 +200,8 @@ module Aws::RolesAnywhere
200
200
  end
201
201
 
202
202
  class PutNotificationSettingsRequest
203
- attr_accessor notification_settings: ::Array[Types::NotificationSetting]
204
203
  attr_accessor trust_anchor_id: ::String
204
+ attr_accessor notification_settings: ::Array[Types::NotificationSetting]
205
205
  SENSITIVE: []
206
206
  end
207
207
 
@@ -211,8 +211,8 @@ module Aws::RolesAnywhere
211
211
  end
212
212
 
213
213
  class ResetNotificationSettingsRequest
214
- attr_accessor notification_setting_keys: ::Array[Types::NotificationSettingKey]
215
214
  attr_accessor trust_anchor_id: ::String
215
+ attr_accessor notification_setting_keys: ::Array[Types::NotificationSettingKey]
216
216
  SENSITIVE: []
217
217
  end
218
218
 
@@ -247,35 +247,35 @@ module Aws::RolesAnywhere
247
247
  end
248
248
 
249
249
  class Source
250
- attr_accessor source_data: Types::SourceData
251
250
  attr_accessor source_type: ("AWS_ACM_PCA" | "CERTIFICATE_BUNDLE" | "SELF_SIGNED_REPOSITORY")
251
+ attr_accessor source_data: Types::SourceData
252
252
  SENSITIVE: []
253
253
  end
254
254
 
255
255
  class SourceData
256
- attr_accessor acm_pca_arn: ::String
257
256
  attr_accessor x509_certificate_data: ::String
257
+ attr_accessor acm_pca_arn: ::String
258
258
  attr_accessor unknown: untyped
259
259
  SENSITIVE: []
260
260
 
261
- class AcmPcaArn < SourceData
262
- end
263
261
  class X509CertificateData < SourceData
264
262
  end
263
+ class AcmPcaArn < SourceData
264
+ end
265
265
  class Unknown < SourceData
266
266
  end
267
267
  end
268
268
 
269
269
  class SubjectDetail
270
- attr_accessor created_at: ::Time
271
- attr_accessor credentials: ::Array[Types::CredentialSummary]
272
- attr_accessor enabled: bool
273
- attr_accessor instance_properties: ::Array[Types::InstanceProperty]
274
- attr_accessor last_seen_at: ::Time
275
270
  attr_accessor subject_arn: ::String
276
271
  attr_accessor subject_id: ::String
277
- attr_accessor updated_at: ::Time
272
+ attr_accessor enabled: bool
278
273
  attr_accessor x509_subject: ::String
274
+ attr_accessor last_seen_at: ::Time
275
+ attr_accessor created_at: ::Time
276
+ attr_accessor updated_at: ::Time
277
+ attr_accessor credentials: ::Array[Types::CredentialSummary]
278
+ attr_accessor instance_properties: ::Array[Types::InstanceProperty]
279
279
  SENSITIVE: []
280
280
  end
281
281
 
@@ -285,13 +285,13 @@ module Aws::RolesAnywhere
285
285
  end
286
286
 
287
287
  class SubjectSummary
288
- attr_accessor created_at: ::Time
289
- attr_accessor enabled: bool
290
- attr_accessor last_seen_at: ::Time
291
288
  attr_accessor subject_arn: ::String
292
289
  attr_accessor subject_id: ::String
293
- attr_accessor updated_at: ::Time
290
+ attr_accessor enabled: bool
294
291
  attr_accessor x509_subject: ::String
292
+ attr_accessor last_seen_at: ::Time
293
+ attr_accessor created_at: ::Time
294
+ attr_accessor updated_at: ::Time
295
295
  SENSITIVE: []
296
296
  end
297
297
 
@@ -316,14 +316,14 @@ module Aws::RolesAnywhere
316
316
  end
317
317
 
318
318
  class TrustAnchorDetail
319
- attr_accessor created_at: ::Time
320
- attr_accessor enabled: bool
319
+ attr_accessor trust_anchor_id: ::String
320
+ attr_accessor trust_anchor_arn: ::String
321
321
  attr_accessor name: ::String
322
- attr_accessor notification_settings: ::Array[Types::NotificationSettingDetail]
323
322
  attr_accessor source: Types::Source
324
- attr_accessor trust_anchor_arn: ::String
325
- attr_accessor trust_anchor_id: ::String
323
+ attr_accessor enabled: bool
324
+ attr_accessor created_at: ::Time
326
325
  attr_accessor updated_at: ::Time
326
+ attr_accessor notification_settings: ::Array[Types::NotificationSettingDetail]
327
327
  SENSITIVE: []
328
328
  end
329
329
 
@@ -342,27 +342,27 @@ module Aws::RolesAnywhere
342
342
  end
343
343
 
344
344
  class UpdateCrlRequest
345
- attr_accessor crl_data: ::String
346
345
  attr_accessor crl_id: ::String
347
346
  attr_accessor name: ::String
347
+ attr_accessor crl_data: ::String
348
348
  SENSITIVE: []
349
349
  end
350
350
 
351
351
  class UpdateProfileRequest
352
- attr_accessor accept_role_session_name: bool
353
- attr_accessor duration_seconds: ::Integer
354
- attr_accessor managed_policy_arns: ::Array[::String]
355
- attr_accessor name: ::String
356
352
  attr_accessor profile_id: ::String
357
- attr_accessor role_arns: ::Array[::String]
353
+ attr_accessor name: ::String
358
354
  attr_accessor session_policy: ::String
355
+ attr_accessor role_arns: ::Array[::String]
356
+ attr_accessor managed_policy_arns: ::Array[::String]
357
+ attr_accessor duration_seconds: ::Integer
358
+ attr_accessor accept_role_session_name: bool
359
359
  SENSITIVE: []
360
360
  end
361
361
 
362
362
  class UpdateTrustAnchorRequest
363
+ attr_accessor trust_anchor_id: ::String
363
364
  attr_accessor name: ::String
364
365
  attr_accessor source: Types::Source
365
- attr_accessor trust_anchor_id: ::String
366
366
  SENSITIVE: []
367
367
  end
368
368
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rolesanywhere
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.234.0
21
+ version: 3.239.1
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.234.0
31
+ version: 3.239.1
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -65,6 +65,7 @@ files:
65
65
  - lib/aws-sdk-rolesanywhere/plugins/endpoints.rb
66
66
  - lib/aws-sdk-rolesanywhere/resource.rb
67
67
  - lib/aws-sdk-rolesanywhere/types.rb
68
+ - lib/aws-sdk-rolesanywhere/waiters.rb
68
69
  - sig/client.rbs
69
70
  - sig/errors.rbs
70
71
  - sig/resource.rbs