aws-sdk-core 2.4.4 → 2.5.0

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: 42caca0ec1755873a365ba6af71d047c4727d12e
4
- data.tar.gz: 0ec6133b6259c15fcc75c46dcdfb90e5f11788d5
3
+ metadata.gz: e20124372a0e4423d29f974c5ee4a797d46fd0ce
4
+ data.tar.gz: a758200b79055168cdabb8957556655d66342a84
5
5
  SHA512:
6
- metadata.gz: 46c637c6dba9d2f589bd63f4221d44566491768258e6b4ae410144df01c636233d082c1c467d9d2a9ee07f1b48cae9f78396f37a4756313b2f03f3e008fa4070
7
- data.tar.gz: 5c0f658bde2097ddced0c46a2e2a1c0193f98735a61412e66063cc8d449f60f8fa9bbf48ec55004bea2cf8773acb7c0cd3cbc1ffd68578b31879fcccb50b9edb
6
+ metadata.gz: 83191a1c273f4417890e6cf83c7984fd1f88ffa8d699118ca98ffa5e512b2de5d3ab6c6916e835b0931e672a692fada430c96eb5de78152cb94860ebf0203435
7
+ data.tar.gz: ce5c265cf12aff6c90575c46ea39137ef5ae51e24cdb777098a792e40d3f1f04215c48b65cef761e1c5f63335d283a4fbcc3968da892f0f34190c72b0e5ae976
@@ -550,6 +550,14 @@
550
550
  "min":1
551
551
  },
552
552
  "ErrorMessage":{"type":"string"},
553
+ "FailureDetails":{
554
+ "type":"structure",
555
+ "members":{
556
+ "Reason":{"shape":"String"},
557
+ "Message":{"shape":"String"},
558
+ "LogFile":{"shape":"String"}
559
+ }
560
+ },
553
561
  "HadoopJarStepConfig":{
554
562
  "type":"structure",
555
563
  "required":["Jar"],
@@ -1245,6 +1253,7 @@
1245
1253
  "members":{
1246
1254
  "State":{"shape":"StepState"},
1247
1255
  "StateChangeReason":{"shape":"StepStateChangeReason"},
1256
+ "FailureDetails":{"shape":"FailureDetails"},
1248
1257
  "Timeline":{"shape":"StepTimeline"}
1249
1258
  }
1250
1259
  },
@@ -1543,6 +1543,44 @@
1543
1543
  }
1544
1544
  ]
1545
1545
  },
1546
+ "ListOutgoingCertificates":{
1547
+ "name":"ListOutgoingCertificates",
1548
+ "http":{
1549
+ "method":"GET",
1550
+ "requestUri":"/certificates-out-going"
1551
+ },
1552
+ "input":{"shape":"ListOutgoingCertificatesRequest"},
1553
+ "output":{"shape":"ListOutgoingCertificatesResponse"},
1554
+ "errors":[
1555
+ {
1556
+ "shape":"InvalidRequestException",
1557
+ "error":{"httpStatusCode":400},
1558
+ "exception":true
1559
+ },
1560
+ {
1561
+ "shape":"ThrottlingException",
1562
+ "error":{"httpStatusCode":429},
1563
+ "exception":true
1564
+ },
1565
+ {
1566
+ "shape":"UnauthorizedException",
1567
+ "error":{"httpStatusCode":401},
1568
+ "exception":true
1569
+ },
1570
+ {
1571
+ "shape":"ServiceUnavailableException",
1572
+ "error":{"httpStatusCode":503},
1573
+ "exception":true,
1574
+ "fault":true
1575
+ },
1576
+ {
1577
+ "shape":"InternalFailureException",
1578
+ "error":{"httpStatusCode":500},
1579
+ "exception":true,
1580
+ "fault":true
1581
+ }
1582
+ ]
1583
+ },
1546
1584
  "ListPolicies":{
1547
1585
  "name":"ListPolicies",
1548
1586
  "http":{
@@ -2400,6 +2438,7 @@
2400
2438
  "max":10
2401
2439
  },
2402
2440
  "AlarmName":{"type":"string"},
2441
+ "AllowAutoRegistration":{"type":"boolean"},
2403
2442
  "AscendingOrder":{"type":"boolean"},
2404
2443
  "AttachPrincipalPolicyRequest":{
2405
2444
  "type":"structure",
@@ -2466,6 +2505,13 @@
2466
2505
  "key":{"shape":"AttributeName"},
2467
2506
  "value":{"shape":"AttributeValue"}
2468
2507
  },
2508
+ "AutoRegistrationStatus":{
2509
+ "type":"string",
2510
+ "enum":[
2511
+ "ENABLE",
2512
+ "DISABLE"
2513
+ ]
2514
+ },
2469
2515
  "AwsAccountId":{
2470
2516
  "type":"string",
2471
2517
  "pattern":"[0-9]{12}"
@@ -2491,7 +2537,8 @@
2491
2537
  "status":{"shape":"CACertificateStatus"},
2492
2538
  "certificatePem":{"shape":"CertificatePem"},
2493
2539
  "ownedBy":{"shape":"AwsAccountId"},
2494
- "creationDate":{"shape":"DateType"}
2540
+ "creationDate":{"shape":"DateType"},
2541
+ "autoRegistrationStatus":{"shape":"AutoRegistrationStatus"}
2495
2542
  }
2496
2543
  },
