@aws-sdk/client-securityagent 3.1041.0 → 3.1042.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.
Files changed (64) hide show
  1. package/README.md +1 -1
  2. package/dist-cjs/index.js +1 -0
  3. package/dist-cjs/schemas/schemas_0.js +9 -8
  4. package/dist-es/models/enums.js +1 -0
  5. package/dist-es/schemas/schemas_0.js +9 -8
  6. package/dist-types/SecurityAgent.d.ts +1 -1
  7. package/dist-types/SecurityAgentClient.d.ts +1 -1
  8. package/dist-types/commands/AddArtifactCommand.d.ts +6 -8
  9. package/dist-types/commands/BatchDeletePentestsCommand.d.ts +1 -1
  10. package/dist-types/commands/BatchGetAgentSpacesCommand.d.ts +1 -1
  11. package/dist-types/commands/BatchGetArtifactMetadataCommand.d.ts +6 -8
  12. package/dist-types/commands/BatchGetFindingsCommand.d.ts +1 -1
  13. package/dist-types/commands/BatchGetPentestJobTasksCommand.d.ts +1 -1
  14. package/dist-types/commands/BatchGetPentestJobsCommand.d.ts +1 -1
  15. package/dist-types/commands/BatchGetPentestsCommand.d.ts +1 -1
  16. package/dist-types/commands/BatchGetTargetDomainsCommand.d.ts +3 -2
  17. package/dist-types/commands/CreateAgentSpaceCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateApplicationCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateIntegrationCommand.d.ts +7 -9
  20. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  21. package/dist-types/commands/CreatePentestCommand.d.ts +1 -1
  22. package/dist-types/commands/CreateTargetDomainCommand.d.ts +4 -3
  23. package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteArtifactCommand.d.ts +6 -8
  26. package/dist-types/commands/DeleteIntegrationCommand.d.ts +7 -9
  27. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  28. package/dist-types/commands/DeleteTargetDomainCommand.d.ts +1 -1
  29. package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
  30. package/dist-types/commands/GetArtifactCommand.d.ts +6 -8
  31. package/dist-types/commands/GetIntegrationCommand.d.ts +6 -8
  32. package/dist-types/commands/InitiateProviderRegistrationCommand.d.ts +7 -9
  33. package/dist-types/commands/ListAgentSpacesCommand.d.ts +1 -1
  34. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  35. package/dist-types/commands/ListArtifactsCommand.d.ts +6 -8
  36. package/dist-types/commands/ListDiscoveredEndpointsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListFindingsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListIntegratedResourcesCommand.d.ts +6 -8
  39. package/dist-types/commands/ListIntegrationsCommand.d.ts +8 -5
  40. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  41. package/dist-types/commands/ListPentestJobTasksCommand.d.ts +1 -1
  42. package/dist-types/commands/ListPentestJobsForPentestCommand.d.ts +1 -1
  43. package/dist-types/commands/ListPentestsCommand.d.ts +1 -1
  44. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTargetDomainsCommand.d.ts +1 -1
  46. package/dist-types/commands/StartCodeRemediationCommand.d.ts +1 -1
  47. package/dist-types/commands/StartPentestJobCommand.d.ts +1 -1
  48. package/dist-types/commands/StopPentestJobCommand.d.ts +1 -1
  49. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  50. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateFindingCommand.d.ts +1 -1
  54. package/dist-types/commands/UpdateIntegratedResourcesCommand.d.ts +7 -9
  55. package/dist-types/commands/UpdatePentestCommand.d.ts +1 -1
  56. package/dist-types/commands/UpdateTargetDomainCommand.d.ts +4 -3
  57. package/dist-types/commands/VerifyTargetDomainCommand.d.ts +2 -1
  58. package/dist-types/index.d.ts +1 -1
  59. package/dist-types/models/enums.d.ts +81 -77
  60. package/dist-types/models/errors.d.ts +9 -12
  61. package/dist-types/models/models_0.d.ts +679 -659
  62. package/dist-types/ts3.4/models/enums.d.ts +1 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +4 -0
  64. package/package.json +1 -1
@@ -159,6 +159,7 @@ export type DNSRecordType = (typeof DNSRecordType)[keyof typeof DNSRecordType];
159
159
  export declare const DomainVerificationMethod: {
160
160
  readonly DNS_TXT: "DNS_TXT";
161
161
  readonly HTTP_ROUTE: "HTTP_ROUTE";
162
+ readonly PRIVATE_VPC: "PRIVATE_VPC";
162
163
  };
163
164
  export type DomainVerificationMethod =
164
165
  (typeof DomainVerificationMethod)[keyof typeof DomainVerificationMethod];
@@ -424,6 +424,7 @@ export interface TargetDomain {
424
424
  targetDomainId: string | undefined;
425
425
  domainName: string | undefined;
426
426
  verificationStatus?: TargetDomainStatus | undefined;
427
+ verificationStatusReason?: string | undefined;
427
428
  verificationDetails?: VerificationDetails | undefined;
428
429
  createdAt?: Date | undefined;
429
430
  verifiedAt?: Date | undefined;
@@ -523,6 +524,7 @@ export interface CreateTargetDomainOutput {
523
524
  targetDomainId: string | undefined;
524
525
  domainName: string | undefined;
525
526
  verificationStatus: TargetDomainStatus | undefined;
527
+ verificationStatusReason?: string | undefined;
526
528
  verificationDetails?: VerificationDetails | undefined;
527
529
  createdAt?: Date | undefined;
528
530
  verifiedAt?: Date | undefined;
@@ -919,6 +921,7 @@ export interface UpdateTargetDomainOutput {
919
921
  targetDomainId: string | undefined;
920
922
  domainName: string | undefined;
921
923
  verificationStatus: TargetDomainStatus | undefined;
924
+ verificationStatusReason?: string | undefined;
922
925
  verificationDetails?: VerificationDetails | undefined;
923
926
  createdAt?: Date | undefined;
924
927
  verifiedAt?: Date | undefined;
@@ -974,4 +977,5 @@ export interface VerifyTargetDomainOutput {
974
977
  updatedAt?: Date | undefined;
975
978
  verifiedAt?: Date | undefined;
976
979
  status?: TargetDomainStatus | undefined;
980
+ verificationStatusReason?: string | undefined;
977
981
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-securityagent",
3
3
  "description": "AWS SDK for JavaScript Securityagent Client for Node.js, Browser and React Native",
4
- "version": "3.1041.0",
4
+ "version": "3.1042.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-securityagent",