aws-sdk-verifiedpermissions 1.64.0 → 1.66.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: 6a8dea34a072945dbad5ad2fe4492b93183e111070275abc9308461ba7d7b2d7
4
- data.tar.gz: dc9c051d1feb552cd38fa22140db94ea220cc68a76ced3db1c8c4115fbdc1085
3
+ metadata.gz: 2c776a76b6eaf90af78de6e6c9b7334cd8db300834bfa625cc922d9d2899a9c4
4
+ data.tar.gz: eff885e8df7d9ce27b551af7e73edaef657742a58181c9788ee50c3c2e439094
5
5
  SHA512:
6
- metadata.gz: 8a90442c22446aa61c958b4ccb17d27fb0b0549b6cdfc66dda8d184c74bfa4e4168aac1500ea06e8ca895d4e9b56ecc8674dd6008df5bce26417610e0ed4648f
7
- data.tar.gz: 789447db5d9ed7e09174aa939d4789067165c91f23a861f2210124c9c5c9599c848327bdeacd19a4ed644a41eead1de47487ce47b5ca0d542a104293f0cd12a4
6
+ metadata.gz: cd64b54226d9d4b534263eb2d458770f66d6292e4c8b0553e7cb17a3e91fe81380e2d722c9223def4676516e6d862591e8fc9d9d7e62e28ec4b63ec336b7456e
7
+ data.tar.gz: e6ba87c26640420c540e4252f9bcdb953ac9ad68ee3ca5edb03bd9680510a54e77800d891a50c31671766bed261dac3cb94fec1c95ee810b2bf370c9f4b796d7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Support hard deleting policy store aliases. Users can now delete an alias and immediately reassign it to a different policy store without waiting for the soft-delete retention period.
8
+
9
+ 1.65.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.64.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.66.0
@@ -199,7 +199,7 @@ module Aws::VerifiedPermissions
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::VerifiedPermissions
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -1733,8 +1731,8 @@ module Aws::VerifiedPermissions
1733
1731
  # Creates a policy store. A policy store is a container for policy
1734
1732
  # resources.
1735
1733
  #
1736
- # <note markdown="1"> Although [Cedar supports multiple namespaces][1], Verified Permissions
1737
- # currently supports only one namespace per policy store.
1734
+ # <note markdown="1"> As of May 2026, Verified Permissions has aligned with Cedar and now
1735
+ # supports multiple namespaces.
1738
1736
  #
1739
1737
  # </note>
1740
1738
  #
@@ -1746,10 +1744,6 @@ module Aws::VerifiedPermissions
1746
1744
  #
1747
1745
  # </note>
1748
1746
  #
1749
- #
1750
- #
1751
- # [1]: https://docs.cedarpolicy.com/schema/schema.html#namespace
1752
- #
1753
1747
  # @option params [String] :client_token
1754
1748
  # Specifies a unique, case-sensitive ID that you provide to ensure the
1755
1749
  # idempotency of the request. This lets you safely retry the request
@@ -2296,11 +2290,22 @@ module Aws::VerifiedPermissions
2296
2290
  # does not exist, the request response will still return a successful
2297
2291
  # HTTP 200 status code.
2298
2292
  #
2299
- # When a policy store alias is deleted, it enters the `PendingDeletion`
2300
- # state. When a policy store alias is in the `PendingDeletion` state,
2301
- # new policy store aliases cannot be created with the same name. If the
2302
- # policy store alias is used in an API that has a `policyStoreId` field,
2303
- # the operation will fail with a `ResourceNotFound` exception.
2293
+ # By default, when a policy store alias is deleted, it enters the
2294
+ # `PendingDeletion` state. When a policy store alias is in the
2295
+ # `PendingDeletion` state, new policy store aliases cannot be created
2296
+ # with the same name. If the policy store alias is used in an API that
2297
+ # has a `policyStoreId` field, the operation will fail with a
2298
+ # `ResourceNotFound` exception.
2299
+ #
2300
+ # To immediately delete a policy store alias and bypass the
2301
+ # `PendingDeletion` state, set the `deletionMode` parameter to
2302
+ # `HardDelete`.
2303
+ #
2304
+ # Verified Permissions is eventually consistent. If you hard delete a
2305
+ # policy store alias and then immediately recreate it to be associated
2306
+ # with a different policy store, requests that reference this alias may
2307
+ # continue to be evaluated against the previously associated policy
2308
+ # store for a short period of time.
2304
2309
  #
2305
2310
  # @option params [required, String] :alias_name
