aws-sdk-verifiedpermissions 1.6.0 → 1.8.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-verifiedpermissions/client.rb +112 -55
- data/lib/aws-sdk-verifiedpermissions/types.rb +84 -67
- data/lib/aws-sdk-verifiedpermissions.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5969cca15028a676bd7bdfed1564590b99d7c05322471f197a8cc30bdb289dd7
|
4
|
+
data.tar.gz: e83779ae1f2e209273b87bcefcd562354e4302162f3a9a9e8a857d4dff45056d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa5236b6cdae55a09f33ab528913399147ac4cc4744305d29609e59e99e85e8d57a682c45a19aefc61da3c4dff345b7dc3bd4af16ee7c9f6cd279b9edd7a69e9
|
7
|
+
data.tar.gz: 8eb78e288bdc7e75dac91ec337eff43300fb924ec6e132b23493e75afb09d595cebc28578fbb7bc5a122f1217a3cf1d3085de03ea9e1ff6fdef565ef49f5c6de
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2023-08-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.
|
8
|
+
|
9
|
+
1.7.0 (2023-07-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.6.0 (2023-07-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -216,6 +216,10 @@ module Aws::VerifiedPermissions
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
218
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
220
224
|
# The log formatter.
|
221
225
|
#
|
@@ -1222,17 +1226,36 @@ module Aws::VerifiedPermissions
|
|
1222
1226
|
|
1223
1227
|
# Makes an authorization decision about a service request described in
|
1224
1228
|
# the parameters. The principal in this request comes from an external
|
1225
|
-
# identity source
|
1229
|
+
# identity source in the form of an identity token formatted as a [JSON
|
1230
|
+
# web token (JWT)][1]. The information in the parameters can also define
|
1226
1231
|
# additional context that Verified Permissions can include in the
|
1227
1232
|
# evaluation. The request is evaluated against all matching policies in
|
1228
1233
|
# the specified policy store. The result of the decision is either
|
1229
1234
|
# `Allow` or `Deny`, along with a list of the policies that resulted in
|
1230
1235
|
# the decision.
|
1231
1236
|
#
|
1237
|
+
# If you specify the `identityToken` parameter, then this operation
|
1238
|
+
# derives the principal from that token. You must not also include that
|
1239
|
+
# principal in the `entities` parameter or the operation fails and
|
1240
|
+
# reports a conflict between the two entity sources.
|
1241
|
+
#
|
1242
|
+
# If you provide only an `accessToken`, then you can include the entity
|
1243
|
+
# as part of the `entities` parameter to provide additional attributes.
|
1244
|
+
#
|
1245
|
+
# At this time, Verified Permissions accepts tokens from only Amazon
|
1246
|
+
# Cognito.
|
1247
|
+
#
|
1248
|
+
# Verified Permissions validates each token that is specified in a
|
1249
|
+
# request by checking its expiration date and its signature.
|
1250
|
+
#
|
1232
1251
|
# If you delete a Amazon Cognito user pool or user, tokens from that
|
1233
1252
|
# deleted pool or that deleted user continue to be usable until they
|
1234
1253
|
# expire.
|
1235
1254
|
#
|
1255
|
+
#
|
1256
|
+
#
|
1257
|
+
# [1]: https://wikipedia.org/wiki/JSON_Web_Token
|
1258
|
+
#
|
1236
1259
|
# @option params [required, String] :policy_store_id
|
1237
1260
|
# Specifies the ID of the policy store. Policies in this policy store
|
1238
1261
|
# will be used to make an authorization decision for the input.
|
@@ -1241,13 +1264,13 @@ module Aws::VerifiedPermissions
|
|
1241
1264
|
# Specifies an identity token for the principal to be authorized. This
|
1242
1265
|
# token is provided to you by the identity provider (IdP) associated
|
1243
1266
|
# with the specified identity source. You must specify either an
|
1244
|
-
# `AccessToken` or an `IdentityToken`,
|
1267
|
+
# `AccessToken` or an `IdentityToken`, or both.
|
1245
1268
|
#
|
1246
1269
|
# @option params [String] :access_token
|
1247
1270
|
# Specifies an access token for the principal to be authorized. This
|
1248
1271
|
# token is provided to you by the identity provider (IdP) associated
|
1249
1272
|
# with the specified identity source. You must specify either an
|
1250
|
-
# `AccessToken
|
1273
|
+
# `AccessToken`, or an `IdentityToken`, or both.
|
1251
1274
|
#
|
1252
1275
|
# @option params [Types::ActionIdentifier] :action
|
1253
1276
|
# Specifies the requested action to be authorized. Is the specified
|
@@ -1263,13 +1286,18 @@ module Aws::VerifiedPermissions
|
|
1263
1286
|
# authorization decisions.
|
1264
1287
|
#
|
1265
1288
|
# @option params [Types::EntitiesDefinition] :entities
|
1266
|
-
# Specifies the list of resources and
|
1267
|
-
#
|
1268
|
-
# policies.
|
1289
|
+
# Specifies the list of resources and their associated attributes that
|
1290
|
+
# Verified Permissions can examine when evaluating the policies.
|
1269
1291
|
#
|
1270
|
-
# <note markdown="1"> You can include only
|
1271
|
-
#
|
1272
|
-
#
|
1292
|
+
# <note markdown="1"> You can include only resource and action entities in this parameter;
|
1293
|
+
# you can't include principals.
|
1294
|
+
#
|
1295
|
+
# * The `IsAuthorizedWithToken` operation takes principal attributes
|
1296
|
+
# from <b> <i>only</i> </b> the `identityToken` or `accessToken`
|
1297
|
+
# passed to the operation.
|
1298
|
+
#
|
1299
|
+
# * For action entities, you can include only their `Identifier` and
|
1300
|
+
# `EntityType`.
|
1273
1301
|
#
|
1274
1302
|
# </note>
|
1275
1303
|
#
|
@@ -1351,16 +1379,18 @@ module Aws::VerifiedPermissions
|
|
1351
1379
|
# response to request the next page of results.
|
1352
1380
|
#
|
1353
1381
|
# @option params [Integer] :max_results
|
1354
|
-
# Specifies the total number of results that you want included
|
1355
|
-
#
|
1356
|
-
#
|
1357
|
-
#
|
1358
|
-
#
|
1359
|
-
#
|
1360
|
-
#
|
1361
|
-
#
|
1362
|
-
#
|
1363
|
-
#
|
1382
|
+
# Specifies the total number of results that you want included in each
|
1383
|
+
# response. If additional items exist beyond the number you specify, the
|
1384
|
+
# `NextToken` response element is returned with a value (not null).
|
1385
|
+
# Include the specified value as the `NextToken` request parameter in
|
1386
|
+
# the next call to the operation to get the next set of results. Note
|
1387
|
+
# that the service might return fewer results than the maximum even when
|
1388
|
+
# there are more results available. You should check `NextToken` after
|
1389
|
+
# every operation to ensure that you receive all of the results.
|
1390
|
+
#
|
1391
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1392
|
+
# identity sources per response. You can specify a maximum of 200
|
1393
|
+
# identity sources per response.
|
1364
1394
|
#
|
1365
1395
|
# @option params [Array<Types::IdentitySourceFilter>] :filters
|
1366
1396
|
# Specifies characteristics of an identity source that you can use to
|
@@ -1424,16 +1454,18 @@ module Aws::VerifiedPermissions
|
|
1424
1454
|
# response to request the next page of results.
|
1425
1455
|
#
|
1426
1456
|
# @option params [Integer] :max_results
|
1427
|
-
# Specifies the total number of results that you want included
|
1428
|
-
#
|
1429
|
-
#
|
1430
|
-
#
|
1431
|
-
#
|
1432
|
-
#
|
1433
|
-
#
|
1434
|
-
#
|
1435
|
-
#
|
1436
|
-
#
|
1457
|
+
# Specifies the total number of results that you want included in each
|
1458
|
+
# response. If additional items exist beyond the number you specify, the
|
1459
|
+
# `NextToken` response element is returned with a value (not null).
|
1460
|
+
# Include the specified value as the `NextToken` request parameter in
|
1461
|
+
# the next call to the operation to get the next set of results. Note
|
1462
|
+
# that the service might return fewer results than the maximum even when
|
1463
|
+
# there are more results available. You should check `NextToken` after
|
1464
|
+
# every operation to ensure that you receive all of the results.
|
1465
|
+
#
|
1466
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1467
|
+
# policies per response. You can specify a maximum of 50 policies per
|
1468
|
+
# response.
|
1437
1469
|
#
|
1438
1470
|
# @option params [Types::PolicyFilter] :filter
|
1439
1471
|
# Specifies a filter that limits the response to only policies that
|
@@ -1513,16 +1545,18 @@ module Aws::VerifiedPermissions
|
|
1513
1545
|
# response to request the next page of results.
|
1514
1546
|
#
|
1515
1547
|
# @option params [Integer] :max_results
|
1516
|
-
# Specifies the total number of results that you want included
|
1517
|
-
#
|
1518
|
-
#
|
1519
|
-
#
|
1520
|
-
#
|
1521
|
-
#
|
1522
|
-
#
|
1523
|
-
#
|
1524
|
-
#
|
1525
|
-
#
|
1548
|
+
# Specifies the total number of results that you want included in each
|
1549
|
+
# response. If additional items exist beyond the number you specify, the
|
1550
|
+
# `NextToken` response element is returned with a value (not null).
|
1551
|
+
# Include the specified value as the `NextToken` request parameter in
|
1552
|
+
# the next call to the operation to get the next set of results. Note
|
1553
|
+
# that the service might return fewer results than the maximum even when
|
1554
|
+
# there are more results available. You should check `NextToken` after
|
1555
|
+
# every operation to ensure that you receive all of the results.
|
1556
|
+
#
|
1557
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1558
|
+
# policy stores per response. You can specify a maximum of 50 policy
|
1559
|
+
# stores per response.
|
1526
1560
|
#
|
1527
1561
|
# @return [Types::ListPolicyStoresOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1528
1562
|
#
|
@@ -1570,16 +1604,18 @@ module Aws::VerifiedPermissions
|
|
1570
1604
|
# response to request the next page of results.
|
1571
1605
|
#
|
1572
1606
|
# @option params [Integer] :max_results
|
1573
|
-
# Specifies the total number of results that you want included
|
1574
|
-
#
|
1575
|
-
#
|
1576
|
-
#
|
1577
|
-
#
|
1578
|
-
#
|
1579
|
-
#
|
1580
|
-
#
|
1581
|
-
#
|
1582
|
-
#
|
1607
|
+
# Specifies the total number of results that you want included in each
|
1608
|
+
# response. If additional items exist beyond the number you specify, the
|
1609
|
+
# `NextToken` response element is returned with a value (not null).
|
1610
|
+
# Include the specified value as the `NextToken` request parameter in
|
1611
|
+
# the next call to the operation to get the next set of results. Note
|
1612
|
+
# that the service might return fewer results than the maximum even when
|
1613
|
+
# there are more results available. You should check `NextToken` after
|
1614
|
+
# every operation to ensure that you receive all of the results.
|
1615
|
+
#
|
1616
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1617
|
+
# policy templates per response. You can specify a maximum of 50 policy
|
1618
|
+
# templates per response.
|
1583
1619
|
#
|
1584
1620
|
# @return [Types::ListPolicyTemplatesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1585
1621
|
#
|
@@ -1732,11 +1768,32 @@ module Aws::VerifiedPermissions
|
|
1732
1768
|
# template-linked policy, you must update the template instead, using
|
1733
1769
|
# [UpdatePolicyTemplate][2].
|
1734
1770
|
#
|
1735
|
-
# <note markdown="1"> If policy validation is enabled in the policy store, then updating a
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
#
|
1739
|
-
#
|
1771
|
+
# <note markdown="1"> * If policy validation is enabled in the policy store, then updating a
|
1772
|
+
# static policy causes Verified Permissions to validate the policy
|
1773
|
+
# against the schema in the policy store. If the updated static policy
|
1774
|
+
# doesn't pass validation, the operation fails and the update isn't
|
1775
|
+
# stored.
|
1776
|
+
#
|
1777
|
+
# * When you edit a static policy, You can change only certain elements
|
1778
|
+
# of a static policy:
|
1779
|
+
#
|
1780
|
+
# * The action referenced by the policy.
|
1781
|
+
#
|
1782
|
+
# * A condition clause, such as when and unless.
|
1783
|
+
#
|
1784
|
+
# You can't change these elements of a static policy:
|
1785
|
+
#
|
1786
|
+
# * Changing a policy from a static policy to a template-linked
|
1787
|
+
# policy.
|
1788
|
+
#
|
1789
|
+
# * Changing the effect of a static policy from permit or forbid.
|
1790
|
+
#
|
1791
|
+
# * The principal referenced by a static policy.
|
1792
|
+
#
|
1793
|
+
# * The resource referenced by a static policy.
|
1794
|
+
#
|
1795
|
+
# * To update a template-linked policy, you must update the template
|
1796
|
+
# instead.
|
1740
1797
|
#
|
1741
1798
|
# </note>
|
1742
1799
|
#
|
@@ -1947,7 +2004,7 @@ module Aws::VerifiedPermissions
|
|
1947
2004
|
params: params,
|
1948
2005
|
config: config)
|
1949
2006
|
context[:gem_name] = 'aws-sdk-verifiedpermissions'
|
1950
|
-
context[:gem_version] = '1.
|
2007
|
+
context[:gem_version] = '1.8.0'
|
1951
2008
|
Seahorse::Client::Request.new(handlers, context)
|
1952
2009
|
end
|
1953
2010
|
|
@@ -49,7 +49,7 @@ module Aws::VerifiedPermissions
|
|
49
49
|
class ActionIdentifier < Struct.new(
|
50
50
|
:action_type,
|
51
51
|
:action_id)
|
52
|
-
SENSITIVE = []
|
52
|
+
SENSITIVE = [:action_type, :action_id]
|
53
53
|
include Aws::Structure
|
54
54
|
end
|
55
55
|
|
@@ -141,7 +141,7 @@ module Aws::VerifiedPermissions
|
|
141
141
|
:set,
|
142
142
|
:record,
|
143
143
|
:unknown)
|
144
|
-
SENSITIVE = []
|
144
|
+
SENSITIVE = [:boolean, :long, :string]
|
145
145
|
include Aws::Structure
|
146
146
|
include Aws::Structure::Union
|
147
147
|
|
@@ -356,7 +356,7 @@ module Aws::VerifiedPermissions
|
|
356
356
|
:policy_store_id,
|
357
357
|
:configuration,
|
358
358
|
:principal_entity_type)
|
359
|
-
SENSITIVE = []
|
359
|
+
SENSITIVE = [:principal_entity_type]
|
360
360
|
include Aws::Structure
|
361
361
|
end
|
362
362
|
|
@@ -597,7 +597,7 @@ module Aws::VerifiedPermissions
|
|
597
597
|
:policy_store_id,
|
598
598
|
:description,
|
599
599
|
:statement)
|
600
|
-
SENSITIVE = []
|
600
|
+
SENSITIVE = [:description, :statement]
|
601
601
|
include Aws::Structure
|
602
602
|
end
|
603
603
|
|
@@ -804,7 +804,7 @@ module Aws::VerifiedPermissions
|
|
804
804
|
class EntityIdentifier < Struct.new(
|
805
805
|
:entity_type,
|
806
806
|
:entity_id)
|
807
|
-
SENSITIVE = []
|
807
|
+
SENSITIVE = [:entity_type, :entity_id]
|
808
808
|
include Aws::Structure
|
809
809
|
end
|
810
810
|
|
@@ -958,7 +958,7 @@ module Aws::VerifiedPermissions
|
|
958
958
|
:last_updated_date,
|
959
959
|
:policy_store_id,
|
960
960
|
:principal_entity_type)
|
961
|
-
SENSITIVE = []
|
961
|
+
SENSITIVE = [:principal_entity_type]
|
962
962
|
include Aws::Structure
|
963
963
|
end
|
964
964
|
|
@@ -1131,7 +1131,7 @@ module Aws::VerifiedPermissions
|
|
1131
1131
|
:statement,
|
1132
1132
|
:created_date,
|
1133
1133
|
:last_updated_date)
|
1134
|
-
SENSITIVE = []
|
1134
|
+
SENSITIVE = [:description, :statement]
|
1135
1135
|
include Aws::Structure
|
1136
1136
|
end
|
1137
1137
|
|
@@ -1170,7 +1170,7 @@ module Aws::VerifiedPermissions
|
|
1170
1170
|
:schema,
|
1171
1171
|
:created_date,
|
1172
1172
|
:last_updated_date)
|
1173
|
-
SENSITIVE = []
|
1173
|
+
SENSITIVE = [:schema]
|
1174
1174
|
include Aws::Structure
|
1175
1175
|
end
|
1176
1176
|
|
@@ -1245,7 +1245,7 @@ module Aws::VerifiedPermissions
|
|
1245
1245
|
#
|
1246
1246
|
class IdentitySourceFilter < Struct.new(
|
1247
1247
|
:principal_entity_type)
|
1248
|
-
SENSITIVE = []
|
1248
|
+
SENSITIVE = [:principal_entity_type]
|
1249
1249
|
include Aws::Structure
|
1250
1250
|
end
|
1251
1251
|
|
@@ -1294,7 +1294,7 @@ module Aws::VerifiedPermissions
|
|
1294
1294
|
:last_updated_date,
|
1295
1295
|
:policy_store_id,
|
1296
1296
|
:principal_entity_type)
|
1297
|
-
SENSITIVE = []
|
1297
|
+
SENSITIVE = [:principal_entity_type]
|
1298
1298
|
include Aws::Structure
|
1299
1299
|
end
|
1300
1300
|
|
@@ -1449,14 +1449,14 @@ module Aws::VerifiedPermissions
|
|
1449
1449
|
# Specifies an identity token for the principal to be authorized. This
|
1450
1450
|
# token is provided to you by the identity provider (IdP) associated
|
1451
1451
|
# with the specified identity source. You must specify either an
|
1452
|
-
# `AccessToken` or an `IdentityToken`,
|
1452
|
+
# `AccessToken` or an `IdentityToken`, or both.
|
1453
1453
|
# @return [String]
|
1454
1454
|
#
|
1455
1455
|
# @!attribute [rw] access_token
|
1456
1456
|
# Specifies an access token for the principal to be authorized. This
|
1457
1457
|
# token is provided to you by the identity provider (IdP) associated
|
1458
1458
|
# with the specified identity source. You must specify either an
|
1459
|
-
# `AccessToken
|
1459
|
+
# `AccessToken`, or an `IdentityToken`, or both.
|
1460
1460
|
# @return [String]
|
1461
1461
|
#
|
1462
1462
|
# @!attribute [rw] action
|
@@ -1477,13 +1477,18 @@ module Aws::VerifiedPermissions
|
|
1477
1477
|
# @return [Types::ContextDefinition]
|
1478
1478
|
#
|
1479
1479
|
# @!attribute [rw] entities
|
1480
|
-
# Specifies the list of resources and
|
1481
|
-
#
|
1482
|
-
# policies.
|
1480
|
+
# Specifies the list of resources and their associated attributes that
|
1481
|
+
# Verified Permissions can examine when evaluating the policies.
|
1483
1482
|
#
|
1484
|
-
# <note markdown="1"> You can include only
|
1485
|
-
#
|
1486
|
-
#
|
1483
|
+
# <note markdown="1"> You can include only resource and action entities in this parameter;
|
1484
|
+
# you can't include principals.
|
1485
|
+
#
|
1486
|
+
# * The `IsAuthorizedWithToken` operation takes principal attributes
|
1487
|
+
# from <b> <i>only</i> </b> the `identityToken` or `accessToken`
|
1488
|
+
# passed to the operation.
|
1489
|
+
#
|
1490
|
+
# * For action entities, you can include only their `Identifier` and
|
1491
|
+
# `EntityType`.
|
1487
1492
|
#
|
1488
1493
|
# </note>
|
1489
1494
|
# @return [Types::EntitiesDefinition]
|
@@ -1498,7 +1503,7 @@ module Aws::VerifiedPermissions
|
|
1498
1503
|
:resource,
|
1499
1504
|
:context,
|
1500
1505
|
:entities)
|
1501
|
-
SENSITIVE = []
|
1506
|
+
SENSITIVE = [:identity_token, :access_token]
|
1502
1507
|
include Aws::Structure
|
1503
1508
|
end
|
1504
1509
|
|
@@ -1547,16 +1552,19 @@ module Aws::VerifiedPermissions
|
|
1547
1552
|
# @return [String]
|
1548
1553
|
#
|
1549
1554
|
# @!attribute [rw] max_results
|
1550
|
-
# Specifies the total number of results that you want included
|
1551
|
-
#
|
1552
|
-
#
|
1553
|
-
#
|
1554
|
-
#
|
1555
|
-
#
|
1556
|
-
#
|
1557
|
-
#
|
1558
|
-
# results
|
1559
|
-
#
|
1555
|
+
# Specifies the total number of results that you want included in each
|
1556
|
+
# response. If additional items exist beyond the number you specify,
|
1557
|
+
# the `NextToken` response element is returned with a value (not
|
1558
|
+
# null). Include the specified value as the `NextToken` request
|
1559
|
+
# parameter in the next call to the operation to get the next set of
|
1560
|
+
# results. Note that the service might return fewer results than the
|
1561
|
+
# maximum even when there are more results available. You should check
|
1562
|
+
# `NextToken` after every operation to ensure that you receive all of
|
1563
|
+
# the results.
|
1564
|
+
#
|
1565
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1566
|
+
# identity sources per response. You can specify a maximum of 200
|
1567
|
+
# identity sources per response.
|
1560
1568
|
# @return [Integer]
|
1561
1569
|
#
|
1562
1570
|
# @!attribute [rw] filters
|
@@ -1610,16 +1618,19 @@ module Aws::VerifiedPermissions
|
|
1610
1618
|
# @return [String]
|
1611
1619
|
#
|
1612
1620
|
# @!attribute [rw] max_results
|
1613
|
-
# Specifies the total number of results that you want included
|
1614
|
-
#
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
#
|
1619
|
-
#
|
1620
|
-
#
|
1621
|
-
# results
|
1622
|
-
#
|
1621
|
+
# Specifies the total number of results that you want included in each
|
1622
|
+
# response. If additional items exist beyond the number you specify,
|
1623
|
+
# the `NextToken` response element is returned with a value (not
|
1624
|
+
# null). Include the specified value as the `NextToken` request
|
1625
|
+
# parameter in the next call to the operation to get the next set of
|
1626
|
+
# results. Note that the service might return fewer results than the
|
1627
|
+
# maximum even when there are more results available. You should check
|
1628
|
+
# `NextToken` after every operation to ensure that you receive all of
|
1629
|
+
# the results.
|
1630
|
+
#
|
1631
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1632
|
+
# policies per response. You can specify a maximum of 50 policies per
|
1633
|
+
# response.
|
1623
1634
|
# @return [Integer]
|
1624
1635
|
#
|
1625
1636
|
# @!attribute [rw] filter
|
@@ -1670,16 +1681,19 @@ module Aws::VerifiedPermissions
|
|
1670
1681
|
# @return [String]
|
1671
1682
|
#
|
1672
1683
|
# @!attribute [rw] max_results
|
1673
|
-
# Specifies the total number of results that you want included
|
1674
|
-
#
|
1675
|
-
#
|
1676
|
-
#
|
1677
|
-
#
|
1678
|
-
#
|
1679
|
-
#
|
1680
|
-
#
|
1681
|
-
# results
|
1682
|
-
#
|
1684
|
+
# Specifies the total number of results that you want included in each
|
1685
|
+
# response. If additional items exist beyond the number you specify,
|
1686
|
+
# the `NextToken` response element is returned with a value (not
|
1687
|
+
# null). Include the specified value as the `NextToken` request
|
1688
|
+
# parameter in the next call to the operation to get the next set of
|
1689
|
+
# results. Note that the service might return fewer results than the
|
1690
|
+
# maximum even when there are more results available. You should check
|
1691
|
+
# `NextToken` after every operation to ensure that you receive all of
|
1692
|
+
# the results.
|
1693
|
+
#
|
1694
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1695
|
+
# policy stores per response. You can specify a maximum of 50 policy
|
1696
|
+
# stores per response.
|
1683
1697
|
# @return [Integer]
|
1684
1698
|
#
|
1685
1699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/ListPolicyStoresInput AWS API Documentation
|
@@ -1727,16 +1741,19 @@ module Aws::VerifiedPermissions
|
|
1727
1741
|
# @return [String]
|
1728
1742
|
#
|
1729
1743
|
# @!attribute [rw] max_results
|
1730
|
-
# Specifies the total number of results that you want included
|
1731
|
-
#
|
1732
|
-
#
|
1733
|
-
#
|
1734
|
-
#
|
1735
|
-
#
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
# results
|
1739
|
-
#
|
1744
|
+
# Specifies the total number of results that you want included in each
|
1745
|
+
# response. If additional items exist beyond the number you specify,
|
1746
|
+
# the `NextToken` response element is returned with a value (not
|
1747
|
+
# null). Include the specified value as the `NextToken` request
|
1748
|
+
# parameter in the next call to the operation to get the next set of
|
1749
|
+
# results. Note that the service might return fewer results than the
|
1750
|
+
# maximum even when there are more results available. You should check
|
1751
|
+
# `NextToken` after every operation to ensure that you receive all of
|
1752
|
+
# the results.
|
1753
|
+
#
|
1754
|
+
# If you do not specify this parameter, the operation defaults to 10
|
1755
|
+
# policy templates per response. You can specify a maximum of 50
|
1756
|
+
# policy templates per response.
|
1740
1757
|
# @return [Integer]
|
1741
1758
|
#
|
1742
1759
|
# @see http://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/ListPolicyTemplatesInput AWS API Documentation
|
@@ -2064,7 +2081,7 @@ module Aws::VerifiedPermissions
|
|
2064
2081
|
:description,
|
2065
2082
|
:created_date,
|
2066
2083
|
:last_updated_date)
|
2067
|
-
SENSITIVE = []
|
2084
|
+
SENSITIVE = [:description]
|
2068
2085
|
include Aws::Structure
|
2069
2086
|
end
|
2070
2087
|
|
@@ -2179,7 +2196,7 @@ module Aws::VerifiedPermissions
|
|
2179
2196
|
class SchemaDefinition < Struct.new(
|
2180
2197
|
:cedar_json,
|
2181
2198
|
:unknown)
|
2182
|
-
SENSITIVE = []
|
2199
|
+
SENSITIVE = [:cedar_json]
|
2183
2200
|
include Aws::Structure
|
2184
2201
|
include Aws::Structure::Union
|
2185
2202
|
|
@@ -2245,7 +2262,7 @@ module Aws::VerifiedPermissions
|
|
2245
2262
|
class StaticPolicyDefinition < Struct.new(
|
2246
2263
|
:description,
|
2247
2264
|
:statement)
|
2248
|
-
SENSITIVE = []
|
2265
|
+
SENSITIVE = [:description, :statement]
|
2249
2266
|
include Aws::Structure
|
2250
2267
|
end
|
2251
2268
|
|
@@ -2274,7 +2291,7 @@ module Aws::VerifiedPermissions
|
|
2274
2291
|
class StaticPolicyDefinitionDetail < Struct.new(
|
2275
2292
|
:description,
|
2276
2293
|
:statement)
|
2277
|
-
SENSITIVE = []
|
2294
|
+
SENSITIVE = [:description, :statement]
|
2278
2295
|
include Aws::Structure
|
2279
2296
|
end
|
2280
2297
|
|
@@ -2297,7 +2314,7 @@ module Aws::VerifiedPermissions
|
|
2297
2314
|
#
|
2298
2315
|
class StaticPolicyDefinitionItem < Struct.new(
|
2299
2316
|
:description)
|
2300
|
-
SENSITIVE = []
|
2317
|
+
SENSITIVE = [:description]
|
2301
2318
|
include Aws::Structure
|
2302
2319
|
end
|
2303
2320
|
|
@@ -2516,7 +2533,7 @@ module Aws::VerifiedPermissions
|
|
2516
2533
|
:identity_source_id,
|
2517
2534
|
:update_configuration,
|
2518
2535
|
:principal_entity_type)
|
2519
|
-
SENSITIVE = []
|
2536
|
+
SENSITIVE = [:principal_entity_type]
|
2520
2537
|
include Aws::Structure
|
2521
2538
|
end
|
2522
2539
|
|
@@ -2760,7 +2777,7 @@ module Aws::VerifiedPermissions
|
|
2760
2777
|
:policy_template_id,
|
2761
2778
|
:description,
|
2762
2779
|
:statement)
|
2763
|
-
SENSITIVE = []
|
2780
|
+
SENSITIVE = [:description, :statement]
|
2764
2781
|
include Aws::Structure
|
2765
2782
|
end
|
2766
2783
|
|
@@ -2827,7 +2844,7 @@ module Aws::VerifiedPermissions
|
|
2827
2844
|
class UpdateStaticPolicyDefinition < Struct.new(
|
2828
2845
|
:description,
|
2829
2846
|
:statement)
|
2830
|
-
SENSITIVE = []
|
2847
|
+
SENSITIVE = [:description, :statement]
|
2831
2848
|
include Aws::Structure
|
2832
2849
|
end
|
2833
2850
|
|
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.8.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: 2023-
|
11
|
+
date: 2023-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|