AWS SDK

AWS SDK

rev. d11fae08e9ceadc5a25dfda5be63b0aae93f1dcb

Files changed:

tmp-codegen-diff/aws-sdk/sdk/aws-config/Cargo.toml

@@ -19,19 +101,101 @@
   39     39   
url = "2.5.4"
   40     40   
fastrand = "2.3.0"
   41     41   
   42     42   
[dependencies.aws-credential-types]
   43     43   
path = "../aws-credential-types"
   44     44   
features = ["test-util"]
   45     45   
version = "1.2.11"
   46     46   
   47     47   
[dependencies.aws-runtime]
   48     48   
path = "../aws-runtime"
   49         -
version = "1.5.17"
          49  +
version = "1.5.18"
   50     50   
   51     51   
[dependencies.aws-sdk-sts]
   52     52   
path = "../sts"
   53     53   
default-features = false
   54     54   
version = "0.0.0-local"
   55     55   
   56     56   
[dependencies.aws-smithy-async]
   57     57   
path = "../aws-smithy-async"
   58     58   
version = "1.2.7"
   59     59   
   60     60   
[dependencies.aws-smithy-http]
   61     61   
path = "../aws-smithy-http"
   62     62   
version = "0.62.6"
   63     63   
   64     64   
[dependencies.aws-smithy-json]
   65     65   
path = "../aws-smithy-json"
   66     66   
version = "0.61.8"
   67     67   
   68     68   
[dependencies.aws-smithy-runtime]
   69     69   
path = "../aws-smithy-runtime"
   70     70   
features = ["client"]
   71         -
version = "1.9.5"
          71  +
version = "1.9.6"
   72     72   
   73     73   
[dependencies.aws-smithy-runtime-api]
   74     74   
path = "../aws-smithy-runtime-api"
   75     75   
features = ["client"]
   76     76   
version = "1.9.3"
   77     77   
   78     78   
[dependencies.aws-smithy-types]
   79     79   
path = "../aws-smithy-types"
   80     80   
version = "1.3.5"
   81     81   
@@ -136,136 +187,187 @@
  156    156   
version = "1.2.7"
  157    157   
  158    158   
[dev-dependencies.aws-smithy-http-client]
  159    159   
path = "../aws-smithy-http-client"
  160    160   
features = ["default-client", "test-util"]
  161    161   
version = "1.1.5"
  162    162   
  163    163   
[dev-dependencies.aws-smithy-runtime]
  164    164   
path = "../aws-smithy-runtime"
  165    165   
features = ["client", "test-util"]
  166         -
version = "1.9.5"
         166  +
version = "1.9.6"
  167    167   
  168    168   
[dev-dependencies.aws-smithy-runtime-api]
  169    169   
path = "../aws-smithy-runtime-api"
  170    170   
features = ["test-util"]
  171    171   
version = "1.9.3"
  172    172   
  173    173   
[dev-dependencies.futures-util]
  174    174   
version = "0.3.29"
  175    175   
default-features = false
  176    176   

tmp-codegen-diff/aws-sdk/sdk/aws-runtime/Cargo.toml

@@ -1,1 +89,89 @@
    1      1   
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
    2      2   
[package]
    3      3   
name = "aws-runtime"
    4         -
version = "1.5.17"
           4  +
version = "1.5.18"
    5      5   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
    6      6   
description = "Runtime support code for the AWS SDK. This crate isn't intended to be used directly."
    7      7   
edition = "2021"
    8      8   
license = "Apache-2.0"
    9      9   
repository = "https://github.com/smithy-lang/smithy-rs"
   10     10   
rust-version = "1.88"
   11     11   
[package.metadata.docs.rs]
   12     12   
all-features = true
   13     13   
targets = ["x86_64-unknown-linux-gnu"]
   14     14   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
   15     15   
rustdoc-args = ["--cfg", "docsrs"]
   16     16   
   17     17   
[package.metadata.smithy-rs-release-tooling]
   18     18   
stable = true
   19     19   
   20     20   
[features]
   21     21   
event-stream = ["dep:aws-smithy-eventstream", "aws-sigv4/sign-eventstream"]
   22     22   
http-02x = []
   23     23   
http-1x = ["dep:http-1x", "dep:http-body-1x"]
   24     24   
test-util = ["dep:regex-lite"]
   25     25   
sigv4a = ["aws-sigv4/sigv4a"]
   26     26   
   27     27   
[dependencies]
   28     28   
bytes = "1.10.0"
   29     29   
fastrand = "2.3.0"
   30     30   
percent-encoding = "2.3.1"
   31     31   
pin-project-lite = "0.2.14"
   32     32   
tracing = "0.1.40"
   33     33   
   34     34   
[dependencies.aws-credential-types]
   35     35   
path = "../aws-credential-types"
   36     36   
version = "1.2.11"
   37     37   
   38     38   
[dependencies.aws-sigv4]
   39     39   
path = "../aws-sigv4"
   40     40   
features = ["http0-compat"]
   41     41   
version = "1.3.7"
   42     42   
   43     43   
[dependencies.aws-smithy-async]
   44     44   
path = "../aws-smithy-async"
   45     45   
version = "1.2.7"
   46     46   
   47     47   
[dependencies.aws-smithy-eventstream]
   48     48   
path = "../aws-smithy-eventstream"
   49     49   
optional = true
   50     50   
version = "0.60.14"
   51     51   
   52     52   
[dependencies.aws-smithy-http]
   53     53   
path = "../aws-smithy-http"
   54     54   
version = "0.62.6"
   55     55   
   56     56   
[dependencies.aws-smithy-runtime]
   57     57   
path = "../aws-smithy-runtime"
   58     58   
features = ["client"]
   59         -
version = "1.9.5"
          59  +
version = "1.9.6"
   60     60   
   61     61   
[dependencies.aws-smithy-runtime-api]
   62     62   
path = "../aws-smithy-runtime-api"
   63     63   
features = ["client"]
   64     64   
version = "1.9.3"
   65     65   
   66     66   
[dependencies.aws-smithy-types]
   67     67   
path = "../aws-smithy-types"
   68     68   
version = "1.3.5"
   69     69   

tmp-codegen-diff/aws-sdk/sdk/aws-runtime/src/user_agent/metrics.rs

@@ -183,183 +242,243 @@
  203    203   
            }
  204    204   
            FlexibleChecksumsReqWhenRequired => {
  205    205   
                Some(BusinessMetric::FlexibleChecksumsReqWhenRequired)
  206    206   
            }
  207    207   
            FlexibleChecksumsResWhenSupported => {
  208    208   
                Some(BusinessMetric::FlexibleChecksumsResWhenSupported)
  209    209   
            }
  210    210   
            FlexibleChecksumsResWhenRequired => {
  211    211   
                Some(BusinessMetric::FlexibleChecksumsResWhenRequired)
  212    212   
            }
         213  +
            ObservabilityOtelMetrics => Some(BusinessMetric::ObservabilityOtelMetrics),
  213    214   
            otherwise => {
  214    215   
                // This may occur if a customer upgrades only the `aws-smithy-runtime-api` crate
  215    216   
                // while continuing to use an outdated version of an SDK crate or the `aws-runtime`
  216    217   
                // crate.
  217    218   
                tracing::warn!(
  218    219   
                    "Attempted to provide `BusinessMetric` for `{otherwise:?}`, which is not recognized in the current version of the `aws-runtime` crate. \
  219    220   
                    Consider upgrading to the latest version to ensure that all tracked features are properly reported in your metrics."
  220    221   
                );
  221    222   
                None
  222    223   
            }

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-mocks/Cargo.toml

@@ -15,15 +0,45 @@
   35     35   
features = ["full"]
   36     36   
   37     37   
[dev-dependencies.aws-smithy-async]
   38     38   
path = "../aws-smithy-async"
   39     39   
features = ["rt-tokio"]
   40     40   
version = "1.2.7"
   41     41   
   42     42   
[dev-dependencies.aws-smithy-runtime]
   43     43   
path = "../aws-smithy-runtime"
   44     44   
features = ["client"]
   45         -
version = "1.9.5"
          45  +
version = "1.9.6"

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-observability-otel/Cargo.toml

