Skip to content

Commit 394a4eb

Browse files
committed
bump
1 parent 94cc9a4 commit 394a4eb

File tree

1,340 files changed

+20849
-40540
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,340 files changed

+20849
-40540
lines changed

Cargo.lock

Lines changed: 39 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/amzn-codewhisperer-client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[package]
1313
edition = "2021"
1414
name = "amzn-codewhisperer-client"
15-
version = "0.1.8702"
15+
version = "0.1.9759"
1616
authors = ["Grant Gurvis <[email protected]>"]
1717
build = false
1818
exclude = [
@@ -64,10 +64,10 @@ version = "1.5.5"
6464
version = "1.2.4"
6565

6666
[dependencies.aws-smithy-http]
67-
version = "0.62.1"
67+
version = "0.60.12"
6868

6969
[dependencies.aws-smithy-json]
70-
version = "0.61.3"
70+
version = "0.61.2"
7171

7272
[dependencies.aws-smithy-runtime]
7373
version = "1.7.8"

crates/amzn-codewhisperer-client/src/auth_plugin.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2-
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
// SPDX-License-Identifier: Apache-2.0
2+
/*
3+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
46

57
use std::borrow::Cow;
68

7-
use aws_smithy_runtime_api::client::auth::AuthSchemeId;
89
use aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolver;
10+
use aws_smithy_runtime_api::client::auth::AuthSchemeId;
911
use aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder;
10-
use aws_smithy_runtime_api::client::runtime_plugin::{
11-
Order,
12-
RuntimePlugin,
13-
};
12+
use aws_smithy_runtime_api::client::runtime_plugin::{Order, RuntimePlugin};
1413

1514
#[derive(Debug)]
1615
pub(crate) struct DefaultAuthOptionsPlugin {

crates/amzn-codewhisperer-client/src/client.rs

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ pub(crate) struct Handle {
88

99
/// Client for Amazon CodeWhisperer
1010
///
11-
/// Client for invoking operations on Amazon CodeWhisperer. Each operation on Amazon CodeWhisperer
12-
/// is a method on this this struct. `.send()` MUST be invoked on the generated operations to
13-
/// dispatch the request to the service.
11+
/// Client for invoking operations on Amazon CodeWhisperer. Each operation on Amazon CodeWhisperer is a method on this
12+
/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.
1413
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
1514
pub struct Client {
1615
handle: ::std::sync::Arc<Handle>,
@@ -62,14 +61,11 @@ impl Client {
6261
///
6362
/// # Panics
6463
///
65-
/// - This method will panic if the `sdk_config` is missing an async sleep implementation. If
66-
/// you experience this panic, set the `sleep_impl` on the Config passed into this function to
67-
/// fix it.
68-
/// - This method will panic if the `sdk_config` is missing an HTTP connector. If you experience
69-
/// this panic, set the `http_connector` on the Config passed into this function to fix it.
70-
/// - This method will panic if no `BehaviorVersion` is provided. If you experience this panic,
71-
/// set `behavior_version` on the Config or enable the `behavior-version-latest` Cargo
72-
/// feature.
64+
/// - This method will panic if the `sdk_config` is missing an async sleep implementation. If you experience this panic, set
65+
/// the `sleep_impl` on the Config passed into this function to fix it.
66+
/// - This method will panic if the `sdk_config` is missing an HTTP connector. If you experience this panic, set the
67+
/// `http_connector` on the Config passed into this function to fix it.
68+
/// - This method will panic if no `BehaviorVersion` is provided. If you experience this panic, set `behavior_version` on the Config or enable the `behavior-version-latest` Cargo feature.
7369
#[track_caller]
7470
pub fn new(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
7571
Self::from_conf(sdk_config.into())
@@ -89,6 +85,7 @@ mod create_user_memory_entry;
8985
mod create_workspace;
9086

9187
/// Operation customization and supporting types.
88+
///
9289
pub mod customize;
9390

9491
mod delete_task_assist_conversation;
@@ -115,6 +112,8 @@ mod get_usage_limits;
115112

116113
mod list_available_customizations;
117114

115+
mod list_available_models;
116+
118117
mod list_available_profiles;
119118

120119
mod list_code_analysis_findings;
Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
impl super::Client {
3-
/// Constructs a fluent builder for the
4-
/// [`CreateArtifactUploadUrl`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder)
5-
/// operation.
3+
/// Constructs a fluent builder for the [`CreateArtifactUploadUrl`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder) operation.
64
///
75
/// - The fluent builder is configurable:
86
/// - [`content_md5(impl Into<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::content_md5) / [`set_content_md5(Option<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::set_content_md5):<br>required: **false**<br>(undocumented)<br>
@@ -14,22 +12,13 @@ impl super::Client {
1412
/// - [`upload_context(UploadContext)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::upload_context) / [`set_upload_context(Option<UploadContext>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::set_upload_context):<br>required: **false**<br>(undocumented)<br>
1513
/// - [`upload_id(impl Into<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::upload_id) / [`set_upload_id(Option<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::set_upload_id):<br>required: **false**<br>Upload ID returned by CreateUploadUrl API<br>
1614
/// - [`profile_arn(impl Into<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::profile_arn) / [`set_profile_arn(Option<String>)`](crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::set_profile_arn):<br>required: **false**<br>(undocumented)<br>
17-
/// - On success, responds with
18-
/// [`CreateArtifactUploadUrlOutput`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput)
19-
/// with field(s):
15+
/// - On success, responds with [`CreateArtifactUploadUrlOutput`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput) with field(s):
2016
/// - [`upload_id(String)`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput::upload_id): Upload ID returned by CreateUploadUrl API
2117
/// - [`upload_url(String)`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput::upload_url): (undocumented)
2218
/// - [`kms_key_arn(Option<String>)`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput::kms_key_arn): (undocumented)
23-
/// - [`request_headers(Option<HashMap::<String,
24-
/// String>>)`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput::request_headers):
25-
/// (undocumented)
26-
/// - On failure, responds with
27-
/// [`SdkError<CreateArtifactUploadUrlError>`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlError)
28-
pub fn create_artifact_upload_url(
29-
&self,
30-
) -> crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder {
31-
crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::new(
32-
self.handle.clone(),
33-
)
19+
/// - [`request_headers(Option<HashMap::<String, String>>)`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlOutput::request_headers): (undocumented)
20+
/// - On failure, responds with [`SdkError<CreateArtifactUploadUrlError>`](crate::operation::create_artifact_upload_url::CreateArtifactUploadUrlError)
21+
pub fn create_artifact_upload_url(&self) -> crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder {
22+
crate::operation::create_artifact_upload_url::builders::CreateArtifactUploadUrlFluentBuilder::new(self.handle.clone())
3423
}
3524
}
Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,16 @@
11
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
impl super::Client {
3-
/// Constructs a fluent builder for the
4-
/// [`CreateSubscriptionToken`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder)
5-
/// operation.
3+
/// Constructs a fluent builder for the [`CreateSubscriptionToken`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder) operation.
64
///
75
/// - The fluent builder is configurable:
8-
/// - [`account_id(impl Into<String>)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::set_account_id):<br>required: **true**<br>Represents the AWS account ID of the customer<br>
96
/// - [`client_token(impl Into<String>)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::set_client_token):<br>required: **false**<br>(undocumented)<br>
10-
/// - On success, responds with
11-
/// [`CreateSubscriptionTokenOutput`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput)
12-
/// with field(s):
13-
/// - [`encoded_verification_url(String)`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput::encoded_verification_url): (undocumented)
14-
/// - [`token(String)`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput::token): (undocumented)
7+
/// - [`status_only(bool)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::status_only) / [`set_status_only(Option<bool>)`](crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::set_status_only):<br>required: **false**<br>(undocumented)<br>
8+
/// - On success, responds with [`CreateSubscriptionTokenOutput`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput) with field(s):
9+
/// - [`encoded_verification_url(Option<String>)`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput::encoded_verification_url): (undocumented)
10+
/// - [`token(Option<String>)`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput::token): (undocumented)
1511
/// - [`status(SubscriptionStatus)`](crate::operation::create_subscription_token::CreateSubscriptionTokenOutput::status): (undocumented)
16-
/// - On failure, responds with
17-
/// [`SdkError<CreateSubscriptionTokenError>`](crate::operation::create_subscription_token::CreateSubscriptionTokenError)
18-
pub fn create_subscription_token(
19-
&self,
20-
) -> crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder {
21-
crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::new(
22-
self.handle.clone(),
23-
)
12+
/// - On failure, responds with [`SdkError<CreateSubscriptionTokenError>`](crate::operation::create_subscription_token::CreateSubscriptionTokenError)
13+
pub fn create_subscription_token(&self) -> crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder {
14+
crate::operation::create_subscription_token::builders::CreateSubscriptionTokenFluentBuilder::new(self.handle.clone())
2415
}
2516
}
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
22
impl super::Client {
3-
/// Constructs a fluent builder for the
4-
/// [`CreateTaskAssistConversation`](crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder)
5-
/// operation.
3+
/// Constructs a fluent builder for the [`CreateTaskAssistConversation`](crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder) operation.
64
///
75
/// - The fluent builder is configurable:
86
/// - [`profile_arn(impl Into<String>)`](crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder::profile_arn) / [`set_profile_arn(Option<String>)`](crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder::set_profile_arn):<br>required: **false**<br>(undocumented)<br>
@@ -12,8 +10,6 @@ impl super::Client {
1210
pub fn create_task_assist_conversation(
1311
&self,
1412
) -> crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder {
15-
crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder::new(
16-
self.handle.clone(),
17-
)
13+
crate::operation::create_task_assist_conversation::builders::CreateTaskAssistConversationFluentBuilder::new(self.handle.clone())
1814
}
1915
}

0 commit comments

Comments
 (0)