2306
2311
  # Specifies the name of the policy store alias that you want to delete.
@@ -2309,12 +2314,24 @@ module Aws::VerifiedPermissions
2309
2314
  #
2310
2315
  # </note>
2311
2316
  #
2317
+ # @option params [String] :deletion_mode
2318
+ # Specifies the deletion mode for the policy store alias. The valid
2319
+ # values are:
2320
+ #
2321
+ # * **SoftDelete** – The policy store alias enters the `PendingDeletion`
2322
+ # state. This is the default behavior when no `deletionMode` is
2323
+ # specified.
2324
+ #
2325
+ # * **HardDelete** – The policy store alias is immediately deleted,
2326
+ # bypassing the `PendingDeletion` state.
2327
+ #
2312
2328
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2313
2329
  #
2314
2330
  #
2315
- # @example Example: DeletePolicyStoreAlias
2331
+ # @example Example: Soft delete a policy store alias
2316
2332
  #
2317
- # # The following example deletes the policy store alias with name example-policy-store.
2333
+ # # The following example soft deletes the policy store alias with name example-policy-store. The alias enters the
2334
+ # # PendingDeletion state.
2318
2335
  #
2319
2336
  # resp = client.delete_policy_store_alias({
2320
2337
  # alias_name: "policy-store-alias/example-policy-store",
@@ -2324,10 +2341,25 @@ module Aws::VerifiedPermissions
2324
2341
  # {
2325
2342
  # }
2326
2343
  #
2344
+ # @example Example: Hard delete a policy store alias
2345
+ #
2346
+ # # The following example hard deletes the policy store alias with name example-policy-store. The alias is immediately
2347
+ # # deleted, bypassing the PendingDeletion state.
2348
+ #
2349
+ # resp = client.delete_policy_store_alias({
2350
+ # alias_name: "policy-store-alias/example-policy-store",
2351
+ # deletion_mode: "HardDelete",
2352
+ # })
2353
+ #
2354
+ # resp.to_h outputs the following:
2355
+ # {
2356
+ # }
2357
+ #
2327
2358
  # @example Request syntax with placeholder values
2328
2359
  #
2329
2360
  # resp = client.delete_policy_store_alias({
2330
2361
  # alias_name: "Alias", # required
2362
+ # deletion_mode: "SoftDelete", # accepts SoftDelete, HardDelete
2331
2363
  # })
2332
2364
  #
2333
2365
  # @see http://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/DeletePolicyStoreAlias AWS API Documentation
@@ -3086,7 +3118,7 @@ module Aws::VerifiedPermissions
3086
3118
  #
3087
3119
  # resp = client.is_authorized({
3088
3120
  # action: {
3089
- # action_id: "view",
3121
+ # action_id: "updatePhoto",
3090
3122
  # action_type: "Action",
3091
3123
  # },
3092
3124
  # policy_store_id: "C7v5xMplfFH3i3e4Jrzb1a",
@@ -5001,7 +5033,7 @@ module Aws::VerifiedPermissions
5001
5033
  tracer: tracer
5002
5034
  )
5003
5035
  context[:gem_name] = 'aws-sdk-verifiedpermissions'
5004
- context[:gem_version] = '1.64.0'
5036
+ context[:gem_version] = '1.66.0'
5005
5037
  Seahorse::Client::Request.new(handlers, context)
5006
5038
  end
5007
5039
 
@@ -91,6 +91,7 @@ module Aws::VerifiedPermissions
91
91
  DeletePolicyStoreOutput = Shapes::StructureShape.new(name: 'DeletePolicyStoreOutput')
92
92
  DeletePolicyTemplateInput = Shapes::StructureShape.new(name: 'DeletePolicyTemplateInput')
93
93
  DeletePolicyTemplateOutput = Shapes::StructureShape.new(name: 'DeletePolicyTemplateOutput')
94
+ DeletionMode = Shapes::StringShape.new(name: 'DeletionMode')
94
95
  DeletionProtection = Shapes::StringShape.new(name: 'DeletionProtection')
95
96
  DeterminingPolicyItem = Shapes::StructureShape.new(name: 'DeterminingPolicyItem')
96
97
  DeterminingPolicyList = Shapes::ListShape.new(name: 'DeterminingPolicyList')
@@ -555,6 +556,7 @@ module Aws::VerifiedPermissions
555
556
  DeletePolicyOutput.struct_class = Types::DeletePolicyOutput
556
557
 
557
558
  DeletePolicyStoreAliasInput.add_member(:alias_name, Shapes::ShapeRef.new(shape: Alias, required: true, location_name: "aliasName"))
