aws-sdk-ssoadmin 1.76.0 → 1.77.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: 2ae29eca89610a354664eb518825485fed4591167c00d3c7000d35c3fbc1a4b0
4
- data.tar.gz: 8b1a3aea41d549b8e5221802a44a508e875382b0c5a9fa270335a882bd04555c
3
+ metadata.gz: a2c194d43f734d77b128f699846b576873177a06873726780d1436fadbcc5ffa
4
+ data.tar.gz: 2e3c9b936ea67baa3c3227d2c5d6a13edf3e2f4d70c6365dacc9ce6ccddeff82
5
5
  SHA512:
6
- metadata.gz: 0c25f480043fa6532f7a85b309dace3f1d96bf2b180d542c5145765cb0562b41dcfa10175185ce8d8f5b3880e2928d349d1e9e6dba1b7e20ac032dbb508cf793
7
- data.tar.gz: 3bf1ad68c035bee67f0fc8022f71bef2d5ce98a6e9eda4c7c46e5b43ecdaf2e6b0d8a8aa5131aaf1d01efc4955a016ba77621154cd09cce207b93d8b8c21b66f
6
+ metadata.gz: 3166e48ad867de106aa1a17a0e8e374d82263c9f683991db6684a9735841c145f31fc9c9d2be89f223d521709a5814f0513729136284499337ae74791f72df00
7
+ data.tar.gz: e8a5669aa98351ca768399d0da2b2396f9dbc5133147f1e7c60619eb9a0984f03e0d3da61ed106fbb8918a677ac7acb647aea140a4696ea17b0191b9868ab28d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.77.0 (2026-08-04)
5
+ ------------------
6
+
7
+ * Feature - AWS IAM Identity Center now lets you create organization-level instances without enabling multi-account permissions. You can enable multi-account permissions during instance creation or later via console or API, which then provisions the necessary service-linked roles.
8
+
4
9
  1.76.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.77.0
@@ -1800,6 +1800,7 @@ module Aws::SSOAdmin
1800
1800
  # * {Types::DescribeInstanceResponse#status #status} => String
1801
1801
  # * {Types::DescribeInstanceResponse#status_reason #status_reason} => String
1802
1802
  # * {Types::DescribeInstanceResponse#encryption_configuration_details #encryption_configuration_details} => Types::EncryptionConfigurationDetails
1803
+ # * {Types::DescribeInstanceResponse#permission_sets_enabled #permission_sets_enabled} => Boolean
1803
1804
  #
1804
1805
  # @example Request syntax with placeholder values
1805
1806
  #
@@ -1820,6 +1821,7 @@ module Aws::SSOAdmin
1820
1821
  # resp.encryption_configuration_details.kms_key_arn #=> String
1821
1822
  # resp.encryption_configuration_details.encryption_status #=> String, one of "UPDATING", "ENABLED", "UPDATE_FAILED"
1822
1823
  # resp.encryption_configuration_details.encryption_status_reason #=> String
1824
+ # resp.permission_sets_enabled #=> Boolean
1823
1825
  #
1824
1826
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/DescribeInstance AWS API Documentation
1825
1827
  #
@@ -4129,6 +4131,20 @@ module Aws::SSOAdmin
4129
4131
  # Update the details for the instance of IAM Identity Center that is
4130
4132
  # owned by the Amazon Web Services account.
4131
4133
  #
4134
+ # In a single `UpdateInstance` request, you can perform only one of the
4135
+ # following operations:
4136
+ #
4137
+ # * Update the encryption configuration of the instance by specifying
4138
+ # `EncryptionConfiguration`.
4139
+ #
4140
+ # * Enable permission sets for the instance by specifying
4141
+ # `PermissionSetsEnabled`.
4142
+ #
4143
+ # A request that specifies both `EncryptionConfiguration` and
4144
+ # `PermissionSetsEnabled` returns a `ValidationException`. To perform
4145
+ # both operations, call `UpdateInstance` separately for each. The two
4146
+ # calls can be made in parallel.
4147
+ #
4132
4148
  # @option params [String] :name
4133
4149
  # Updates the instance name.