2497
2544
  "CACertificateStatus":{
@@ -2579,7 +2626,8 @@
2579
2626
  "INACTIVE",
2580
2627
  "REVOKED",
2581
2628
  "PENDING_TRANSFER",
2582
- "REGISTER_INACTIVE"
2629
+ "REGISTER_INACTIVE",
2630
+ "PENDING_ACTIVATION"
2583
2631
  ]
2584
2632
  },
2585
2633
  "CertificateValidationException":{
@@ -3385,6 +3433,33 @@
3385
3433
  "nextMarker":{"shape":"Marker"}
3386
3434
  }
3387
3435
  },
3436
+ "ListOutgoingCertificatesRequest":{
3437
+ "type":"structure",
3438
+ "members":{
3439
+ "pageSize":{
3440
+ "shape":"PageSize",
3441
+ "location":"querystring",
3442
+ "locationName":"pageSize"
3443
+ },
3444
+ "marker":{
3445
+ "shape":"Marker",
3446
+ "location":"querystring",
3447
+ "locationName":"marker"
3448
+ },
3449
+ "ascendingOrder":{
3450
+ "shape":"AscendingOrder",
3451
+ "location":"querystring",
3452
+ "locationName":"isAscendingOrder"
3453
+ }
3454
+ }
3455
+ },
3456
+ "ListOutgoingCertificatesResponse":{
3457
+ "type":"structure",
3458
+ "members":{
3459
+ "outgoingCertificates":{"shape":"OutgoingCertificates"},
3460
+ "nextMarker":{"shape":"Marker"}
3461
+ }
3462
+ },
3388
3463
  "ListPoliciesRequest":{
3389
3464
  "type":"structure",
3390
3465
  "members":{
@@ -3686,6 +3761,21 @@
3686
3761
  "MetricValue":{"type":"string"},
3687
3762
  "NextToken":{"type":"string"},
3688
3763
  "OptionalVersion":{"type":"long"},
3764
+ "OutgoingCertificate":{
3765
+ "type":"structure",
3766
+ "members":{
3767
+ "certificateArn":{"shape":"CertificateArn"},
3768
+ "certificateId":{"shape":"CertificateId"},
3769
+ "transferredTo":{"shape":"AwsAccountId"},
3770
+ "transferDate":{"shape":"DateType"},
3771
+ "transferMessage":{"shape":"Message"},
3772
+ "creationDate":{"shape":"DateType"}
3773
+ }
3774
+ },
3775
+ "OutgoingCertificates":{
3776
+ "type":"list",
3777
+ "member":{"shape":"OutgoingCertificate"}
3778
+ },
3689
3779
  "PageSize":{
3690
3780
  "type":"integer",
3691
3781
  "min":1,
@@ -3759,6 +3849,11 @@
3759
3849
  "shape":"SetAsActive",
3760
3850
  "location":"querystring",
3761
3851
  "locationName":"setAsActive"
3852
+ },
3853
+ "allowAutoRegistration":{
3854
+ "shape":"AllowAutoRegistration",
3855
+ "location":"querystring",
3856
+ "locationName":"allowAutoRegistration"
3762
3857
  }
3763
3858
  }
3764
3859
  },
