aws-sdk-core 2.11.180 → 2.11.181

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListCompilationJobs": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListEndpointConfigs": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -15,6 +20,16 @@
15
20
  "output_token": "NextToken",
16
21
  "limit_key": "MaxResults"
17
22
  },
23
+ "ListLabelingJobs": {
24
+ "input_token": "NextToken",
25
+ "output_token": "NextToken",
26
+ "limit_key": "MaxResults"
27
+ },
28
+ "ListLabelingJobsForWorkteam": {
29
+ "input_token": "NextToken",
30
+ "output_token": "NextToken",
31
+ "limit_key": "MaxResults"
32
+ },
18
33
  "ListModels": {
19
34
  "input_token": "NextToken",
20
35
  "output_token": "NextToken",
@@ -30,6 +45,11 @@
30
45
  "output_token": "NextToken",
31
46
  "limit_key": "MaxResults"
32
47
  },
48
+ "ListSubscribedWorkteams": {
49
+ "input_token": "NextToken",
50
+ "output_token": "NextToken",
51
+ "limit_key": "MaxResults"
52
+ },
33
53
  "ListTags": {
34
54
  "input_token": "NextToken",
35
55
  "output_token": "NextToken",
@@ -49,6 +69,16 @@
49
69
  "input_token": "NextToken",
50
70
  "output_token": "NextToken",
51
71
  "limit_key": "MaxResults"
72
+ },
73
+ "ListWorkteams": {
74
+ "input_token": "NextToken",
75
+ "output_token": "NextToken",
76
+ "limit_key": "MaxResults"
77
+ },
78
+ "Search": {
79
+ "input_token": "NextToken",
80
+ "output_token": "NextToken",
81
+ "limit_key": "MaxResults"
52
82
  }
53
83
  }
54
84
  }
@@ -6,13 +6,28 @@
6
6
  "jsonVersion":"1.1",
7
7
  "protocol":"json",
8
8
  "serviceAbbreviation":"ServiceDiscovery",
9
- "serviceFullName":"Amazon Route 53 Auto Naming",
9
+ "serviceFullName":"AWS Cloud Map",
10
10
  "serviceId":"ServiceDiscovery",
11
11
  "signatureVersion":"v4",
12
12
  "targetPrefix":"Route53AutoNaming_v20170314",
13
13
  "uid":"servicediscovery-2017-03-14"
14
14
  },
15
15
  "operations":{
16
+ "CreateHttpNamespace":{
17
+ "name":"CreateHttpNamespace",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/"
21
+ },
22
+ "input":{"shape":"CreateHttpNamespaceRequest"},
23
+ "output":{"shape":"CreateHttpNamespaceResponse"},
24
+ "errors":[
25
+ {"shape":"InvalidInput"},
26
+ {"shape":"NamespaceAlreadyExists"},
27
+ {"shape":"ResourceLimitExceeded"},
28
+ {"shape":"DuplicateRequest"}
29
+ ]
30
+ },
16
31
  "CreatePrivateDnsNamespace":{
17
32
  "name":"CreatePrivateDnsNamespace",
18
33
  "http":{
@@ -103,6 +118,21 @@
103
118
  {"shape":"ServiceNotFound"}
104
119
  ]
105
120
  },
121
+ "DiscoverInstances":{
122
+ "name":"DiscoverInstances",
123
+ "http":{
124
+ "method":"POST",
125
+ "requestUri":"/"
126
+ },
127
+ "input":{"shape":"DiscoverInstancesRequest"},
128
+ "output":{"shape":"DiscoverInstancesResponse"},
129
+ "errors":[
130
+ {"shape":"ServiceNotFound"},
131
+ {"shape":"NamespaceNotFound"},
132
+ {"shape":"InvalidInput"}
133
+ ],
134
+ "endpoint":{"hostPrefix":"data-"}
135
+ },
106
136
  "GetInstance":{
107
137
  "name":"GetInstance",
108
138
  "http":{
@@ -153,6 +183,7 @@
153
183
  "input":{"shape":"GetOperationRequest"},
154
184
  "output":{"shape":"GetOperationResponse"},
155
185
  "errors":[
186
+ {"shape":"InvalidInput"},
156
187
  {"shape":"OperationNotFound"}
157
188
  ]
158
189
  },
@@ -274,7 +305,7 @@
274
305
  },
