Skip to content

Commit

Permalink
Update models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Jul 30, 2015
1 parent 677b931 commit dce7845
Show file tree
Hide file tree
Showing 5 changed files with 2,428 additions and 232 deletions.
121 changes: 120 additions & 1 deletion src/data/opsworks/2013-02-18/api-2.json
Expand Up @@ -297,6 +297,24 @@
}
]
},
"DeregisterEcsCluster":{
"name":"DeregisterEcsCluster",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeregisterEcsClusterRequest"},
"errors":[
{
"shape":"ValidationException",
"exception":true
},
{
"shape":"ResourceNotFoundException",
"exception":true
}
]
},
"DeregisterElasticIp":{
"name":"DeregisterElasticIp",
"http":{
Expand Down Expand Up @@ -445,6 +463,25 @@
}
]
},
"DescribeEcsClusters":{
"name":"DescribeEcsClusters",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeEcsClustersRequest"},
"output":{"shape":"DescribeEcsClustersResult"},
"errors":[
{
"shape":"ValidationException",
"exception":true
},
{
"shape":"ResourceNotFoundException",
"exception":true
}
]
},
"DescribeElasticIps":{
"name":"DescribeElasticIps",
"http":{
Expand Down Expand Up @@ -826,6 +863,25 @@
}
]
},
"RegisterEcsCluster":{
"name":"RegisterEcsCluster",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RegisterEcsClusterRequest"},
"output":{"shape":"RegisterEcsClusterResult"},
"errors":[
{
"shape":"ValidationException",
"exception":true
},
{
"shape":"ResourceNotFoundException",
"exception":true
}
]
},
"RegisterElasticIp":{
"name":"RegisterElasticIp",
"http":{
Expand Down Expand Up @@ -1263,12 +1319,14 @@
"enum":[
"DocumentRoot",
"RailsEnv",
"AutoBundleOnDeploy"
"AutoBundleOnDeploy",
"AwsFlowRubySettings"
]
},
"AppType":{
"type":"string",
"enum":[
"aws-flow-ruby",
"java",
"rails",
"php",
Expand Down Expand Up @@ -1522,6 +1580,7 @@
"Shortname":{"shape":"String"},
"Attributes":{"shape":"LayerAttributes"},
"CustomInstanceProfileArn":{"shape":"String"},
"CustomJson":{"shape":"String"},
"CustomSecurityGroupIds":{"shape":"Strings"},
"Packages":{"shape":"Strings"},
"VolumeConfigurations":{"shape":"VolumeConfigurations"},
Expand Down Expand Up @@ -1698,6 +1757,13 @@
"type":"list",
"member":{"shape":"Deployment"}
},
"DeregisterEcsClusterRequest":{
"type":"structure",
"required":["EcsClusterArn"],
"members":{
"EcsClusterArn":{"shape":"String"}
}
},
"DeregisterElasticIpRequest":{
"type":"structure",
"required":["ElasticIp"],
Expand Down Expand Up @@ -1780,6 +1846,22 @@
"Deployments":{"shape":"Deployments"}
}
},
"DescribeEcsClustersRequest":{
"type":"structure",
"members":{
"EcsClusterArns":{"shape":"Strings"},
"StackId":{"shape":"String"},
"NextToken":{"shape":"String"},
"MaxResults":{"shape":"Integer"}
}
},
"DescribeEcsClustersResult":{
"type":"structure",
"members":{
"EcsClusters":{"shape":"EcsClusters"},
"NextToken":{"shape":"String"}
}
},
"DescribeElasticIpsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2019,6 +2101,19 @@
"DeleteOnTermination":{"shape":"Boolean"}
}
},
"EcsCluster":{
"type":"structure",
"members":{
"EcsClusterArn":{"shape":"String"},
"EcsClusterName":{"shape":"String"},
"StackId":{"shape":"String"},
"RegisteredAt":{"shape":"DateTime"}
}
},
"EcsClusters":{
"type":"list",
"member":{"shape":"EcsCluster"}
},
"ElasticIp":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2108,6 +2203,8 @@
"CreatedAt":{"shape":"DateTime"},
"EbsOptimized":{"shape":"Boolean"},
"Ec2InstanceId":{"shape":"String"},
"EcsClusterArn":{"shape":"String"},
"EcsContainerInstanceArn":{"shape":"String"},
"ElasticIp":{"shape":"String"},
"Hostname":{"shape":"String"},
"InfrastructureClass":{"shape":"String"},
Expand Down Expand Up @@ -2187,6 +2284,7 @@
"Shortname":{"shape":"String"},
"Attributes":{"shape":"LayerAttributes"},
"CustomInstanceProfileArn":{"shape":"String"},
"CustomJson":{"shape":"String"},
"CustomSecurityGroupIds":{"shape":"Strings"},
"DefaultSecurityGroupNames":{"shape":"Strings"},
"Packages":{"shape":"Strings"},
Expand All @@ -2210,6 +2308,7 @@
"LayerAttributesKeys":{
"type":"string",
"enum":[
"EcsClusterArn",
"EnableHaproxyStats",
"HaproxyStatsUrl",
"HaproxyStatsUser",
Expand Down Expand Up @@ -2239,6 +2338,8 @@
"LayerType":{
"type":"string",
"enum":[
"aws-flow-ruby",
"ecs-cluster",
"java-app",
"lb",
"web",
Expand Down Expand Up @@ -2356,6 +2457,23 @@
"Shutdown":{"shape":"Strings"}
}
},
"RegisterEcsClusterRequest":{
"type":"structure",
"required":[
"EcsClusterArn",
"StackId"
],
"members":{
"EcsClusterArn":{"shape":"String"},
"StackId":{"shape":"String"}
}
},
"RegisterEcsClusterResult":{
"type":"structure",
"members":{
"EcsClusterArn":{"shape":"String"}
}
},
"RegisterElasticIpRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2716,6 +2834,7 @@
"Shortname":{"shape":"String"},
"Attributes":{"shape":"LayerAttributes"},
"CustomInstanceProfileArn":{"shape":"String"},
"CustomJson":{"shape":"String"},
"CustomSecurityGroupIds":{"shape":"Strings"},
"Packages":{"shape":"Strings"},
"VolumeConfigurations":{"shape":"VolumeConfigurations"},
Expand Down

0 comments on commit dce7845

Please sign in to comment.