Skip to content

Commit

Permalink
Update Ec2 models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Jan 13, 2016
1 parent 5ee0f33 commit ffc9c2e
Show file tree
Hide file tree
Showing 6 changed files with 199 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGELOG

## next release

* `Aws\Ec2` - Added support for DNS resolution of public hostnames to private IP
addresses when queried over ClassicLink. Additionally, private hosted zones
associated with your VPC can now be accessed from a linked EC2-Classic
instance.

## 3.12.1 - 2016-01-06

* `Aws\Route53` - Fixed pagination bug on ListResourceRecordSets command.
Expand Down
6 changes: 6 additions & 0 deletions src/Ec2/Ec2Client.php
Expand Up @@ -263,6 +263,8 @@
* @method \GuzzleHttp\Promise\Promise describeVpcAttributeAsync(array $args = [])
* @method \Aws\Result describeVpcClassicLink(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeVpcClassicLinkAsync(array $args = [])
* @method \Aws\Result describeVpcClassicLinkDnsSupport(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeVpcClassicLinkDnsSupportAsync(array $args = [])
* @method \Aws\Result describeVpcEndpointServices(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeVpcEndpointServicesAsync(array $args = [])
* @method \Aws\Result describeVpcEndpoints(array $args = [])
Expand All @@ -289,6 +291,8 @@
* @method \GuzzleHttp\Promise\Promise disableVgwRoutePropagationAsync(array $args = [])
* @method \Aws\Result disableVpcClassicLink(array $args = [])
* @method \GuzzleHttp\Promise\Promise disableVpcClassicLinkAsync(array $args = [])
* @method \Aws\Result disableVpcClassicLinkDnsSupport(array $args = [])
* @method \GuzzleHttp\Promise\Promise disableVpcClassicLinkDnsSupportAsync(array $args = [])
* @method \Aws\Result disassociateAddress(array $args = [])
* @method \GuzzleHttp\Promise\Promise disassociateAddressAsync(array $args = [])
* @method \Aws\Result disassociateRouteTable(array $args = [])
Expand All @@ -299,6 +303,8 @@
* @method \GuzzleHttp\Promise\Promise enableVolumeIOAsync(array $args = [])
* @method \Aws\Result enableVpcClassicLink(array $args = [])
* @method \GuzzleHttp\Promise\Promise enableVpcClassicLinkAsync(array $args = [])
* @method \Aws\Result enableVpcClassicLinkDnsSupport(array $args = [])
* @method \GuzzleHttp\Promise\Promise enableVpcClassicLinkDnsSupportAsync(array $args = [])
* @method \Aws\Result getConsoleOutput(array $args = [])
* @method \GuzzleHttp\Promise\Promise getConsoleOutputAsync(array $args = [])
* @method \Aws\Result getPasswordData(array $args = [])
Expand Down
114 changes: 114 additions & 0 deletions src/data/ec2/2015-10-01/api-2.json
Expand Up @@ -1121,6 +1121,15 @@
"input":{"shape":"DescribeVpcClassicLinkRequest"},
"output":{"shape":"DescribeVpcClassicLinkResult"}
},
"DescribeVpcClassicLinkDnsSupport":{
"name":"DescribeVpcClassicLinkDnsSupport",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeVpcClassicLinkDnsSupportRequest"},
"output":{"shape":"DescribeVpcClassicLinkDnsSupportResult"}
},
"DescribeVpcEndpointServices":{
"name":"DescribeVpcEndpointServices",
"http":{
Expand Down Expand Up @@ -1234,6 +1243,15 @@
"input":{"shape":"DisableVpcClassicLinkRequest"},
"output":{"shape":"DisableVpcClassicLinkResult"}
},
"DisableVpcClassicLinkDnsSupport":{
"name":"DisableVpcClassicLinkDnsSupport",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DisableVpcClassicLinkDnsSupportRequest"},
"output":{"shape":"DisableVpcClassicLinkDnsSupportResult"}
},
"DisassociateAddress":{
"name":"DisassociateAddress",
"http":{
Expand Down Expand Up @@ -1275,6 +1293,15 @@
"input":{"shape":"EnableVpcClassicLinkRequest"},
"output":{"shape":"EnableVpcClassicLinkResult"}
},
"EnableVpcClassicLinkDnsSupport":{
"name":"EnableVpcClassicLinkDnsSupport",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"EnableVpcClassicLinkDnsSupportRequest"},
"output":{"shape":"EnableVpcClassicLinkDnsSupportResult"}
},
"GetConsoleOutput":{
"name":"GetConsoleOutput",
"http":{
Expand Down Expand Up @@ -2748,6 +2775,26 @@
"locationName":"item"
}
},
"ClassicLinkDnsSupport":{
"type":"structure",
"members":{
"VpcId":{
"shape":"String",
"locationName":"vpcId"
},
"ClassicLinkDnsSupported":{
"shape":"Boolean",
"locationName":"classicLinkDnsSupported"
}
}
},
"ClassicLinkDnsSupportList":{
"type":"list",
"member":{
"shape":"ClassicLinkDnsSupport",
"locationName":"item"
}
},
"ClassicLinkInstance":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5629,6 +5676,33 @@
}
}
},
"DescribeVpcClassicLinkDnsSupportRequest":{
"type":"structure",
"members":{
"VpcIds":{"shape":"VpcClassicLinkIdList"},
"MaxResults":{
"shape":"MaxResults",
"locationName":"maxResults"
},
"NextToken":{
"shape":"NextToken",
"locationName":"nextToken"
}
}
},
"DescribeVpcClassicLinkDnsSupportResult":{
"type":"structure",
"members":{
"Vpcs":{
"shape":"ClassicLinkDnsSupportList",
"locationName":"vpcs"
},
"NextToken":{
"shape":"NextToken",
"locationName":"nextToken"
}
}
},
"DescribeVpcClassicLinkRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -5983,6 +6057,21 @@
"GatewayId":{"shape":"String"}
}
},
"DisableVpcClassicLinkDnsSupportRequest":{
"type":"structure",
"members":{
"VpcId":{"shape":"String"}
}
},
"DisableVpcClassicLinkDnsSupportResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"DisableVpcClassicLinkRequest":{
"type":"structure",
"required":["VpcId"],
Expand Down Expand Up @@ -6209,6 +6298,21 @@
}
}
},
"EnableVpcClassicLinkDnsSupportRequest":{
"type":"structure",
"members":{
"VpcId":{"shape":"String"}
}
},
"EnableVpcClassicLinkDnsSupportResult":{
"type":"structure",
"members":{
"Return":{
"shape":"Boolean",
"locationName":"return"
}
}
},
"EnableVpcClassicLinkRequest":{
"type":"structure",
"required":["VpcId"],
Expand Down Expand Up @@ -8414,6 +8518,11 @@
]
},
"Long":{"type":"long"},
"MaxResults":{
"type":"integer",
"max":255,
"min":5
},
"ModifyHostsRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -9268,6 +9377,11 @@
"locationName":"item"
}
},
"NextToken":{
"type":"string",
"max":1024,
"min":1
},
"OfferingTypeValues":{
"type":"string",
"enum":[
Expand Down
2 changes: 1 addition & 1 deletion src/data/ec2/2015-10-01/api-2.json.php

Large diffs are not rendered by default.

0 comments on commit ffc9c2e

Please sign in to comment.