aws-sdk-core 2.11.13 → 2.11.14

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: 5995b260b72e1354a715c8e93c1857f781bd48d3
4
- data.tar.gz: 9b723b3036ecc58f0ba8bacf1b27f6b526fbce12
3
+ metadata.gz: 554cf4b2c63e4ded18101078bce6f168badb583a
4
+ data.tar.gz: 9fcf8571701b4fa99545cf712fc6210979c72fe6
5
5
  SHA512:
6
- metadata.gz: d771136b5092b90fe7e7897ed0474ba4f09a105f499c85a18ef3638f8124e13036fd609b17e233fd137f705539936916b31b3093787dab9f7706ac1a0b3ada89
7
- data.tar.gz: 34350b95f2c0f1a2aa746949313eb17f67b6083597b40c349756ca827dc5246fedb55cb5e47c19dc5771f4afac9d038bf84e882506ecc228e776fef2991d0009
6
+ metadata.gz: 532158f6afcfc3a5c0e26350a89f88f904d3b9cd443044a22b33fdda79fa2f7a45de5b860245e72b9763c40537d4da4f71db83d1322ae8ba01ad6dcc0485206f
7
+ data.tar.gz: 28c20cb752c3b06d21517c421553ea377f03bf9c9fc0cddc375f7a088cf2885ecd2e9ee8667ccffea6ef7863ec4027542d6a65f492704bc9c7499e9e671151cd
@@ -234,6 +234,20 @@
234
234
  {"shape":"ServiceNotFound"}
235
235
  ]
236
236
  },
237
+ "UpdateInstanceCustomHealthStatus":{
238
+ "name":"UpdateInstanceCustomHealthStatus",
239
+ "http":{
240
+ "method":"POST",
241
+ "requestUri":"/"
242
+ },
243
+ "input":{"shape":"UpdateInstanceCustomHealthStatusRequest"},
244
+ "errors":[
245
+ {"shape":"InstanceNotFound"},
246
+ {"shape":"ServiceNotFound"},
247
+ {"shape":"CustomHealthNotFound"},
248
+ {"shape":"InvalidInput"}
249
+ ]
250
+ },
237
251
  "UpdateService":{
238
252
  "name":"UpdateService",
239
253
  "http":{
@@ -322,7 +336,8 @@
322
336
  },
323
337
  "Description":{"shape":"ResourceDescription"},
324
338
  "DnsConfig":{"shape":"DnsConfig"},
325
- "HealthCheckConfig":{"shape":"HealthCheckConfig"}
339
+ "HealthCheckConfig":{"shape":"HealthCheckConfig"},
340
+ "HealthCheckCustomConfig":{"shape":"HealthCheckCustomConfig"}
326
341
  }
327
342
  },
328
343
  "CreateServiceResponse":{
@@ -331,6 +346,20 @@
331
346
  "Service":{"shape":"Service"}
332
347
  }
333
348
  },
349
+ "CustomHealthNotFound":{
350
+ "type":"structure",
351
+ "members":{
352
+ "Message":{"shape":"ErrorMessage"}
353
+ },
354
+ "exception":true
355
+ },
356
+ "CustomHealthStatus":{
357
+ "type":"string",
358
+ "enum":[
359
+ "HEALTHY",
360
+ "UNHEALTHY"
361
+ ]
362
+ },
334
363
  "DeleteNamespaceRequest":{
335
364
  "type":"structure",
336
365
  "required":["Id"],
@@ -518,13 +547,18 @@
518
547
  },
519
548
  "HealthCheckConfig":{
520
549
  "type":"structure",
521
- "required":["Type"],
522
550
  "members":{
523
551
  "Type":{"shape":"HealthCheckType"},
524
552
  "ResourcePath":{"shape":"ResourcePath"},
525
553
  "FailureThreshold":{"shape":"FailureThreshold"}
526
554
  }
527
555
  },
556
+ "HealthCheckCustomConfig":{
557
+ "type":"structure",
558
+ "members":{
559
+ "FailureThreshold":{"shape":"FailureThreshold"}
560
+ }
561
+ },
528
562
  "HealthCheckType":{
529
563
  "type":"string",
530
564
  "enum":[
@@ -910,6 +944,7 @@
910
944
  "InstanceCount":{"shape":"ResourceCount"},
911
945
  "DnsConfig":{"shape":"DnsConfig"},
912
946
  "HealthCheckConfig":{"shape":"HealthCheckConfig"},
947
+ "HealthCheckCustomConfig":{"shape":"HealthCheckCustomConfig"},
913
948
  "CreateDate":{"shape":"Timestamp"},
914
949
  "CreatorRequestId":{"shape":"ResourceId"}
915
950
  }
@@ -954,7 +989,7 @@
954
989
  },
955
990
  "ServiceName":{
956
991
  "type":"string",
957
- "pattern":"((?=^.{1,127}$)^([a-zA-Z][a-zA-Z0-9-]{0,61}[a-zA-Z0-9]|[a-zA-Z])(\\.([a-z][a-zA-Z0-9-]{0,61}[a-zA-Z0-9]|[a-zA-Z]))*$)|(^\\.$)"
992
+ "pattern":"((?=^.{1,127}$)^([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9])(\\.([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9]))*$)|(^\\.$)"
958
993
  },
959
994
  "ServiceNotFound":{
960
995
  "type":"structure",
@@ -978,6 +1013,19 @@
978
1013
  }
979
1014
  },
980
1015
  "Timestamp":{"type":"timestamp"},
1016
+ "UpdateInstanceCustomHealthStatusRequest":{
1017
+ "type":"structure",
1018
+ "required":[
1019
+ "ServiceId",
1020
+ "InstanceId",
1021
+ "Status"
1022
+ ],
1023
+ "members":{
1024
+ "ServiceId":{"shape":"ResourceId"},
1025
+ "InstanceId":{"shape":"ResourceId"},
1026
+ "Status":{"shape":"CustomHealthStatus"}
1027
+ }
1028
+ },
981
1029
  "UpdateServiceRequest":{
982
1030
  "type":"structure",
983
1031
  "required":[
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.13'
2
+ VERSION = '2.11.14'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.13
4
+ version: 2.11.14
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: 2018-03-12 00:00:00.000000000 Z
11
+ date: 2018-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath