aws-sdk-codedeploy 1.0.0.rc3 → 1.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43022327838d2e7886ca4fb3d1fffd0d16a851d2
4
- data.tar.gz: 947cb6b2d40831117be4420ffadb478b0687061c
3
+ metadata.gz: c5bc894c024b4d1a5675e3b8e7a8f2d018d91218
4
+ data.tar.gz: 593c3986e34ecf9dfa27279e83915d5aab8cb653
5
5
  SHA512:
6
- metadata.gz: 13b83953c52a2dd7a4f7c94ceee476da1b1bf9d8c13a2dbd3f003665be3bb50765a3476ee741073084dcc373fb0957052bd0c1c9f78b472fcacbfdb2c264573c
7
- data.tar.gz: 598b7c5e7f6d4e7b3ec7d7649563b9fe9323bb0847c8837e30e5b0da7122f67916345603056801964b1bcde9a843591c0728c0037aec1589833fef3ef961ab4a
6
+ metadata.gz: 7ace5e0447ec1ef8ca6242d3afb370ef974b38b263e781e8f5787859ee481fb738bbff8faad60832b27585785fa5680cfc2a7692538dd73b0ceda9fd9a433d0d
7
+ data.tar.gz: 1012e1f6d036bd5b65f06c84d75fa8d67b0f4516c764a850c8f9788888b9f190dc0185425bfb9a400935324b42e9fb8689b288363279be0694c09d569cd419fb
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-codedeploy/customizations'
43
43
  # @service
44
44
  module Aws::CodeDeploy
45
45
 
46
- GEM_VERSION = '1.0.0.rc3'
46
+ GEM_VERSION = '1.0.0.rc4'
47
47
 
48
48
  end
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
18
  require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
+ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
21
22
  require 'aws-sdk-core/plugins/signature_v4.rb'
22
23
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
23
24
 
@@ -45,6 +46,7 @@ module Aws::CodeDeploy
45
46
  add_plugin(Aws::Plugins::ResponsePaging)
46
47
  add_plugin(Aws::Plugins::StubResponses)
47
48
  add_plugin(Aws::Plugins::IdempotencyToken)
49
+ add_plugin(Aws::Plugins::JsonvalueConverter)
48
50
  add_plugin(Aws::Plugins::SignatureV4)
49
51
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
50
52
 
@@ -2131,7 +2133,7 @@ module Aws::CodeDeploy
2131
2133
  params: params,
2132
2134
  config: config)
2133
2135
  context[:gem_name] = 'aws-sdk-codedeploy'
2134
- context[:gem_version] = '1.0.0.rc3'
2136
+ context[:gem_version] = '1.0.0.rc4'
2135
2137
  Seahorse::Client::Request.new(handlers, context)
2136
2138
  end
2137
2139
 
@@ -1152,6 +1152,11 @@ module Aws::CodeDeploy
1152
1152
  o.errors << Shapes::ShapeRef.new(shape: BucketNameFilterRequiredException)
1153
1153
  o.errors << Shapes::ShapeRef.new(shape: InvalidDeployedStateFilterException)
1154
1154
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1155
+ o[:pager] = Aws::Pager.new(
1156
+ tokens: {
1157
+ "next_token" => "next_token"
1158
+ }
1159
+ )
1155
1160
  end)
1156
1161
 
1157
1162
  api.add_operation(:list_applications, Seahorse::Model::Operation.new.tap do |o|
@@ -1161,6 +1166,11 @@ module Aws::CodeDeploy
1161
1166
  o.input = Shapes::ShapeRef.new(shape: ListApplicationsInput)
1162
1167
  o.output = Shapes::ShapeRef.new(shape: ListApplicationsOutput)
1163
1168
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1169
+ o[:pager] = Aws::Pager.new(
1170
+ tokens: {
1171
+ "next_token" => "next_token"
1172
+ }
1173
+ )
1164
1174
  end)
1165
1175
 
1166
1176
  api.add_operation(:list_deployment_configs, Seahorse::Model::Operation.new.tap do |o|
@@ -1170,6 +1180,11 @@ module Aws::CodeDeploy
1170
1180
  o.input = Shapes::ShapeRef.new(shape: ListDeploymentConfigsInput)
1171
1181
  o.output = Shapes::ShapeRef.new(shape: ListDeploymentConfigsOutput)
1172
1182
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1183
+ o[:pager] = Aws::Pager.new(
1184
+ tokens: {
1185
+ "next_token" => "next_token"
1186
+ }
1187
+ )
1173
1188
  end)
1174
1189
 
1175
1190
  api.add_operation(:list_deployment_groups, Seahorse::Model::Operation.new.tap do |o|
@@ -1182,6 +1197,11 @@ module Aws::CodeDeploy
1182
1197
  o.errors << Shapes::ShapeRef.new(shape: InvalidApplicationNameException)
1183
1198
  o.errors << Shapes::ShapeRef.new(shape: ApplicationDoesNotExistException)
1184
1199
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1200
+ o[:pager] = Aws::Pager.new(
1201
+ tokens: {
1202
+ "next_token" => "next_token"
1203
+ }
1204
+ )
1185
1205
  end)
1186
1206
 
1187
1207
  api.add_operation(:list_deployment_instances, Seahorse::Model::Operation.new.tap do |o|
@@ -1197,6 +1217,11 @@ module Aws::CodeDeploy
1197
1217
  o.errors << Shapes::ShapeRef.new(shape: InvalidDeploymentIdException)
1198
1218
  o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceStatusException)
1199
1219
  o.errors << Shapes::ShapeRef.new(shape: InvalidInstanceTypeException)
1220
+ o[:pager] = Aws::Pager.new(
1221
+ tokens: {
1222
+ "next_token" => "next_token"
1223
+ }
1224
+ )
1200
1225
  end)
1201
1226
 
1202
1227
  api.add_operation(:list_deployments, Seahorse::Model::Operation.new.tap do |o|
@@ -1214,6 +1239,11 @@ module Aws::CodeDeploy
1214
1239
  o.errors << Shapes::ShapeRef.new(shape: InvalidTimeRangeException)
1215
1240
  o.errors << Shapes::ShapeRef.new(shape: InvalidDeploymentStatusException)
1216
1241
  o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
1242
+ o[:pager] = Aws::Pager.new(
1243
+ tokens: {
1244
+ "next_token" => "next_token"
1245
+ }
1246
+ )
1217
1247
  end)
1218
1248
 
1219
1249
  api.add_operation(:list_on_premises_instances, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codedeploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc3
4
+ version: 1.0.0.rc4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-07 00:00:00.000000000 Z
11
+ date: 2017-04-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core