4134
4150
  #
@@ -4144,6 +4160,17 @@ module Aws::SSOAdmin
4144
4160
  # instance. You can use this to configure customer managed KMS keys or
4145
4161
  # Amazon Web Services owned KMS keys for encrypting your instance data.
4146
4162
  #
4163
+ # @option params [Boolean] :permission_sets_enabled
4164
+ # Enables permission sets for this Identity Center instance. The only
4165
+ # accepted value is `true `. After permission sets are enabled, they
4166
+ # cannot be disabled.
4167
+ #
4168
+ # <note markdown="1"> You can't set `EncryptionConfiguration` and `PermissionSetsEnabled`
4169
+ # in the same request. To configure both, make two separate
4170
+ # `UpdateInstance` calls. These calls can be made in parallel.
4171
+ #
4172
+ # </note>
4173
+ #
4147
4174
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4148
4175
  #
4149
4176
  # @example Request syntax with placeholder values
@@ -4155,6 +4182,7 @@ module Aws::SSOAdmin
4155
4182
  # key_type: "AWS_OWNED_KMS_KEY", # required, accepts AWS_OWNED_KMS_KEY, CUSTOMER_MANAGED_KEY
4156
4183
  # kms_key_arn: "KmsKeyArn",
4157
4184
  # },
4185
+ # permission_sets_enabled: false,
4158
4186
  # })
4159
4187
  #
4160
4188
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/UpdateInstance AWS API Documentation
@@ -4322,7 +4350,7 @@ module Aws::SSOAdmin
4322
4350
  tracer: tracer
4323
4351
  )
4324
4352
  context[:gem_name] = 'aws-sdk-ssoadmin'
4325
- context[:gem_version] = '1.76.0'
4353
+ context[:gem_version] = '1.77.0'
4326
4354
  Seahorse::Client::Request.new(handlers, context)
4327
4355
  end
4328
4356
 
@@ -63,6 +63,7 @@ module Aws::SSOAdmin
63
63
  AuthorizationCodeGrant = Shapes::StructureShape.new(name: 'AuthorizationCodeGrant')
64
64
  AuthorizedTokenIssuer = Shapes::StructureShape.new(name: 'AuthorizedTokenIssuer')
65
65
  AuthorizedTokenIssuers = Shapes::ListShape.new(name: 'AuthorizedTokenIssuers')
66
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
66
67
  ClaimAttributePath = Shapes::StringShape.new(name: 'ClaimAttributePath')
67
68
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
68
69
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
@@ -680,6 +681,7 @@ module Aws::SSOAdmin
680
681
  DescribeInstanceResponse.add_member(:status, Shapes::ShapeRef.new(shape: InstanceStatus, location_name: "Status"))
681
682
  DescribeInstanceResponse.add_member(:status_reason, Shapes::ShapeRef.new(shape: Reason, location_name: "StatusReason"))
682
683
  DescribeInstanceResponse.add_member(:encryption_configuration_details, Shapes::ShapeRef.new(shape: EncryptionConfigurationDetails, location_name: "EncryptionConfigurationDetails"))
684
+ DescribeInstanceResponse.add_member(:permission_sets_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PermissionSetsEnabled"))
683
685
  DescribeInstanceResponse.struct_class = Types::DescribeInstanceResponse
684
686
 
685
687
  DescribePermissionSetProvisioningStatusRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, required: true, location_name: "InstanceArn"))
@@ -1263,6 +1265,7 @@ module Aws::SSOAdmin
1263
1265
  UpdateInstanceRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameType, location_name: "Name"))
1264
1266
  UpdateInstanceRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, required: true, location_name: "InstanceArn"))
1265
1267
  UpdateInstanceRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