275
306
  "AttrValue":{
276
307
  "type":"string",
277
- "max":255
308
+ "max":1024
278
309
  },
279
310
  "Attributes":{
280
311
  "type":"map",
@@ -282,6 +313,24 @@
282
313
  "value":{"shape":"AttrValue"}
283
314
  },
284
315
  "Code":{"type":"string"},
316
+ "CreateHttpNamespaceRequest":{
317
+ "type":"structure",
318
+ "required":["Name"],
319
+ "members":{
320
+ "Name":{"shape":"NamespaceName"},
321
+ "CreatorRequestId":{
322
+ "shape":"ResourceId",
323
+ "idempotencyToken":true
324
+ },
325
+ "Description":{"shape":"ResourceDescription"}
326
+ }
327
+ },
328
+ "CreateHttpNamespaceResponse":{
329
+ "type":"structure",
330
+ "members":{
331
+ "OperationId":{"shape":"OperationId"}
332
+ }
333
+ },
285
334
  "CreatePrivateDnsNamespaceRequest":{
286
335
  "type":"structure",
287
336
  "required":[
@@ -324,12 +373,10 @@
324
373
  },
325
374
  "CreateServiceRequest":{
326
375
  "type":"structure",
327
- "required":[
328
- "Name",
329
- "DnsConfig"
330
- ],
376
+ "required":["Name"],
331
377
  "members":{
332
378
  "Name":{"shape":"ServiceName"},
379
+ "NamespaceId":{"shape":"ResourceId"},
333
380
  "CreatorRequestId":{
334
381
  "shape":"ResourceId",
335
382
  "idempotencyToken":true
@@ -402,14 +449,35 @@
402
449
  "OperationId":{"shape":"OperationId"}
403
450
  }
404
451
  },
405
- "DnsConfig":{
452
+ "DiscoverInstancesRequest":{
406
453
  "type":"structure",
407
454
  "required":[
408
- "NamespaceId",
409
- "DnsRecords"
455
+ "NamespaceName",
456
+ "ServiceName"
410
457
  ],
411
458
  "members":{
412
- "NamespaceId":{"shape":"ResourceId"},
459
+ "NamespaceName":{"shape":"NamespaceName"},
460
+ "ServiceName":{"shape":"ServiceName"},
461
+ "MaxResults":{"shape":"MaxResults"},
462
+ "QueryParameters":{"shape":"Attributes"},
463
+ "HealthStatus":{"shape":"HealthStatusFilter"}
464
+ }
465
+ },
466
+ "DiscoverInstancesResponse":{
467
+ "type":"structure",
468
+ "members":{
469
+ "Instances":{"shape":"HttpInstanceSummaryList"}
470
+ }
471
+ },
472
+ "DnsConfig":{
473
+ "type":"structure",
474
+ "required":["DnsRecords"],
475
+ "members":{
476
+ "NamespaceId":{
477
+ "shape":"ResourceId",
478
+ "deprecated":true,
479
+ "deprecatedMessage":"Top level attribute in request should be used to reference namespace-id"
480
+ },
413
481
  "RoutingPolicy":{"shape":"RoutingPolicy"},
414
482
  "DnsRecords":{"shape":"DnsRecordList"}
415
483
  }
@@ -445,7 +513,8 @@
445
513
  "DuplicateRequest":{
446
514
  "type":"structure",
447
515
  "members":{
448
- "Message":{"shape":"ErrorMessage"}
516
+ "Message":{"shape":"ErrorMessage"},
517
+ "DuplicateOperationId":{"shape":"ResourceId"}
449
518
  },
450
519
  "exception":true
451
520
  },
@@ -547,6 +616,7 @@
547
616
  },
548
617
  "HealthCheckConfig":{
549
618
  "type":"structure",
619
+ "required":["Type"],
550
620
  "members":{
551
621
  "Type":{"shape":"HealthCheckType"},
552
622
  "ResourcePath":{"shape":"ResourcePath"},
@@ -575,6 +645,34 @@
575
645
  "UNKNOWN"
576
646
  ]
577
647
  },
648
+ "HealthStatusFilter":{
649
+ "type":"string",
650
+ "enum":[
651
+ "HEALTHY",
652
+ "UNHEALTHY",
653
+ "ALL"
654
+ ]
655
+ },
656
+ "HttpInstanceSummary":{
657
+ "type":"structure",
658
+ "members":{
659
+ "InstanceId":{"shape":"ResourceId"},
660
+ "NamespaceName":{"shape":"NamespaceName"},
661
+ "ServiceName":{"shape":"ServiceName"},
662
+ "HealthStatus":{"shape":"HealthStatus"},
663
+ "Attributes":{"shape":"Attributes"}
664
+ }
665
+ },
666
+ "HttpInstanceSummaryList":{
667
+ "type":"list",
668
+ "member":{"shape":"HttpInstanceSummary"}
669
+ },
670
+ "HttpProperties":{
671
+ "type":"structure",
672
+ "members":{
673
+ "HttpName":{"shape":"NamespaceName"}
674
+ }
675
+ },
578
676
  "Instance":{
579
677
  "type":"structure",
580
678
  "required":["Id"],
@@ -743,7 +841,8 @@
743
841
  "NamespaceProperties":{
744
842
  "type":"structure",
745
843
  "members":{
746
- "DnsProperties":{"shape":"DnsProperties"}
844
+ "DnsProperties":{"shape":"DnsProperties"},
845
+ "HttpProperties":{"shape":"HttpProperties"}
747
846
  }
748
847
  },
749
848
  "NamespaceSummariesList":{
@@ -756,14 +855,19 @@
756
855
  "Id":{"shape":"ResourceId"},
757
856
  "Arn":{"shape":"Arn"},
758
857
  "Name":{"shape":"NamespaceName"},
759
- "Type":{"shape":"NamespaceType"}
858
+ "Type":{"shape":"NamespaceType"},
859
+ "Description":{"shape":"ResourceDescription"},
860
+ "ServiceCount":{"shape":"ResourceCount"},
861
+ "Properties":{"shape":"NamespaceProperties"},
862
+ "CreateDate":{"shape":"Timestamp"}
760
863
  }
761
864
  },
762
865
  "NamespaceType":{
763
866
  "type":"string",
764
867
  "enum":[
765
868
  "DNS_PUBLIC",
766
- "DNS_PRIVATE"
869
+ "DNS_PRIVATE",
870
+ "HTTP"
767
871
  ]
768
872
  },
769
873
  "NextToken":{
@@ -940,6 +1044,7 @@
940
1044
  "Id":{"shape":"ResourceId"},
941
1045
  "Arn":{"shape":"Arn"},
942
1046
  "Name":{"shape":"ServiceName"},
1047
+ "NamespaceId":{"shape":"ResourceId"},
943
1048
  "Description":{"shape":"ResourceDescription"},
944
1049
  "InstanceCount":{"shape":"ResourceCount"},
945
1050
  "DnsConfig":{"shape":"DnsConfig"},
@@ -1009,7 +1114,11 @@
1009
1114
  "Arn":{"shape":"Arn"},
1010
1115
  "Name":{"shape":"ServiceName"},
1011
1116
  "Description":{"shape":"ResourceDescription"},
1012
- "InstanceCount":{"shape":"ResourceCount"}
1117
+ "InstanceCount":{"shape":"ResourceCount"},
1118
+ "DnsConfig":{"shape":"DnsConfig"},
1119
+ "HealthCheckConfig":{"shape":"HealthCheckConfig"},
1120
+ "HealthCheckCustomConfig":{"shape":"HealthCheckCustomConfig"},
1121
+ "CreateDate":{"shape":"Timestamp"}
1013
1122
  }
1014
1123
  },
1015
1124
  "Timestamp":{"type":"timestamp"},
@@ -28,6 +28,7 @@ module Aws
28
28
  APIGateway
29
29
  AlexaForBusiness
30
30
  Amplify
31
+ AppMesh
31
32
  AppStream
32
33
  AppSync
33
34
  ApplicationAutoScaling
@@ -116,6 +117,7 @@ module Aws
116
117
  LambdaPreview
117
118
  Lex
118
119
  LexModelBuildingService
120
+ LicenseManager
119
121
  Lightsail
120
122
  MQ
121
123
  MTurk
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:AppMesh, {
2
+ api: "#{Aws::API_DIR}/appmesh/2018-10-01/api-2.json",
3
+ docs: "#{Aws::API_DIR}/appmesh/2018-10-01/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/appmesh/2018-10-01/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/appmesh/2018-10-01/paginators-1.json",
6
+ })
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:LicenseManager, {
2
+ api: "#{Aws::API_DIR}/license-manager/2018-08-01/api-2.json",
3
+ docs: "#{Aws::API_DIR}/license-manager/2018-08-01/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/license-manager/2018-08-01/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/license-manager/2018-08-01/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.180'
2
+ VERSION = '2.11.181'
3
3
  end
@@ -19,6 +19,10 @@
19
19
  "models": "amplify/2017-07-25",
20
20
  "endpoint": "amplify"
21
21
  },
22
+ "AppMesh": {
23
+ "models": "appmesh/2018-10-01",
24
+ "endpoint": "appmesh"
25
+ },
22
26
  "AppStream": {
23
27
  "models": "appstream/2016-12-01",
24
28
  "endpoint": "appstream2"
@@ -370,6 +374,10 @@
370
374
  "models": "lex-models/2017-04-19",
371
375
  "endpoint": "models.lex"
372
376
  },
377
+ "LicenseManager": {
378
+ "models": "license-manager/2018-08-01",
379
+ "endpoint": "license-manager"
380
+ },
373
381
  "Lightsail": {
374
382
  "models": "lightsail/2016-11-28",
375
383
  "endpoint": "lightsail"
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.180
4
+ version: 2.11.181
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-11-28 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -72,6 +72,9 @@ files:
72
72
  - apis/application-autoscaling/2016-02-06/examples-1.json
73
73
  - apis/application-autoscaling/2016-02-06/paginators-1.json
74
74
  - apis/application-autoscaling/2016-02-06/smoke.json
75
+ - apis/appmesh/2018-10-01/api-2.json
76
+ - apis/appmesh/2018-10-01/examples-1.json
77
+ - apis/appmesh/2018-10-01/paginators-1.json
75
78
  - apis/appstream/2016-12-01/api-2.json
76
79
  - apis/appstream/2016-12-01/examples-1.json
77
80
  - apis/appstream/2016-12-01/paginators-1.json
@@ -439,6 +442,9 @@ files:
439
442
  - apis/lex-models/2017-04-19/api-2.json
440
443
  - apis/lex-models/2017-04-19/examples-1.json
441
444
  - apis/lex-models/2017-04-19/paginators-1.json
445
+ - apis/license-manager/2018-08-01/api-2.json
446
+ - apis/license-manager/2018-08-01/examples-1.json
447
+ - apis/license-manager/2018-08-01/paginators-1.json
442
448
  - apis/lightsail/2016-11-28/api-2.json
443
449
  - apis/lightsail/2016-11-28/examples-1.json
444
450
  - apis/lightsail/2016-11-28/paginators-1.json
@@ -728,6 +734,7 @@ files:
728
734
  - lib/aws-sdk-core/apigateway.rb
729
735
  - lib/aws-sdk-core/applicationautoscaling.rb
730
736
  - lib/aws-sdk-core/applicationdiscoveryservice.rb
737
+ - lib/aws-sdk-core/appmesh.rb
731
738
  - lib/aws-sdk-core/appstream.rb
732
739
  - lib/aws-sdk-core/appsync.rb
733
740
  - lib/aws-sdk-core/assume_role_credentials.rb
@@ -842,6 +849,7 @@ files:
842
849
  - lib/aws-sdk-core/lambdapreview.rb
843
850
  - lib/aws-sdk-core/lex.rb
844
851
  - lib/aws-sdk-core/lexmodelbuildingservice.rb
852
+ - lib/aws-sdk-core/licensemanager.rb
845
853
  - lib/aws-sdk-core/lightsail.rb
846
854
  - lib/aws-sdk-core/log/formatter.rb
847
855
  - lib/aws-sdk-core/log/handler.rb