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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af38aaa106f922ceeffd1d2322e5b4d5c3eac85f3c5396f6b30a9d2c6b620384
4
- data.tar.gz: 2abbde56583eafcc1371b3d48ab970e2fc285e225e993634b0904d0a88ae9d45
3
+ metadata.gz: 2717a987d10859de9278ccd8896e2850119adecf43ab191daa8c227ac0b7176e
4
+ data.tar.gz: 0275b0c56e35fafa6b2b7e97c144b6ae176ece35c341df632e99b4e0ba5f4156
5
5
  SHA512:
6
- metadata.gz: cf1df6728793002280ea7f564093cb1eab000c9d63e343c2a69dbd9b7646a17561ccbc0f63dea652c1b2713503d46a3d78be63fc754d58ccd967ddf496da2ca7
7
- data.tar.gz: 429562543aa1e44c2387a53841de78e3571ade83c8f316bc33738d0feef5d326f04402ec1d7c50435e5c6ec6ea4b586b21f5a08506885ae2ba2c852234baa2a9
6
+ metadata.gz: 075ff54b4fc8f87c15917130418cbf301fad8cd98d8e8309b408671efcbe2b0525c6bb5c825c2ce0aec97ef9801102654579c739c4b365445839bf6ae7b749b2
7
+ data.tar.gz: 36b130b11f462a3d6d84f2dd7984ead2fb115163ca9368aa4ce7ee5e02a51a22d4ae1d55d62c7030d9d21463a6c4d6fff7604a2b0b82dd2a9ef445ad07319cf8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2025-08-13)
5
+ ------------------
6
+
7
+ * Feature - Added support for Organizational Unit-level Membership configuration and the ability to resume a cancelled membership.
8
+
4
9
  1.11.0 (2025-08-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.12.0
@@ -476,7 +476,15 @@ module Aws::SecurityIR
476
476
 
477
477
  # @!group API Operations
478
478
 
479
- # Grants permission to view an existing membership.
479
+ # Provides information on whether the supplied account IDs are
480
+ # associated with a membership.
481
+ #
482
+ # <note markdown="1"> AWS account ID's may appear less than 12 characters and need to be
483
+ # zero-prepended. An example would be `123123123` which is nine digits,
484
+ # and with zero-prepend would be `000123123123`. Not zero-prepending to
485
+ # 12 digits could result in errors.
486
+ #
487
+ # </note>
480
488
  #
481
489
  # @option params [required, String] :membership_id
482
490
  # Required element used in combination with BatchGetMemberAccountDetails
@@ -486,6 +494,13 @@ module Aws::SecurityIR
486
494
  # Optional element to query the membership relationship status to a
487
495
  # provided list of account IDs.
488
496
  #
497
+ # <note markdown="1"> AWS account ID's may appear less than 12 characters and need to be
498
+ # zero-prepended. An example would be `123123123` which is nine digits,
499
+ # and with zero-prepend would be `000123123123`. Not zero-prepending to
500
+ # 12 digits could result in errors.
501
+ #
502
+ # </note>
503
+ #
489
504
  # @return [Types::BatchGetMemberAccountDetailsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
490
505
  #
491
506
  # * {Types::BatchGetMemberAccountDetailsResponse#items #items} => Array&lt;Types::GetMembershipAccountDetailItem&gt;
@@ -523,8 +538,8 @@ module Aws::SecurityIR
523
538
  #
524
539
  # resp.items #=> Array
525
540
  # resp.items[0].account_id #=> String
526
- # resp.items[0].relationship_status #=> String, one of "Associated", "Disassociated"
527
- # resp.items[0].relationship_type #=> String, one of "Organization"
541
+ # resp.items[0].relationship_status #=> String, one of "Associated", "Disassociated", "Unassociated"
542
+ # resp.items[0].relationship_type #=> String, one of "Organization", "Unrelated"
528
543
  # resp.errors #=> Array
529
544
  # resp.errors[0].account_id #=> String
530
545
  # resp.errors[0].error #=> String
@@ -539,7 +554,7 @@ module Aws::SecurityIR
539
554
  req.send_request(options)
540
555
  end
541
556
 
542
- # Grants permissions to cancel an existing membership.
557
+ # Cancels an existing membership.
543
558
  #
544
559
  # @option params [required, String] :membership_id
545
560
  # Required element used in combination with CancelMembershipRequest to
@@ -580,7 +595,7 @@ module Aws::SecurityIR
580
595
  req.send_request(options)
581
596
  end
582
597
 
583
- # Grants permission to close an existing case.
598
+ # Closes an existing case.
584
599
  #
585
600
  # @option params [required, String] :case_id
586
601
  # Required element used in combination with CloseCase to identify the
@@ -624,26 +639,32 @@ module Aws::SecurityIR
624
639
  req.send_request(options)
625
640
  end
626
641
 
627
- # Grants permission to create a new case.
642
+ # Creates a new case.
628
643
  #
629
644
  # @option params [String] :client_token
630
- # Required element used in combination with CreateCase.
645
+ # <note markdown="1"> The `clientToken` field is an idempotency key used
646
+ # to ensure that
647
+ # repeated attempts for a single action will be ignored by the server
648
+ # during retries. A caller supplied unique ID (typically a UUID) should
649
+ # be provided.
650
+ #
651
+ # </note>
631
652
  #
632
653
  # **A suitable default value is auto-generated.** You should normally
633
654
  # not need to pass this option.**
634
655
  #
635
656
  # @option params [required, String] :resolver_type
636
657
  # Required element used in combination with CreateCase to identify the
637
- # resolver type. Available resolvers include self-supported \|
638
- # aws-supported.
658
+ # resolver type.
639
659
  #
640
660
  # @option params [required, String] :title
641
661
  # Required element used in combination with CreateCase to provide a
642
662
  # title for the new case.
643
663
  #
644
664
  # @option params [required, String] :description
645
- # Required element used in combination with CreateCase to provide a
646
- # description for the new case.
665
+ # Required element used in combination with CreateCase
666
+ #
667
+ # to provide a description for the new case.
647
668
  #
648
669
  # @option params [required, String] :engagement_type
649
670
  # Required element used in combination with CreateCase to provide an
@@ -658,6 +679,13 @@ module Aws::SecurityIR
658
679
  # Required element used in combination with CreateCase to provide a list
659
680
  # of impacted accounts.
660
681
  #
682
+ # <note markdown="1"> AWS account ID's may appear less than 12 characters and need to be
683
+ # zero-prepended. An example would be `123123123` which is nine digits,
684
+ # and with zero-prepend would be `000123123123`. Not zero-prepending to
685
+ # 12 digits could result in errors.
686
+ #
687
+ # </note>
688
+ #
661
689
  # @option params [required, Array<Types::Watcher>] :watchers
662
690
  # Required element used in combination with CreateCase to provide a list
663
691
  # of entities to receive notifications for case updates.
@@ -751,7 +779,7 @@ module Aws::SecurityIR
751
779
  # impacted_services: ["AwsService"],
752
780
  # impacted_aws_regions: [
753
781
  # {
754
- # region: "af-south-1", # required, accepts 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
782
+ # region: "af-south-1", # required, accepts 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
755
783
  # },
756
784
  # ],
757
785
  # tags: {
@@ -772,14 +800,20 @@ module Aws::SecurityIR
772
800
  req.send_request(options)
773
801
  end
774
802
 
775
- # Grants permission to add a comment to an existing case.
803
+ # Adds a comment to an existing case.
776
804
  #
777
805
  # @option params [required, String] :case_id
778
806
  # Required element used in combination with CreateCaseComment to specify
779
807
  # a case ID.
780
808
  #
781
809
  # @option params [String] :client_token
782
- # An optional element used in combination with CreateCaseComment.
810
+ # <note markdown="1"> The `clientToken` field is an idempotency key used
811
+ # to ensure that
812
+ # repeated attempts for a single action will be ignored by the server
813
+ # during retries. A caller supplied unique ID (typically a UUID) should
814
+ # be provided.
815
+ #
816
+ # </note>
783
817
  #
784
818
  # **A suitable default value is auto-generated.** You should normally
785
819
  # not need to pass this option.**
@@ -826,20 +860,26 @@ module Aws::SecurityIR
826
860
  req.send_request(options)
827
861
  end
828
862
 
829
- # Grants permissions to create a new membership.
863
+ # Creates a new membership.
830
864
  #
831
865
  # @option params [String] :client_token
832
- # An optional element used in combination with CreateMembership.
866
+ # <note markdown="1"> The `clientToken` field is an idempotency key used
867
+ # to ensure that
868
+ # repeated attempts for a single action will be ignored by the server
869
+ # during retries. A caller supplied unique ID (typically a UUID) should
870
+ # be provided.
871
+ #
872
+ # </note>
833
873
  #
834
874
  # **A suitable default value is auto-generated.** You should normally
835
875
  # not need to pass this option.**
836
876
  #
837
877
  # @option params [required, String] :membership_name
838
- # Required element use in combination with CreateMembership to create a
878
+ # Required element used in combination with CreateMembership to create a
839
879
  # name for the membership.
840
880
  #
841
881
  # @option params [required, Array<Types::IncidentResponder>] :incident_response_team
842
- # Required element use in combination with CreateMembership to add
882
+ # Required element used in combination with CreateMembership to add
843
883
  # customer incident response team members and trusted partners to the
844
884
  # membership.
845
885
  #
@@ -850,6 +890,23 @@ module Aws::SecurityIR
850
890
  # @option params [Hash<String,String>] :tags
851
891
  # Optional element for customer configured tags.
852
892
  #
893
+ # @option params [Boolean] :cover_entire_organization
894
+ # The `coverEntireOrganization` parameter is a boolean flag that
895
+ # determines whether the membership should be applied to the entire
896
+ # Amazon Web Services Organization. When set to true, the membership
897
+ # will be created for all accounts within the organization. When set to
898
+ # false, the membership will only be created for specified accounts.
899
+ #
900
+ # This parameter is optional. If not specified, the default value is
901
+ # false.
902
+ #
903
+ # * If set to *true*: The membership will automatically include all
904
+ # existing and future accounts in the Amazon Web Services
905
+ # Organization.
906
+ #
907
+ # * If set to *false*: The membership will only apply to explicitly
908
+ # specified accounts.
909
+ #
853
910
  # @return [Types::CreateMembershipResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
854
911
  #
855
912
  # * {Types::CreateMembershipResponse#membership_id #membership_id} => String
@@ -905,6 +962,7 @@ module Aws::SecurityIR
905
962
  # tags: {
906
963
  # "TagKey" => "TagValue",
907
964
  # },
965
+ # cover_entire_organization: false,
908
966
  # })
909
967
  #
910
968
  # @example Response structure
@@ -920,7 +978,7 @@ module Aws::SecurityIR
920
978
  req.send_request(options)
921
979
  end
922
980
 
923
- # Grant permission to view a designated case.
981
+ # Returns the attributes of a case.
924
982
  #
925
983
  # @option params [required, String] :case_id
926
984
  # Required element for GetCase to identify the requested case ID.
@@ -1016,7 +1074,7 @@ module Aws::SecurityIR
1016
1074
  # resp.reported_incident_start_date #=> Time
1017
1075
  # resp.actual_incident_start_date #=> Time
1018
1076
  # resp.impacted_aws_regions #=> Array
1019
- # resp.impacted_aws_regions[0].region #=> String, one of "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"
1077
+ # resp.impacted_aws_regions[0].region #=> String, one of "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"
1020
1078
  # resp.threat_actor_ip_addresses #=> Array
1021
1079
  # resp.threat_actor_ip_addresses[0].ip_address #=> String
1022
1080
  # resp.threat_actor_ip_addresses[0].user_agent #=> String
@@ -1050,8 +1108,7 @@ module Aws::SecurityIR
1050
1108
  req.send_request(options)
1051
1109
  end
1052
1110
 
1053
- # Grants permission to obtain an Amazon S3 presigned URL to download an
1054
- # attachment.
1111
+ # Returns a Pre-Signed URL for uploading attachments into a case.
1055
1112
  #
1056
1113
  # @option params [required, String] :case_id
1057
1114
  # Required element for GetCaseAttachmentDownloadUrl to identify the case
@@ -1098,11 +1155,11 @@ module Aws::SecurityIR
1098
1155
  req.send_request(options)
1099
1156
  end
1100
1157
 
1101
- # Grants permission to upload an attachment to a case.
1158
+ # Uploads an attachment to a case.
1102
1159
  #
1103
1160
  # @option params [required, String] :case_id
1104
1161
  # Required element for GetCaseAttachmentUploadUrl to identify the case
1105
- # ID for uploading an attachment to.
1162
+ # ID for uploading an attachment.
1106
1163
  #
1107
1164
  # @option params [required, String] :file_name
1108
1165
  # Required element for GetCaseAttachmentUploadUrl to identify the file
@@ -1110,10 +1167,16 @@ module Aws::SecurityIR
1110
1167
  #
1111
1168
  # @option params [required, Integer] :content_length
1112
1169
  # Required element for GetCaseAttachmentUploadUrl to identify the size
1113
- # od the file attachment.
1170
+ # of the file attachment.
1114
1171
  #
1115
1172
  # @option params [String] :client_token
1116
- # Optional element for customer provided token.
1173
+ # <note markdown="1"> The `clientToken` field is an idempotency key used
1174
+ # to ensure that
1175
+ # repeated attempts for a single action will be ignored by the server
1176
+ # during retries. A caller supplied unique ID (typically a UUID) should
1177
+ # be provided.
1178
+ #
1179
+ # </note>
1117
1180
  #
1118
1181
  # **A suitable default value is auto-generated.** You should normally
1119
1182
  # not need to pass this option.**
@@ -1158,7 +1221,7 @@ module Aws::SecurityIR
1158
1221
  req.send_request(options)
1159
1222
  end
1160
1223
 
1161
- # Grants permission to get details of a designated service membership.
1224
+ # Returns the attributes of a membership.
1162
1225
  #
1163
1226
  # @option params [required, String] :membership_id
1164
1227
  # Required element for GetMembership to identify the membership ID to
@@ -1178,6 +1241,7 @@ module Aws::SecurityIR
1178
1241
  # * {Types::GetMembershipResponse#number_of_accounts_covered #number_of_accounts_covered} => Integer
1179
1242
  # * {Types::GetMembershipResponse#incident_response_team #incident_response_team} => Array&lt;Types::IncidentResponder&gt;
1180
1243
  # * {Types::GetMembershipResponse#opt_in_features #opt_in_features} => Array&lt;Types::OptInFeature&gt;
1244
+ # * {Types::GetMembershipResponse#membership_accounts_configurations #membership_accounts_configurations} => Types::MembershipAccountsConfigurations
1181
1245
  #
1182
1246
  #
1183
1247
  # @example Example: Invoke GetMembership
@@ -1228,7 +1292,7 @@ module Aws::SecurityIR
1228
1292
  #
1229
1293
  # resp.membership_id #=> String
1230
1294
  # resp.account_id #=> String
1231
- # resp.region #=> String, one of "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"
1295
+ # resp.region #=> String, one of "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"
1232
1296
  # resp.membership_name #=> String
1233
1297
  # resp.membership_arn #=> String
1234
1298
  # resp.membership_status #=> String, one of "Active", "Cancelled", "Terminated"
@@ -1243,6 +1307,9 @@ module Aws::SecurityIR
1243
1307
  # resp.opt_in_features #=> Array
1244
1308
  # resp.opt_in_features[0].feature_name #=> String, one of "Triage"
1245
1309
  # resp.opt_in_features[0].is_enabled #=> Boolean
1310
+ # resp.membership_accounts_configurations.cover_entire_organization #=> Boolean
1311
+ # resp.membership_accounts_configurations.organizational_units #=> Array
1312
+ # resp.membership_accounts_configurations.organizational_units[0] #=> String
1246
1313
  #
1247
1314
  # @see http://docs.aws.amazon.com/goto/WebAPI/security-ir-2018-05-10/GetMembership AWS API Documentation
1248
1315
  #
@@ -1253,11 +1320,12 @@ module Aws::SecurityIR
1253
1320
  req.send_request(options)
1254
1321
  end
1255
1322
 
1256
- # Grants permissions to view the aidt log for edits made to a designated
1257
- # case.
1323
+ # Views the case history for edits made to a designated case.
1258
1324
  #
1259
1325
  # @option params [String] :next_token
1260
- # Optional element for a customer provided token.
1326
+ # An optional string that, if supplied, must be copied from the output
1327
+ # of a previous call to ListCaseEdits. When provided in this manner, the
1328
+ # API fetches the next page of results.
1261
1329
  #
1262
1330
  # @option params [Integer] :max_results
1263
1331
  # Optional element to identify how many results to obtain. There is a
@@ -1322,10 +1390,12 @@ module Aws::SecurityIR
1322
1390
  req.send_request(options)
1323
1391
  end
1324
1392
 
1325
- # Grants permission to list all cases the requester has access to.
1393
+ # Lists all cases the requester has access to.
1326
1394
  #
1327
1395
  # @option params [String] :next_token
1328
- # Optional element.
1396
+ # An optional string that, if supplied, must be copied from the output
1397
+ # of a previous call to ListCases. When provided in this manner, the API
1398
+ # fetches the next page of results.
1329
1399
  #
1330
1400
  # @option params [Integer] :max_results
1331
1401
  # Optional element for ListCases to limit the number of responses.
@@ -1395,10 +1465,12 @@ module Aws::SecurityIR
1395
1465
  req.send_request(options)
1396
1466
  end
1397
1467
 
1398
- # Grants permissions to list and view comments for a designated case.
1468
+ # Returns comments for a designated case.
1399
1469
  #
1400
1470
  # @option params [String] :next_token
1401
- # Optional element.
1471
+ # An optional string that, if supplied, must be copied from the output
1472
+ # of a previous call to ListComments. When provided in this manner, the
1473
+ # API fetches the next page of results.
1402
1474
  #
1403
1475
  # @option params [Integer] :max_results
1404
1476
  # Optional element for ListComments to limit the number of responses.
@@ -1461,10 +1533,12 @@ module Aws::SecurityIR
1461
1533
  req.send_request(options)
1462
1534
  end
1463
1535
 
1464
- # Grants permission to query the memberships a principal has access to.
1536
+ # Returns the memberships that the calling principal can access.
1465
1537
  #
1466
1538
  # @option params [String] :next_token
1467
- # Optional element.
1539
+ # An optional string that, if supplied, must be copied from the output
1540
+ # of a previous call to ListMemberships. When provided in this manner,
1541
+ # the API fetches the next page of results.
1468
1542
  #
1469
1543
  # @option params [Integer] :max_results
1470
1544
  # Request element for ListMemberships to limit the number of responses.
@@ -1509,7 +1583,7 @@ module Aws::SecurityIR
1509
1583
  # resp.items #=> Array
1510
1584
  # resp.items[0].membership_id #=> String
1511
1585
  # resp.items[0].account_id #=> String
1512
- # resp.items[0].region #=> String, one of "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"
1586
+ # resp.items[0].region #=> String, one of "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"
1513
1587
  # resp.items[0].membership_arn #=> String
1514
1588
  # resp.items[0].membership_status #=> String, one of "Active", "Cancelled", "Terminated"
1515
1589
  #
@@ -1522,7 +1596,7 @@ module Aws::SecurityIR
1522
1596
  req.send_request(options)
1523
1597
  end
1524
1598
 
1525
- # Grants permission to view currently configured tags on a resource.
1599
+ # Returns currently configured tags on a resource.
1526
1600
  #
1527
1601
  # @option params [required, String] :resource_arn
1528
1602
  # Required element for ListTagsForResource to provide the ARN to
@@ -1567,7 +1641,7 @@ module Aws::SecurityIR
1567
1641
  req.send_request(options)
1568
1642
  end
1569
1643
 
1570
- # Grants permission to add a tag(s) to a designated resource.
1644
+ # Adds a tag(s) to a designated resource.
1571
1645
  #
1572
1646
  # @option params [required, String] :resource_arn
1573
1647
  # Required element for TagResource to identify the ARN for the resource
@@ -1612,7 +1686,7 @@ module Aws::SecurityIR
1612
1686
  req.send_request(options)
1613
1687
  end
1614
1688
 
1615
- # Grants permission to remove a tag(s) from a designate resource.
1689
+ # Removes a tag(s) from a designate resource.
1616
1690
  #
1617
1691
  # @option params [required, String] :resource_arn
1618
1692
  # Required element for UnTagResource to identify the ARN for the
@@ -1649,7 +1723,7 @@ module Aws::SecurityIR
1649
1723
  req.send_request(options)
1650
1724
  end
1651
1725
 
1652
- # Grants permission to update an existing case.
1726
+ # Updates an existing case.
1653
1727
  #
1654
1728
  # @option params [required, String] :case_id
1655
1729
  # Required element for UpdateCase to identify the case ID for updates.
@@ -1711,10 +1785,24 @@ module Aws::SecurityIR
1711
1785
  # Optional element for UpdateCase to provide content to add accounts
1712
1786
  # impacted.
1713
1787
  #
1788
+ # <note markdown="1"> AWS account ID's may appear less than 12 characters and need to be
1789
+ # zero-prepended. An example would be `123123123` which is nine digits,
1790
+ # and with zero-prepend would be `000123123123`. Not zero-prepending to
1791
+ # 12 digits could result in errors.
1792
+ #
1793
+ # </note>
1794
+ #
1714
1795
  # @option params [Array<String>] :impacted_accounts_to_delete
1715
1796
  # Optional element for UpdateCase to provide content to add accounts
1716
1797
  # impacted.
1717
1798
  #
1799
+ # <note markdown="1"> AWS account ID's may appear less than 12 characters and need to be
1800
+ # zero-prepended. An example would be `123123123` which is nine digits,
1801
+ # and with zero-prepend would be `000123123123`. Not zero-prepending to
1802
+ # 12 digits could result in errors.
1803
+ #
1804
+ # </note>
1805
+ #
1718
1806
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1719
1807
  #
1720
1808
  #
@@ -1820,12 +1908,12 @@ module Aws::SecurityIR
1820
1908
  # impacted_services_to_delete: ["AwsService"],
1821
1909
  # impacted_aws_regions_to_add: [
1822
1910
  # {
1823
- # region: "af-south-1", # required, accepts 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
1911
+ # region: "af-south-1", # required, accepts 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
1824
1912
  # },
1825
1913
  # ],
1826
1914
  # impacted_aws_regions_to_delete: [
1827
1915
  # {
1828
- # region: "af-south-1", # required, accepts 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
1916
+ # region: "af-south-1", # required, accepts 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
1829
1917
  # },
1830
1918
  # ],
1831
1919
  # impacted_accounts_to_add: ["AWSAccountId"],
@@ -1841,7 +1929,7 @@ module Aws::SecurityIR
1841
1929
  req.send_request(options)
1842
1930
  end
1843
1931
 
1844
- # Grants permission to update an existing case comment.
1932
+ # Updates an existing case comment.
1845
1933
  #
1846
1934
  # @option params [required, String] :case_id
1847
1935
  # Required element for UpdateCaseComment to identify the case ID
@@ -1897,9 +1985,28 @@ module Aws::SecurityIR
1897
1985
  req.send_request(options)
1898
1986
  end
1899
1987
 
1900
- # Grants permission to update the status for a designated cases. Options
1901
- # include `Submitted | Detection and Analysis | Eradication, Containment
1902
- # and Recovery | Post-Incident Activities | Closed`.
1988
+ # Updates the state transitions for a designated cases.
1989
+ #
1990
+ # **Self-managed**: the following states are available for self-managed
1991
+ # cases.
1992
+ #
1993
+ # * Submitted → Detection and Analysis
1994
+ #
1995
+ # * Detection and Analysis → Containment, Eradication, and Recovery
1996
+ #
1997
+ # * Detection and Analysis → Post-incident Activities
1998
+ #
1999
+ # * Containment, Eradication, and Recovery → Detection and Analysis
2000
+ #
2001
+ # * Containment, Eradication, and Recovery → Post-incident Activities
2002
+ #
2003
+ # * Post-incident Activities → Containment, Eradication, and Recovery
2004
+ #
2005
+ # * Post-incident Activities → Detection and Analysis
2006
+ #
2007
+ # * Any → Closed
2008
+ #
2009
+ # **AWS supported**: You must use the `CloseCase` API to close.
1903
2010
  #
1904
2011
  # @option params [required, String] :case_id
1905
2012
  # Required element for UpdateCaseStatus to identify the case to update.
@@ -1946,7 +2053,7 @@ module Aws::SecurityIR
1946
2053
  req.send_request(options)
1947
2054
  end
1948
2055
 
1949
- # Grants access to UpdateMembership to change membership configuration.
2056
+ # Updates membership configuration.
1950
2057
  #
1951
2058
  # @option params [required, String] :membership_id
1952
2059
  # Required element for UpdateMembership to identify the membership to
@@ -1962,6 +2069,29 @@ module Aws::SecurityIR
1962
2069
  # Optional element for UpdateMembership to enable or disable opt-in
1963
2070
  # features for the service.
1964
2071
  #
2072
+ # @option params [Types::MembershipAccountsConfigurationsUpdate] :membership_accounts_configurations_update
2073
+ # The `membershipAccountsConfigurationsUpdate` field in the
2074
+ # `UpdateMembershipRequest` structure allows you to update the
2075
+ # configuration settings for accounts within a membership.
2076
+ #
2077
+ # This field is optional and contains a structure of type
2078
+ # `MembershipAccountsConfigurationsUpdate ` that specifies the updated
2079
+ # account configurations for the membership.
2080
+ #
2081
+ # @option params [Boolean] :undo_membership_cancellation
2082
+ # The `undoMembershipCancellation` parameter is a boolean flag that
2083
+ # indicates whether to reverse a previously requested membership
2084
+ # cancellation. When set to true, this will revoke the cancellation
2085
+ # request and maintain the membership status.
2086
+ #
2087
+ # This parameter is optional and can be used in scenarios where you need
2088
+ # to restore a membership that was marked for cancellation but hasn't
2089
+ # been fully terminated yet.
2090
+ #
2091
+ # * If set to `true`, the cancellation request will be revoked
2092
+ #
2093
+ # * If set to `false` the service will throw a ValidationException.
2094
+ #
1965
2095
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1966
2096
  #
1967
2097
  #
@@ -2012,6 +2142,12 @@ module Aws::SecurityIR
2012
2142
  # is_enabled: false, # required
2013
2143
  # },
2014
2144
  # ],
2145
+ # membership_accounts_configurations_update: {
2146
+ # cover_entire_organization: false,
2147
+ # organizational_units_to_add: ["OrganizationalUnitId"],
2148
+ # organizational_units_to_remove: ["OrganizationalUnitId"],
2149
+ # },
2150
+ # undo_membership_cancellation: false,
2015
2151
  # })
2016
2152
  #
2017
2153
  # @see http://docs.aws.amazon.com/goto/WebAPI/security-ir-2018-05-10/UpdateMembership AWS API Documentation
@@ -2023,12 +2159,10 @@ module Aws::SecurityIR
2023
2159
  req.send_request(options)
2024
2160
  end
2025
2161
 
2026
- # Grants permission to update the resolver type for a case.
2162
+ # Updates the resolver type for a case.
2027
2163
  #
2028
2164
  # This is a one-way action and cannot be reversed.
2029
2165
  #
2030
- # Options include self-supported &gt; AWS-supported.
2031
- #
2032
2166
  # @option params [required, String] :case_id
2033
2167
  # Required element for UpdateResolverType to identify the case to
2034
2168
  # update.
@@ -2097,7 +2231,7 @@ module Aws::SecurityIR
2097
2231
  tracer: tracer
2098
2232
  )
2099
2233
  context[:gem_name] = 'aws-sdk-securityir'
2100
- context[:gem_version] = '1.11.0'
2234
+ context[:gem_version] = '1.12.0'
2101
2235
  Seahorse::Client::Request.new(handlers, context)
2102
2236
  end
2103
2237