@@ -4134,10 +4229,7 @@
4134
4229
  "UndoDeprecate":{"type":"boolean"},
4135
4230
  "UpdateCACertificateRequest":{
4136
4231
  "type":"structure",
4137
- "required":[
4138
- "certificateId",
4139
- "newStatus"
4140
- ],
4232
+ "required":["certificateId"],
4141
4233
  "members":{
4142
4234
  "certificateId":{
4143
4235
  "shape":"CertificateId",
@@ -4148,6 +4240,11 @@
4148
4240
  "shape":"CACertificateStatus",
4149
4241
  "location":"querystring",
4150
4242
  "locationName":"newStatus"
4243
+ },
4244
+ "newAutoRegistrationStatus":{
4245
+ "shape":"AutoRegistrationStatus",
4246
+ "location":"querystring",
4247
+ "locationName":"newAutoRegistrationStatus"
4151
4248
  }
4152
4249
  }
4153
4250
  },
@@ -303,7 +303,6 @@
303
303
  {"shape":"InvalidSequenceTokenException"},
304
304
  {"shape":"DataAlreadyAcceptedException"},
305
305
  {"shape":"ResourceNotFoundException"},
306
- {"shape":"OperationAbortedException"},
307
306
  {"shape":"ServiceUnavailableException"}
308
307
  ]
309
308
  },
@@ -428,6 +427,7 @@
428
427
  "exception":true
429
428
  },
430
429
  "Days":{"type":"integer"},
430
+ "DefaultValue":{"type":"double"},
431
431
  "DeleteDestinationRequest":{
432
432
  "type":"structure",
433
433
  "required":["destinationName"],
@@ -900,7 +900,8 @@
900
900
  "members":{
901
901
  "metricName":{"shape":"MetricName"},
902
902
  "metricNamespace":{"shape":"MetricNamespace"},
903
- "metricValue":{"shape":"MetricValue"}
903
+ "metricValue":{"shape":"MetricValue"},
904
+ "defaultValue":{"shape":"DefaultValue"}
904
905
  }
905
906
  },
906
907
  "MetricTransformations":{
@@ -811,7 +811,12 @@
811
811
  "Name":{"shape":"EntityName"},
812
812
  "Status":{"shape":"EntityStatus"},
813
813
  "OutputUri":{"shape":"S3Url"},
814
- "Message":{"shape":"Message"}
814
+ "Message":{"shape":"Message"},
815
+ "ComputeTime":{"shape":"LongType"},
816
+ "FinishedAt":{"shape":"EpochTime"},
817
+ "StartedAt":{"shape":"EpochTime"},
818
+ "TotalRecordCount":{"shape":"LongType"},
819
+ "InvalidRecordCount":{"shape":"LongType"}
815
820
  }
816
821
  },
817
822
  "BatchPredictionFilterVariable":{
@@ -999,7 +1004,10 @@
999
1004
  "RedshiftMetadata":{"shape":"RedshiftMetadata"},
1000
1005
  "RDSMetadata":{"shape":"RDSMetadata"},
1001
1006
  "RoleARN":{"shape":"RoleARN"},
1002
- "ComputeStatistics":{"shape":"ComputeStatistics"}
1007
+ "ComputeStatistics":{"shape":"ComputeStatistics"},
1008
+ "ComputeTime":{"shape":"LongType"},
1009
+ "FinishedAt":{"shape":"EpochTime"},
1010
+ "StartedAt":{"shape":"EpochTime"}
1003
1011
  }
1004
1012
  },
1005
1013
  "DataSourceFilterVariable":{
@@ -1299,7 +1307,10 @@
1299
1307
  "Name":{"shape":"EntityName"},
1300
1308
  "Status":{"shape":"EntityStatus"},
1301
1309
  "PerformanceMetrics":{"shape":"PerformanceMetrics"},
1302
- "Message":{"shape":"Message"}
1310
+ "Message":{"shape":"Message"},
1311
+ "ComputeTime":{"shape":"LongType"},
1312
+ "FinishedAt":{"shape":"EpochTime"},
1313
+ "StartedAt":{"shape":"EpochTime"}
1303
1314
  }
