aws-sdk-verifiedpermissions 1.27.0 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-verifiedpermissions/client.rb +19 -2
- data/lib/aws-sdk-verifiedpermissions/types.rb +16 -16
- data/lib/aws-sdk-verifiedpermissions.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a55f348c40807dd2b99860271c7b9872f50d7b5e6171a5d53a8f01f22e6c5c4
|
4
|
+
data.tar.gz: f483b1325872b999a52333e33f5d803a9d88df1107c91e7ce32b23d3f86a3dba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1510e3655420b26c723e5f38b5f5fa6c53f66c03eda09ff24a7b56082c9303d31ef5358b61f5509fc9ecd157979ba5949bd438926431566be2ca303551d10e7f
|
7
|
+
data.tar.gz: e47b90d227442b9cd17e30e0eb7f94a6acfb780ea2ee8c65652ad06143bbfb54c916ccb83ee636e8f1350627cbb9b784e0dc9ea11e129904379d0999e1781167
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.28.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.27.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::VerifiedPermissions
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
88
90
|
add_plugin(Aws::VerifiedPermissions::Plugins::Endpoints)
|
@@ -337,6 +339,16 @@ module Aws::VerifiedPermissions
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
338
340
|
# requests are made, and retries are disabled.
|
339
341
|
#
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
346
|
+
# following telemetry providers:
|
347
|
+
#
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
351
|
+
#
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
342
354
|
# following classes:
|
@@ -2490,14 +2502,19 @@ module Aws::VerifiedPermissions
|
|
2490
2502
|
# @api private
|
2491
2503
|
def build_request(operation_name, params = {})
|
2492
2504
|
handlers = @handlers.for(operation_name)
|
2505
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
2506
|
+
Aws::Telemetry.module_to_tracer_name('Aws::VerifiedPermissions')
|
2507
|
+
)
|
2493
2508
|
context = Seahorse::Client::RequestContext.new(
|
2494
2509
|
operation_name: operation_name,
|
2495
2510
|
operation: config.api.operation(operation_name),
|
2496
2511
|
client: self,
|
2497
2512
|
params: params,
|
2498
|
-
config: config
|
2513
|
+
config: config,
|
2514
|
+
tracer: tracer
|
2515
|
+
)
|
2499
2516
|
context[:gem_name] = 'aws-sdk-verifiedpermissions'
|
2500
|
-
context[:gem_version] = '1.
|
2517
|
+
context[:gem_version] = '1.29.0'
|
2501
2518
|
Seahorse::Client::Request.new(handlers, context)
|
2502
2519
|
end
|
2503
2520
|
|
@@ -274,7 +274,7 @@ module Aws::VerifiedPermissions
|
|
274
274
|
:decision,
|
275
275
|
:determining_policies,
|
276
276
|
:errors)
|
277
|
-
SENSITIVE = []
|
277
|
+
SENSITIVE = [:errors]
|
278
278
|
include Aws::Structure
|
279
279
|
end
|
280
280
|
|
@@ -420,7 +420,7 @@ module Aws::VerifiedPermissions
|
|
420
420
|
:decision,
|
421
421
|
:determining_policies,
|
422
422
|
:errors)
|
423
|
-
SENSITIVE = []
|
423
|
+
SENSITIVE = [:errors]
|
424
424
|
include Aws::Structure
|
425
425
|
end
|
426
426
|
|
@@ -542,7 +542,7 @@ module Aws::VerifiedPermissions
|
|
542
542
|
:user_pool_arn,
|
543
543
|
:client_ids,
|
544
544
|
:group_configuration)
|
545
|
-
SENSITIVE = []
|
545
|
+
SENSITIVE = [:client_ids]
|
546
546
|
include Aws::Structure
|
547
547
|
end
|
548
548
|
|
@@ -602,7 +602,7 @@ module Aws::VerifiedPermissions
|
|
602
602
|
:client_ids,
|
603
603
|
:issuer,
|
604
604
|
:group_configuration)
|
605
|
-
SENSITIVE = []
|
605
|
+
SENSITIVE = [:client_ids]
|
606
606
|
include Aws::Structure
|
607
607
|
end
|
608
608
|
|
@@ -662,7 +662,7 @@ module Aws::VerifiedPermissions
|
|
662
662
|
:client_ids,
|
663
663
|
:issuer,
|
664
664
|
:group_configuration)
|
665
|
-
SENSITIVE = []
|
665
|
+
SENSITIVE = [:client_ids]
|
666
666
|
include Aws::Structure
|
667
667
|
end
|
668
668
|
|
@@ -1829,7 +1829,7 @@ module Aws::VerifiedPermissions
|
|
1829
1829
|
:created_date,
|
1830
1830
|
:last_updated_date,
|
1831
1831
|
:namespaces)
|
1832
|
-
SENSITIVE = [:schema]
|
1832
|
+
SENSITIVE = [:schema, :namespaces]
|
1833
1833
|
include Aws::Structure
|
1834
1834
|
end
|
1835
1835
|
|
@@ -1882,7 +1882,7 @@ module Aws::VerifiedPermissions
|
|
1882
1882
|
:user_pool_arn,
|
1883
1883
|
:discovery_url,
|
1884
1884
|
:open_id_issuer)
|
1885
|
-
SENSITIVE = []
|
1885
|
+
SENSITIVE = [:client_ids]
|
1886
1886
|
include Aws::Structure
|
1887
1887
|
end
|
1888
1888
|
|
@@ -2008,7 +2008,7 @@ module Aws::VerifiedPermissions
|
|
2008
2008
|
:user_pool_arn,
|
2009
2009
|
:discovery_url,
|
2010
2010
|
:open_id_issuer)
|
2011
|
-
SENSITIVE = []
|
2011
|
+
SENSITIVE = [:client_ids]
|
2012
2012
|
include Aws::Structure
|
2013
2013
|
end
|
2014
2014
|
|
@@ -2103,7 +2103,7 @@ module Aws::VerifiedPermissions
|
|
2103
2103
|
:decision,
|
2104
2104
|
:determining_policies,
|
2105
2105
|
:errors)
|
2106
|
-
SENSITIVE = []
|
2106
|
+
SENSITIVE = [:errors]
|
2107
2107
|
include Aws::Structure
|
2108
2108
|
end
|
2109
2109
|
|
@@ -2212,7 +2212,7 @@ module Aws::VerifiedPermissions
|
|
2212
2212
|
:determining_policies,
|
2213
2213
|
:errors,
|
2214
2214
|
:principal)
|
2215
|
-
SENSITIVE = []
|
2215
|
+
SENSITIVE = [:errors]
|
2216
2216
|
include Aws::Structure
|
2217
2217
|
end
|
2218
2218
|
|
@@ -2849,7 +2849,7 @@ module Aws::VerifiedPermissions
|
|
2849
2849
|
class OpenIdConnectIdentityTokenConfiguration < Struct.new(
|
2850
2850
|
:principal_id_claim,
|
2851
2851
|
:client_ids)
|
2852
|
-
SENSITIVE = [:principal_id_claim]
|
2852
|
+
SENSITIVE = [:principal_id_claim, :client_ids]
|
2853
2853
|
include Aws::Structure
|
2854
2854
|
end
|
2855
2855
|
|
@@ -2882,7 +2882,7 @@ module Aws::VerifiedPermissions
|
|
2882
2882
|
class OpenIdConnectIdentityTokenConfigurationDetail < Struct.new(
|
2883
2883
|
:principal_id_claim,
|
2884
2884
|
:client_ids)
|
2885
|
-
SENSITIVE = [:principal_id_claim]
|
2885
|
+
SENSITIVE = [:principal_id_claim, :client_ids]
|
2886
2886
|
include Aws::Structure
|
2887
2887
|
end
|
2888
2888
|
|
@@ -2915,7 +2915,7 @@ module Aws::VerifiedPermissions
|
|
2915
2915
|
class OpenIdConnectIdentityTokenConfigurationItem < Struct.new(
|
2916
2916
|
:principal_id_claim,
|
2917
2917
|
:client_ids)
|
2918
|
-
SENSITIVE = [:principal_id_claim]
|
2918
|
+
SENSITIVE = [:principal_id_claim, :client_ids]
|
2919
2919
|
include Aws::Structure
|
2920
2920
|
end
|
2921
2921
|
|
@@ -3405,7 +3405,7 @@ module Aws::VerifiedPermissions
|
|
3405
3405
|
:namespaces,
|
3406
3406
|
:created_date,
|
3407
3407
|
:last_updated_date)
|
3408
|
-
SENSITIVE = []
|
3408
|
+
SENSITIVE = [:namespaces]
|
3409
3409
|
include Aws::Structure
|
3410
3410
|
end
|
3411
3411
|
|
@@ -3763,7 +3763,7 @@ module Aws::VerifiedPermissions
|
|
3763
3763
|
:user_pool_arn,
|
3764
3764
|
:client_ids,
|
3765
3765
|
:group_configuration)
|
3766
|
-
SENSITIVE = []
|
3766
|
+
SENSITIVE = [:client_ids]
|
3767
3767
|
include Aws::Structure
|
3768
3768
|
end
|
3769
3769
|
|
@@ -4013,7 +4013,7 @@ module Aws::VerifiedPermissions
|
|
4013
4013
|
class UpdateOpenIdConnectIdentityTokenConfiguration < Struct.new(
|
4014
4014
|
:principal_id_claim,
|
4015
4015
|
:client_ids)
|
4016
|
-
SENSITIVE = [:principal_id_claim]
|
4016
|
+
SENSITIVE = [:principal_id_claim, :client_ids]
|
4017
4017
|
include Aws::Structure
|
4018
4018
|
end
|
4019
4019
|
|
data/sig/client.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
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.29.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-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|