-
Notifications
You must be signed in to change notification settings - Fork 267
Description
Describe the bug
In aws-models/quicksight.json DataSourceParameters has the union type, but the api appears to return a structure type with nulls for the other variants. Due to this, when calling aws_sdk_quicksight::Client::list_data_sources() it errors due to AmazonElasticsearchParameters being returned as null.
Expected Behavior
Calling aws_sdk_quicksight::Client::list_data_sources() should correctly parse the returned api response and provide a single enum variant of DataSourceParameters.
Current Behavior
The api appears to return a structure type instead of a union type, so it has a null value for all possible variants, except the variant it actually is. The generated code bounces off of the first variant check which is AmazonElasticsearchParameters.
body of datasourceparameters from the trace logs:
{
"AmazonElasticsearchParameters": null,
"AmazonOpenSearchParameters": null,
"AppFlowParameters": null,
"AthenaParameters": null,
"AuroraParameters": null,
"AuroraPostgreSqlParameters": null,
"AwsIotAnalyticsParameters": null,
"BigQueryParameters": null,
"DatabricksParameters": null,
"Db2Parameters": null,
"DenodoParameters": null,
"DocumentDBParameters": null,
"DremioParameters": null,
"ExasolParameters": null,
"GoogleAnalyticsParameters": null,
"JiraParameters": null,
"MariaDbParameters": null,
"MongoAtlasParameters": null,
"MongoDBParameters": null,
"MySqlParameters": null,
"OracleParameters": null,
"PostgreSqlParameters": null,
"PrestoParameters": null,
"RdsParameters": null,
"RedshiftParameters": null,
"S3Parameters": {
"IsUploaded": false,
"ManifestFileLocation": {
"Bucket": "deided-bucket.prod.us-east-1",
"Key": "sales/manifest.json"
},
"RoleArn": null
},
"SalesforceParameters": null,
"SapHanaParameters": null,
"ServiceNowParameters": null,
"SnowflakeParameters": null,
"SparkParameters": null,
"SqlServerParameters": null,
"StarburstParameters": null,
"TeradataParameters": null,
"TrinoParameters": null,
"TwitterParameters": null
}
stdout from test to reproduce issue
---- backup::reproduce_error stdout ----
thread 'backup::reproduce_error' panicked at src/backup.rs:175:47:
called `Result::unwrap()` on an `Err` value: service error
Caused by:
0: unhandled error
1: failed to parse JSON: value for 'AmazonElasticsearchParameters' cannot be null
Reproduction Steps
let config = aws_config::defaults(aws_config::BehaviorVersion::latest()).load.await;
let client = aws_sdk_quicksight::Client::new(&config);
let resp = client.list_data_sources().aws_account_id("<id here>").send.await;
resp will be a service error about failing to parse json.
Possible Solution
A quick fix that I validated works is to use a structure type instead of a union type in the aws-model, like boto3 does. This severely limits the usability of the type however since you can no longer match against it to determine which DataSourceParameters variant it used. It's possible this is more of a QuickSight api problem, as it returns surprising/unexpected data.
Additional Information/Context
No response
Version
├── aws-config v1.1.7
│ ├── aws-credential-types v1.1.7
│ │ ├── aws-smithy-async v1.1.7
│ │ ├── aws-smithy-runtime-api v1.1.7
│ │ │ ├── aws-smithy-async v1.1.7 (*)
│ │ │ ├── aws-smithy-types v1.1.7
│ │ ├── aws-smithy-types v1.1.7 (*)
│ ├── aws-runtime v1.1.7
│ │ ├── aws-credential-types v1.1.7 (*)
│ │ ├── aws-sigv4 v1.1.7
│ │ │ ├── aws-credential-types v1.1.7 (*)
│ │ │ ├── aws-smithy-http v0.60.6
│ │ │ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ │ │ ├── aws-smithy-types v1.1.7 (*)
│ │ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-smithy-async v1.1.7 (*)
│ │ ├── aws-smithy-http v0.60.6 (*)
│ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-types v1.1.7
│ │ │ ├── aws-credential-types v1.1.7 (*)
│ │ │ ├── aws-smithy-async v1.1.7 (*)
│ │ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ │ ├── aws-smithy-types v1.1.7 (*)
│ ├── aws-sdk-sso v1.15.0
│ │ ├── aws-credential-types v1.1.7 (*)
│ │ ├── aws-runtime v1.1.7 (*)
│ │ ├── aws-smithy-async v1.1.7 (*)
│ │ ├── aws-smithy-http v0.60.6 (*)
│ │ ├── aws-smithy-json v0.60.6
│ │ │ └── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-smithy-runtime v1.1.7
│ │ │ ├── aws-smithy-async v1.1.7 (*)
│ │ │ ├── aws-smithy-http v0.60.6 (*)
│ │ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-types v1.1.7 (*)
│ ├── aws-sdk-ssooidc v1.15.0
│ │ ├── aws-credential-types v1.1.7 (*)
│ │ ├── aws-runtime v1.1.7 (*)
│ │ ├── aws-smithy-async v1.1.7 (*)
│ │ ├── aws-smithy-http v0.60.6 (*)
│ │ ├── aws-smithy-json v0.60.6 (*)
│ │ ├── aws-smithy-runtime v1.1.7 (*)
│ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-types v1.1.7 (*)
│ ├── aws-sdk-sts v1.15.0
│ │ ├── aws-credential-types v1.1.7 (*)
│ │ ├── aws-runtime v1.1.7 (*)
│ │ ├── aws-smithy-async v1.1.7 (*)
│ │ ├── aws-smithy-http v0.60.6 (*)
│ │ ├── aws-smithy-json v0.60.6 (*)
│ │ ├── aws-smithy-query v0.60.6
│ │ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-smithy-runtime v1.1.7 (*)
│ │ ├── aws-smithy-runtime-api v1.1.7 (*)
│ │ ├── aws-smithy-types v1.1.7 (*)
│ │ ├── aws-smithy-xml v0.60.6
│ │ ├── aws-types v1.1.7 (*)
│ ├── aws-smithy-async v1.1.7 (*)
│ ├── aws-smithy-http v0.60.6 (*)
│ ├── aws-smithy-json v0.60.6 (*)
│ ├── aws-smithy-runtime v1.1.7 (*)
│ ├── aws-smithy-runtime-api v1.1.7 (*)
│ ├── aws-smithy-types v1.1.7 (*)
│ ├── aws-types v1.1.7 (*)
├── aws-sdk-quicksight v1.17.0
│ ├── aws-credential-types v1.1.7 (*)
│ ├── aws-runtime v1.1.7 (*)
│ ├── aws-smithy-async v1.1.7 (*)
│ ├── aws-smithy-http v0.60.6 (*)
│ ├── aws-smithy-json v0.60.6 (*)
│ ├── aws-smithy-runtime v1.1.7 (*)
│ ├── aws-smithy-runtime-api v1.1.7 (*)
│ ├── aws-smithy-types v1.1.7 (*)
│ ├── aws-types v1.1.7 (*)
### Environment details (OS name and version, etc.)
macOS Ventura 13.6 and Pop!_OS 22.04 LTS
### Logs
_No response_