1304
1315
  },
1305
1316
  "EvaluationFilterVariable":{
@@ -1340,7 +1351,12 @@
1340
1351
  "Status":{"shape":"EntityStatus"},
1341
1352
  "OutputUri":{"shape":"S3Url"},
1342
1353
  "LogUri":{"shape":"PresignedS3Url"},
1343
- "Message":{"shape":"Message"}
1354
+ "Message":{"shape":"Message"},
1355
+ "ComputeTime":{"shape":"LongType"},
1356
+ "FinishedAt":{"shape":"EpochTime"},
1357
+ "StartedAt":{"shape":"EpochTime"},
1358
+ "TotalRecordCount":{"shape":"LongType"},
1359
+ "InvalidRecordCount":{"shape":"LongType"}
1344
1360
  }
1345
1361
  },
1346
1362
  "GetDataSourceInput":{
@@ -1370,6 +1386,9 @@
1370
1386
  "RDSMetadata":{"shape":"RDSMetadata"},
1371
1387
  "RoleARN":{"shape":"RoleARN"},
1372
1388
  "ComputeStatistics":{"shape":"ComputeStatistics"},
1389
+ "ComputeTime":{"shape":"LongType"},
1390
+ "FinishedAt":{"shape":"EpochTime"},
1391
+ "StartedAt":{"shape":"EpochTime"},
1373
1392
  "DataSourceSchema":{"shape":"DataSchema"}
1374
1393
  }
1375
1394
  },
@@ -1394,7 +1413,10 @@
1394
1413
  "Status":{"shape":"EntityStatus"},
1395
1414
  "PerformanceMetrics":{"shape":"PerformanceMetrics"},
1396
1415
  "LogUri":{"shape":"PresignedS3Url"},
1397
- "Message":{"shape":"Message"}
1416
+ "Message":{"shape":"Message"},
1417
+ "ComputeTime":{"shape":"LongType"},
1418
+ "FinishedAt":{"shape":"EpochTime"},
1419
+ "StartedAt":{"shape":"EpochTime"}
1398
1420
  }
1399
1421
  },
1400
1422
  "GetMLModelInput":{
@@ -1424,6 +1446,9 @@
1424
1446
  "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
1425
1447
  "LogUri":{"shape":"PresignedS3Url"},
1426
1448
  "Message":{"shape":"Message"},
1449
+ "ComputeTime":{"shape":"LongType"},
1450
+ "FinishedAt":{"shape":"EpochTime"},
1451
+ "StartedAt":{"shape":"EpochTime"},
1427
1452
  "Recipe":{"shape":"Recipe"},
1428
1453
  "Schema":{"shape":"DataSchema"}
1429
1454
  }
@@ -1496,7 +1521,10 @@
1496
1521
  "MLModelType":{"shape":"MLModelType"},
1497
1522
  "ScoreThreshold":{"shape":"ScoreThreshold"},
1498
1523
  "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
1499
- "Message":{"shape":"Message"}
1524
+ "Message":{"shape":"Message"},
1525
+ "ComputeTime":{"shape":"LongType"},
1526
+ "FinishedAt":{"shape":"EpochTime"},
1527
+ "StartedAt":{"shape":"EpochTime"}
1500
1528
  }
1501
1529
  },
1502
1530
  "MLModelFilterVariable":{
@@ -1835,7 +1863,8 @@
1835
1863
  },
1836
1864
  "TagKeyList":{
1837
1865
  "type":"list",
1838
- "member":{"shape":"TagKey"}
1866
+ "member":{"shape":"TagKey"},
1867
+ "max":100
1839
1868
  },
1840
1869
  "TagLimitExceededException":{
1841
1870
  "type":"structure",
@@ -1846,7 +1875,8 @@
1846
1875
  },
1847
1876
  "TagList":{
1848
1877
  "type":"list",
1849
- "member":{"shape":"Tag"}
1878
+ "member":{"shape":"Tag"},
1879
+ "max":100
1850
1880
  },
