aws-sdk-verifiedpermissions 1.23.0 → 1.24.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-verifiedpermissions/client.rb +83 -36
- data/lib/aws-sdk-verifiedpermissions/client_api.rb +138 -0
- data/lib/aws-sdk-verifiedpermissions/types.rb +828 -28
- data/lib/aws-sdk-verifiedpermissions.rb +1 -1
- data/sig/client.rbs +36 -0
- data/sig/types.rbs +173 -1
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -182,6 +182,24 @@ module Aws
|
|
182
182
|
group_configuration: {
|
183
183
|
group_entity_type: ::String
|
184
184
|
}?
|
185
|
+
}?,
|
186
|
+
open_id_connect_configuration: {
|
187
|
+
issuer: ::String,
|
188
|
+
entity_id_prefix: ::String?,
|
189
|
+
group_configuration: {
|
190
|
+
group_claim: ::String,
|
191
|
+
group_entity_type: ::String
|
192
|
+
}?,
|
193
|
+
token_selection: {
|
194
|
+
access_token_only: {
|
195
|
+
principal_id_claim: ::String?,
|
196
|
+
audiences: Array[::String]?
|
197
|
+
}?,
|
198
|
+
identity_token_only: {
|
199
|
+
principal_id_claim: ::String?,
|
200
|
+
client_ids: Array[::String]?
|
201
|
+
}?
|
202
|
+
}
|
185
203
|
}?
|
186
204
|
},
|
187
205
|
?principal_entity_type: ::String
|
@@ -573,6 +591,24 @@ module Aws
|
|
573
591
|
group_configuration: {
|
574
592
|
group_entity_type: ::String
|
575
593
|
}?
|
594
|
+
}?,
|
595
|
+
open_id_connect_configuration: {
|
596
|
+
issuer: ::String,
|
597
|
+
entity_id_prefix: ::String?,
|
598
|
+
group_configuration: {
|
599
|
+
group_claim: ::String,
|
600
|
+
group_entity_type: ::String
|
601
|
+
}?,
|
602
|
+
token_selection: {
|
603
|
+
access_token_only: {
|
604
|
+
principal_id_claim: ::String?,
|
605
|
+
audiences: Array[::String]?
|
606
|
+
}?,
|
607
|
+
identity_token_only: {
|
608
|
+
principal_id_claim: ::String?,
|
609
|
+
client_ids: Array[::String]?
|
610
|
+
}?
|
611
|
+
}
|
576
612
|
}?
|
577
613
|
},
|
578
614
|
?principal_entity_type: ::String
|
data/sig/types.rbs
CHANGED
@@ -143,33 +143,42 @@ module Aws::VerifiedPermissions
|
|
143
143
|
|
144
144
|
class Configuration
|
145
145
|
attr_accessor cognito_user_pool_configuration: Types::CognitoUserPoolConfiguration
|
146
|
+
attr_accessor open_id_connect_configuration: Types::OpenIdConnectConfiguration
|
146
147
|
attr_accessor unknown: untyped
|
147
148
|
SENSITIVE: []
|
148
149
|
|
149
150
|
class CognitoUserPoolConfiguration < Configuration
|
150
151
|
end
|
152
|
+
class OpenIdConnectConfiguration < Configuration
|
153
|
+
end
|
151
154
|
class Unknown < Configuration
|
152
155
|
end
|
153
156
|
end
|
154
157
|
|
155
158
|
class ConfigurationDetail
|
156
159
|
attr_accessor cognito_user_pool_configuration: Types::CognitoUserPoolConfigurationDetail
|
160
|
+
attr_accessor open_id_connect_configuration: Types::OpenIdConnectConfigurationDetail
|
157
161
|
attr_accessor unknown: untyped
|
158
162
|
SENSITIVE: []
|
159
163
|
|
160
164
|
class CognitoUserPoolConfiguration < ConfigurationDetail
|
161
165
|
end
|
166
|
+
class OpenIdConnectConfiguration < ConfigurationDetail
|
167
|
+
end
|
162
168
|
class Unknown < ConfigurationDetail
|
163
169
|
end
|
164
170
|
end
|
165
171
|
|
166
172
|
class ConfigurationItem
|
167
173
|
attr_accessor cognito_user_pool_configuration: Types::CognitoUserPoolConfigurationItem
|
174
|
+
attr_accessor open_id_connect_configuration: Types::OpenIdConnectConfigurationItem
|
168
175
|
attr_accessor unknown: untyped
|
169
176
|
SENSITIVE: []
|
170
177
|
|
171
178
|
class CognitoUserPoolConfiguration < ConfigurationItem
|
172
179
|
end
|
180
|
+
class OpenIdConnectConfiguration < ConfigurationItem
|
181
|
+
end
|
173
182
|
class Unknown < ConfigurationItem
|
174
183
|
end
|
175
184
|
end
|
@@ -183,7 +192,7 @@ module Aws::VerifiedPermissions
|
|
183
192
|
class ContextDefinition
|
184
193
|
attr_accessor context_map: ::Hash[::String, Types::AttributeValue]
|
185
194
|
attr_accessor unknown: untyped
|
186
|
-
SENSITIVE: []
|
195
|
+
SENSITIVE: [:context_map]
|
187
196
|
|
188
197
|
class ContextMap < ContextDefinition
|
189
198
|
end
|
@@ -549,6 +558,126 @@ module Aws::VerifiedPermissions
|
|
549
558
|
SENSITIVE: []
|
550
559
|
end
|
551
560
|
|
561
|
+
class OpenIdConnectAccessTokenConfiguration
|
562
|
+
attr_accessor principal_id_claim: ::String
|
563
|
+
attr_accessor audiences: ::Array[::String]
|
564
|
+
SENSITIVE: [:principal_id_claim]
|
565
|
+
end
|
566
|
+
|
567
|
+
class OpenIdConnectAccessTokenConfigurationDetail
|
568
|
+
attr_accessor principal_id_claim: ::String
|
569
|
+
attr_accessor audiences: ::Array[::String]
|
570
|
+
SENSITIVE: [:principal_id_claim]
|
571
|
+
end
|
572
|
+
|
573
|
+
class OpenIdConnectAccessTokenConfigurationItem
|
574
|
+
attr_accessor principal_id_claim: ::String
|
575
|
+
attr_accessor audiences: ::Array[::String]
|
576
|
+
SENSITIVE: [:principal_id_claim]
|
577
|
+
end
|
578
|
+
|
579
|
+
class OpenIdConnectConfiguration
|
580
|
+
attr_accessor issuer: ::String
|
581
|
+
attr_accessor entity_id_prefix: ::String
|
582
|
+
attr_accessor group_configuration: Types::OpenIdConnectGroupConfiguration
|
583
|
+
attr_accessor token_selection: Types::OpenIdConnectTokenSelection
|
584
|
+
SENSITIVE: [:entity_id_prefix]
|
585
|
+
end
|
586
|
+
|
587
|
+
class OpenIdConnectConfigurationDetail
|
588
|
+
attr_accessor issuer: ::String
|
589
|
+
attr_accessor entity_id_prefix: ::String
|
590
|
+
attr_accessor group_configuration: Types::OpenIdConnectGroupConfigurationDetail
|
591
|
+
attr_accessor token_selection: Types::OpenIdConnectTokenSelectionDetail
|
592
|
+
SENSITIVE: [:entity_id_prefix]
|
593
|
+
end
|
594
|
+
|
595
|
+
class OpenIdConnectConfigurationItem
|
596
|
+
attr_accessor issuer: ::String
|
597
|
+
attr_accessor entity_id_prefix: ::String
|
598
|
+
attr_accessor group_configuration: Types::OpenIdConnectGroupConfigurationItem
|
599
|
+
attr_accessor token_selection: Types::OpenIdConnectTokenSelectionItem
|
600
|
+
SENSITIVE: [:entity_id_prefix]
|
601
|
+
end
|
602
|
+
|
603
|
+
class OpenIdConnectGroupConfiguration
|
604
|
+
attr_accessor group_claim: ::String
|
605
|
+
attr_accessor group_entity_type: ::String
|
606
|
+
SENSITIVE: [:group_claim, :group_entity_type]
|
607
|
+
end
|
608
|
+
|
609
|
+
class OpenIdConnectGroupConfigurationDetail
|
610
|
+
attr_accessor group_claim: ::String
|
611
|
+
attr_accessor group_entity_type: ::String
|
612
|
+
SENSITIVE: [:group_claim, :group_entity_type]
|
613
|
+
end
|
614
|
+
|
615
|
+
class OpenIdConnectGroupConfigurationItem
|
616
|
+
attr_accessor group_claim: ::String
|
617
|
+
attr_accessor group_entity_type: ::String
|
618
|
+
SENSITIVE: [:group_claim, :group_entity_type]
|
619
|
+
end
|
620
|
+
|
621
|
+
class OpenIdConnectIdentityTokenConfiguration
|
622
|
+
attr_accessor principal_id_claim: ::String
|
623
|
+
attr_accessor client_ids: ::Array[::String]
|
624
|
+
SENSITIVE: [:principal_id_claim]
|
625
|
+
end
|
626
|
+
|
627
|
+
class OpenIdConnectIdentityTokenConfigurationDetail
|
628
|
+
attr_accessor principal_id_claim: ::String
|
629
|
+
attr_accessor client_ids: ::Array[::String]
|
630
|
+
SENSITIVE: [:principal_id_claim]
|
631
|
+
end
|
632
|
+
|
633
|
+
class OpenIdConnectIdentityTokenConfigurationItem
|
634
|
+
attr_accessor principal_id_claim: ::String
|
635
|
+
attr_accessor client_ids: ::Array[::String]
|
636
|
+
SENSITIVE: [:principal_id_claim]
|
637
|
+
end
|
638
|
+
|
639
|
+
class OpenIdConnectTokenSelection
|
640
|
+
attr_accessor access_token_only: Types::OpenIdConnectAccessTokenConfiguration
|
641
|
+
attr_accessor identity_token_only: Types::OpenIdConnectIdentityTokenConfiguration
|
642
|
+
attr_accessor unknown: untyped
|
643
|
+
SENSITIVE: []
|
644
|
+
|
645
|
+
class AccessTokenOnly < OpenIdConnectTokenSelection
|
646
|
+
end
|
647
|
+
class IdentityTokenOnly < OpenIdConnectTokenSelection
|
648
|
+
end
|
649
|
+
class Unknown < OpenIdConnectTokenSelection
|
650
|
+
end
|
651
|
+
end
|
652
|
+
|
653
|
+
class OpenIdConnectTokenSelectionDetail
|
654
|
+
attr_accessor access_token_only: Types::OpenIdConnectAccessTokenConfigurationDetail
|
655
|
+
attr_accessor identity_token_only: Types::OpenIdConnectIdentityTokenConfigurationDetail
|
656
|
+
attr_accessor unknown: untyped
|
657
|
+
SENSITIVE: []
|
658
|
+
|
659
|
+
class AccessTokenOnly < OpenIdConnectTokenSelectionDetail
|
660
|
+
end
|
661
|
+
class IdentityTokenOnly < OpenIdConnectTokenSelectionDetail
|
662
|
+
end
|
663
|
+
class Unknown < OpenIdConnectTokenSelectionDetail
|
664
|
+
end
|
665
|
+
end
|
666
|
+
|
667
|
+
class OpenIdConnectTokenSelectionItem
|
668
|
+
attr_accessor access_token_only: Types::OpenIdConnectAccessTokenConfigurationItem
|
669
|
+
attr_accessor identity_token_only: Types::OpenIdConnectIdentityTokenConfigurationItem
|
670
|
+
attr_accessor unknown: untyped
|
671
|
+
SENSITIVE: []
|
672
|
+
|
673
|
+
class AccessTokenOnly < OpenIdConnectTokenSelectionItem
|
674
|
+
end
|
675
|
+
class IdentityTokenOnly < OpenIdConnectTokenSelectionItem
|
676
|
+
end
|
677
|
+
class Unknown < OpenIdConnectTokenSelectionItem
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
552
681
|
class PolicyDefinition
|
553
682
|
attr_accessor static: Types::StaticPolicyDefinition
|
554
683
|
attr_accessor template_linked: Types::TemplateLinkedPolicyDefinition
|
@@ -737,11 +866,14 @@ module Aws::VerifiedPermissions
|
|
737
866
|
|
738
867
|
class UpdateConfiguration
|
739
868
|
attr_accessor cognito_user_pool_configuration: Types::UpdateCognitoUserPoolConfiguration
|
869
|
+
attr_accessor open_id_connect_configuration: Types::UpdateOpenIdConnectConfiguration
|
740
870
|
attr_accessor unknown: untyped
|
741
871
|
SENSITIVE: []
|
742
872
|
|
743
873
|
class CognitoUserPoolConfiguration < UpdateConfiguration
|
744
874
|
end
|
875
|
+
class OpenIdConnectConfiguration < UpdateConfiguration
|
876
|
+
end
|
745
877
|
class Unknown < UpdateConfiguration
|
746
878
|
end
|
747
879
|
end
|
@@ -762,6 +894,46 @@ module Aws::VerifiedPermissions
|
|
762
894
|
SENSITIVE: []
|
763
895
|
end
|
764
896
|
|
897
|
+
class UpdateOpenIdConnectAccessTokenConfiguration
|
898
|
+
attr_accessor principal_id_claim: ::String
|
899
|
+
attr_accessor audiences: ::Array[::String]
|
900
|
+
SENSITIVE: [:principal_id_claim]
|
901
|
+
end
|
902
|
+
|
903
|
+
class UpdateOpenIdConnectConfiguration
|
904
|
+
attr_accessor issuer: ::String
|
905
|
+
attr_accessor entity_id_prefix: ::String
|
906
|
+
attr_accessor group_configuration: Types::UpdateOpenIdConnectGroupConfiguration
|
907
|
+
attr_accessor token_selection: Types::UpdateOpenIdConnectTokenSelection
|
908
|
+
SENSITIVE: [:entity_id_prefix]
|
909
|
+
end
|
910
|
+
|
911
|
+
class UpdateOpenIdConnectGroupConfiguration
|
912
|
+
attr_accessor group_claim: ::String
|
913
|
+
attr_accessor group_entity_type: ::String
|
914
|
+
SENSITIVE: [:group_claim, :group_entity_type]
|
915
|
+
end
|
916
|
+
|
917
|
+
class UpdateOpenIdConnectIdentityTokenConfiguration
|
918
|
+
attr_accessor principal_id_claim: ::String
|
919
|
+
attr_accessor client_ids: ::Array[::String]
|
920
|
+
SENSITIVE: [:principal_id_claim]
|
921
|
+
end
|
922
|
+
|
923
|
+
class UpdateOpenIdConnectTokenSelection
|
924
|
+
attr_accessor access_token_only: Types::UpdateOpenIdConnectAccessTokenConfiguration
|
925
|
+
attr_accessor identity_token_only: Types::UpdateOpenIdConnectIdentityTokenConfiguration
|
926
|
+
attr_accessor unknown: untyped
|
927
|
+
SENSITIVE: []
|
928
|
+
|
929
|
+
class AccessTokenOnly < UpdateOpenIdConnectTokenSelection
|
930
|
+
end
|
931
|
+
class IdentityTokenOnly < UpdateOpenIdConnectTokenSelection
|
932
|
+
end
|
933
|
+
class Unknown < UpdateOpenIdConnectTokenSelection
|
934
|
+
end
|
935
|
+
end
|
936
|
+
|
765
937
|
class UpdatePolicyDefinition
|
766
938
|
attr_accessor static: Types::UpdateStaticPolicyDefinition
|
767
939
|
attr_accessor unknown: untyped
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-verifiedpermissions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|