aws-sdk-ssoadmin 1.69.0 → 1.71.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssoadmin/client.rb +8 -1
- data/lib/aws-sdk-ssoadmin/client_api.rb +5 -0
- data/lib/aws-sdk-ssoadmin/types.rb +28 -1
- data/lib/aws-sdk-ssoadmin.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +4 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99cbcd406f61dcd7ca57df55610a363a6eda14c9d17bc8256d53a768479afe45
|
|
4
|
+
data.tar.gz: 48eb1db6c0db84d4f6339853be4f9f6891664c4ec8b0711c02dc28a934240da0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e12c410e4b5af7c416c218122431a6edcb42619af3e3532bdf7f06e45b15f3e8df45fabb4acd4176867d88dacc10733f4807349335ce7bfbaabd3f5017d784e
|
|
7
|
+
data.tar.gz: 2711293d9c02a23da92a3521d12fb2652250144e76c2e192489f69eab4cc55c6970a70f4450dded80960277a73211a7a24ca9573d6f156a958046eedd58b496c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.71.0 (2026-04-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add InstanceArn and IdentityStoreArn in the response of CreateApplication API and IdentityStoreArn in the response of DescribeApplication API
|
|
8
|
+
|
|
9
|
+
1.70.0 (2026-03-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.69.0 (2026-02-03)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.71.0
|
|
@@ -782,6 +782,8 @@ module Aws::SSOAdmin
|
|
|
782
782
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
783
783
|
#
|
|
784
784
|
# * {Types::CreateApplicationResponse#application_arn #application_arn} => String
|
|
785
|
+
# * {Types::CreateApplicationResponse#instance_arn #instance_arn} => String
|
|
786
|
+
# * {Types::CreateApplicationResponse#identity_store_arn #identity_store_arn} => String
|
|
785
787
|
#
|
|
786
788
|
# @example Request syntax with placeholder values
|
|
787
789
|
#
|
|
@@ -810,6 +812,8 @@ module Aws::SSOAdmin
|
|
|
810
812
|
# @example Response structure
|
|
811
813
|
#
|
|
812
814
|
# resp.application_arn #=> String
|
|
815
|
+
# resp.instance_arn #=> String
|
|
816
|
+
# resp.identity_store_arn #=> String
|
|
813
817
|
#
|
|
814
818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/CreateApplication AWS API Documentation
|
|
815
819
|
#
|
|
@@ -1636,6 +1640,7 @@ module Aws::SSOAdmin
|
|
|
1636
1640
|
# * {Types::DescribeApplicationResponse#name #name} => String
|
|
1637
1641
|
# * {Types::DescribeApplicationResponse#application_account #application_account} => String
|
|
1638
1642
|
# * {Types::DescribeApplicationResponse#instance_arn #instance_arn} => String
|
|
1643
|
+
# * {Types::DescribeApplicationResponse#identity_store_arn #identity_store_arn} => String
|
|
1639
1644
|
# * {Types::DescribeApplicationResponse#status #status} => String
|
|
1640
1645
|
# * {Types::DescribeApplicationResponse#portal_options #portal_options} => Types::PortalOptions
|
|
1641
1646
|
# * {Types::DescribeApplicationResponse#description #description} => String
|
|
@@ -1655,6 +1660,7 @@ module Aws::SSOAdmin
|
|
|
1655
1660
|
# resp.name #=> String
|
|
1656
1661
|
# resp.application_account #=> String
|
|
1657
1662
|
# resp.instance_arn #=> String
|
|
1663
|
+
# resp.identity_store_arn #=> String
|
|
1658
1664
|
# resp.status #=> String, one of "ENABLED", "DISABLED"
|
|
1659
1665
|
# resp.portal_options.sign_in_options.origin #=> String, one of "IDENTITY_CENTER", "APPLICATION"
|
|
1660
1666
|
# resp.portal_options.sign_in_options.application_url #=> String
|
|
@@ -3069,6 +3075,7 @@ module Aws::SSOAdmin
|
|
|
3069
3075
|
# resp.applications[0].name #=> String
|
|
3070
3076
|
# resp.applications[0].application_account #=> String
|
|
3071
3077
|
# resp.applications[0].instance_arn #=> String
|
|
3078
|
+
# resp.applications[0].identity_store_arn #=> String
|
|
3072
3079
|
# resp.applications[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
3073
3080
|
# resp.applications[0].portal_options.sign_in_options.origin #=> String, one of "IDENTITY_CENTER", "APPLICATION"
|
|
3074
3081
|
# resp.applications[0].portal_options.sign_in_options.application_url #=> String
|
|
@@ -4311,7 +4318,7 @@ module Aws::SSOAdmin
|
|
|
4311
4318
|
tracer: tracer
|
|
4312
4319
|
)
|
|
4313
4320
|
context[:gem_name] = 'aws-sdk-ssoadmin'
|
|
4314
|
-
context[:gem_version] = '1.
|
|
4321
|
+
context[:gem_version] = '1.71.0'
|
|
4315
4322
|
Seahorse::Client::Request.new(handlers, context)
|
|
4316
4323
|
end
|
|
4317
4324
|
|
|
@@ -158,6 +158,7 @@ module Aws::SSOAdmin
|
|
|
158
158
|
IamAuthenticationMethod = Shapes::StructureShape.new(name: 'IamAuthenticationMethod')
|
|
159
159
|
IconUrl = Shapes::StringShape.new(name: 'IconUrl')
|
|
160
160
|
Id = Shapes::StringShape.new(name: 'Id')
|
|
161
|
+
IdentityStoreArn = Shapes::StringShape.new(name: 'IdentityStoreArn')
|
|
161
162
|
InstanceAccessControlAttributeConfiguration = Shapes::StructureShape.new(name: 'InstanceAccessControlAttributeConfiguration')
|
|
162
163
|
InstanceAccessControlAttributeConfigurationStatus = Shapes::StringShape.new(name: 'InstanceAccessControlAttributeConfigurationStatus')
|
|
163
164
|
InstanceAccessControlAttributeConfigurationStatusReason = Shapes::StringShape.new(name: 'InstanceAccessControlAttributeConfigurationStatusReason')
|
|
@@ -392,6 +393,7 @@ module Aws::SSOAdmin
|
|
|
392
393
|
Application.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationNameType, location_name: "Name"))
|
|
393
394
|
Application.add_member(:application_account, Shapes::ShapeRef.new(shape: AccountId, location_name: "ApplicationAccount"))
|
|
394
395
|
Application.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, location_name: "InstanceArn"))
|
|
396
|
+
Application.add_member(:identity_store_arn, Shapes::ShapeRef.new(shape: IdentityStoreArn, location_name: "IdentityStoreArn"))
|
|
395
397
|
Application.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "Status"))
|
|
396
398
|
Application.add_member(:portal_options, Shapes::ShapeRef.new(shape: PortalOptions, location_name: "PortalOptions"))
|
|
397
399
|
Application.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
@@ -496,6 +498,8 @@ module Aws::SSOAdmin
|
|
|
496
498
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
|
497
499
|
|
|
498
500
|
CreateApplicationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
|
501
|
+
CreateApplicationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, location_name: "InstanceArn"))
|
|
502
|
+
CreateApplicationResponse.add_member(:identity_store_arn, Shapes::ShapeRef.new(shape: IdentityStoreArn, location_name: "IdentityStoreArn"))
|
|
499
503
|
CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
|
|
500
504
|
|
|
501
505
|
CreateInstanceAccessControlAttributeConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, required: true, location_name: "InstanceArn"))
|
|
@@ -649,6 +653,7 @@ module Aws::SSOAdmin
|
|
|
649
653
|
DescribeApplicationResponse.add_member(:name, Shapes::ShapeRef.new(shape: ApplicationNameType, location_name: "Name"))
|
|
650
654
|
DescribeApplicationResponse.add_member(:application_account, Shapes::ShapeRef.new(shape: AccountId, location_name: "ApplicationAccount"))
|
|
651
655
|
DescribeApplicationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: InstanceArn, location_name: "InstanceArn"))
|
|
656
|
+
DescribeApplicationResponse.add_member(:identity_store_arn, Shapes::ShapeRef.new(shape: IdentityStoreArn, location_name: "IdentityStoreArn"))
|
|
652
657
|
DescribeApplicationResponse.add_member(:status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "Status"))
|
|
653
658
|
DescribeApplicationResponse.add_member(:portal_options, Shapes::ShapeRef.new(shape: PortalOptions, location_name: "PortalOptions"))
|
|
654
659
|
DescribeApplicationResponse.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
@@ -302,6 +302,11 @@ module Aws::SSOAdmin
|
|
|
302
302
|
# with this application.
|
|
303
303
|
# @return [String]
|
|
304
304
|
#
|
|
305
|
+
# @!attribute [rw] identity_store_arn
|
|
306
|
+
# The ARN of the identity store that is connected to the instance of
|
|
307
|
+
# IAM Identity Center.
|
|
308
|
+
# @return [String]
|
|
309
|
+
#
|
|
305
310
|
# @!attribute [rw] status
|
|
306
311
|
# The current status of the application in this instance of IAM
|
|
307
312
|
# Identity Center.
|
|
@@ -333,6 +338,7 @@ module Aws::SSOAdmin
|
|
|
333
338
|
:name,
|
|
334
339
|
:application_account,
|
|
335
340
|
:instance_arn,
|
|
341
|
+
:identity_store_arn,
|
|
336
342
|
:status,
|
|
337
343
|
:portal_options,
|
|
338
344
|
:description,
|
|
@@ -785,10 +791,25 @@ module Aws::SSOAdmin
|
|
|
785
791
|
# Specifies the ARN of the application.
|
|
786
792
|
# @return [String]
|
|
787
793
|
#
|
|
794
|
+
# @!attribute [rw] instance_arn
|
|
795
|
+
# The ARN of the instance of IAM Identity Center under which the
|
|
796
|
+
# operation will run. For more information about ARNs, see [Amazon
|
|
797
|
+
# Resource Names (ARNs) and Amazon Web Services Service
|
|
798
|
+
# Namespaces](/general/latest/gr/aws-arns-and-namespaces.html) in the
|
|
799
|
+
# *Amazon Web Services General Reference*.
|
|
800
|
+
# @return [String]
|
|
801
|
+
#
|
|
802
|
+
# @!attribute [rw] identity_store_arn
|
|
803
|
+
# The ARN of the identity store that is connected to the instance of
|
|
804
|
+
# IAM Identity Center.
|
|
805
|
+
# @return [String]
|
|
806
|
+
#
|
|
788
807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/CreateApplicationResponse AWS API Documentation
|
|
789
808
|
#
|
|
790
809
|
class CreateApplicationResponse < Struct.new(
|
|
791
|
-
:application_arn
|
|
810
|
+
:application_arn,
|
|
811
|
+
:instance_arn,
|
|
812
|
+
:identity_store_arn)
|
|
792
813
|
SENSITIVE = []
|
|
793
814
|
include Aws::Structure
|
|
794
815
|
end
|
|
@@ -1541,6 +1562,11 @@ module Aws::SSOAdmin
|
|
|
1541
1562
|
# *Amazon Web Services General Reference*.
|
|
1542
1563
|
# @return [String]
|
|
1543
1564
|
#
|
|
1565
|
+
# @!attribute [rw] identity_store_arn
|
|
1566
|
+
# The ARN of the identity store that is connected to the instance of
|
|
1567
|
+
# IAM Identity Center.
|
|
1568
|
+
# @return [String]
|
|
1569
|
+
#
|
|
1544
1570
|
# @!attribute [rw] status
|
|
1545
1571
|
# Specifies whether the application is enabled or disabled.
|
|
1546
1572
|
# @return [String]
|
|
@@ -1571,6 +1597,7 @@ module Aws::SSOAdmin
|
|
|
1571
1597
|
:name,
|
|
1572
1598
|
:application_account,
|
|
1573
1599
|
:instance_arn,
|
|
1600
|
+
:identity_store_arn,
|
|
1574
1601
|
:status,
|
|
1575
1602
|
:portal_options,
|
|
1576
1603
|
:description,
|
data/lib/aws-sdk-ssoadmin.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -133,6 +133,8 @@ module Aws
|
|
|
133
133
|
interface _CreateApplicationResponseSuccess
|
|
134
134
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
|
|
135
135
|
def application_arn: () -> ::String
|
|
136
|
+
def instance_arn: () -> ::String
|
|
137
|
+
def identity_store_arn: () -> ::String
|
|
136
138
|
end
|
|
137
139
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SSOAdmin/Client.html#create_application-instance_method
|
|
138
140
|
def create_application: (
|
|
@@ -394,6 +396,7 @@ module Aws
|
|
|
394
396
|
def name: () -> ::String
|
|
395
397
|
def application_account: () -> ::String
|
|
396
398
|
def instance_arn: () -> ::String
|
|
399
|
+
def identity_store_arn: () -> ::String
|
|
397
400
|
def status: () -> ("ENABLED" | "DISABLED")
|
|
398
401
|
def portal_options: () -> Types::PortalOptions
|
|
399
402
|
def description: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -78,6 +78,7 @@ module Aws::SSOAdmin
|
|
|
78
78
|
attr_accessor name: ::String
|
|
79
79
|
attr_accessor application_account: ::String
|
|
80
80
|
attr_accessor instance_arn: ::String
|
|
81
|
+
attr_accessor identity_store_arn: ::String
|
|
81
82
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
82
83
|
attr_accessor portal_options: Types::PortalOptions
|
|
83
84
|
attr_accessor description: ::String
|
|
@@ -206,6 +207,8 @@ module Aws::SSOAdmin
|
|
|
206
207
|
|
|
207
208
|
class CreateApplicationResponse
|
|
208
209
|
attr_accessor application_arn: ::String
|
|
210
|
+
attr_accessor instance_arn: ::String
|
|
211
|
+
attr_accessor identity_store_arn: ::String
|
|
209
212
|
SENSITIVE: []
|
|
210
213
|
end
|
|
211
214
|
|
|
@@ -428,6 +431,7 @@ module Aws::SSOAdmin
|
|
|
428
431
|
attr_accessor name: ::String
|
|
429
432
|
attr_accessor application_account: ::String
|
|
430
433
|
attr_accessor instance_arn: ::String
|
|
434
|
+
attr_accessor identity_store_arn: ::String
|
|
431
435
|
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
432
436
|
attr_accessor portal_options: Types::PortalOptions
|
|
433
437
|
attr_accessor description: ::String
|
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.
|
|
4
|
+
version: 1.71.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.244.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.244.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|