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 for Ruby authored and Nobody committed Dec 3, 2020
1 parent 51073d0 commit 0ed223e
Show file tree
Hide file tree
Showing 39 changed files with 9,521 additions and 947 deletions.
160 changes: 80 additions & 80 deletions apis/amplifybackend/2020-08-11/docs-2.json

Large diffs are not rendered by default.

94 changes: 78 additions & 16 deletions apis/batch/2016-08-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,13 @@
"index":{"shape":"Integer"}
}
},
"AssignPublicIp":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"AttemptContainerDetail":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -356,7 +363,9 @@
"type":"string",
"enum":[
"EC2",
"SPOT"
"SPOT",
"FARGATE",
"FARGATE_SPOT"
]
},
"CancelJobRequest":{
Expand Down Expand Up @@ -426,11 +435,8 @@
"type":"structure",
"required":[
"type",
"minvCpus",
"maxvCpus",
"instanceTypes",
"subnets",
"instanceRole"
"subnets"
],
"members":{
"type":{"shape":"CRType"},
Expand Down Expand Up @@ -461,7 +467,9 @@
"members":{
"minvCpus":{"shape":"Integer"},
"maxvCpus":{"shape":"Integer"},
"desiredvCpus":{"shape":"Integer"}
"desiredvCpus":{"shape":"Integer"},
"subnets":{"shape":"StringList"},
"securityGroupIds":{"shape":"StringList"}
}
},
"ContainerDetail":{
Expand Down Expand Up @@ -490,14 +498,24 @@
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
}
},
"ContainerOverrides":{
"type":"structure",
"members":{
"vcpus":{"shape":"Integer"},
"memory":{"shape":"Integer"},
"vcpus":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"memory":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"command":{"shape":"StringList"},
"instanceType":{"shape":"String"},
"environment":{"shape":"EnvironmentVariables"},
Expand All @@ -508,8 +526,16 @@
"type":"structure",
"members":{
"image":{"shape":"String"},
"vcpus":{"shape":"Integer"},
"memory":{"shape":"Integer"},
"vcpus":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"memory":{
"shape":"Integer",
"deprecated":true,
"deprecatedMessage":"This field is deprecated, use resourceRequirements instead."
},
"command":{"shape":"StringList"},
"jobRoleArn":{"shape":"String"},
"executionRoleArn":{"shape":"String"},
Expand All @@ -524,7 +550,9 @@
"resourceRequirements":{"shape":"ResourceRequirements"},
"linuxParameters":{"shape":"LinuxParameters"},
"logConfiguration":{"shape":"LogConfiguration"},
"secrets":{"shape":"SecretList"}
"secrets":{"shape":"SecretList"},
"networkConfiguration":{"shape":"NetworkConfiguration"},
"fargatePlatformConfiguration":{"shape":"FargatePlatformConfiguration"}
}
},
"ContainerSummary":{
Expand Down Expand Up @@ -734,6 +762,12 @@
"type":"list",
"member":{"shape":"EvaluateOnExit"}
},
"FargatePlatformConfiguration":{
"type":"structure",
"members":{
"platformVersion":{"shape":"String"}
}
},
"Host":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -788,7 +822,9 @@
"containerProperties":{"shape":"ContainerProperties"},
"timeout":{"shape":"JobTimeout"},
"nodeProperties":{"shape":"NodeProperties"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"propagateTags":{"shape":"Boolean"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"JobDefinitionList":{
Expand Down Expand Up @@ -843,7 +879,9 @@
"nodeProperties":{"shape":"NodeProperties"},
"arrayProperties":{"shape":"ArrayPropertiesDetail"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"propagateTags":{"shape":"Boolean"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"JobDetailList":{
Expand Down Expand Up @@ -1017,6 +1055,12 @@
"type":"list",
"member":{"shape":"MountPoint"}
},
"NetworkConfiguration":{
"type":"structure",
"members":{
"assignPublicIp":{"shape":"AssignPublicIp"}
}
},
"NetworkInterface":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1093,6 +1137,17 @@
"key":{"shape":"String"},
"value":{"shape":"String"}
},
"PlatformCapability":{
"type":"string",
"enum":[
"EC2",
"FARGATE"
]
},
"PlatformCapabilityList":{
"type":"list",
"member":{"shape":"PlatformCapability"}
},
"RegisterJobDefinitionRequest":{
"type":"structure",
"required":[
Expand All @@ -1106,8 +1161,10 @@
"containerProperties":{"shape":"ContainerProperties"},
"nodeProperties":{"shape":"NodeProperties"},
"retryStrategy":{"shape":"RetryStrategy"},
"propagateTags":{"shape":"Boolean"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
"tags":{"shape":"TagrisTagsMap"},
"platformCapabilities":{"shape":"PlatformCapabilityList"}
}
},
"RegisterJobDefinitionResponse":{
Expand Down Expand Up @@ -1140,7 +1197,11 @@
},
"ResourceType":{
"type":"string",
"enum":["GPU"]
"enum":[
"GPU",
"VCPU",
"MEMORY"
]
},
"RetryAction":{
"type":"string",
Expand Down Expand Up @@ -1202,6 +1263,7 @@
"containerOverrides":{"shape":"ContainerOverrides"},
"nodeOverrides":{"shape":"NodeOverrides"},
"retryStrategy":{"shape":"RetryStrategy"},
"propagateTags":{"shape":"Boolean"},
"timeout":{"shape":"JobTimeout"},
"tags":{"shape":"TagrisTagsMap"}
}
Expand Down
Loading

0 comments on commit 0ed223e

Please sign in to comment.