@aws-sdk/client-guardduty 3.47.2 → 3.51.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.
- package/CHANGELOG.md +38 -0
- package/README.md +4 -4
- package/dist-cjs/models/models_0.js +126 -10
- package/dist-cjs/protocols/Aws_restJson1.js +235 -0
- package/dist-es/models/models_0.js +81 -4
- package/dist-es/protocols/Aws_restJson1.js +227 -2
- package/dist-types/GuardDuty.d.ts +14 -14
- package/dist-types/GuardDutyClient.d.ts +4 -4
- package/dist-types/commands/CreateIPSetCommand.d.ts +1 -1
- package/dist-types/commands/CreateMembersCommand.d.ts +1 -1
- package/dist-types/commands/DeclineInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/DisableOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/EnableOrganizationAdminAccountCommand.d.ts +1 -1
- package/dist-types/commands/InviteMembersCommand.d.ts +2 -2
- package/dist-types/commands/ListInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPublishingDestinationsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +498 -52
- package/dist-types/ts3.4/models/models_0.d.ts +258 -11
- package/package.json +39 -33
|
@@ -7,7 +7,7 @@ export interface DeleteInvitationsCommandInput extends DeleteInvitationsRequest
|
|
|
7
7
|
export interface DeleteInvitationsCommandOutput extends DeleteInvitationsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Deletes invitations sent to the current member account by
|
|
10
|
+
* <p>Deletes invitations sent to the current member account by Amazon Web Services accounts specified by their
|
|
11
11
|
* account IDs.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface DisableOrganizationAdminAccountCommandInput extends DisableOrga
|
|
|
7
7
|
export interface DisableOrganizationAdminAccountCommandOutput extends DisableOrganizationAdminAccountResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Disables an
|
|
10
|
+
* <p>Disables an Amazon Web Services account within the Organization as the GuardDuty delegated
|
|
11
11
|
* administrator.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface EnableOrganizationAdminAccountCommandInput extends EnableOrgani
|
|
|
7
7
|
export interface EnableOrganizationAdminAccountCommandOutput extends EnableOrganizationAdminAccountResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Enables an
|
|
10
|
+
* <p>Enables an Amazon Web Services account within the organization as the GuardDuty delegated
|
|
11
11
|
* administrator.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,8 +7,8 @@ export interface InviteMembersCommandInput extends InviteMembersRequest {
|
|
|
7
7
|
export interface InviteMembersCommandOutput extends InviteMembersResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Invites other
|
|
11
|
-
* CreateMembers) to enable GuardDuty, and allow the current
|
|
10
|
+
* <p>Invites other Amazon Web Services accounts (created as members of the current Amazon Web Services account by
|
|
11
|
+
* CreateMembers) to enable GuardDuty, and allow the current Amazon Web Services account to view and manage these
|
|
12
12
|
* accounts' findings on their behalf as the GuardDuty administrator account.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface ListInvitationsCommandInput extends ListInvitationsRequest {
|
|
|
7
7
|
export interface ListInvitationsCommandOutput extends ListInvitationsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists all GuardDuty membership invitations that were sent to the current
|
|
10
|
+
* <p>Lists all GuardDuty membership invitations that were sent to the current Amazon Web Services
|
|
11
11
|
* account.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -8,7 +8,7 @@ export interface ListPublishingDestinationsCommandOutput extends ListPublishingD
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Returns a list of publishing destinations associated with the specified
|
|
11
|
-
* <code>
|
|
11
|
+
* <code>detectorId</code>.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|