Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: sync models and bump smithy-kotlin #1041

Merged
merged 2 commits into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changes/cef3d2d7-04ab-42f4-a60a-2b85dbfde865.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"id": "cef3d2d7-04ab-42f4-a60a-2b85dbfde865",
"type": "misc",
"description": "Sync AWS models and bump smithy-kotlin"
}
12 changes: 8 additions & 4 deletions codegen/sdk/aws-models/appflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -9253,15 +9253,19 @@
"username": {
"target": "com.amazonaws.appflow#Username",
"traits": {
"smithy.api#documentation": "<p> The name of the user. </p>",
"smithy.api#required": {}
"smithy.api#documentation": "<p> The name of the user. </p>"
}
},
"password": {
"target": "com.amazonaws.appflow#Password",
"traits": {
"smithy.api#documentation": "<p> The password that corresponds to the user name. </p>",
"smithy.api#required": {}
"smithy.api#documentation": "<p> The password that corresponds to the user name. </p>"
}
},
"oAuth2Credentials": {
"target": "com.amazonaws.appflow#OAuth2Credentials",
"traits": {
"smithy.api#documentation": "<p> The OAuth 2.0 credentials required to authenticate the user. </p>"
}
}
},
Expand Down
104 changes: 104 additions & 0 deletions codegen/sdk/aws-models/billingconductor.json
Original file line number Diff line number Diff line change
Expand Up @@ -2271,6 +2271,12 @@
"smithy.api#documentation": "<p>The type of the custom line item that indicates whether the charge is a fee or credit.</p>",
"smithy.api#required": {}
}
},
"LineItemFilters": {
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
"traits": {
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
}
}
},
"traits": {
Expand Down Expand Up @@ -3012,6 +3018,81 @@
"smithy.api#httpError": 500
}
},
"com.amazonaws.billingconductor#LineItemFilter": {
"type": "structure",
"members": {
"Attribute": {
"target": "com.amazonaws.billingconductor#LineItemFilterAttributeName",
"traits": {
"smithy.api#documentation": "<p>The attribute of the line item filter. This specifies what attribute that you can filter\n on.</p>",
"smithy.api#required": {}
}
},
"MatchOption": {
"target": "com.amazonaws.billingconductor#MatchOption",
"traits": {
"smithy.api#documentation": "<p>The match criteria of the line item filter. This parameter specifies whether not to include the resource value from the billing group total cost.</p>",
"smithy.api#required": {}
}
},
"Values": {
"target": "com.amazonaws.billingconductor#LineItemFilterValuesList",
"traits": {
"smithy.api#documentation": "<p>The values of the line item filter. This specifies the values to filter on. Currently, you can only exclude Savings Plan discounts.</p>",
"smithy.api#required": {}
}
}
},
"traits": {
"smithy.api#documentation": "<p>A representation of the line item filter for your custom line item. You can use line item filters to include or exclude specific resource values from the billing group's total cost. \n For example, if you create a custom line item and you want to filter out a value, such as\n Savings Plan discounts, you can update <code>LineItemFilter</code> to exclude it.</p>"
}
},
"com.amazonaws.billingconductor#LineItemFilterAttributeName": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "LINE_ITEM_TYPE",
"name": "LINE_ITEM_TYPE"
}
]
}
},
"com.amazonaws.billingconductor#LineItemFilterValue": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "SAVINGS_PLAN_NEGATION",
"name": "SAVINGS_PLAN_NEGATION"
}
]
}
},
"com.amazonaws.billingconductor#LineItemFilterValuesList": {
"type": "list",
"member": {
"target": "com.amazonaws.billingconductor#LineItemFilterValue"
},
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1
}
}
},
"com.amazonaws.billingconductor#LineItemFiltersList": {
"type": "list",
"member": {
"target": "com.amazonaws.billingconductor#LineItemFilter"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 1
}
}
},
"com.amazonaws.billingconductor#ListAccountAssociations": {
"type": "operation",
"input": {
Expand Down Expand Up @@ -3373,6 +3454,12 @@
"smithy.api#documentation": "<p>\n The type of the custom line item that indicates whether the charge is a <code>fee</code> or <code>credit</code>.\n </p>",
"smithy.api#required": {}
}
},
"LineItemFilters": {
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
"traits": {
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
}
}
},
"traits": {
Expand Down Expand Up @@ -4291,6 +4378,17 @@
"com.amazonaws.billingconductor#MarginPercentage": {
"type": "string"
},
"com.amazonaws.billingconductor#MatchOption": {
"type": "string",
"traits": {
"smithy.api#enum": [
{
"value": "NOT_EQUAL",
"name": "NOT_EQUAL"
}
]
}
},
"com.amazonaws.billingconductor#MaxBillingGroupResults": {
"type": "integer",
"traits": {
Expand Down Expand Up @@ -5335,6 +5433,12 @@
"traits": {
"smithy.api#documentation": "<p>\n An <code>UpdateCustomLineItemPercentageChargeDetails</code> that describes the new charge details of a percentage custom line item.\n </p>"
}
},
"LineItemFilters": {
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
"traits": {
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
}
}
},
"traits": {
Expand Down
Loading
Loading