Commit 7a177ad0 authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

Update SDK models

parent 77740c16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
[workspace]
resolver = "2"
exclude = [
    "tests/webassembly",
    "tests/no-default-features",
    "tests/webassembly",
    "tests/telemetry"
]
members = [
+6 −0
Original line number Diff line number Diff line
@@ -33819,6 +33819,12 @@
          }
        }
      },
      "kafkaconnect" : {
        "endpoints" : {
          "us-gov-east-1" : { },
          "us-gov-west-1" : { }
        }
      },
      "kendra" : {
        "endpoints" : {
          "fips-us-gov-west-1" : {
+99 −3
Original line number Diff line number Diff line
@@ -894,6 +894,12 @@
                    "traits": {
                        "smithy.api#enumValue": "DeploymentError.WorkspaceUnreachable"
                    }
                },
                "APPLICATION_OLDVERSIONEXIST_FAILURE": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "ValidationError.ApplicationOldVersionExists"
                    }
                }
            }
        },
@@ -2849,6 +2855,66 @@
                        "smithy.api#enumValue": "IN_PROGRESS"
                    }
                },
                "PROCESSING_SOURCE_IMAGE": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "PROCESSING_SOURCE_IMAGE"
                    }
                },
                "IMAGE_TESTING_START": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "IMAGE_TESTING_START"
                    }
                },
                "UPDATING_OPERATING_SYSTEM": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "UPDATING_OPERATING_SYSTEM"
                    }
                },
                "IMAGE_COMPATIBILITY_CHECKING": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "IMAGE_COMPATIBILITY_CHECKING"
                    }
                },
                "IMAGE_TESTING_GENERALIZATION": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "IMAGE_TESTING_GENERALIZATION"
                    }
                },
                "CREATING_TEST_INSTANCE": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "CREATING_TEST_INSTANCE"
                    }
                },
                "INSTALLING_COMPONENTS": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "INSTALLING_COMPONENTS"
                    }
                },
                "GENERALIZING": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "GENERALIZING"
                    }
                },
                "VALIDATING": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "VALIDATING"
                    }
                },
                "PUBLISHING": {
                    "target": "smithy.api#Unit",
                    "traits": {
                        "smithy.api#enumValue": "PUBLISHING"
                    }
                },
                "COMPLETED": {
                    "target": "smithy.api#Unit",
                    "traits": {
@@ -4450,6 +4516,18 @@
                        "smithy.api#documentation": "<p>The state of the WorkSpace image.</p>"
                    }
                },
                "StateMessage": {
                    "target": "com.amazonaws.workspaces#WorkflowStateMessage",
                    "traits": {
                        "smithy.api#documentation": "<p>The state message of the WorkSpace image import workflow.</p>"
                    }
                },
                "ProgressPercentage": {
                    "target": "com.amazonaws.workspaces#Percentage",
                    "traits": {
                        "smithy.api#documentation": "<p>The estimated progress percentage of the WorkSpace image import workflow.</p>"
                    }
                },
                "Created": {
                    "target": "com.amazonaws.workspaces#Timestamp",
                    "traits": {
@@ -8213,6 +8291,15 @@
                "target": "com.amazonaws.workspaces#PendingCreateStandbyWorkspacesRequest"
            }
        },
        "com.amazonaws.workspaces#Percentage": {
            "type": "integer",
            "traits": {
                "smithy.api#range": {
                    "min": 0,
                    "max": 100
                }
            }
        },
        "com.amazonaws.workspaces#Platform": {
            "type": "enum",
            "members": {
@@ -10683,6 +10770,15 @@
                "target": "com.amazonaws.workspaces#WorkSpaceAssociatedResourceType"
            }
        },
        "com.amazonaws.workspaces#WorkflowStateMessage": {
            "type": "string",
            "traits": {
                "smithy.api#length": {
                    "min": 1,
                    "max": 1000
                }
            }
        },
        "com.amazonaws.workspaces#Workspace": {
            "type": "structure",
            "members": {
+1 −1
Original line number Diff line number Diff line
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
[package]
name = "aws-sdk-workspaces"
version = "1.107.0"
version = "1.108.0"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Russell Cohen <rcoh@amazon.com>"]
description = "AWS SDK for Amazon WorkSpaces"
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ your project, add the following to your **Cargo.toml** file:
```toml
[dependencies]
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-workspaces = "1.107.0"
aws-sdk-workspaces = "1.108.0"
tokio = { version = "1", features = ["full"] }
```

Loading