1851
1881
  "TagValue":{
1852
1882
  "type":"string",
@@ -0,0 +1,5 @@
1
+ {
2
+ "version":"1.0",
3
+ "examples":{
4
+ }
5
+ }
@@ -119,7 +119,7 @@
119
119
  },
120
120
  "UsageQuantity":{
121
121
  "type":"integer",
122
- "max":10000,
122
+ "max":1000000,
123
123
  "min":0
124
124
  },
125
125
  "errorMessage":{"type":"string"}
@@ -3683,6 +3683,7 @@
3683
3683
  "EngineVersion":{"shape":"String"},
3684
3684
  "AllowMajorVersionUpgrade":{"shape":"Boolean"},
3685
3685
  "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
3686
+ "LicenseModel":{"shape":"String"},
3686
3687
  "Iops":{"shape":"IntegerOptional"},
3687
3688
  "OptionGroupName":{"shape":"String"},
3688
3689
  "NewDBInstanceIdentifier":{"shape":"String"},
@@ -3795,6 +3796,7 @@
3795
3796
  "Persistent":{"shape":"Boolean"},
3796
3797
  "Permanent":{"shape":"Boolean"},
3797
3798
  "Port":{"shape":"IntegerOptional"},
3799
+ "OptionVersion":{"shape":"String"},
3798
3800
  "OptionSettings":{"shape":"OptionSettingConfigurationList"},
3799
3801
  "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupMembershipList"},
3800
3802
  "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupMembershipList"}
@@ -3806,6 +3808,7 @@
3806
3808
  "members":{
3807
3809
  "OptionName":{"shape":"String"},
3808
3810
  "Port":{"shape":"IntegerOptional"},
3811
+ "OptionVersion":{"shape":"String"},
3809
3812
  "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupNameList"},
3810
3813
  "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupIdList"},
3811
3814
  "OptionSettings":{"shape":"OptionSettingsList"}
@@ -3880,7 +3883,8 @@
3880
3883
  "OptionsDependedOn":{"shape":"OptionsDependedOn"},
3881
3884
  "Persistent":{"shape":"Boolean"},
3882
3885
  "Permanent":{"shape":"Boolean"},
3883
- "OptionGroupOptionSettings":{"shape":"OptionGroupOptionSettingsList"}
3886
+ "OptionGroupOptionSettings":{"shape":"OptionGroupOptionSettingsList"},
3887
+ "OptionGroupOptionVersions":{"shape":"OptionGroupOptionVersionsList"}
3884
3888
  }
3885
3889
  },
3886
3890
  "OptionGroupOptionSetting":{
@@ -3901,6 +3905,13 @@
3901
3905
  "locationName":"OptionGroupOptionSetting"
3902
3906
  }
3903
3907
  },
3908
+ "OptionGroupOptionVersionsList":{
3909
+ "type":"list",
3910
+ "member":{
3911
+ "shape":"OptionVersion",
3912
+ "locationName":"OptionVersion"
3913
+ }
3914
+ },
3904
3915
  "OptionGroupOptionsList":{
3905
3916
  "type":"list",
3906
3917
  "member":{
@@ -3972,6 +3983,13 @@
3972
3983
  "locationName":"OptionSetting"
3973
3984
  }
3974
3985
  },
3986
+ "OptionVersion":{
3987
+ "type":"structure",
3988
+ "members":{
3989
+ "Version":{"shape":"String"},
3990
+ "IsDefault":{"shape":"Boolean"}
3991
+ }
3992
+ },
3975
3993
  "OptionsDependedOn":{
3976
3994
  "type":"list",
3977
3995
  "member":{
@@ -4082,6 +4100,7 @@
4082
4100
  "BackupRetentionPeriod":{"shape":"IntegerOptional"},
4083
4101
  "MultiAZ":{"shape":"BooleanOptional"},
4084
4102
  "EngineVersion":{"shape":"String"},
4103
+ "LicenseModel":{"shape":"String"},
4085
4104
  "Iops":{"shape":"IntegerOptional"},
4086
4105
  "DBInstanceIdentifier":{"shape":"String"},
4087
4106
  "StorageType":{"shape":"String"},
@@ -123,6 +123,19 @@
123
123
  {"shape":"UnsupportedTLD"}
124
124
  ]
125
125
  },