@@ -1,1 +49,49 @@
    2      2   
[[bench]]
    3      3   
name = "sync_instruments"
    4      4   
harness = false
    5      5   
    6      6   
[[bench]]
    7      7   
name = "async_instruments"
    8      8   
harness = false
    9      9   
   10     10   
[package]
   11     11   
name = "aws-smithy-observability-otel"
   12         -
version = "0.1.3"
          12  +
version = "0.1.4"
   13     13   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
   14     14   
description = "Smithy OpenTelemetry observability implementation."
   15     15   
edition = "2021"
   16     16   
license = "Apache-2.0"
   17     17   
repository = "https://github.com/awslabs/smithy-rs"
   18     18   
rust-version = "1.88"
   19     19   
[package.metadata.docs.rs]
   20     20   
all-features = true
   21     21   
targets = ["x86_64-unknown-linux-gnu"]
   22     22   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
   23     23   
rustdoc-args = ["--cfg", "docsrs"]
   24     24   
   25     25   
[dependencies]
   26     26   
value-bag = "1.10.0"
   27     27   
async-global-executor = "2.4.1"
   28     28   
async-task = "=4.7.1"
   29     29   
   30     30   
[dependencies.aws-smithy-observability]
   31     31   
path = "../aws-smithy-observability"
   32         -
version = "0.1.5"
          32  +
version = "0.2.0"
   33     33   
   34     34   
[dependencies.opentelemetry]
   35     35   
version = "0.26.0"
   36     36   
features = ["metrics"]
   37     37   
[target."cfg(not(target_arch = \"powerpc\"))".dependencies.opentelemetry_sdk]
   38     38   
version = "0.26.0"
   39     39   
features = ["metrics", "testing"]
   40     40   
   41     41   
[dev-dependencies]
   42     42   
stats_alloc = "0.1.10"

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-observability-otel/src/meter.rs

@@ -259,259 +318,326 @@
  279    279   
            Ok(_) => Ok(()),
  280    280   
            Err(err) => Err(ObservabilityError::new(ErrorKind::Other, err)),
  281    281   
        }
  282    282   
    }
  283    283   
}
  284    284   
  285    285   
impl ProvideMeter for OtelMeterProvider {
  286    286   
    fn get_meter(&self, scope: &'static str, _attributes: Option<&Attributes>) -> Meter {
  287    287   
        Meter::new(Arc::new(MeterWrap(self.meter_provider.meter(scope))))
  288    288   
    }
         289  +
         290  +
    fn as_any(&self) -> &dyn std::any::Any {
         291  +
        self
         292  +
    }
         293  +
         294  +
    fn provider_name(&self) -> &'static str {
         295  +
        "otel"
         296  +
    }
  289    297   
}
  290    298   
  291    299   
#[cfg(test)]
  292    300   