559
+ DeletePolicyStoreAliasInput.add_member(:deletion_mode, Shapes::ShapeRef.new(shape: DeletionMode, location_name: "deletionMode"))
558
560
  DeletePolicyStoreAliasInput.struct_class = Types::DeletePolicyStoreAliasInput
559
561
 
560
562
  DeletePolicyStoreAliasOutput.struct_class = Types::DeletePolicyStoreAliasOutput
@@ -1859,10 +1859,23 @@ module Aws::VerifiedPermissions
1859
1859
  # </note>
1860
1860
  # @return [String]
1861
1861
  #
1862
+ # @!attribute [rw] deletion_mode
1863
+ # Specifies the deletion mode for the policy store alias. The valid
1864
+ # values are:
1865
+ #
1866
+ # * **SoftDelete** – The policy store alias enters the
1867
+ # `PendingDeletion` state. This is the default behavior when no
1868
+ # `deletionMode` is specified.
1869
+ #
1870
+ # * **HardDelete** – The policy store alias is immediately deleted,
1871
+ # bypassing the `PendingDeletion` state.
1872
+ # @return [String]
1873
+ #
1862
1874
  # @see http://docs.aws.amazon.com/goto/WebAPI/verifiedpermissions-2021-12-01/DeletePolicyStoreAliasInput AWS API Documentation
1863
1875
  #
1864
1876
  class DeletePolicyStoreAliasInput < Struct.new(
1865
- :alias_name)
1877
+ :alias_name,
1878
+ :deletion_mode)
1866
1879
  SENSITIVE = []
1867
1880
  include Aws::Structure
1868
1881
  end
@@ -4144,7 +4157,7 @@ module Aws::VerifiedPermissions
4144
4157
  #
4145
4158
  #
4146
4159
  # [1]: https://docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_OpenIdConnectConfigurationItem.html
4147
- # [2]: http://amazonaws.com/verifiedpermissions/latest/apireference/API_ListIdentitySources.html
4160
+ # [2]: https://docs.aws.amazon.com/verifiedpermissions/latest/apireference/API_ListIdentitySources.html
4148
4161
  #
4149
4162
  # @note OpenIdConnectTokenSelectionItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OpenIdConnectTokenSelectionItem corresponding to the set member.
4150
4163
  #
@@ -55,7 +55,7 @@ module Aws::VerifiedPermissions
55
55
  autoload :EndpointProvider, 'aws-sdk-verifiedpermissions/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-verifiedpermissions/endpoints'
57
57
 
58
- GEM_VERSION = '1.64.0'
58
+ GEM_VERSION = '1.66.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -90,7 +90,7 @@ module Aws
90
90
  {
91
91
  policy_store_id: ::String,
92
92
  policy_id: ::String
93
- },
93
+ }
94
94
  ]
95
95
  ) -> _BatchGetPolicyResponseSuccess
96
96
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetPolicyResponseSuccess
@@ -102,41 +102,7 @@ module Aws
102
102
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VerifiedPermissions/Client.html#batch_is_authorized-instance_method
103
103
  def batch_is_authorized: (
104
104
  policy_store_id: ::String,
105
- ?entities: {
106
- entity_list: Array[
107
- {
108
- identifier: {
109
- entity_type: ::String,
110
- entity_id: ::String
111
- },
112
- attributes: Hash[::String, untyped]?,
113
- parents: Array[
114
- {
115
- entity_type: ::String,
116
- entity_id: ::String
117
- },
118
- ]?,
119
- tags: Hash[::String, {
120
- boolean: bool?,
121
- entity_identifier: {
122
- entity_type: ::String,
123
- entity_id: ::String
124
- }?,
125
- long: ::Integer?,
126
- string: ::String?,
127
- set: Array[
128
- untyped,
129
- ]?,
130
- record: Hash[::String, untyped]?,
131
- ipaddr: ::String?,
132
- decimal: ::String?,
133
- datetime: ::String?,
134
- duration: ::String?
135
- }]?
136
- },
137
- ]?,
138
- cedar_json: ::String?
139
- },
105
+ ?entities: Params::entities_definition,
140
106
  requests: Array[
141
107
  {
142
108
  principal: {
@@ -151,11 +117,8 @@ module Aws
151
117
  entity_type: ::String,
152
118
  entity_id: ::String
153
119
  }?,
154
- context: {
155
- context_map: Hash[::String, untyped]?,
156
- cedar_json: ::String?
157
- }?
158
- },
120
+ context: Params::context_definition?
121
+ }
159
122
  ]