126
+ "GetDomainSuggestions":{
127
+ "name":"GetDomainSuggestions",
128
+ "http":{
129
+ "method":"POST",
130
+ "requestUri":"/"
131
+ },
132
+ "input":{"shape":"GetDomainSuggestionsRequest"},
133
+ "output":{"shape":"GetDomainSuggestionsResponse"},
134
+ "errors":[
135
+ {"shape":"InvalidInput"},
136
+ {"shape":"UnsupportedTLD"}
137
+ ]
138
+ },
126
139
  "GetOperationDetail":{
127
140
  "name":"GetOperationDetail",
128
141
  "http":{
@@ -190,6 +203,22 @@
190
203
  {"shape":"OperationLimitExceeded"}
191
204
  ]
192
205
  },
206
+ "RenewDomain":{
207
+ "name":"RenewDomain",
208
+ "http":{
209
+ "method":"POST",
210
+ "requestUri":"/"
211
+ },
212
+ "input":{"shape":"RenewDomainRequest"},
213
+ "output":{"shape":"RenewDomainResponse"},
214
+ "errors":[
215
+ {"shape":"InvalidInput"},
216
+ {"shape":"UnsupportedTLD"},
217
+ {"shape":"DuplicateRequest"},
218
+ {"shape":"TLDRulesViolation"},
219
+ {"shape":"OperationLimitExceeded"}
220
+ ]
221
+ },
193
222
  "ResendContactReachabilityEmail":{
194
223
  "name":"ResendContactReachabilityEmail",
195
224
  "http":{
@@ -295,6 +324,18 @@
295
324
  {"shape":"OperationLimitExceeded"},
296
325
  {"shape":"UnsupportedTLD"}
297
326
  ]
327
+ },
328
+ "ViewBilling":{
329
+ "name":"ViewBilling",
330
+ "http":{
331
+ "method":"POST",
332
+ "requestUri":"/"
333
+ },
334
+ "input":{"shape":"ViewBillingRequest"},
335
+ "output":{"shape":"ViewBillingResponse"},
336
+ "errors":[
337
+ {"shape":"InvalidInput"}
338
+ ]
298
339
  }
299
340
  },
300
341
  "shapes":{
@@ -302,6 +343,20 @@
302
343
  "type":"string",
303
344
  "max":255
304
345
  },
346
+ "BillingRecord":{
347
+ "type":"structure",
348
+ "members":{
349
+ "DomainName":{"shape":"DomainName"},
350
+ "Operation":{"shape":"OperationType"},
351
+ "InvoiceId":{"shape":"InvoiceId"},
352
+ "BillDate":{"shape":"Timestamp"},
353
+ "Price":{"shape":"Price"}
354
+ }
355
+ },
356
+ "BillingRecords":{
357
+ "type":"list",
358
+ "member":{"shape":"BillingRecord"}
359
+ },
305
360
  "Boolean":{"type":"boolean"},
306
361
  "CheckDomainAvailabilityRequest":{
307
362
  "type":"structure",
@@ -594,6 +649,7 @@
594
649
  "ZW"
595
650
  ]
596
651
  },
652
+ "CurrentExpiryYear":{"type":"integer"},
597
653
  "DNSSec":{"type":"string"},
598
654
  "DeleteTagsForDomainRequest":{
599
655
  "type":"structure",
@@ -672,6 +728,17 @@
672
728
  "type":"list",
673
729
  "member":{"shape":"DomainStatus"}
674
730
  },
731
+ "DomainSuggestion":{
732
+ "type":"structure",
733
+ "members":{
734
+ "DomainName":{"shape":"DomainName"},
735
+ "Availability":{"shape":"String"}
736
+ }
737
+ },
738
+ "DomainSuggestionsList":{
739
+ "type":"list",
740
+ "member":{"shape":"DomainSuggestion"}
741
+ },
675
742
  "DomainSummary":{
676
743
  "type":"structure",
677
744
  "required":["DomainName"],
@@ -828,6 +895,25 @@
828
895
  "StatusList":{"shape":"DomainStatusList"}
829
896
  }