mod tests {
  293    301   
  294    302   
    use std::sync::Arc;
  295    303   
  296    304   
    use aws_smithy_observability::instruments::AsyncMeasure;
  297    305   
    use aws_smithy_observability::{AttributeValue, Attributes, TelemetryProvider};
  298    306   
    use opentelemetry_sdk::metrics::{

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-observability/Cargo.toml

@@ -1,1 +21,21 @@
    1      1   
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
    2      2   
[package]
    3      3   
name = "aws-smithy-observability"
    4         -
version = "0.1.5"
           4  +
version = "0.2.0"
    5      5   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
    6      6   
description = "Smithy observability implementation."
    7      7   
edition = "2021"
    8      8   
license = "Apache-2.0"
    9      9   
repository = "https://github.com/awslabs/smithy-rs"
   10     10   
rust-version = "1.88"
   11     11   
[package.metadata.docs.rs]
   12     12   
all-features = true
   13     13   
targets = ["x86_64-unknown-linux-gnu"]
   14     14   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-observability/src/meter.rs

@@ -1,1 +49,64 @@
    7      7   
//! real time.
    8      8   
    9      9   
use crate::instruments::{
   10     10   
    AsyncInstrumentBuilder, AsyncMeasure, Histogram, InstrumentBuilder, MonotonicCounter,
   11     11   
    UpDownCounter,
   12     12   
};
   13     13   
use crate::{attributes::Attributes, instruments::ProvideInstrument};
   14     14   
use std::{borrow::Cow, fmt::Debug, sync::Arc};
   15     15   
   16     16   
/// Provides named instances of [Meter].
   17         -
pub trait ProvideMeter: Send + Sync + Debug {
          17  +
pub trait ProvideMeter: Send + Sync + Debug + 'static {
   18     18   
    /// Get or create a named [Meter].
   19     19   
    fn get_meter(&self, scope: &'static str, attributes: Option<&Attributes>) -> Meter;
          20  +
          21  +
    /// Returns a reference to `self` as `&dyn Any` for downcasting.
          22  +
    /// This allows type-based identification of meter providers.
          23  +
    fn as_any(&self) -> &dyn std::any::Any
          24  +
    where
          25  +
        Self: Sized,
          26  +
    {
          27  +
        self
          28  +
    }
          29  +
          30  +
    /// Returns the name of this provider implementation.
          31  +
    /// This is used for feature tracking without requiring type imports.
          32  +
    fn provider_name(&self) -> &'static str {
          33  +
        "unknown"
          34  +
    }
   20     35   
}
   21     36   
   22     37   
/// The entry point to creating instruments. A grouping of related metrics.
   23     38   
#[derive(Clone)]
   24     39   
pub struct Meter {
   25     40   
    pub(crate) instrument_provider: Arc<dyn ProvideInstrument + Send + Sync>,
   26     41   
}
   27     42   
   28     43   
impl Meter {
   29     44   
    /// Create a new [Meter] from an [ProvideInstrument]

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-observability/src/noop.rs

@@ -1,1 +56,64 @@
   17     17   
    context::Context,
   18     18   
    meter::{Meter, ProvideMeter},
   19     19   
};
   20     20   
   21     21   
#[derive(Debug)]
   22     22   
pub(crate) struct NoopMeterProvider;
   23     23   
impl ProvideMeter for NoopMeterProvider {
   24     24   
    fn get_meter(&self, _scope: &'static str, _attributes: Option<&Attributes>) -> Meter {
   25     25   
        Meter::new(Arc::new(NoopMeter))
   26     26   
    }
          27  +
          28  +
    fn as_any(&self) -> &dyn std::any::Any {
          29  +
        self
          30  +
    }
          31  +
          32  +
    fn provider_name(&self) -> &'static str {
          33  +
        "noop"
          34  +
    }
   27     35   
}
   28     36   
   29     37   
#[derive(Debug)]
   30     38   
pub(crate) struct NoopMeter;
   31     39   
impl ProvideInstrument for NoopMeter {
   32     40   
    fn create_gauge(
   33     41   
        &self,
   34     42   
        _builder: AsyncInstrumentBuilder<'_, Arc<dyn AsyncMeasure<Value = f64>>, f64>,
   35     43   
    ) -> Arc<dyn AsyncMeasure<Value = f64>> {
   36     44   
        Arc::new(NoopAsyncMeasurement(PhantomData::<f64>))

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-runtime/Cargo.toml

@@ -1,1 +80,80 @@
    1      1   
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
    2      2   
[package]
    3      3   
name = "aws-smithy-runtime"
    4         -
version = "1.9.5"
           4  +
version = "1.9.6"
    5      5   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Zelda Hessler <zhessler@amazon.com>"]
    6      6   
description = "The new smithy runtime crate"
    7      7   
edition = "2021"
    8      8   
license = "Apache-2.0"
    9      9   
repository = "https://github.com/smithy-lang/smithy-rs"
   10     10   
rust-version = "1.88"
   11     11   
[package.metadata.docs.rs]
   12     12   
all-features = true
   13     13   
targets = ["x86_64-unknown-linux-gnu"]
   14     14   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
   15     15   
rustdoc-args = ["--cfg", "docsrs"]
   16     16   
   17     17   
[package.metadata.smithy-rs-release-tooling]
   18     18   
stable = true
   19     19   
[package.metadata.cargo-udeps.ignore]
   20     20   
normal = ["aws-smithy-http"]
   21     21   
   22     22   
[features]
   23     23   
client = ["aws-smithy-runtime-api/client", "aws-smithy-types/http-body-1-x"]
   24     24   
http-auth = ["aws-smithy-runtime-api/http-auth"]
   25     25   
connector-hyper-0-14-x = ["dep:aws-smithy-http-client", "aws-smithy-http-client?/hyper-014"]
   26     26   
tls-rustls = ["dep:aws-smithy-http-client", "aws-smithy-http-client?/legacy-rustls-ring", "connector-hyper-0-14-x"]
   27     27   
default-https-client = ["dep:aws-smithy-http-client", "aws-smithy-http-client?/rustls-aws-lc"]
   28     28   
rt-tokio = ["tokio/rt"]
   29     29   
test-util = ["aws-smithy-runtime-api/test-util", "dep:tracing-subscriber", "aws-smithy-http-client/test-util", "legacy-test-util"]
   30     30   
legacy-test-util = ["aws-smithy-runtime-api/test-util", "dep:tracing-subscriber", "aws-smithy-http-client/test-util", "connector-hyper-0-14-x", "aws-smithy-http-client/legacy-test-util"]
   31     31   
wire-mock = ["legacy-test-util", "aws-smithy-http-client/wire-mock"]
   32     32   
   33     33   
[dependencies]
   34     34   
bytes = "1.10.0"
   35     35   
fastrand = "2.3.0"
   36     36   
pin-project-lite = "0.2.14"
   37     37   
pin-utils = "0.1.0"
   38     38   
tracing = "0.1.40"
   39     39   
   40     40   
[dependencies.aws-smithy-async]
   41     41   
path = "../aws-smithy-async"
   42     42   
version = "1.2.7"
   43     43   
   44     44   
[dependencies.aws-smithy-http]
   45     45   
path = "../aws-smithy-http"
   46     46   
version = "0.62.6"
   47     47   
   48     48   
[dependencies.aws-smithy-observability]
   49     49   
path = "../aws-smithy-observability"
   50         -
version = "0.1.5"
          50  +
version = "0.2.0"
   51     51   
   52     52   
[dependencies.aws-smithy-runtime-api]
   53     53   
path = "../aws-smithy-runtime-api"
   54     54   
version = "1.9.3"
   55     55   
   56     56   
[dependencies.aws-smithy-types]
   57     57   
path = "../aws-smithy-types"
   58     58   
features = ["http-body-0-4-x"]
   59     59   
version = "1.3.5"
   60     60   

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-runtime/src/client/sdk_feature.rs

@@ -1,1 +30,32 @@
   16     16   
    RetryModeAdaptive,
   17     17   
    FlexibleChecksumsReqCrc32,
   18     18   
    FlexibleChecksumsReqCrc32c,
   19     19   
    FlexibleChecksumsReqCrc64,
   20     20   
    FlexibleChecksumsReqSha1,
   21     21   
    FlexibleChecksumsReqSha256,
   22     22   
    FlexibleChecksumsReqWhenSupported,
   23     23   
    FlexibleChecksumsReqWhenRequired,
   24     24   
    FlexibleChecksumsResWhenSupported,
   25     25   
    FlexibleChecksumsResWhenRequired,
          26  +
    /// Indicates that a Smithy SDK client has been configured with an OpenTelemetry metrics provider
          27  +
    ObservabilityOtelMetrics,
   26     28   
}
   27     29   
   28     30   
impl Storable for SmithySdkFeature {
   29     31   
    type Storer = StoreAppend<Self>;
   30     32   
}

tmp-codegen-diff/aws-sdk/sdk/aws-types/Cargo.toml

@@ -13,13 +71,71 @@
   33     33   
path = "../aws-smithy-async"
   34     34   
version = "1.2.7"
   35     35   
   36     36   
[dependencies.aws-smithy-types]
   37     37   
path = "../aws-smithy-types"
   38     38   
version = "1.3.5"
   39     39   
   40     40   
[dependencies.aws-smithy-runtime]
   41     41   
path = "../aws-smithy-runtime"
   42     42   
optional = true
   43         -
version = "1.9.5"
          43  +
version = "1.9.6"
   44     44   
   45     45   
[dependencies.aws-smithy-runtime-api]
   46     46   
path = "../aws-smithy-runtime-api"
   47     47   
features = ["client"]
   48     48   
version = "1.9.3"
   49     49   
   50     50   
[dependencies.hyper-rustls]
   51     51   
version = "0.24.2"
   52     52   
optional = true
   53     53   
default-features = false

tmp-codegen-diff/aws-sdk/sdk/bedrockruntime/Cargo.toml

@@ -1,1 +151,155 @@
   15     15   
[package.metadata.docs.rs]
   16     16   
all-features = true
   17     17   
targets = ["x86_64-unknown-linux-gnu"]
   18     18   
[dependencies.aws-credential-types]
   19     19   
path = "../aws-credential-types"
   20     20   
version = "1.2.11"
   21     21   
   22     22   
[dependencies.aws-runtime]
   23     23   
path = "../aws-runtime"
   24     24   
features = ["event-stream"]
   25         -
version = "1.5.17"
          25  +
version = "1.5.18"
   26     26   
   27     27   
[dependencies.aws-sigv4]
   28     28   
path = "../aws-sigv4"
   29     29   
version = "1.3.7"
   30     30   
   31     31   
[dependencies.aws-smithy-async]
   32     32   
path = "../aws-smithy-async"
   33     33   
version = "1.2.7"
   34     34   
   35     35   
[dependencies.aws-smithy-eventstream]
   36     36   
path = "../aws-smithy-eventstream"
   37     37   
version = "0.60.14"
   38     38   
   39     39   
[dependencies.aws-smithy-http]
   40     40   
path = "../aws-smithy-http"
   41     41   
features = ["event-stream"]
   42     42   
version = "0.62.6"
   43     43   
   44     44   
[dependencies.aws-smithy-json]
   45     45   
path = "../aws-smithy-json"
   46     46   
version = "0.61.8"
   47     47   
          48  +
[dependencies.aws-smithy-observability]
          49  +
path = "../aws-smithy-observability"
          50  +
version = "0.2.0"
          51  +
   48     52   
[dependencies.aws-smithy-runtime]
   49     53   
path = "../aws-smithy-runtime"
   50     54   
features = ["client", "http-auth"]
   51         -
version = "1.9.5"
          55  +
version = "1.9.6"
   52     56   
   53     57   
[dependencies.aws-smithy-runtime-api]
   54     58   
path = "../aws-smithy-runtime-api"
   55     59   
features = ["client", "http-02x", "http-auth"]
   56     60   
version = "1.9.3"
   57     61   
   58     62   
[dependencies.aws-smithy-types]
   59     63   
path = "../aws-smithy-types"
   60     64   
features = ["http-body-0-4-x"]
   61     65   
version = "1.3.5"
   62     66   
   63     67   
[dependencies.aws-types]
   64     68   
path = "../aws-types"
   65     69   
version = "1.3.11"
   66     70   
   67     71   
[dependencies.bytes]
   68     72   
version = "1.4.0"
   69     73   
   70     74   
[dependencies.fastrand]
   71     75   
version = "2.0.0"
   72     76   
   73     77   
[dependencies.http]
   74     78   
version = "0.2.9"
   75     79   
   76     80   
[dependencies.hyper]
   77     81   
version = "0.14.26"
   78     82   
features = ["stream"]
   79     83   
   80     84   
[dependencies.regex-lite]
   81     85   
version = "0.1.5"
   82     86   
   83     87   
[dependencies.tracing]
   84     88   
version = "0.1"
   85     89   
[dev-dependencies.aws-config]
   86     90   
path = "../aws-config"
   87     91   
version = "1.8.12"
   88     92   
   89     93   
[dev-dependencies.aws-credential-types]
   90     94   
path = "../aws-credential-types"
   91     95   
features = ["test-util"]
   92     96   
version = "1.2.11"
   93     97   
   94     98   
[dev-dependencies.aws-runtime]
   95     99   
path = "../aws-runtime"
   96    100   
features = ["test-util"]
   97         -
version = "1.5.17"
         101  +
version = "1.5.18"
   98    102   
   99    103   
[dev-dependencies.aws-smithy-async]
  100    104   
path = "../aws-smithy-async"
  101    105   
features = ["test-util"]
  102    106   
version = "1.2.7"
  103    107   
  104    108   
[dev-dependencies.aws-smithy-eventstream]
  105    109   
path = "../aws-smithy-eventstream"
  106    110   
features = ["test-util"]
  107    111   
version = "0.60.14"
  108    112   
  109    113   
[dev-dependencies.aws-smithy-http-client]
  110    114   
path = "../aws-smithy-http-client"
  111    115   
features = ["test-util", "wire-mock"]
  112    116   
version = "1.1.5"
  113    117   
  114    118   
[dev-dependencies.aws-smithy-protocol-test]
  115    119   
path = "../aws-smithy-protocol-test"
  116    120   
version = "0.63.7"
  117    121   
  118    122   
[dev-dependencies.aws-smithy-runtime]
  119    123   
path = "../aws-smithy-runtime"
  120    124   
features = ["test-util"]
  121         -
version = "1.9.5"
         125  +
version = "1.9.6"
  122    126   
  123    127   
[dev-dependencies.aws-smithy-runtime-api]
  124    128   
path = "../aws-smithy-runtime-api"
  125    129   
features = ["test-util"]
  126    130   
version = "1.9.3"
  127    131   
  128    132   
[dev-dependencies.aws-smithy-types]
  129    133   
path = "../aws-smithy-types"
  130    134   
features = ["test-util"]
  131    135   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/bedrockruntime/src/config.rs

@@ -1345,1345 +1404,1405 @@
 1365   1365   
        runtime_components.push_interceptor(crate::sdk_feature_tracker::retry_mode::RetryModeFeatureTrackerInterceptor::new());
 1366   1366   
        runtime_components.push_interceptor(::aws_runtime::service_clock_skew::ServiceClockSkewInterceptor::new());
 1367   1367   
        runtime_components.push_interceptor(::aws_runtime::request_info::RequestInfoInterceptor::new());
 1368   1368   
        runtime_components.push_interceptor(::aws_runtime::user_agent::UserAgentInterceptor::new());
 1369   1369   
        runtime_components.push_interceptor(::aws_runtime::invocation_id::InvocationIdInterceptor::new());
 1370   1370   
        runtime_components.push_interceptor(::aws_runtime::recursion_detection::RecursionDetectionInterceptor::new());
 1371   1371   
        runtime_components.push_auth_scheme(::aws_smithy_runtime_api::client::auth::SharedAuthScheme::new(
 1372   1372   
            ::aws_runtime::auth::sigv4::SigV4AuthScheme::new(),
 1373   1373   
        ));
 1374   1374   
        runtime_components.push_interceptor(crate::config::endpoint::EndpointOverrideFeatureTrackerInterceptor);
        1375  +
        runtime_components.push_interceptor(crate::observability_feature::ObservabilityFeatureTrackerInterceptor);
 1375   1376   
        Self { config, runtime_components }
 1376   1377   
    }
 1377   1378   
}
 1378   1379   
 1379   1380   
impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ServiceRuntimePlugin {
 1380   1381   
    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
 1381   1382   
        self.config.clone()
 1382   1383   
    }
 1383   1384   
 1384   1385   
    fn order(&self) -> ::aws_smithy_runtime_api::client::runtime_plugin::Order {

tmp-codegen-diff/aws-sdk/sdk/bedrockruntime/src/lib.rs

@@ -168,168 +213,215 @@
  188    188   
pub mod types;
  189    189   
  190    190   
pub(crate) mod client_idempotency_token;
  191    191   
  192    192   
mod event_receiver;
  193    193   
  194    194   
mod event_stream_serde;
  195    195   
  196    196   
mod idempotency_token;
  197    197   
         198  +
mod observability_feature;
         199  +
  198    200   
pub(crate) mod protocol_serde;
  199    201   
  200    202   
mod sdk_feature_tracker;
  201    203   
  202    204   
mod serialization_settings;
  203    205   
  204    206   
mod endpoint_lib;
  205    207   
  206    208   
mod lens;
  207    209