Skip to content

Commit a3a21f4

Browse files
authored
misc: sync models and bump smithy-kotlin (#1041)
1 parent 1ed3546 commit a3a21f4

35 files changed

+5930
-1230
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "cef3d2d7-04ab-42f4-a60a-2b85dbfde865",
3+
"type": "misc",
4+
"description": "Sync AWS models and bump smithy-kotlin"
5+
}

codegen/sdk/aws-models/appflow.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9253,15 +9253,19 @@
92539253
"username": {
92549254
"target": "com.amazonaws.appflow#Username",
92559255
"traits": {
9256-
"smithy.api#documentation": "<p> The name of the user. </p>",
9257-
"smithy.api#required": {}
9256+
"smithy.api#documentation": "<p> The name of the user. </p>"
92589257
}
92599258
},
92609259
"password": {
92619260
"target": "com.amazonaws.appflow#Password",
92629261
"traits": {
9263-
"smithy.api#documentation": "<p> The password that corresponds to the user name. </p>",
9264-
"smithy.api#required": {}
9262+
"smithy.api#documentation": "<p> The password that corresponds to the user name. </p>"
9263+
}
9264+
},
9265+
"oAuth2Credentials": {
9266+
"target": "com.amazonaws.appflow#OAuth2Credentials",
9267+
"traits": {
9268+
"smithy.api#documentation": "<p> The OAuth 2.0 credentials required to authenticate the user. </p>"
92659269
}
92669270
}
92679271
},

codegen/sdk/aws-models/billingconductor.json

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2271,6 +2271,12 @@
22712271
"smithy.api#documentation": "<p>The type of the custom line item that indicates whether the charge is a fee or credit.</p>",
22722272
"smithy.api#required": {}
22732273
}
2274+
},
2275+
"LineItemFilters": {
2276+
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
2277+
"traits": {
2278+
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
2279+
}
22742280
}
22752281
},
22762282
"traits": {
@@ -3012,6 +3018,81 @@
30123018
"smithy.api#httpError": 500
30133019
}
30143020
},
3021+
"com.amazonaws.billingconductor#LineItemFilter": {
3022+
"type": "structure",
3023+
"members": {
3024+
"Attribute": {
3025+
"target": "com.amazonaws.billingconductor#LineItemFilterAttributeName",
3026+
"traits": {
3027+
"smithy.api#documentation": "<p>The attribute of the line item filter. This specifies what attribute that you can filter\n on.</p>",
3028+
"smithy.api#required": {}
3029+
}
3030+
},
3031+
"MatchOption": {
3032+
"target": "com.amazonaws.billingconductor#MatchOption",
3033+
"traits": {
3034+
"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>",
3035+
"smithy.api#required": {}
3036+
}
3037+
},
3038+
"Values": {
3039+
"target": "com.amazonaws.billingconductor#LineItemFilterValuesList",
3040+
"traits": {
3041+
"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>",
3042+
"smithy.api#required": {}
3043+
}
3044+
}
3045+
},
3046+
"traits": {
3047+
"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>"
3048+
}
3049+
},
3050+
"com.amazonaws.billingconductor#LineItemFilterAttributeName": {
3051+
"type": "string",
3052+
"traits": {
3053+
"smithy.api#enum": [
3054+
{
3055+
"value": "LINE_ITEM_TYPE",
3056+
"name": "LINE_ITEM_TYPE"
3057+
}
3058+
]
3059+
}
3060+
},
3061+
"com.amazonaws.billingconductor#LineItemFilterValue": {
3062+
"type": "string",
3063+
"traits": {
3064+
"smithy.api#enum": [
3065+
{
3066+
"value": "SAVINGS_PLAN_NEGATION",
3067+
"name": "SAVINGS_PLAN_NEGATION"
3068+
}
3069+
]
3070+
}
3071+
},
3072+
"com.amazonaws.billingconductor#LineItemFilterValuesList": {
3073+
"type": "list",
3074+
"member": {
3075+
"target": "com.amazonaws.billingconductor#LineItemFilterValue"
3076+
},
3077+
"traits": {
3078+
"smithy.api#length": {
3079+
"min": 1,
3080+
"max": 1
3081+
}
3082+
}
3083+
},
3084+
"com.amazonaws.billingconductor#LineItemFiltersList": {
3085+
"type": "list",
3086+
"member": {
3087+
"target": "com.amazonaws.billingconductor#LineItemFilter"
3088+
},
3089+
"traits": {
3090+
"smithy.api#length": {
3091+
"min": 0,
3092+
"max": 1
3093+
}
3094+
}
3095+
},
30153096
"com.amazonaws.billingconductor#ListAccountAssociations": {
30163097
"type": "operation",
30173098
"input": {
@@ -3373,6 +3454,12 @@
33733454
"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>",
33743455
"smithy.api#required": {}
33753456
}
3457+
},
3458+
"LineItemFilters": {
3459+
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
3460+
"traits": {
3461+
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
3462+
}
33763463
}
33773464
},
33783465
"traits": {
@@ -4291,6 +4378,17 @@
42914378
"com.amazonaws.billingconductor#MarginPercentage": {
42924379
"type": "string"
42934380
},
4381+
"com.amazonaws.billingconductor#MatchOption": {
4382+
"type": "string",
4383+
"traits": {
4384+
"smithy.api#enum": [
4385+
{
4386+
"value": "NOT_EQUAL",
4387+
"name": "NOT_EQUAL"
4388+
}
4389+
]
4390+
}
4391+
},
42944392
"com.amazonaws.billingconductor#MaxBillingGroupResults": {
42954393
"type": "integer",
42964394
"traits": {
@@ -5335,6 +5433,12 @@
53355433
"traits": {
53365434
"smithy.api#documentation": "<p>\n An <code>UpdateCustomLineItemPercentageChargeDetails</code> that describes the new charge details of a percentage custom line item.\n </p>"
53375435
}
5436+
},
5437+
"LineItemFilters": {
5438+
"target": "com.amazonaws.billingconductor#LineItemFiltersList",
5439+
"traits": {
5440+
"smithy.api#documentation": "<p>A representation of the line item filter.</p>"
5441+
}
53385442
}
53395443
},
53405444
"traits": {

0 commit comments

Comments
 (0)