aws-sdk-core 2.11.240 → 2.11.241

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: 5c9bd17b5b3dfc34f2bfebbe4a3f2142783f096c
4
- data.tar.gz: 229dc22f9e6b882eda97cd2039f87b9732aa56e7
3
+ metadata.gz: 7a77455b93fb2c08c99bf3166c51186c0cdc4de0
4
+ data.tar.gz: 7c0633c4f25f206052c0ff3354e0c11ed4a8b7b1
5
5
  SHA512:
6
- metadata.gz: d37ca2b62d972e906e9b416f39d622f69759b109476fb8445290ceae4893975dcac7614ef86697ac65ab016b377e417bf5234cee98151eac34eebc2040b9e80a
7
- data.tar.gz: ab0150ba5e524fa4cfc66964fbc4c2d30b19f180d57daf0e34677290992c142571e8b48db34a697192f667c7dfca1e4e1451b51ad6df34f53112b09603971782
6
+ metadata.gz: 65425a8a701d33b01400652d90be6721ee3de0c377a0aeeef9e9de7a6660847c67689571cb13f52f719301858409d3757c4800a90d6cfdff74192579209116de
7
+ data.tar.gz: 9737731461552510f8be66479569e8d73b5e4c63e1eff0eddf1c36ab494aecde11d200acd550ce87794ec8b905b38c942fffbd97b10ef7d561560219976af85c
@@ -47,6 +47,22 @@
47
47
  ],
48
48
  "idempotent":true
49
49
  },
50
+ "CreatePermission":{
51
+ "name":"CreatePermission",
52
+ "http":{
53
+ "method":"POST",
54
+ "requestUri":"/"
55
+ },
56
+ "input":{"shape":"CreatePermissionRequest"},
57
+ "errors":[
58
+ {"shape":"ResourceNotFoundException"},
59
+ {"shape":"InvalidArnException"},
60
+ {"shape":"PermissionAlreadyExistsException"},
61
+ {"shape":"LimitExceededException"},
62
+ {"shape":"InvalidStateException"},
63
+ {"shape":"RequestFailedException"}
64
+ ]
65
+ },
50
66
  "DeleteCertificateAuthority":{
51
67
  "name":"DeleteCertificateAuthority",
52
68
  "http":{
@@ -61,6 +77,20 @@
61
77
  {"shape":"InvalidStateException"}
62
78
  ]
63
79
  },
80
+ "DeletePermission":{
81
+ "name":"DeletePermission",
82
+ "http":{
83
+ "method":"POST",
84
+ "requestUri":"/"
85
+ },
86
+ "input":{"shape":"DeletePermissionRequest"},
87
+ "errors":[
88
+ {"shape":"ResourceNotFoundException"},
89
+ {"shape":"InvalidArnException"},
90
+ {"shape":"InvalidStateException"},
91
+ {"shape":"RequestFailedException"}
92
+ ]
93
+ },
64
94
  "DescribeCertificateAuthority":{
65
95
  "name":"DescribeCertificateAuthority",
66
96
  "http":{
@@ -182,6 +212,22 @@
182
212
  {"shape":"InvalidNextTokenException"}
183
213
  ]
184
214
  },
215
+ "ListPermissions":{
216
+ "name":"ListPermissions",
217
+ "http":{
218
+ "method":"POST",
219
+ "requestUri":"/"
220
+ },
221
+ "input":{"shape":"ListPermissionsRequest"},
222
+ "output":{"shape":"ListPermissionsResponse"},
223
+ "errors":[
224
+ {"shape":"ResourceNotFoundException"},
225
+ {"shape":"InvalidArnException"},
226
+ {"shape":"InvalidNextTokenException"},
227
+ {"shape":"InvalidStateException"},
228
+ {"shape":"RequestFailedException"}
229
+ ]
230
+ },
185
231
  "ListTags":{
186
232
  "name":"ListTags",
187
233
  "http":{
@@ -292,6 +338,26 @@
292
338
  "GenerationQualifier":{"shape":"String3"}
293
339
  }
294
340
  },