1268
+ UpdateInstanceRequest.add_member(:permission_sets_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PermissionSetsEnabled"))
1266
1269
  UpdateInstanceRequest.struct_class = Types::UpdateInstanceRequest
1267
1270
 
1268
1271
  UpdateInstanceResponse.struct_class = Types::UpdateInstanceResponse
@@ -1703,6 +1703,11 @@ module Aws::SSOAdmin
1703
1703
  # ARN.
1704
1704
  # @return [Types::EncryptionConfigurationDetails]
1705
1705
  #
1706
+ # @!attribute [rw] permission_sets_enabled
1707
+ # Indicates whether permission sets are enabled for this Identity
1708
+ # Center instance.
1709
+ # @return [Boolean]
1710
+ #
1706
1711
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/DescribeInstanceResponse AWS API Documentation
1707
1712
  #
1708
1713
  class DescribeInstanceResponse < Struct.new(
@@ -1713,7 +1718,8 @@ module Aws::SSOAdmin
1713
1718
  :created_date,
1714
1719
  :status,
1715
1720
  :status_reason,
1716
- :encryption_configuration_details)
1721
+ :encryption_configuration_details,
1722
+ :permission_sets_enabled)
1717
1723
  SENSITIVE = []
1718
1724
  include Aws::Structure
1719
1725
  end
@@ -4603,12 +4609,25 @@ module Aws::SSOAdmin
4603
4609
  # data.
4604
4610
  # @return [Types::EncryptionConfiguration]
4605
4611
  #
4612
+ # @!attribute [rw] permission_sets_enabled
4613
+ # Enables permission sets for this Identity Center instance. The only
4614
+ # accepted value is `true `. After permission sets are enabled, they
4615
+ # cannot be disabled.
4616
+ #
4617
+ # <note markdown="1"> You can't set `EncryptionConfiguration` and `PermissionSetsEnabled`
4618
+ # in the same request. To configure both, make two separate
4619
+ # `UpdateInstance` calls. These calls can be made in parallel.
4620
+ #
4621
+ # </note>
4622
+ # @return [Boolean]
4623
+ #
4606
4624
  # @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/UpdateInstanceRequest AWS API Documentation
4607
4625
  #
4608
4626
  class UpdateInstanceRequest < Struct.new(
4609
4627
  :name,
4610
4628
  :instance_arn,
4611
- :encryption_configuration)
4629
+ :encryption_configuration,
4630
+ :permission_sets_enabled)
4612
4631
  SENSITIVE = []
4613
4632
  include Aws::Structure
4614
4633
  end
@@ -55,7 +55,7 @@ module Aws::SSOAdmin
55
55
  autoload :EndpointProvider, 'aws-sdk-ssoadmin/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ssoadmin/endpoints'
57
57
 
58
- GEM_VERSION = '1.76.0'
58
+ GEM_VERSION = '1.77.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -437,6 +437,7 @@ module Aws
437
437
  def status: () -> ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "ACTIVE")
438
438
  def status_reason: () -> ::String
439
439
  def encryption_configuration_details: () -> Types::EncryptionConfigurationDetails
440
+ def permission_sets_enabled: () -> bool
440
441
  end
441
442
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSOAdmin/Client.html#describe_instance-instance_method
442
443
  def describe_instance: (
@@ -1078,7 +1079,8 @@ module Aws
1078
1079
  ?encryption_configuration: {
1079
1080
  key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KEY"),
1080
1081
  kms_key_arn: ::String?
1081
- }
1082
+ },
1083
+ ?permission_sets_enabled: bool
1082
1084
  ) -> _UpdateInstanceResponseSuccess
1083
1085
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInstanceResponseSuccess
1084
1086
 
data/sig/types.rbs CHANGED
@@ -466,6 +466,7 @@ module Aws::SSOAdmin
466
466
  attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "ACTIVE")
467
467
  attr_accessor status_reason: ::String
468
468
  attr_accessor encryption_configuration_details: Types::EncryptionConfigurationDetails
469
+ attr_accessor permission_sets_enabled: bool
469
470
  SENSITIVE: []
470
471
  end
471
472
 
@@ -1278,6 +1279,7 @@ module Aws::SSOAdmin
1278
1279
  attr_accessor name: ::String
1279
1280
  attr_accessor instance_arn: ::String
1280
1281
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
1282
+ attr_accessor permission_sets_enabled: bool
1281
1283
  SENSITIVE: []
1282
1284
  end
1283
1285
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssoadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.76.0
4
+ version: 1.77.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services