160
123
  ) -> _BatchIsAuthorizedResponseSuccess
161
124
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchIsAuthorizedResponseSuccess
@@ -170,41 +133,7 @@ module Aws
170
133
  policy_store_id: ::String,
171
134
  ?identity_token: ::String,
172
135
  ?access_token: ::String,
173
- ?entities: {
174
- entity_list: Array[
175
- {
176
- identifier: {
177
- entity_type: ::String,
178
- entity_id: ::String
179
- },
180
- attributes: Hash[::String, untyped]?,
181
- parents: Array[
182
- {
183
- entity_type: ::String,
184
- entity_id: ::String
185
- },
186
- ]?,
187
- tags: Hash[::String, {
188
- boolean: bool?,
189
- entity_identifier: {
190
- entity_type: ::String,
191
- entity_id: ::String
192
- }?,
193
- long: ::Integer?,
194
- string: ::String?,
195
- set: Array[
196
- untyped,
197
- ]?,
198
- record: Hash[::String, untyped]?,
199
- ipaddr: ::String?,
200
- decimal: ::String?,
201
- datetime: ::String?,
202
- duration: ::String?
203
- }]?
204
- },
205
- ]?,
206
- cedar_json: ::String?
207
- },
136
+ ?entities: Params::entities_definition,
208
137
  requests: Array[
209
138
  {
210
139
  action: {
@@ -215,11 +144,8 @@ module Aws
215
144
  entity_type: ::String,
216
145
  entity_id: ::String
217
146
  }?,
218
- context: {
219
- context_map: Hash[::String, untyped]?,
220
- cedar_json: ::String?
221
- }?
222
- },
147
+ context: Params::context_definition?
148
+ }
223
149
  ]
224
150
  ) -> _BatchIsAuthorizedWithTokenResponseSuccess
225
151
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchIsAuthorizedWithTokenResponseSuccess
@@ -395,7 +321,8 @@ module Aws
395
321
  end
396
322
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VerifiedPermissions/Client.html#delete_policy_store_alias-instance_method
397
323
  def delete_policy_store_alias: (
398
- alias_name: ::String
324
+ alias_name: ::String,
325
+ ?deletion_mode: ("SoftDelete" | "HardDelete")
399
326
  ) -> _DeletePolicyStoreAliasResponseSuccess
400
327
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePolicyStoreAliasResponseSuccess
401
328
 
@@ -533,45 +460,8 @@ module Aws
533
460
  entity_type: ::String,
534
461
  entity_id: ::String
535
462
  },
536
- ?context: {
537
- context_map: Hash[::String, untyped]?,
538
- cedar_json: ::String?
539
- },
540
- ?entities: {
541
- entity_list: Array[
542
- {
543
- identifier: {
544
- entity_type: ::String,
545
- entity_id: ::String
546
- },
547
- attributes: Hash[::String, untyped]?,
548
- parents: Array[
549
- {
550
- entity_type: ::String,
551
- entity_id: ::String
552
- },
553
- ]?,
554
- tags: Hash[::String, {
555
- boolean: bool?,
556
- entity_identifier: {
557
- entity_type: ::String,
558
- entity_id: ::String
559
- }?,
560
- long: ::Integer?,
561
- string: ::String?,
562
- set: Array[
563
- untyped,
564
- ]?,
565
- record: Hash[::String, untyped]?,
566
- ipaddr: ::String?,
567
- decimal: ::String?,
568
- datetime: ::String?,
569
- duration: ::String?
570
- }]?
571
- },
572
- ]?,
573
- cedar_json: ::String?
574
- }
463
+ ?context: Params::context_definition,
464
+ ?entities: Params::entities_definition
575
465
  ) -> _IsAuthorizedResponseSuccess
576
466
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _IsAuthorizedResponseSuccess
577
467
 
@@ -595,45 +485,8 @@ module Aws
595
485
  entity_type: ::String,
596
486
  entity_id: ::String
597
487
  },
