@aws-sdk/client-opensearchserverless 3.855.0 → 3.856.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 (40) hide show
  1. package/README.md +1 -1
  2. package/dist-cjs/index.js +6 -0
  3. package/dist-es/models/models_0.js +1 -0
  4. package/dist-es/protocols/Aws_json1_0.js +2 -0
  5. package/dist-types/OpenSearchServerless.d.ts +1 -1
  6. package/dist-types/OpenSearchServerlessClient.d.ts +1 -1
  7. package/dist-types/commands/BatchGetEffectiveLifecyclePolicyCommand.d.ts +2 -1
  8. package/dist-types/commands/BatchGetLifecyclePolicyCommand.d.ts +2 -1
  9. package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +2 -2
  10. package/dist-types/commands/CreateAccessPolicyCommand.d.ts +7 -6
  11. package/dist-types/commands/CreateCollectionCommand.d.ts +7 -5
  12. package/dist-types/commands/CreateLifecyclePolicyCommand.d.ts +7 -5
  13. package/dist-types/commands/CreateSecurityConfigCommand.d.ts +15 -7
  14. package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +8 -7
  15. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +5 -4
  16. package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +3 -3
  17. package/dist-types/commands/DeleteCollectionCommand.d.ts +3 -3
  18. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +3 -3
  19. package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +4 -5
  20. package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +3 -3
  21. package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +5 -5
  22. package/dist-types/commands/GetAccessPolicyCommand.d.ts +1 -1
  23. package/dist-types/commands/GetSecurityConfigCommand.d.ts +4 -0
  24. package/dist-types/commands/GetSecurityPolicyCommand.d.ts +4 -3
  25. package/dist-types/commands/ListSecurityConfigsCommand.d.ts +2 -2
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/ListVpcEndpointsCommand.d.ts +2 -2
  28. package/dist-types/commands/TagResourceCommand.d.ts +7 -5
  29. package/dist-types/commands/UntagResourceCommand.d.ts +5 -4
  30. package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +4 -4
  31. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -1
  32. package/dist-types/commands/UpdateCollectionCommand.d.ts +3 -3
  33. package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +5 -4
  34. package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +12 -5
  35. package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +8 -7
  36. package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +5 -5
  37. package/dist-types/index.d.ts +1 -1
  38. package/dist-types/models/models_0.d.ts +136 -54
  39. package/dist-types/ts3.4/models/models_0.d.ts +8 -0
  40. package/package.json +5 -5
@@ -371,6 +371,10 @@ export interface CreateLifecyclePolicyRequest {
371
371
  export interface CreateLifecyclePolicyResponse {
372
372
  lifecyclePolicyDetail?: LifecyclePolicyDetail | undefined;
373
373
  }
374
+ export interface IamFederationConfigOptions {
375
+ groupAttribute?: string | undefined;
376
+ userAttribute?: string | undefined;
377
+ }
374
378
  export interface SamlConfigOptions {
375
379
  metadata: string | undefined;
376
380
  userAttribute?: string | undefined;
@@ -379,6 +383,7 @@ export interface SamlConfigOptions {
379
383
  sessionTimeout?: number | undefined;
380
384
  }
381
385
  export declare const SecurityConfigType: {
386
+ readonly iamfederation: "iamfederation";
382
387
  readonly iamidentitycenter: "iamidentitycenter";
383
388
  readonly saml: "saml";
384
389
  };
@@ -390,6 +395,7 @@ export interface CreateSecurityConfigRequest {
390
395
  description?: string | undefined;
391
396
  samlOptions?: SamlConfigOptions | undefined;
392
397
  iamIdentityCenterOptions?: CreateIamIdentityCenterConfigOptions | undefined;
398
+ iamFederationOptions?: IamFederationConfigOptions | undefined;
393
399
  clientToken?: string | undefined;
394
400
  }
395
401
  export interface IamIdentityCenterConfigOptions {
@@ -407,6 +413,7 @@ export interface SecurityConfigDetail {
407
413
  description?: string | undefined;
408
414
  samlOptions?: SamlConfigOptions | undefined;
409
415
  iamIdentityCenterOptions?: IamIdentityCenterConfigOptions | undefined;
416
+ iamFederationOptions?: IamFederationConfigOptions | undefined;
410
417
  createdDate?: number | undefined;
411
418
  lastModifiedDate?: number | undefined;
412
419
  }
@@ -616,6 +623,7 @@ export interface UpdateSecurityConfigRequest {
616
623
  iamIdentityCenterOptionsUpdates?:
617
624
  | UpdateIamIdentityCenterConfigOptions
618
625
  | undefined;
626
+ iamFederationOptions?: IamFederationConfigOptions | undefined;
619
627
  clientToken?: string | undefined;
620
628
  }
621
629
  export interface UpdateSecurityConfigResponse {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-opensearchserverless",
3
3
  "description": "AWS SDK for JavaScript Opensearchserverless Client for Node.js, Browser and React Native",
4
- "version": "3.855.0",
4
+ "version": "3.856.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-opensearchserverless",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.855.0",
24
- "@aws-sdk/credential-provider-node": "3.855.0",
23
+ "@aws-sdk/core": "3.856.0",
24
+ "@aws-sdk/credential-provider-node": "3.856.0",
25
25
  "@aws-sdk/middleware-host-header": "3.840.0",
26
26
  "@aws-sdk/middleware-logger": "3.840.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.855.0",
28
+ "@aws-sdk/middleware-user-agent": "3.856.0",
29
29
  "@aws-sdk/region-config-resolver": "3.840.0",
30
30
  "@aws-sdk/types": "3.840.0",
31
31
  "@aws-sdk/util-endpoints": "3.848.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.855.0",
33
+ "@aws-sdk/util-user-agent-node": "3.856.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.7.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.0",