@aws-sdk/client-sso-admin 3.1101.0 → 3.1103.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/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1100.0";
72
+ var version = "3.1102.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -574,6 +574,7 @@ const _PPSRr = "ProvisionPermissionSetResponse";
574
574
  const _PR = "PrimaryRegion";
575
575
  const _PS = "PermissionSet";
576
576
  const _PSA = "PermissionSetArn";
577
+ const _PSE = "PermissionSetsEnabled";
577
578
  const _PSPS = "PermissionSetProvisioningStatus";
578
579
  const _PSPSL = "PermissionSetProvisioningStatusList";
579
580
  const _PSPSM = "PermissionSetProvisioningStatusMetadata";
@@ -1053,8 +1054,8 @@ var DescribeInstanceRequest$ = [3, n0, _DIRes,
1053
1054
  ];
1054
1055
  var DescribeInstanceResponse$ = [3, n0, _DIResc,
1055
1056
  0,
1056
- [_IA, _ISI, _OAI, _N, _CD, _St, _SR, _ECD],
1057
- [0, 0, 0, 0, 4, 0, 0, () => EncryptionConfigurationDetails$]
1057
+ [_IA, _ISI, _OAI, _N, _CD, _St, _SR, _ECD, _PSE],
1058
+ [0, 0, 0, 0, 4, 0, 0, () => EncryptionConfigurationDetails$, 2]
1058
1059
  ];
1059
1060
  var DescribePermissionSetProvisioningStatusRequest$ = [3, n0, _DPSPSR,
1060
1061
  0,
@@ -1658,8 +1659,8 @@ var UpdateInstanceAccessControlAttributeConfigurationResponse$ = [3, n0, _UIACAC
1658
1659
  ];
1659
1660
  var UpdateInstanceRequest$ = [3, n0, _UIR,
1660
1661
  0,
1661
- [_IA, _N, _EC],
1662
- [0, 0, () => EncryptionConfiguration$], 1
1662
+ [_IA, _N, _EC, _PSE],
1663
+ [0, 0, () => EncryptionConfiguration$, 2], 1
1663
1664
  ];
1664
1665
  var UpdateInstanceResponse$ = [3, n0, _UIRp,
1665
1666
  0,
@@ -324,6 +324,7 @@ const _PPSRr = "ProvisionPermissionSetResponse";
324
324
  const _PR = "PrimaryRegion";
325
325
  const _PS = "PermissionSet";
326
326
  const _PSA = "PermissionSetArn";
327
+ const _PSE = "PermissionSetsEnabled";
327
328
  const _PSPS = "PermissionSetProvisioningStatus";
328
329
  const _PSPSL = "PermissionSetProvisioningStatusList";
329
330
  const _PSPSM = "PermissionSetProvisioningStatusMetadata";
@@ -806,8 +807,8 @@ export var DescribeInstanceRequest$ = [3, n0, _DIRes,
806
807
  ];
807
808
  export var DescribeInstanceResponse$ = [3, n0, _DIResc,
808
809
  0,
809
- [_IA, _ISI, _OAI, _N, _CD, _St, _SR, _ECD],
810
- [0, 0, 0, 0, 4, 0, 0, () => EncryptionConfigurationDetails$]
810
+ [_IA, _ISI, _OAI, _N, _CD, _St, _SR, _ECD, _PSE],
811
+ [0, 0, 0, 0, 4, 0, 0, () => EncryptionConfigurationDetails$, 2]
811
812
  ];
812
813
  export var DescribePermissionSetProvisioningStatusRequest$ = [3, n0, _DPSPSR,
813
814
  0,
@@ -1411,8 +1412,8 @@ export var UpdateInstanceAccessControlAttributeConfigurationResponse$ = [3, n0,
1411
1412
  ];
1412
1413
  export var UpdateInstanceRequest$ = [3, n0, _UIR,
1413
1414
  0,
1414
- [_IA, _N, _EC],
1415
- [0, 0, () => EncryptionConfiguration$], 1
1415
+ [_IA, _N, _EC, _PSE],
1416
+ [0, 0, () => EncryptionConfiguration$, 2], 1
1416
1417
  ];
1417
1418
  export var UpdateInstanceResponse$ = [3, n0, _UIRp,
1418
1419
  0,
@@ -52,6 +52,7 @@ declare const DescribeInstanceCommand_base: {
52
52
  * // EncryptionStatus: "UPDATING" || "ENABLED" || "UPDATE_FAILED",
53
53
  * // EncryptionStatusReason: "STRING_VALUE",
54
54
  * // },
55
+ * // PermissionSetsEnabled: true || false,
55
56
  * // };
56
57
  *
57
58
  * ```
@@ -24,7 +24,7 @@ declare const UpdateInstanceCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Update the details for the instance of IAM Identity Center that is owned by the Amazon Web Services account.</p>
27
+ * <p>Update the details for the instance of IAM Identity Center that is owned by the Amazon Web Services account.</p> <p>In a single <code>UpdateInstance</code> request, you can perform only one of the following operations:</p> <ul> <li> <p>Update the encryption configuration of the instance by specifying <code>EncryptionConfiguration</code>.</p> </li> <li> <p>Enable permission sets for the instance by specifying <code>PermissionSetsEnabled</code>.</p> </li> </ul> <p>A request that specifies both <code>EncryptionConfiguration</code> and <code>PermissionSetsEnabled</code> returns a <code>ValidationException</code>. To perform both operations, call <code>UpdateInstance</code> separately for each. The two calls can be made in parallel.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -40,6 +40,7 @@ declare const UpdateInstanceCommand_base: {
40
40
  * KeyType: "AWS_OWNED_KMS_KEY" || "CUSTOMER_MANAGED_KEY", // required
41
41
  * KmsKeyArn: "STRING_VALUE",
42
42
  * },
43
+ * PermissionSetsEnabled: true || false,
43
44
  * };
44
45
  * const command = new UpdateInstanceCommand(input);
45
46
  * const response = await client.send(command);
@@ -1826,6 +1826,11 @@ export interface DescribeInstanceResponse {
1826
1826
  * @public
1827
1827
  */
1828
1828
  EncryptionConfigurationDetails?: EncryptionConfigurationDetails | undefined;
1829
+ /**
1830
+ * <p>Indicates whether permission sets are enabled for this Identity Center instance.</p>
1831
+ * @public
1832
+ */
1833
+ PermissionSetsEnabled?: boolean | undefined;
1829
1834
  }
1830
1835
  /**
1831
1836
  * @public
@@ -3354,6 +3359,11 @@ export interface UpdateInstanceRequest {
3354
3359
  * @public
3355
3360
  */
3356
3361
  EncryptionConfiguration?: EncryptionConfiguration | undefined;
3362
+ /**
3363
+ * <p>Enables permission sets for this Identity Center instance. The only accepted value is <code>true </code>. After permission sets are enabled, they cannot be disabled.</p> <note> <p>You can't set <code>EncryptionConfiguration</code> and <code>PermissionSetsEnabled</code> in the same request. To configure both, make two separate <code>UpdateInstance</code> calls. These calls can be made in parallel.</p> </note>
3364
+ * @public
3365
+ */
3366
+ PermissionSetsEnabled?: boolean | undefined;
3357
3367
  }
3358
3368
  /**
3359
3369
  * @public
@@ -521,6 +521,7 @@ export interface DescribeInstanceResponse {
521
521
  Status?: InstanceStatus | undefined;
522
522
  StatusReason?: string | undefined;
523
523
  EncryptionConfigurationDetails?: EncryptionConfigurationDetails | undefined;
524
+ PermissionSetsEnabled?: boolean | undefined;
524
525
  }
525
526
  export interface DescribeInstanceAccessControlAttributeConfigurationRequest {
526
527
  InstanceArn: string | undefined;
@@ -907,6 +908,7 @@ export interface UpdateInstanceRequest {
907
908
  Name?: string | undefined;
908
909
  InstanceArn: string | undefined;
909
910
  EncryptionConfiguration?: EncryptionConfiguration | undefined;
911
+ PermissionSetsEnabled?: boolean | undefined;
910
912
  }
911
913
  export interface UpdateInstanceResponse {}
912
914
  export interface UpdateInstanceAccessControlAttributeConfigurationRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sso-admin",
3
- "version": "3.1101.0",
3
+ "version": "3.1103.0",
4
4
  "description": "AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sso-admin",
6
6
  "license": "Apache-2.0",
@@ -46,8 +46,8 @@
46
46
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/core": "^3.977.4",
50
- "@aws-sdk/credential-provider-node": "^3.972.76",
49
+ "@aws-sdk/core": "^3.977.6",
50
+ "@aws-sdk/credential-provider-node": "^3.972.78",
51
51
  "@aws-sdk/types": "^3.974.2",
52
52
  "@smithy/core": "^3.31.1",
53
53
  "@smithy/fetch-http-handler": "^5.6.13",