598
- ?context: {
599
- context_map: Hash[::String, untyped]?,
600
- cedar_json: ::String?
601
- },
602
- ?entities: {
603
- entity_list: Array[
604
- {
605
- identifier: {
606
- entity_type: ::String,
607
- entity_id: ::String
608
- },
609
- attributes: Hash[::String, untyped]?,
610
- parents: Array[
611
- {
612
- entity_type: ::String,
613
- entity_id: ::String
614
- },
615
- ]?,
616
- tags: Hash[::String, {
617
- boolean: bool?,
618
- entity_identifier: {
619
- entity_type: ::String,
620
- entity_id: ::String
621
- }?,
622
- long: ::Integer?,
623
- string: ::String?,
624
- set: Array[
625
- untyped,
626
- ]?,
627
- record: Hash[::String, untyped]?,
628
- ipaddr: ::String?,
629
- decimal: ::String?,
630
- datetime: ::String?,
631
- duration: ::String?
632
- }]?
633
- },
634
- ]?,
635
- cedar_json: ::String?
636
- }
488
+ ?context: Params::context_definition,
489
+ ?entities: Params::entities_definition
637
490
  ) -> _IsAuthorizedWithTokenResponseSuccess
638
491
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _IsAuthorizedWithTokenResponseSuccess
639
492
 
@@ -650,7 +503,7 @@ module Aws
650
503
  ?filters: Array[
651
504
  {
652
505
  principal_entity_type: ::String?
653
- },
506
+ }
654
507
  ]
655
508
  ) -> _ListIdentitySourcesResponseSuccess
656
509
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentitySourcesResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,104 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module VerifiedPermissions
10
+ module Params
11
+ type entities_definition = {
12
+ entity_list: Array[
13
+ Params::entity_item
14
+ ]?,
15
+ cedar_json: ::String?
16
+ }
17
+
18
+ type entity_item = {
19
+ identifier: {
20
+ entity_type: ::String,
21
+ entity_id: ::String
22
+ },
23
+ attributes: Hash[::String, Params::attribute_value]?,
24
+ parents: Array[
25
+ {
26
+ entity_type: ::String,
27
+ entity_id: ::String
28
+ }
29
+ ]?,
30
+ tags: Hash[::String, Params::cedar_tag_value]?
31
+ }
32
+
33
+ type attribute_value = {
34
+ boolean: bool?,
35
+ entity_identifier: {
36
+ entity_type: ::String,
37
+ entity_id: ::String
38
+ }?,
39
+ long: ::Integer?,
40
+ string: ::String?,
41
+ set: Array[untyped]?,
42
+ record: Hash[::String, untyped]?,
43
+ ipaddr: ::String?,
44
+ decimal: ::String?,
45
+ datetime: ::String?,
46
+ duration: ::String?
47
+ }
48
+
49
+ type cedar_tag_value = {
50
+ boolean: bool?,
51
+ entity_identifier: {
52
+ entity_type: ::String,
53
+ entity_id: ::String
54
+ }?,
55
+ long: ::Integer?,
56
+ string: ::String?,
57
+ set: Array[
58
+ {
59
+ boolean: bool?,
60
+ entity_identifier: {
61
+ entity_type: ::String,
62
+ entity_id: ::String
63
+ }?,
64
+ long: ::Integer?,
65
+ string: ::String?,
66
+ set: untyped?,
67
+ record: Hash[::String, untyped]?,
68
+ ipaddr: ::String?,
69
+ decimal: ::String?,
70
+ datetime: ::String?,
71
+ duration: ::String?
72
+ }
73
+ ]?,
74
+ record: Hash[::String, {
75
+ boolean: bool?,
76
+ entity_identifier: {
77
+ entity_type: ::String,
78
+ entity_id: ::String
79
+ }?,
80
+ long: ::Integer?,
81
+ string: ::String?,
82
+ set: Array[
83
+ untyped
84
+ ]?,
85
+ record: untyped?,
86
+ ipaddr: ::String?,
87
+ decimal: ::String?,
88
+ datetime: ::String?,
89
+ duration: ::String?
90
+ }]?,
91
+ ipaddr: ::String?,
92
+ decimal: ::String?,
93
+ datetime: ::String?,
94
+ duration: ::String?
95
+ }
96
+
97
+ type context_definition = {
98
+ context_map: Hash[::String, Params::attribute_value]?,
99
+ cedar_json: ::String?
100
+ }
101
+
102
+ end
103
+ end
104
+ end
data/sig/types.rbs CHANGED
@@ -395,6 +395,7 @@ module Aws::VerifiedPermissions
395
395
 
396
396
  class DeletePolicyStoreAliasInput
397
397
  attr_accessor alias_name: ::String
398
+ attr_accessor deletion_mode: ("SoftDelete" | "HardDelete")
398
399
  SENSITIVE: []
399
400
  end
400
401
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-verifiedpermissions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.66.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.247.0
21
+ version: 3.248.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.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-verifiedpermissions/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs