aws-sdk-securityir 1.11.0 → 1.12.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityir/client.rb +187 -53
- data/lib/aws-sdk-securityir/client_api.rb +25 -0
- data/lib/aws-sdk-securityir/types.rb +294 -52
- data/lib/aws-sdk-securityir.rb +1 -1
- data/sig/client.rbs +14 -6
- data/sig/types.rbs +22 -5
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -140,7 +140,7 @@ module Aws
|
|
140
140
|
?impacted_services: Array[::String],
|
141
141
|
?impacted_aws_regions: Array[
|
142
142
|
{
|
143
|
-
region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
143
|
+
region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
144
144
|
},
|
145
145
|
],
|
146
146
|
?tags: Hash[::String, ::String]
|
@@ -180,7 +180,8 @@ module Aws
|
|
180
180
|
is_enabled: bool
|
181
181
|
},
|
182
182
|
],
|
183
|
-
?tags: Hash[::String, ::String]
|
183
|
+
?tags: Hash[::String, ::String],
|
184
|
+
?cover_entire_organization: bool
|
184
185
|
) -> _CreateMembershipResponseSuccess
|
185
186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateMembershipResponseSuccess
|
186
187
|
|
@@ -240,7 +241,7 @@ module Aws
|
|
240
241
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetMembershipResponse]
|
241
242
|
def membership_id: () -> ::String
|
242
243
|
def account_id: () -> ::String
|
243
|
-
def region: () -> ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
244
|
+
def region: () -> ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
244
245
|
def membership_name: () -> ::String
|
245
246
|
def membership_arn: () -> ::String
|
246
247
|
def membership_status: () -> ("Active" | "Cancelled" | "Terminated")
|
@@ -250,6 +251,7 @@ module Aws
|
|
250
251
|
def number_of_accounts_covered: () -> ::Integer
|
251
252
|
def incident_response_team: () -> ::Array[Types::IncidentResponder]
|
252
253
|
def opt_in_features: () -> ::Array[Types::OptInFeature]
|
254
|
+
def membership_accounts_configurations: () -> Types::MembershipAccountsConfigurations
|
253
255
|
end
|
254
256
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityIR/Client.html#get_membership-instance_method
|
255
257
|
def get_membership: (
|
@@ -381,12 +383,12 @@ module Aws
|
|
381
383
|
?impacted_services_to_delete: Array[::String],
|
382
384
|
?impacted_aws_regions_to_add: Array[
|
383
385
|
{
|
384
|
-
region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
386
|
+
region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
385
387
|
},
|
386
388
|
],
|
387
389
|
?impacted_aws_regions_to_delete: Array[
|
388
390
|
{
|
389
|
-
region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
391
|
+
region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
390
392
|
},
|
391
393
|
],
|
392
394
|
?impacted_accounts_to_add: Array[::String],
|
@@ -437,7 +439,13 @@ module Aws
|
|
437
439
|
feature_name: ("Triage"),
|
438
440
|
is_enabled: bool
|
439
441
|
},
|
440
|
-
]
|
442
|
+
],
|
443
|
+
?membership_accounts_configurations_update: {
|
444
|
+
cover_entire_organization: bool?,
|
445
|
+
organizational_units_to_add: Array[::String]?,
|
446
|
+
organizational_units_to_remove: Array[::String]?
|
447
|
+
},
|
448
|
+
?undo_membership_cancellation: bool
|
441
449
|
) -> _UpdateMembershipResponseSuccess
|
442
450
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMembershipResponseSuccess
|
443
451
|
|
data/sig/types.rbs
CHANGED
@@ -109,6 +109,7 @@ module Aws::SecurityIR
|
|
109
109
|
attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
|
110
110
|
attr_accessor opt_in_features: ::Array[Types::OptInFeature]
|
111
111
|
attr_accessor tags: ::Hash[::String, ::String]
|
112
|
+
attr_accessor cover_entire_organization: bool
|
112
113
|
SENSITIVE: [:membership_name]
|
113
114
|
end
|
114
115
|
|
@@ -178,8 +179,8 @@ module Aws::SecurityIR
|
|
178
179
|
|
179
180
|
class GetMembershipAccountDetailItem
|
180
181
|
attr_accessor account_id: ::String
|
181
|
-
attr_accessor relationship_status: ("Associated" | "Disassociated")
|
182
|
-
attr_accessor relationship_type: ("Organization")
|
182
|
+
attr_accessor relationship_status: ("Associated" | "Disassociated" | "Unassociated")
|
183
|
+
attr_accessor relationship_type: ("Organization" | "Unrelated")
|
183
184
|
SENSITIVE: []
|
184
185
|
end
|
185
186
|
|
@@ -191,7 +192,7 @@ module Aws::SecurityIR
|
|
191
192
|
class GetMembershipResponse
|
192
193
|
attr_accessor membership_id: ::String
|
193
194
|
attr_accessor account_id: ::String
|
194
|
-
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
195
|
+
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
195
196
|
attr_accessor membership_name: ::String
|
196
197
|
attr_accessor membership_arn: ::String
|
197
198
|
attr_accessor membership_status: ("Active" | "Cancelled" | "Terminated")
|
@@ -201,11 +202,12 @@ module Aws::SecurityIR
|
|
201
202
|
attr_accessor number_of_accounts_covered: ::Integer
|
202
203
|
attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
|
203
204
|
attr_accessor opt_in_features: ::Array[Types::OptInFeature]
|
205
|
+
attr_accessor membership_accounts_configurations: Types::MembershipAccountsConfigurations
|
204
206
|
SENSITIVE: [:membership_name]
|
205
207
|
end
|
206
208
|
|
207
209
|
class ImpactedAwsRegion
|
208
|
-
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
210
|
+
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
209
211
|
SENSITIVE: []
|
210
212
|
end
|
211
213
|
|
@@ -295,7 +297,7 @@ module Aws::SecurityIR
|
|
295
297
|
class ListMembershipItem
|
296
298
|
attr_accessor membership_id: ::String
|
297
299
|
attr_accessor account_id: ::String
|
298
|
-
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
300
|
+
attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-east-2" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "mx-central-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
|
299
301
|
attr_accessor membership_arn: ::String
|
300
302
|
attr_accessor membership_status: ("Active" | "Cancelled" | "Terminated")
|
301
303
|
SENSITIVE: []
|
@@ -323,6 +325,19 @@ module Aws::SecurityIR
|
|
323
325
|
SENSITIVE: []
|
324
326
|
end
|
325
327
|
|
328
|
+
class MembershipAccountsConfigurations
|
329
|
+
attr_accessor cover_entire_organization: bool
|
330
|
+
attr_accessor organizational_units: ::Array[::String]
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class MembershipAccountsConfigurationsUpdate
|
335
|
+
attr_accessor cover_entire_organization: bool
|
336
|
+
attr_accessor organizational_units_to_add: ::Array[::String]
|
337
|
+
attr_accessor organizational_units_to_remove: ::Array[::String]
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
326
341
|
class OptInFeature
|
327
342
|
attr_accessor feature_name: ("Triage")
|
328
343
|
attr_accessor is_enabled: bool
|
@@ -432,6 +447,8 @@ module Aws::SecurityIR
|
|
432
447
|
attr_accessor membership_name: ::String
|
433
448
|
attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
|
434
449
|
attr_accessor opt_in_features: ::Array[Types::OptInFeature]
|
450
|
+
attr_accessor membership_accounts_configurations_update: Types::MembershipAccountsConfigurationsUpdate
|
451
|
+
attr_accessor undo_membership_cancellation: bool
|
435
452
|
SENSITIVE: [:membership_name]
|
436
453
|
end
|
437
454
|
|