Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed Dec 9, 2024
1 parent b1c10f2 commit e456a25
Show file tree
Hide file tree
Showing 65 changed files with 1,085 additions and 160 deletions.
2 changes: 1 addition & 1 deletion apis/appsync/2017-07-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@
"base": null,
"refs": {
"CreateDataSourceRequest$type": "<p>The type of the <code>DataSource</code>.</p>",
"DataSource$type": "<p>The type of the data source.</p> <ul> <li> <p> <b>AWS_LAMBDA</b>: The data source is an Lambda function.</p> </li> <li> <p> <b>AMAZON_DYNAMODB</b>: The data source is an Amazon DynamoDB table.</p> </li> <li> <p> <b>AMAZON_ELASTICSEARCH</b>: The data source is an Amazon OpenSearch Service domain.</p> </li> <li> <p> <b>AMAZON_OPENSEARCH_SERVICE</b>: The data source is an Amazon OpenSearch Service domain.</p> </li> <li> <p> <b>AMAZON_EVENTBRIDGE</b>: The data source is an Amazon EventBridge configuration.</p> </li> <li> <p> <b>NONE</b>: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.</p> </li> <li> <p> <b>HTTP</b>: The data source is an HTTP endpoint.</p> </li> <li> <p> <b>RELATIONAL_DATABASE</b>: The data source is a relational database.</p> </li> </ul>",
"DataSource$type": "<p>The type of the data source.</p> <ul> <li> <p> <b>AWS_LAMBDA</b>: The data source is an Lambda function.</p> </li> <li> <p> <b>AMAZON_DYNAMODB</b>: The data source is an Amazon DynamoDB table.</p> </li> <li> <p> <b>AMAZON_ELASTICSEARCH</b>: The data source is an Amazon OpenSearch Service domain.</p> </li> <li> <p> <b>AMAZON_OPENSEARCH_SERVICE</b>: The data source is an Amazon OpenSearch Service domain.</p> </li> <li> <p> <b>AMAZON_EVENTBRIDGE</b>: The data source is an Amazon EventBridge configuration.</p> </li> <li> <p> <b>AMAZON_BEDROCK_RUNTIME</b>: The data source is the Amazon Bedrock runtime.</p> </li> <li> <p> <b>NONE</b>: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.</p> </li> <li> <p> <b>HTTP</b>: The data source is an HTTP endpoint.</p> </li> <li> <p> <b>RELATIONAL_DATABASE</b>: The data source is a relational database.</p> </li> </ul>",
"UpdateDataSourceRequest$type": "<p>The new data source type.</p>"
}
},
Expand Down
3 changes: 1 addition & 2 deletions apis/cognito-idp/2016-04-18/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -6040,8 +6040,7 @@
"type":"structure",
"required":[
"Domain",
"UserPoolId",
"CustomDomainConfig"
"UserPoolId"
],
"members":{
"Domain":{"shape":"DomainType"},
Expand Down
103 changes: 102 additions & 1 deletion apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4799,6 +4799,15 @@
"input":{"shape":"ModifyInstanceMetadataOptionsRequest"},
"output":{"shape":"ModifyInstanceMetadataOptionsResult"}
},
"ModifyInstanceNetworkPerformanceOptions":{
"name":"ModifyInstanceNetworkPerformanceOptions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ModifyInstanceNetworkPerformanceRequest"},
"output":{"shape":"ModifyInstanceNetworkPerformanceResult"}
},
"ModifyInstancePlacement":{
"name":"ModifyInstancePlacement",
"http":{
Expand Down Expand Up @@ -8450,6 +8459,21 @@
"locationName":"item"
}
},
"BandwidthWeightingType":{
"type":"string",
"enum":[
"default",
"vpc-1",
"ebs-1"
]
},
"BandwidthWeightingTypeList":{
"type":"list",
"member":{
"shape":"BandwidthWeightingType",
"locationName":"item"
}
},
"BareMetal":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -28137,6 +28161,10 @@
"shape":"InstanceBootModeValues",
"locationName":"currentInstanceBootMode"
},
"NetworkPerformanceOptions":{
"shape":"InstanceNetworkPerformanceOptions",
"locationName":"networkPerformanceOptions"
},
"Operator":{
"shape":"OperatorResponse",
"locationName":"operator"
Expand Down Expand Up @@ -28346,6 +28374,14 @@
"default"
]
},
"InstanceBandwidthWeighting":{
"type":"string",
"enum":[
"default",
"vpc-1",
"ebs-1"
]
},
"InstanceBlockDeviceMapping":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -29248,6 +29284,21 @@
"locationName":"item"
}
},
"InstanceNetworkPerformanceOptions":{
"type":"structure",
"members":{
"BandwidthWeighting":{
"shape":"InstanceBandwidthWeighting",
"locationName":"bandwidthWeighting"
}
}
},
"InstanceNetworkPerformanceOptionsRequest":{
"type":"structure",
"members":{
"BandwidthWeighting":{"shape":"InstanceBandwidthWeighting"}
}
},
"InstancePrivateIpAddress":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -33368,6 +33419,21 @@
"locationName":"item"
}
},
"LaunchTemplateNetworkPerformanceOptions":{
"type":"structure",
"members":{
"BandwidthWeighting":{
"shape":"InstanceBandwidthWeighting",
"locationName":"bandwidthWeighting"
}
}
},
"LaunchTemplateNetworkPerformanceOptionsRequest":{
"type":"structure",
"members":{
"BandwidthWeighting":{"shape":"InstanceBandwidthWeighting"}
}
},
"LaunchTemplateOverrides":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -35191,6 +35257,31 @@
}
}
},
"ModifyInstanceNetworkPerformanceRequest":{
"type":"structure",
"required":[
"InstanceId",
"BandwidthWeighting"
],
"members":{
"InstanceId":{"shape":"InstanceId"},
"BandwidthWeighting":{"shape":"InstanceBandwidthWeighting"},
"DryRun":{"shape":"Boolean"}
}
},
"ModifyInstanceNetworkPerformanceResult":{
"type":"structure",
"members":{
"InstanceId":{
"shape":"InstanceId",
"locationName":"instanceId"
},
"BandwidthWeighting":{
"shape":"InstanceBandwidthWeighting",
"locationName":"bandwidthWeighting"
}
}
},
"ModifyInstancePlacementRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down Expand Up @@ -37074,6 +37165,10 @@
"EnaSrdSupported":{
"shape":"EnaSrdSupported",
"locationName":"enaSrdSupported"
},
"BandwidthWeightings":{
"shape":"BandwidthWeightingTypeList",
"locationName":"bandwidthWeightings"
}
}
},
Expand Down Expand Up @@ -40684,7 +40779,8 @@
"PrivateDnsNameOptions":{"shape":"LaunchTemplatePrivateDnsNameOptionsRequest"},
"MaintenanceOptions":{"shape":"LaunchTemplateInstanceMaintenanceOptionsRequest"},
"DisableApiStop":{"shape":"Boolean"},
"Operator":{"shape":"OperatorRequest"}
"Operator":{"shape":"OperatorRequest"},
"NetworkPerformanceOptions":{"shape":"LaunchTemplateNetworkPerformanceOptionsRequest"}
}
},
"RequestSpotFleetRequest":{
Expand Down Expand Up @@ -41749,6 +41845,10 @@
"Operator":{
"shape":"OperatorResponse",
"locationName":"operator"
},
"NetworkPerformanceOptions":{
"shape":"LaunchTemplateNetworkPerformanceOptions",
"locationName":"networkPerformanceOptions"
}
}
},
Expand Down Expand Up @@ -42456,6 +42556,7 @@
"MaintenanceOptions":{"shape":"InstanceMaintenanceOptionsRequest"},
"DisableApiStop":{"shape":"Boolean"},
"EnablePrimaryIpv6":{"shape":"Boolean"},
"NetworkPerformanceOptions":{"shape":"InstanceNetworkPerformanceOptionsRequest"},
"Operator":{"shape":"OperatorRequest"},
"DryRun":{
"shape":"Boolean",
Expand Down
Loading

0 comments on commit e456a25

Please sign in to comment.