Skip to content

Commit 0fc4c41

Browse files
Updated API models and rebuilt service gems.
1 parent d2f9994 commit 0fc4c41

File tree

93 files changed

+3451
-741
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+3451
-741
lines changed

apis/batch/2016-08-10/api-2.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1597,9 +1597,23 @@
15971597
"members":{
15981598
"launchTemplateId":{"shape":"String"},
15991599
"launchTemplateName":{"shape":"String"},
1600-
"version":{"shape":"String"}
1600+
"version":{"shape":"String"},
1601+
"overrides":{"shape":"LaunchTemplateSpecificationOverrideList"}
16011602
}
16021603
},
1604+
"LaunchTemplateSpecificationOverride":{
1605+
"type":"structure",
1606+
"members":{
1607+
"launchTemplateId":{"shape":"String"},
1608+
"launchTemplateName":{"shape":"String"},
1609+
"version":{"shape":"String"},
1610+
"targetInstanceTypes":{"shape":"StringList"}
1611+
}
1612+
},
1613+
"LaunchTemplateSpecificationOverrideList":{
1614+
"type":"list",
1615+
"member":{"shape":"LaunchTemplateSpecificationOverride"}
1616+
},
16031617
"LinuxParameters":{
16041618
"type":"structure",
16051619
"members":{

apis/batch/2016-08-10/docs-2.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,6 +1012,18 @@
10121012
"ComputeResourceUpdate$launchTemplate": "<p>The updated launch template to use for your compute resources. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see <a href=\"https://docs.aws.amazon.com/batch/latest/userguide/launch-templates.html\">Launch template support</a> in the <i>Batch User Guide</i>. To remove the custom launch template and use the default launch template, set <code>launchTemplateId</code> or <code>launchTemplateName</code> member of the launch template specification to an empty string. Removing the launch template from a compute environment will not remove the AMI specified in the launch template. In order to update the AMI specified in a launch template, the <code>updateToLatestImageVersion</code> parameter must be set to <code>true</code>.</p> <p>When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see <a href=\"https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html\">Updating compute environments</a> in the <i>Batch User Guide</i>.</p> <note> <p>This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.</p> </note>"
10131013
}
10141014
},
1015+
"LaunchTemplateSpecificationOverride": {
1016+
"base": "<p>An object that represents a launch template to use in place of the default launch template. You must specify either the launch template ID or launch template name in the request, but not both.</p> <p>If security groups are specified using both the <code>securityGroupIds</code> parameter of <code>CreateComputeEnvironment</code> and the launch template, the values in the <code>securityGroupIds</code> parameter of <code>CreateComputeEnvironment</code> will be used.</p> <p>You can define up to ten (10) overrides for each compute environment.</p> <note> <p>This object isn't applicable to jobs that are running on Fargate resources.</p> </note> <note> <p>To unset all override templates for a compute environment, you can pass an empty array to the <a href=\"https://docs.aws.amazon.com/batch/latest/APIReference/API_UpdateComputeEnvironment.html\">UpdateComputeEnvironment.overrides</a> parameter, or not include the <code>overrides</code> parameter when submitting the <code>UpdateComputeEnvironment</code> API operation.</p> </note>",
1017+
"refs": {
1018+
"LaunchTemplateSpecificationOverrideList$member": null
1019+
}
1020+
},
1021+
"LaunchTemplateSpecificationOverrideList": {
1022+
"base": null,
1023+
"refs": {
1024+
"LaunchTemplateSpecification$overrides": "<p>A launch template to use in place of the default launch template. You must specify either the launch template ID or launch template name in the request, but not both.</p> <p>You can specify up to ten (10) launch template overrides that are associated to unique instance types or families for each compute environment.</p> <note> <p>To unset all override templates for a compute environment, you can pass an empty array to the <a href=\"https://docs.aws.amazon.com/batch/latest/APIReference/API_UpdateComputeEnvironment.html\">UpdateComputeEnvironment.overrides</a> parameter, or not include the <code>overrides</code> parameter when submitting the <code>UpdateComputeEnvironment</code> API operation.</p> </note>"
1025+
}
1026+
},
10151027
"LinuxParameters": {
10161028
"base": "<p>Linux-specific modifications that are applied to the container, such as details for device mappings.</p>",
10171029
"refs": {
@@ -1558,7 +1570,10 @@
15581570
"KeyValuesPair$name": "<p>The name of the filter. Filter names are case sensitive.</p>",
15591571
"LaunchTemplateSpecification$launchTemplateId": "<p>The ID of the launch template.</p>",
15601572
"LaunchTemplateSpecification$launchTemplateName": "<p>The name of the launch template.</p>",
1561-
"LaunchTemplateSpecification$version": "<p>The version number of the launch template, <code>$Latest</code>, or <code>$Default</code>.</p> <p>If the value is <code>$Latest</code>, the latest version of the launch template is used. If the value is <code>$Default</code>, the default version of the launch template is used.</p> <important> <p>If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the <code>updateToLatestImageVersion</code> parameter for the compute environment is set to <code>true</code>. During an infrastructure update, if either <code>$Latest</code> or <code>$Default</code> is specified, Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see <a href=\"https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html\">Updating compute environments</a> in the <i>Batch User Guide</i>.</p> </important> <p>Default: <code>$Default</code>.</p>",
1573+
"LaunchTemplateSpecification$version": "<p>The version number of the launch template, <code>$Default</code>, or <code>$Latest</code>.</p> <p>If the value is <code>$Default</code>, the default version of the launch template is used. If the value is <code>$Latest</code>, the latest version of the launch template is used. </p> <important> <p>If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the <code>updateToLatestImageVersion</code> parameter for the compute environment is set to <code>true</code>. During an infrastructure update, if either <code>$Default</code> or <code>$Latest</code> is specified, Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see <a href=\"https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html\">Updating compute environments</a> in the <i>Batch User Guide</i>.</p> </important> <p>Default: <code>$Default</code> </p> <p>Latest: <code>$Latest</code> </p>",
1574+
"LaunchTemplateSpecificationOverride$launchTemplateId": "<p>The ID of the launch template.</p> <p> <b>Note:</b> If you specify the <code>launchTemplateId</code> you can't specify the <code>launchTemplateName</code> as well.</p>",
1575+
"LaunchTemplateSpecificationOverride$launchTemplateName": "<p>The name of the launch template.</p> <p> <b>Note:</b> If you specify the <code>launchTemplateName</code> you can't specify the <code>launchTemplateId</code> as well.</p>",
1576+
"LaunchTemplateSpecificationOverride$version": "<p>The version number of the launch template, <code>$Default</code>, or <code>$Latest</code>.</p> <p>If the value is <code>$Default</code>, the default version of the launch template is used. If the value is <code>$Latest</code>, the latest version of the launch template is used. </p> <important> <p>If the AMI ID that's used in a compute environment is from the launch template, the AMI isn't changed when the compute environment is updated. It's only changed if the <code>updateToLatestImageVersion</code> parameter for the compute environment is set to <code>true</code>. During an infrastructure update, if either <code>$Default</code> or <code>$Latest</code> is specified, Batch re-evaluates the launch template version, and it might use a different version of the launch template. This is the case even if the launch template isn't specified in the update. When updating a compute environment, changing the launch template requires an infrastructure update of the compute environment. For more information, see <a href=\"https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html\">Updating compute environments</a> in the <i>Batch User Guide</i>.</p> </important> <p>Default: <code>$Default</code> </p> <p>Latest: <code>$Latest</code> </p>",
15621577
"ListJobsRequest$jobQueue": "<p>The name or full Amazon Resource Name (ARN) of the job queue used to list jobs.</p>",
15631578
"ListJobsRequest$arrayJobId": "<p>The job ID for an array job. Specifying an array job ID with this parameter lists all child jobs from within the specified array.</p>",
15641579
"ListJobsRequest$multiNodeJobId": "<p>The job ID for a multi-node parallel job. Specifying a multi-node parallel job ID with this parameter lists all nodes that are associated with the specified job.</p>",
@@ -1656,6 +1671,7 @@
16561671
"EksContainerOverride$command": "<p>The command to send to the container that overrides the default command from the Docker image or the job definition.</p>",
16571672
"EksContainerOverride$args": "<p>The arguments to the entrypoint to send to the container that overrides the default arguments from the Docker image or the job definition. For more information, see <a href=\"https://docs.docker.com/engine/reference/builder/#cmd\">Dockerfile reference: CMD</a> and <a href=\"https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/\">Define a command an arguments for a pod</a> in the <i>Kubernetes documentation</i>.</p>",
16581673
"KeyValuesPair$values": "<p>The filter values.</p>",
1674+
"LaunchTemplateSpecificationOverride$targetInstanceTypes": "<p>The instance type or family that this this override launch template should be applied to.</p> <p>This parameter is required when defining a launch template override.</p> <p>Information included in this parameter must meet the following requirements:</p> <ul> <li> <p>Must be a valid Amazon EC2 instance type or family.</p> </li> <li> <p> <code>optimal</code> isn't allowed.</p> </li> <li> <p> <code>targetInstanceTypes</code> can target only instance types and families that are included within the <a href=\"https://docs.aws.amazon.com/batch/latest/APIReference/API_ComputeResource.html#Batch-Type-ComputeResource-instanceTypes\"> <code>ComputeResource.instanceTypes</code> </a> set. <code>targetInstanceTypes</code> doesn't need to include all of the instances from the <code>instanceType</code> set, but at least a subset. For example, if <code>ComputeResource.instanceTypes</code> includes <code>[m5, g5]</code>, <code>targetInstanceTypes</code> can include <code>[m5.2xlarge]</code> and <code>[m5.large]</code> but not <code>[c5.large]</code>.</p> </li> <li> <p> <code>targetInstanceTypes</code> included within the same launch template override or across launch template overrides can't overlap for the same compute environment. For example, you can't define one launch template override to target an instance family and another define an instance type within this same family.</p> </li> </ul>",
16591675
"NodePropertyOverride$instanceTypes": "<p>An object that contains the instance types that you want to replace for the existing resources of a job.</p>",
16601676
"NodeRangeProperty$instanceTypes": "<p>The instance types of the underlying host infrastructure of a multi-node parallel job.</p> <note> <p>This parameter isn't applicable to jobs that are running on Fargate resources.</p> <p>In addition, this list object is currently limited to one element.</p> </note>",
16611677
"TaskContainerDetails$command": "<p>The command that's passed to the container. This parameter maps to <code>Cmd</code> in the <a href=\"https://docs.docker.com/engine/api/v1.23/#create-a-container\">Create a container</a> section of the <a href=\"https://docs.docker.com/engine/api/v1.23/\">Docker Remote API</a> and the <code>COMMAND</code> parameter to <a href=\"https://docs.docker.com/engine/reference/run/\">docker run</a>. For more information, see <a href=\"https://docs.docker.com/engine/reference/builder/#cmd\">https://docs.docker.com/engine/reference/builder/#cmd</a>.</p>",

apis/bedrock-agent-runtime/2023-07-26/api-2.json

Lines changed: 132 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@
295295
"type":"string",
296296
"max":2048,
297297
"min":1,
298-
"pattern":"^(arn:aws(-[^:]{1,10})?:bedrock:[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]{1,20}/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$"
298+
"pattern":"^(arn:aws(-[^:]+)?:(bedrock|sagemaker):[a-z0-9-]{1,20}:([0-9]{12})?:([a-z-]+/)?)?([a-z0-9.-]{1,63}){0,2}(([:][a-z0-9-]{1,63}){0,2})?(/[a-z0-9]{1,12})?$"
299299
},
300300
"Boolean":{
301301
"type":"boolean",
@@ -670,6 +670,7 @@
670670
"dependencyFailedException":{"shape":"DependencyFailedException"},
671671
"flowCompletionEvent":{"shape":"FlowCompletionEvent"},
672672
"flowOutputEvent":{"shape":"FlowOutputEvent"},
673+
"flowTraceEvent":{"shape":"FlowTraceEvent"},
673674
"internalServerException":{"shape":"InternalServerException"},
674675
"resourceNotFoundException":{"shape":"ResourceNotFoundException"},
675676
"serviceQuotaExceededException":{"shape":"ServiceQuotaExceededException"},
@@ -678,6 +679,131 @@
678679
},
679680
"eventstream":true
680681
},
682+
"FlowTrace":{
683+
"type":"structure",
684+
"members":{
685+
"conditionNodeResultTrace":{"shape":"FlowTraceConditionNodeResultEvent"},
686+
"nodeInputTrace":{"shape":"FlowTraceNodeInputEvent"},
687+
"nodeOutputTrace":{"shape":"FlowTraceNodeOutputEvent"}
688+
},
689+
"sensitive":true,
690+
"union":true
691+
},
692+
"FlowTraceCondition":{
693+
"type":"structure",
694+
"required":["conditionName"],
695+
"members":{
696+
"conditionName":{"shape":"String"}
697+
},
698+
"sensitive":true
699+
},
700+
"FlowTraceConditionNodeResultEvent":{
701+
"type":"structure",
702+
"required":[
703+
"nodeName",
704+
"satisfiedConditions",
705+
"timestamp"
706+
],
707+
"members":{
708+
"nodeName":{"shape":"NodeName"},
709+
"satisfiedConditions":{"shape":"FlowTraceConditions"},
710+
"timestamp":{"shape":"DateTimestamp"}
711+
},
712+
"sensitive":true
713+
},
714+
"FlowTraceConditions":{
715+
"type":"list",
716+
"member":{"shape":"FlowTraceCondition"},
717+
"max":5,
718+
"min":1
719+
},
720+
"FlowTraceEvent":{
721+
"type":"structure",
722+
"required":["trace"],
723+
"members":{
724+
"trace":{"shape":"FlowTrace"}
725+
},
726+
"event":true
727+
},
728+
"FlowTraceNodeInputContent":{
729+
"type":"structure",
730+
"members":{
731+
"document":{"shape":"Document"}
732+
},
733+
"sensitive":true,
734+
"union":true
735+
},
736+
"FlowTraceNodeInputEvent":{
737+
"type":"structure",
738+
"required":[
739+
"fields",
740+
"nodeName",
741+
"timestamp"
742+
],
743+
"members":{
744+
"fields":{"shape":"FlowTraceNodeInputFields"},
745+
"nodeName":{"shape":"NodeName"},
746+
"timestamp":{"shape":"DateTimestamp"}
747+
},
748+
"sensitive":true
749+
},
750+
"FlowTraceNodeInputField":{
751+
"type":"structure",
752+
"required":[
753+
"content",
754+
"nodeInputName"
755+
],
756+
"members":{
757+
"content":{"shape":"FlowTraceNodeInputContent"},
758+
"nodeInputName":{"shape":"NodeInputName"}
759+
},
760+
"sensitive":true
761+
},
762+
"FlowTraceNodeInputFields":{
763+
"type":"list",
764+
"member":{"shape":"FlowTraceNodeInputField"},
765+
"max":5,
766+
"min":1
767+
},
768+
"FlowTraceNodeOutputContent":{
769+
"type":"structure",
770+
"members":{
771+
"document":{"shape":"Document"}
772+
},
773+
"union":true
774+
},
775+
"FlowTraceNodeOutputEvent":{
776+
"type":"structure",
777+
"required":[
778+
"fields",
779+
"nodeName",
780+
"timestamp"
781+
],
782+
"members":{
783+
"fields":{"shape":"FlowTraceNodeOutputFields"},
784+
"nodeName":{"shape":"NodeName"},
785+
"timestamp":{"shape":"DateTimestamp"}
786+
},
787+
"sensitive":true
788+
},
789+
"FlowTraceNodeOutputField":{
790+
"type":"structure",
791+
"required":[
792+
"content",
793+
"nodeOutputName"
794+
],
795+
"members":{
796+
"content":{"shape":"FlowTraceNodeOutputContent"},
797+
"nodeOutputName":{"shape":"NodeOutputName"}
798+
},
799+
"sensitive":true
800+
},
801+
"FlowTraceNodeOutputFields":{
802+
"type":"list",
803+
"member":{"shape":"FlowTraceNodeOutputField"},
804+
"max":2,
805+
"min":1
806+
},
681807
"Function":{
682808
"type":"string",
683809
"sensitive":true
@@ -1201,6 +1327,7 @@
12011327
"inputs"
12021328
],
12031329
"members":{
1330+
"enableTrace":{"shape":"Boolean"},
12041331
"flowAliasIdentifier":{
12051332
"shape":"FlowAliasIdentifier",
12061333
"location":"uri",
@@ -1410,6 +1537,10 @@
14101537
"min":1,
14111538
"pattern":"^\\S*$"
14121539
},
1540+
"NodeInputName":{
1541+
"type":"string",
1542+
"pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"
1543+
},
14131544
"NodeName":{
14141545
"type":"string",
14151546
"pattern":"^[a-zA-Z]([_]?[0-9a-zA-Z]){0,99}$"

0 commit comments

Comments
 (0)