341
+ "AccountId":{
342
+ "type":"string",
343
+ "max":12,
344
+ "min":12,
345
+ "pattern":"[0-9]+"
346
+ },
347
+ "ActionList":{
348
+ "type":"list",
349
+ "member":{"shape":"ActionType"},
350
+ "max":3,
351
+ "min":1
352
+ },
353
+ "ActionType":{
354
+ "type":"string",
355
+ "enum":[
356
+ "IssueCertificate",
357
+ "GetCertificate",
358
+ "ListPermissions"
359
+ ]
360
+ },
295
361
  "Arn":{
296
362
  "type":"string",
297
363
  "max":200,
@@ -440,6 +506,20 @@
440
506
  "CertificateAuthorityArn":{"shape":"Arn"}
441
507
  }
442
508
  },
509
+ "CreatePermissionRequest":{
510
+ "type":"structure",
511
+ "required":[
512
+ "CertificateAuthorityArn",
513
+ "Principal",
514
+ "Actions"
515
+ ],
516
+ "members":{
517
+ "CertificateAuthorityArn":{"shape":"Arn"},
518
+ "Principal":{"shape":"Principal"},
519
+ "SourceAccount":{"shape":"AccountId"},
520
+ "Actions":{"shape":"ActionList"}
521
+ }
522
+ },
443
523
  "CrlConfiguration":{
444
524
  "type":"structure",
445
525
  "required":["Enabled"],
@@ -470,6 +550,18 @@
470
550
  "PermanentDeletionTimeInDays":{"shape":"PermanentDeletionTimeInDays"}
471
551
  }
472
552
  },
553
+ "DeletePermissionRequest":{
554
+ "type":"structure",
555
+ "required":[
556
+ "CertificateAuthorityArn",
557
+ "Principal"
558
+ ],
559
+ "members":{
560
+ "CertificateAuthorityArn":{"shape":"Arn"},
561
+ "Principal":{"shape":"Principal"},
562
+ "SourceAccount":{"shape":"AccountId"}
563
+ }
564
+ },
473
565
  "DescribeCertificateAuthorityAuditReportRequest":{
474
566
  "type":"structure",
475
567
  "required":[
@@ -680,6 +772,22 @@
680
772
  "NextToken":{"shape":"NextToken"}
681
773
  }
682
774
  },
775
+ "ListPermissionsRequest":{
776
+ "type":"structure",
777
+ "required":["CertificateAuthorityArn"],
778
+ "members":{
779
+ "CertificateAuthorityArn":{"shape":"Arn"},
780
+ "NextToken":{"shape":"NextToken"},
781
+ "MaxResults":{"shape":"MaxResults"}
782
+ }
783
+ },
784
+ "ListPermissionsResponse":{
785
+ "type":"structure",
786
+ "members":{
787
+ "Permissions":{"shape":"PermissionList"},
788
+ "NextToken":{"shape":"NextToken"}
789
+ }
790
+ },
683
791
  "ListTagsRequest":{
684
792
  "type":"structure",
685
793
  "required":["CertificateAuthorityArn"],
@@ -725,10 +833,39 @@
725
833
  "max":30,
726
834
  "min":7
727
835
  },
836
+ "Permission":{
837
+ "type":"structure",
838
+ "members":{
839
+ "CertificateAuthorityArn":{"shape":"Arn"},
840
+ "CreatedAt":{"shape":"TStamp"},
841
+ "Principal":{"shape":"String"},
842
+ "SourceAccount":{"shape":"String"},
843
+ "Actions":{"shape":"ActionList"},
844
+ "Policy":{"shape":"String"}
845
+ }
846
+ },
847
+ "PermissionAlreadyExistsException":{
848
+ "type":"structure",
849
+ "members":{
850
+ "message":{"shape":"String"}
851
+ },
852
+ "exception":true
853
+ },
854
+ "PermissionList":{
855
+ "type":"list",
856
+ "member":{"shape":"Permission"},
857
+ "min":0
858
+ },
728
859
  "PositiveLong":{
729
860
  "type":"long",
730
861
  "min":1
731
862
  },
863
+ "Principal":{
864
+ "type":"string",
865
+ "max":128,
866
+ "min":0,
867
+ "pattern":"^[^*]+$"
868
+ },
732
869
  "RequestAlreadyProcessedException":{
733
870
  "type":"structure",
734
871
  "members":{
@@ -5,6 +5,18 @@
5
5
  "limit_key": "MaxResults",
6
6
  "output_token": "NextToken",
7
7
  "result_key": "CertificateAuthorities"
8
+ },
9
+ "ListPermissions": {
10
+ "input_token": "NextToken",
11
+ "limit_key": "MaxResults",
12
+ "output_token": "NextToken",
13
+ "result_key": "Permissions"
14
+ },
15
+ "ListTags": {
16
+ "input_token": "NextToken",
17
+ "limit_key": "MaxResults",
18
+ "output_token": "NextToken",
19
+ "result_key": "Tags"
8
20
  }
9
21
  }
10
22
  }
@@ -101,7 +101,10 @@
101
101
  "requestUri":"/"
102
102
  },
103
103
  "input":{"shape":"ListCertificatesRequest"},
104
- "output":{"shape":"ListCertificatesResponse"}
104
+ "output":{"shape":"ListCertificatesResponse"},
105
+ "errors":[
106
+ {"shape":"InvalidArgsException"}
107
+ ]
105
108
  },
106
109
  "ListTagsForCertificate":{
107
110
  "name":"ListTagsForCertificate",
@@ -129,6 +132,18 @@
129
132
  {"shape":"InvalidTagException"}
130
133
  ]
131
134
  },
135
+ "RenewCertificate":{
136
+ "name":"RenewCertificate",
137
+ "http":{
138
+ "method":"POST",
139
+ "requestUri":"/"
140
+ },
141
+ "input":{"shape":"RenewCertificateRequest"},
142
+ "errors":[
143
+ {"shape":"ResourceNotFoundException"},
144
+ {"shape":"InvalidArnException"}
145
+ ]
146
+ },
132
147
  "RequestCertificate":{
133
148
  "name":"RequestCertificate",
134
149
  "http":{
@@ -424,6 +439,7 @@
424
439
  "ADDITIONAL_VERIFICATION_REQUIRED",
425
440
  "DOMAIN_NOT_ALLOWED",
426
441
  "INVALID_PUBLIC_DOMAIN",
442
+ "DOMAIN_VALIDATION_DENIED",
427
443
  "CAA_ERROR",
428
444
  "PCA_LIMIT_EXCEEDED",
429
445
  "PCA_INVALID_ARN",
@@ -431,6 +447,8 @@
431
447
  "PCA_REQUEST_FAILED",
432
448
  "PCA_RESOURCE_NOT_FOUND",
433
449
  "PCA_INVALID_ARGS",
450
+ "PCA_INVALID_DURATION",
451
+ "PCA_ACCESS_DENIED",
434
452
  "OTHER"
435
453
  ]
436
454
  },
@@ -485,6 +503,13 @@
485
503
  "type":"list",
486
504
  "member":{"shape":"String"}
487
505
  },
506
+ "InvalidArgsException":{
507
+ "type":"structure",
508
+ "members":{
509
+ "message":{"shape":"String"}
510
+ },
511
+ "exception":true
512
+ },
488
513
  "InvalidArnException":{
489
514
  "type":"structure",
490
515
  "members":{
@@ -639,6 +664,13 @@
639
664
  "Tags":{"shape":"TagList"}
640
665
  }
641
666
  },
667
+ "RenewCertificateRequest":{
668
+ "type":"structure",
669
+ "required":["CertificateArn"],
670
+ "members":{
671
+ "CertificateArn":{"shape":"Arn"}
672
+ }
673
+ },
642
674
  "RenewalEligibility":{
643
675
  "type":"string",
644
676
  "enum":[
@@ -659,11 +691,14 @@
659
691
  "type":"structure",
660
692
  "required":[
661
693
  "RenewalStatus",
662
- "DomainValidationOptions"
694
+ "DomainValidationOptions",
695
+ "UpdatedAt"
663
696
  ],
664
697
  "members":{
665
698
  "RenewalStatus":{"shape":"RenewalStatus"},
666
- "DomainValidationOptions":{"shape":"DomainValidationList"}
699
+ "DomainValidationOptions":{"shape":"DomainValidationList"},
700
+ "RenewalStatusReason":{"shape":"FailureReason"},
701
+ "UpdatedAt":{"shape":"TStamp"}
667
702
  }
668
703
  },
669
704
  "RequestCertificateRequest":{
@@ -535,6 +535,21 @@
535
535
  {"shape":"NoAvailableConfigurationRecorderException"}
536
536
  ]
537
537
  },
538
+ "ListTagsForResource":{
539
+ "name":"ListTagsForResource",
540
+ "http":{
541
+ "method":"POST",
542
+ "requestUri":"/"
543
+ },
544
+ "input":{"shape":"ListTagsForResourceRequest"},
545
+ "output":{"shape":"ListTagsForResourceResponse"},
546
+ "errors":[
547
+ {"shape":"ResourceNotFoundException"},
548
+ {"shape":"ValidationException"},
549
+ {"shape":"InvalidLimitException"},
550
+ {"shape":"InvalidNextTokenException"}
551
+ ]
552
+ },
538
553
  "PutAggregationAuthorization":{
539
554
  "name":"PutAggregationAuthorization",
540
555
  "http":{
@@ -700,6 +715,31 @@
700
715
  "errors":[
701
716
  {"shape":"NoSuchConfigurationRecorderException"}
702
717
  ]
718
+ },
719
+ "TagResource":{
720
+ "name":"TagResource",
721
+ "http":{
722
+ "method":"POST",
723
+ "requestUri":"/"
724
+ },
725
+ "input":{"shape":"TagResourceRequest"},
726
+ "errors":[
727
+ {"shape":"ValidationException"},
728
+ {"shape":"ResourceNotFoundException"},
729
+ {"shape":"TooManyTagsException"}
730
+ ]
731
+ },
732
+ "UntagResource":{
733
+ "name":"UntagResource",
734
+ "http":{
735
+ "method":"POST",
736
+ "requestUri":"/"
737
+ },
738
+ "input":{"shape":"UntagResourceRequest"},
739
+ "errors":[
740
+ {"shape":"ValidationException"},
741
+ {"shape":"ResourceNotFoundException"}
742
+ ]
703
743
  }
704
744
  },
705
745
  "shapes":{
@@ -839,6 +879,11 @@
839
879
  "min":1
840
880
  },
841
881
  "AllSupported":{"type":"boolean"},
882
+ "AmazonResourceName":{
883
+ "type":"string",
884
+ "max":256,
885
+ "min":1
886
+ },
842
887
  "AvailabilityZone":{"type":"string"},
843
888
  "AwsRegion":{
844
889
  "type":"string",
@@ -1990,6 +2035,22 @@
1990
2035
  "nextToken":{"shape":"NextToken"}
1991
2036
  }
1992
2037
  },
2038
+ "ListTagsForResourceRequest":{
2039
+ "type":"structure",
2040
+ "required":["ResourceArn"],
2041
+ "members":{
2042
+ "ResourceArn":{"shape":"AmazonResourceName"},
2043
+ "Limit":{"shape":"Limit"},
2044
+ "NextToken":{"shape":"NextToken"}
2045
+ }
2046
+ },
2047
+ "ListTagsForResourceResponse":{
2048
+ "type":"structure",
2049
+ "members":{
2050
+ "Tags":{"shape":"TagList"},
2051
+ "NextToken":{"shape":"NextToken"}
2052
+ }
2053
+ },
1993
2054
  "Long":{"type":"long"},
1994
2055
  "MaxNumberOfConfigRulesExceededException":{
1995
2056
  "type":"structure",
@@ -2469,6 +2530,12 @@
2469
2530
  },
2470
2531
  "exception":true
2471
2532
  },
2533
+ "ResourceNotFoundException":{
2534
+ "type":"structure",
2535
+ "members":{
2536
+ },
2537
+ "exception":true
2538
+ },
2472
2539
  "ResourceType":{
2473
2540
  "type":"string",
2474
2541
  "enum":[
@@ -2713,15 +2780,72 @@
2713
2780
  },
2714
2781
  "SupplementaryConfigurationName":{"type":"string"},
2715
2782
  "SupplementaryConfigurationValue":{"type":"string"},
2783
+ "Tag":{
2784
+ "type":"structure",
2785
+ "members":{
2786
+ "Key":{"shape":"TagKey"},
2787
+ "Value":{"shape":"TagValue"}
2788
+ }
2789
+ },
2790
+ "TagKey":{
2791
+ "type":"string",
2792
+ "max":128,
2793
+ "min":1
2794
+ },
2795
+ "TagKeyList":{
2796
+ "type":"list",
2797
+ "member":{"shape":"TagKey"},
2798
+ "max":50,
2799
+ "min":1
2800
+ },
2801
+ "TagList":{
2802
+ "type":"list",
2803
+ "member":{"shape":"Tag"},
2804
+ "max":50,
2805
+ "min":1
2806
+ },
2807
+ "TagResourceRequest":{
2808
+ "type":"structure",
2809
+ "required":[
2810
+ "ResourceArn",
2811
+ "Tags"
2812
+ ],
2813
+ "members":{
2814
+ "ResourceArn":{"shape":"AmazonResourceName"},
2815
+ "Tags":{"shape":"TagList"}
2816
+ }
2817
+ },
2818
+ "TagValue":{
2819
+ "type":"string",
2820
+ "max":256,
2821
+ "min":0
2822
+ },
2716
2823
  "Tags":{
2717
2824
  "type":"map",
2718
2825
  "key":{"shape":"Name"},
2719
2826
  "value":{"shape":"Value"}
2720
2827
  },
2828
+ "TooManyTagsException":{
2829
+ "type":"structure",
2830
+ "members":{
2831
+ },
2832
+ "exception":true
2833
+ },
2721
2834
  "UnprocessedResourceIdentifierList":{
2722
2835
  "type":"list",
2723
2836
  "member":{"shape":"AggregateResourceIdentifier"}
2724
2837
  },
2838
+ "UntagResourceRequest":{
2839
+ "type":"structure",
2840
+ "required":[
2841
+ "ResourceArn",
2842
+ "TagKeys"
2843
+ ],
2844
+ "members":{
2845
+ "ResourceArn":{"shape":"AmazonResourceName"},
2846
+ "TagKeys":{"shape":"TagKeyList"}
2847
+ }
2848
+ },
2725
2849
  "ValidationException":{
2726
2850
  "type":"structure",
2727
2851
  "members":{
@@ -8283,7 +8283,7 @@
8283
8283
  "members":{
8284
8284
  "Filter":{"shape":"FilterList"},
8285
8285
  "MaxDuration":{"shape":"Integer"},
8286
- "MaxResults":{"shape":"Integer"},
8286
+ "MaxResults":{"shape":"DescribeHostReservationsMaxResults"},
8287
8287
  "MinDuration":{"shape":"Integer"},
8288
8288
  "NextToken":{"shape":"String"},
8289
8289
  "OfferingId":{"shape":"String"}
@@ -8302,6 +8302,11 @@
8302
8302
  }
8303
8303
  }
8304
8304
  },
8305
+ "DescribeHostReservationsMaxResults":{
8306
+ "type":"integer",
8307
+ "max":500,
8308
+ "min":5
8309
+ },
8305
8310
  "DescribeHostReservationsRequest":{
8306
8311
  "type":"structure",
8307
8312
  "members":{
@@ -12547,6 +12552,10 @@
12547
12552
  "UpfrontPrice":{
12548
12553
  "shape":"String",
12549
12554
  "locationName":"upfrontPrice"
12555
+ },
12556
+ "Tags":{
12557
+ "shape":"TagList",
12558
+ "locationName":"tagSet"
12550
12559
  }
12551
12560
  }
12552
12561
  },
@@ -18885,6 +18894,7 @@
18885
18894
  "elastic-ip",
18886
18895
  "fleet",
18887
18896
  "fpga-image",
18897
+ "host-reservation",
18888
18898
  "image",
18889
18899
  "instance",
18890
18900
  "internet-gateway",
@@ -3790,7 +3790,8 @@
3790
3790
  "awsJobExecutionsRolloutConfig":{"shape":"AwsJobExecutionsRolloutConfig"},
3791
3791
  "files":{"shape":"OTAUpdateFiles"},
3792
3792
  "roleArn":{"shape":"RoleArn"},
3793
- "additionalParameters":{"shape":"AdditionalParameterMap"}
3793
+ "additionalParameters":{"shape":"AdditionalParameterMap"},
3794
+ "tags":{"shape":"TagList"}
3794
3795
  }
3795
3796
  },
3796
3797
  "CreateOTAUpdateResponse":{
@@ -3943,7 +3944,8 @@
3943
3944
  },
3944
3945
  "description":{"shape":"StreamDescription"},
3945
3946
  "files":{"shape":"StreamFiles"},
3946
- "roleArn":{"shape":"RoleArn"}
3947
+ "roleArn":{"shape":"RoleArn"},
3948
+ "tags":{"shape":"TagList"}
3947
3949
  }
3948
3950
  },
3949
3951
  "CreateStreamResponse":{
@@ -601,7 +601,8 @@
601
601
  "type":"structure",
602
602
  "members":{
603
603
  "MetricDataResults":{"shape":"MetricDataResults"},
604
- "NextToken":{"shape":"NextToken"}
604
+ "NextToken":{"shape":"NextToken"},
605
+ "Messages":{"shape":"MetricDataResultMessages"}
605
606
  }
606
607
  },
607
608
  "GetMetricStatisticsInput":{
@@ -15,6 +15,20 @@
15
15
  "DescribeAlarmsForMetric": {
16
16
  "result_key": "MetricAlarms"
17
17
  },
18
+ "GetMetricData": {
19
+ "input_token": "NextToken",
20
+ "limit_key": "MaxDatapoints",
21
+ "output_token": "NextToken",
22
+ "result_key": [
23
+ "MetricDataResults",
24
+ "Messages"
25
+ ]
26
+ },
27
+ "ListDashboards": {
28
+ "input_token": "NextToken",
29
+ "output_token": "NextToken",
30
+ "result_key": "DashboardEntries"
31
+ },
18
32
  "ListMetrics": {
19
33
  "input_token": "NextToken",
20
34
  "output_token": "NextToken",
@@ -0,0 +1,22 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "ListMetrics",
7
+ "input": {
8
+ "Namespace": "AWS\/EC2"
9
+ },
10
+ "errorExpectedFromService": false
11
+ },
12
+ {
13
+ "operationName": "SetAlarmState",
14
+ "input": {
15
+ "AlarmName": "abc",
16
+ "StateValue": "mno",
17
+ "StateReason": "xyz"
18
+ },
19
+ "errorExpectedFromService": true
20
+ }
21
+ ]
22
+ }
@@ -1229,7 +1229,8 @@
1229
1229
  "members":{
1230
1230
  "Name":{"shape":"ParameterKey"},
1231
1231
  "MinValue":{"shape":"ParameterValue"},
1232
- "MaxValue":{"shape":"ParameterValue"}
1232
+ "MaxValue":{"shape":"ParameterValue"},
1233
+ "ScalingType":{"shape":"HyperParameterScalingType"}
1233
1234
  }
1234
1235
  },
1235
1236
  "ContinuousParameterRangeSpecification":{
@@ -2434,6 +2435,15 @@
2434
2435
  "MetricDefinitions":{"shape":"MetricDefinitionList"}
2435
2436
  }
2436
2437
  },
2438
+ "HyperParameterScalingType":{
2439
+ "type":"string",
2440
+ "enum":[
2441
+ "Auto",
2442
+ "Linear",
2443
+ "Logarithmic",
2444
+ "ReverseLogarithmic"
2445
+ ]
2446
+ },
2437
2447
  "HyperParameterSpecification":{
2438
2448
  "type":"structure",
2439
2449
  "required":[
@@ -2574,7 +2584,10 @@
2574
2584
  },
2575
2585
  "HyperParameterTuningJobStrategyType":{
2576
2586
  "type":"string",
2577
- "enum":["Bayesian"]
2587
+ "enum":[
2588
+ "Bayesian",
2589
+ "Random"
2590
+ ]
2578
2591
  },
2579
2592
  "HyperParameterTuningJobSummaries":{
2580
2593
  "type":"list",
@@ -2733,7 +2746,8 @@
2733
2746
  "members":{
2734
2747
  "Name":{"shape":"ParameterKey"},
2735
2748
  "MinValue":{"shape":"ParameterValue"},
2736
- "MaxValue":{"shape":"ParameterValue"}
2749
+ "MaxValue":{"shape":"ParameterValue"},
2750
+ "ScalingType":{"shape":"HyperParameterScalingType"}
2737
2751
  }
2738
2752
  },
2739
2753
  "IntegerParameterRangeSpecification":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.240'
2
+ VERSION = '2.11.241'
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.240
4
+ version: 2.11.241
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: 2019-03-13 00:00:00.000000000 Z
11
+ date: 2019-03-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -510,6 +510,7 @@ files:
510
510
  - apis/monitoring/2010-08-01/examples-1.json
511
511
  - apis/monitoring/2010-08-01/paginators-1.json
512
512
  - apis/monitoring/2010-08-01/resources-1.json
513
+ - apis/monitoring/2010-08-01/smoke.json
513
514
  - apis/monitoring/2010-08-01/waiters-2.json
514
515
  - apis/mq/2017-11-27/api-2.json
515
516
  - apis/mq/2017-11-27/paginators-1.json