aws-sdk-workspacesweb 1.25.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78c58710dc49bd1619ca4252a8ded122aeb9abc5afe7e4eb581ee9e25690c519
4
- data.tar.gz: 9a8c48694ad1e1003bc575b7f6a69fa233e6f5edaf656b37d41bcf74c5cd28cf
3
+ metadata.gz: 873c62d5fd9b097907efbbbcb6784a31b29b7930b645e7397380500fffd4f88f
4
+ data.tar.gz: f14c14737a142eb3bbf5b6d6fcc77c3c94745255437dfef85063499e7992ec82
5
5
  SHA512:
6
- metadata.gz: 07cd80d8ef2d8d991ff60169b154ce386c09bea92a3ba3e0392777750d95e4e3e27970479c96c2527d4d563362b62fb1483016150871b106576146f7e7471110
7
- data.tar.gz: 4f5b175e4b86ae9c10c1323e38fa8bfa090d6200414b8c1a8fb9fd58967b8bbd4ed93e82908301c6823c2b1cce9f2d3856a85779206d05bcaab67e9fb767502c
6
+ metadata.gz: 2766793d0971b2087c17f50df3b2c6f81fcd5b2fc94fe87045bbf9a91b370c622322082da5ea4942af0bef3ffc10d73357bc53fe91b042498a07d16e14c060ff
7
+ data.tar.gz: bd0f91dfd23d8cc3fdf81a854e3914d0bb90e1cd5499abeb15ce51d04ed82351cd56773dc1c67734caa2ca006eb58104fbef96645fcdda58a5d19c990cc1dbc9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.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.26.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.25.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.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/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::WorkSpacesWeb
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::RestJson)
88
90
  add_plugin(Aws::WorkSpacesWeb::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::WorkSpacesWeb
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -3084,14 +3096,19 @@ module Aws::WorkSpacesWeb
3084
3096
  # @api private
3085
3097
  def build_request(operation_name, params = {})
3086
3098
  handlers = @handlers.for(operation_name)
3099
+ tracer = config.telemetry_provider.tracer_provider.tracer(
3100
+ Aws::Telemetry.module_to_tracer_name('Aws::WorkSpacesWeb')
3101
+ )
3087
3102
  context = Seahorse::Client::RequestContext.new(
3088
3103
  operation_name: operation_name,
3089
3104
  operation: config.api.operation(operation_name),
3090
3105
  client: self,
3091
3106
  params: params,
3092
- config: config)
3107
+ config: config,
3108
+ tracer: tracer
3109
+ )
3093
3110
  context[:gem_name] = 'aws-sdk-workspacesweb'
3094
- context[:gem_version] = '1.25.0'
3111
+ context[:gem_version] = '1.27.0'
3095
3112
  Seahorse::Client::Request.new(handlers, context)
3096
3113
  end
3097
3114
 
@@ -464,7 +464,7 @@ module Aws::WorkSpacesWeb
464
464
  :client_token,
465
465
  :customer_managed_key,
466
466
  :tags)
467
- SENSITIVE = [:browser_policy]
467
+ SENSITIVE = [:browser_policy, :tags]
468
468
  include Aws::Structure
469
469
  end
470
470
 
@@ -593,7 +593,7 @@ module Aws::WorkSpacesWeb
593
593
  :identity_provider_type,
594
594
  :portal_arn,
595
595
  :tags)
596
- SENSITIVE = [:identity_provider_details, :identity_provider_name]
596
+ SENSITIVE = [:identity_provider_details, :identity_provider_name, :tags]
597
597
  include Aws::Structure
598
598
  end
599
599
 
@@ -659,7 +659,7 @@ module Aws::WorkSpacesWeb
659
659
  :display_name,
660
660
  :ip_rules,
661
661
  :tags)
662
- SENSITIVE = [:description, :display_name, :ip_rules]
662
+ SENSITIVE = [:description, :display_name, :ip_rules, :tags]
663
663
  include Aws::Structure
664
664
  end
665
665
 
@@ -718,7 +718,7 @@ module Aws::WorkSpacesWeb
718
718
  :subnet_ids,
719
719
  :tags,
720
720
  :vpc_id)
721
- SENSITIVE = []
721
+ SENSITIVE = [:tags]
722
722
  include Aws::Structure
723
723
  end
724
724
 
@@ -802,7 +802,7 @@ module Aws::WorkSpacesWeb
802
802
  :instance_type,
803
803
  :max_concurrent_sessions,
804
804
  :tags)
805
- SENSITIVE = [:display_name]
805
+ SENSITIVE = [:display_name, :tags]
806
806
  include Aws::Structure
807
807
  end
808
808
 
@@ -853,7 +853,7 @@ module Aws::WorkSpacesWeb
853
853
  :certificate_list,
854
854
  :client_token,
855
855
  :tags)
856
- SENSITIVE = []
856
+ SENSITIVE = [:tags]
857
857
  include Aws::Structure
858
858
  end
859
859
 
@@ -899,7 +899,7 @@ module Aws::WorkSpacesWeb
899
899
  :client_token,
900
900
  :kinesis_stream_arn,
901
901
  :tags)
902
- SENSITIVE = []
902
+ SENSITIVE = [:tags]
903
903
  include Aws::Structure
904
904
  end
905
905
 
@@ -1006,7 +1006,7 @@ module Aws::WorkSpacesWeb
1006
1006
  :print_allowed,
1007
1007
  :tags,
1008
1008
  :upload_allowed)
1009
- SENSITIVE = [:cookie_synchronization_configuration]
1009
+ SENSITIVE = [:cookie_synchronization_configuration, :tags]
1010
1010
  include Aws::Structure
1011
1011
  end
1012
1012
 
@@ -1945,7 +1945,7 @@ module Aws::WorkSpacesWeb
1945
1945
  #
1946
1946
  class ListTagsForResourceResponse < Struct.new(
1947
1947
  :tags)
1948
- SENSITIVE = []
1948
+ SENSITIVE = [:tags]
1949
1949
  include Aws::Structure
1950
1950
  end
1951
1951
 
@@ -2494,7 +2494,7 @@ module Aws::WorkSpacesWeb
2494
2494
  :client_token,
2495
2495
  :resource_arn,
2496
2496
  :tags)
2497
- SENSITIVE = []
2497
+ SENSITIVE = [:tags]
2498
2498
  include Aws::Structure
2499
2499
  end
2500
2500
 
@@ -2600,7 +2600,7 @@ module Aws::WorkSpacesWeb
2600
2600
  class UntagResourceRequest < Struct.new(
2601
2601
  :resource_arn,
2602
2602
  :tag_keys)
2603
- SENSITIVE = []
2603
+ SENSITIVE = [:tag_keys]
2604
2604
  include Aws::Structure
2605
2605
  end
2606
2606
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspacesweb/customizations'
52
52
  # @!group service
53
53
  module Aws::WorkSpacesWeb
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-workspacesweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.27.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-07-02 00:00:00.000000000 Z
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.201.0
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.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement