lib/aws/route_53/change_batch.rb in aws-sdk-1.8.5 vs lib/aws/route_53/change_batch.rb in aws-sdk-1.9.0

- old
+ new

@@ -12,18 +12,18 @@ # language governing permissions and limitations under the License. module AWS class Route53 - # = Modify resource record sets with ChangeBatch + # # Modify resource record sets with ChangeBatch # - # batch = AWS::Route53::ChangeBatch.new(hosted_zone_id) - # batch << AWS::Route53::CreateRequest.new('foo.example.com.', 'A', :resource_records => [{:value => '192.168.0.1'}]) - # batch << AWS::Route53::DeleteRequest.new('bar.example.com.', 'CNAME') - # batch << AWS::Route53::DeleteRequest.new('baz.example.com.', 'AAAA') - # batch << AWS::Route53::CreateRequest.new('baz.example.com.', 'AAAA', :resource_records => [{:value => '192.168.0.3'}]) + # batch = AWS::Route53::ChangeBatch.new(hosted_zone_id) + # batch << AWS::Route53::CreateRequest.new('foo.example.com.', 'A', :resource_records => [{:value => '192.168.0.1'}]) + # batch << AWS::Route53::DeleteRequest.new('bar.example.com.', 'CNAME') + # batch << AWS::Route53::DeleteRequest.new('baz.example.com.', 'AAAA') + # batch << AWS::Route53::CreateRequest.new('baz.example.com.', 'AAAA', :resource_records => [{:value => '192.168.0.3'}]) # - # batch.call + # batch.call # class ChangeBatch include Enumerable include Core::Model