830
897
  },
898
+ "GetDomainSuggestionsRequest":{
899
+ "type":"structure",
900
+ "required":[
901
+ "DomainName",
902
+ "SuggestionCount",
903
+ "OnlyAvailable"
904
+ ],
905
+ "members":{
906
+ "DomainName":{"shape":"DomainName"},
907
+ "SuggestionCount":{"shape":"Integer"},
908
+ "OnlyAvailable":{"shape":"Boolean"}
909
+ }
910
+ },
911
+ "GetDomainSuggestionsResponse":{
912
+ "type":"structure",
913
+ "members":{
914
+ "SuggestionsList":{"shape":"DomainSuggestionsList"}
915
+ }
916
+ },
831
917
  "GetOperationDetailRequest":{
832
918
  "type":"structure",
833
919
  "required":["OperationId"],
@@ -859,6 +945,7 @@
859
945
  "max":255,
860
946
  "pattern":"[a-zA-Z0-9_\\-.]*"
861
947
  },
948
+ "Integer":{"type":"integer"},
862
949
  "InvalidInput":{
863
950
  "type":"structure",
864
951
  "members":{
@@ -866,6 +953,7 @@
866
953
  },
867
954
  "exception":true
868
955
  },
956
+ "InvoiceId":{"type":"string"},
869
957
  "LangCode":{
870
958
  "type":"string",
871
959
  "max":3
@@ -986,6 +1074,7 @@
986
1074
  "type":"integer",
987
1075
  "max":100
988
1076
  },
1077
+ "Price":{"type":"double"},
989
1078
  "ReachabilityStatus":{
990
1079
  "type":"string",
991
1080
  "enum":[
@@ -1027,6 +1116,25 @@
1027
1116
  "RegistrarUrl":{"type":"string"},
1028
1117
  "RegistrarWhoIsServer":{"type":"string"},
1029
1118
  "RegistryDomainId":{"type":"string"},
1119
+ "RenewDomainRequest":{
1120
+ "type":"structure",
1121
+ "required":[
1122
+ "DomainName",
1123
+ "CurrentExpiryYear"
1124
+ ],
1125
+ "members":{
1126
+ "DomainName":{"shape":"DomainName"},
1127
+ "DurationInYears":{"shape":"DurationInYears"},
1128
+ "CurrentExpiryYear":{"shape":"CurrentExpiryYear"}
1129
+ }
1130
+ },
1131
+ "RenewDomainResponse":{
1132
+ "type":"structure",
1133
+ "required":["OperationId"],
1134
+ "members":{
1135
+ "OperationId":{"shape":"OperationId"}
1136
+ }
1137
+ },
1030
1138
  "Reseller":{"type":"string"},
1031
1139
  "ResendContactReachabilityEmailRequest":{
1032
1140
  "type":"structure",
@@ -1060,6 +1168,7 @@
1060
1168
  "type":"string",
1061
1169
  "max":255
1062
1170
  },
1171
+ "String":{"type":"string"},
1063
1172
  "TLDRulesViolation":{
1064
1173
  "type":"structure",
1065
1174
  "members":{
@@ -1189,6 +1298,22 @@
1189
1298
  "members":{
1190
1299
  }
1191
1300
  },
1301
+ "ViewBillingRequest":{
1302
+ "type":"structure",
1303
+ "members":{
1304
+ "Start":{"shape":"Timestamp"},
1305
+ "End":{"shape":"Timestamp"},
1306
+ "Marker":{"shape":"PageMarker"},
1307
+ "MaxItems":{"shape":"PageMaxItems"}
1308
+ }
1309
+ },
1310
+ "ViewBillingResponse":{
1311
+ "type":"structure",
1312
+ "members":{
1313
+ "NextPageMarker":{"shape":"PageMarker"},
1314
+ "BillingRecords":{"shape":"BillingRecords"}
1315
+ }
1316
+ },
1192
1317
  "ZipCode":{
1193
1318
  "type":"string",
1194
1319
  "max":255
@@ -527,6 +527,7 @@
527
527
  "us-west-2": {},
528
528
  "eu-west-1": {},
529
529
  "eu-central-1": {},
530
+ "ap-south-1": {},
530
531
  "ap-southeast-1": {},
531
532
  "ap-southeast-2": {},
532
533
  "ap-northeast-1": {},
@@ -279,7 +279,7 @@ module Aws
279
279
 
280
280
  # @api private
281
281
  def shared_config
282
- enabled = ENV["AWS_SDK_LOAD_CONFIG"] ? true : false
282
+ enabled = ENV["AWS_SDK_CONFIG_OPT_OUT"] ? false : true
283
283
  @shared_config ||= SharedConfig.new(config_enabled: enabled)
284
284
  end
285
285
 
@@ -1,6 +1,7 @@
1
1
  Aws.add_service(:MachineLearning, {
2
2
  api: "#{Aws::API_DIR}/machinelearning/2014-12-12/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/machinelearning/2014-12-12/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/machinelearning/2014-12-12/examples-1.json",
4
5
  paginators: "#{Aws::API_DIR}/machinelearning/2014-12-12/paginators-1.json",
5
6
  waiters: "#{Aws::API_DIR}/machinelearning/2014-12-12/waiters-2.json",
6
7
  })
@@ -16,10 +16,11 @@ module Aws
16
16
  # credentials file, and optionally the shared configuration file, as ini
17
17
  # files which support profiles.
18
18
  #
19
- # By default, only the shared credential file (the default path for which is
20
- # `~/.aws/credentials`) is loaded. However, if you set the
21
- # `ENV['AWS_SDK_LOAD_CONFIG']` environment variable, the shared config file
22
- # will also be loaded (the default path for which is `~/.aws/config`).
19
+ # By default, the shared credential file (the default path for which is
20
+ # `~/.aws/credentials`) and the shared config file (the default path for
21
+ # which is `~/.aws/config`) are loaded. However, if you set the
22
+ # `ENV['AWS_SDK_CONFIG_OPT_OUT']` environment variable, only the shared
23
+ # credential file will be loaded.
23
24
  #
24
25
  # The default profile name is 'default'. You can specify the profile name
25
26
  # with the `ENV['AWS_PROFILE']` environment variable or with the
@@ -35,7 +36,7 @@ module Aws
35
36
  # the fixed default value of 'default'.
36
37
  # @option options [Boolean] :config_enabled If true, loads the shared config
37
38
  # file and enables new config values outside of the old shared credential
38
- # spec. Generally sourced from `ENV['AWS_SDK_LOAD_CONFIG']`.
39
+ # spec.
39
40
  def initialize(options = {})
40
41
  @profile_name = determine_profile(options)
41
42
  @config_enabled = options[:config_enabled]
@@ -76,8 +77,7 @@ module Aws
76
77
  end
77
78
 
78
79
  # @return [Boolean] returns `true` if use of the shared config file is
79
- # enabled. Generally true if and only if the `AWS_SDK_LOAD_CONFIG` env
80
- # variable is set.
80
+ # enabled.
81
81
  def config_enabled?
82
82
  @config_enabled ? true : false
83
83
  end
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.4.4'
2
+ VERSION = '2.5.0'
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.4.4
4
+ version: 2.5.0
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: 2016-07-29 00:00:00.000000000 Z
11
+ date: 2016-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -178,6 +178,7 @@ files:
178
178
  - apis/logs/2014-03-28/examples-1.json
179
179
  - apis/logs/2014-03-28/paginators-1.json
180
180
  - apis/machinelearning/2014-12-12/api-2.json
181
+ - apis/machinelearning/2014-12-12/examples-1.json
181
182
  - apis/machinelearning/2014-12-12/paginators-1.json
182
183
  - apis/machinelearning/2014-12-12/waiters-2.json
183
184
  - apis/marketplacecommerceanalytics/2015-07-01/api-2.json
@@ -532,4 +533,3 @@ signing_key:
532
533
  specification_version: 4
533
534
  summary: AWS SDK for Ruby - Core
534
535
  test_files: []
535
- has_rdoc: