aws-sdk-core 2.11.627 → 2.11.628

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
  SHA256:
3
- metadata.gz: ef299869851a870d845e9d2292d8e83a812f0927168afe28816eea33f90b446a
4
- data.tar.gz: ad13b2b9fa226c88042f10a63f66a3468ca23094599c343bc27f8ef605c6b277
3
+ metadata.gz: 74217e86d92e8ee2c5085501bd89ff6c0a1a461dd676b15c588304cc7e03e7c6
4
+ data.tar.gz: 779387a1613824247c21265f67555a07e6c9ba6e20677865c3b3d2a433ed79c8
5
5
  SHA512:
6
- metadata.gz: 3ee24d32514c8afe5b0489f2bdb54c1f6bc5f21b94fae785fe0f463f88062f447a7e8b8b6c8dca13b6b23d88fe519591ddda8de473c25788f88d947906ef7fe3
7
- data.tar.gz: 6f3b00a0645c7d40b5b1355d752f2226d880c69932f90dffc41274b519a35ee1fde73a8be87a6aa0dda77e6d92846ede0ba4a4273ec6541111bfaed540f1136f
6
+ metadata.gz: 0cb4bec5aa45f303f0926b205b6f69338fbfd9c2cfdc24e2ef929c44cbfb5add6c5e3d9d736ffc3bd1f2d9735c318adbe37cf2d3f14796ef060b2bae44e4dfb4
7
+ data.tar.gz: f1db717083c37ad7db237d56e31becc94729b3e6a8727fff11996ae1b9ffb1ee50d586b707e3e783cf365829f39862bd0d1506926cc90eeaed28e9638f2c1c52
@@ -462,6 +462,7 @@
462
462
  "output":{"shape":"RetryStageExecutionOutput"},
463
463
  "errors":[
464
464
  {"shape":"ValidationException"},
465
+ {"shape":"ConflictException"},
465
466
  {"shape":"PipelineNotFoundException"},
466
467
  {"shape":"StageNotFoundException"},
467
468
  {"shape":"StageNotRetryableException"},
@@ -478,6 +479,7 @@
478
479
  "output":{"shape":"StartPipelineExecutionOutput"},
479
480
  "errors":[
480
481
  {"shape":"ValidationException"},
482
+ {"shape":"ConflictException"},
481
483
  {"shape":"PipelineNotFoundException"}
482
484
  ]
483
485
  },
@@ -491,6 +493,7 @@
491
493
  "output":{"shape":"StopPipelineExecutionOutput"},
492
494
  "errors":[
493
495
  {"shape":"ValidationException"},
496
+ {"shape":"ConflictException"},
494
497
  {"shape":"PipelineNotFoundException"},
495
498
  {"shape":"PipelineExecutionNotStoppableException"},
496
499
  {"shape":"DuplicatedStopRequestException"}
@@ -705,6 +708,7 @@
705
708
  "ActionExecution":{
706
709
  "type":"structure",
707
710
  "members":{
711
+ "actionExecutionId":{"shape":"ActionExecutionId"},
708
712
  "status":{"shape":"ActionExecutionStatus"},
709
713
  "summary":{"shape":"ExecutionSummary"},
710
714
  "lastStatusChange":{"shape":"Timestamp"},
@@ -1063,6 +1067,13 @@
1063
1067
  },
1064
1068
  "exception":true
1065
1069
  },
1070
+ "ConflictException":{
1071
+ "type":"structure",
1072
+ "members":{
1073
+ "message":{"shape":"Message"}
1074
+ },
1075
+ "exception":true
1076
+ },
1066
1077
  "ContinuationToken":{
1067
1078
  "type":"string",
1068
1079
  "max":2048,
@@ -1227,7 +1238,7 @@
1227
1238
  },
1228
1239
  "EncryptionKeyId":{
1229
1240
  "type":"string",
1230
- "max":100,
1241
+ "max":400,
1231
1242
  "min":1
1232
1243
  },
1233
1244
  "EncryptionKeyType":{
@@ -2189,6 +2200,7 @@
2189
2200
  "type":"structure",
2190
2201
  "members":{
2191
2202
  "stageName":{"shape":"StageName"},
2203
+ "inboundExecution":{"shape":"StageExecution"},
2192
2204
  "inboundTransitionState":{"shape":"TransitionState"},
2193
2205
  "actionStates":{"shape":"ActionStateList"},
2194
2206
  "latestExecution":{"shape":"StageExecution"}
@@ -64,7 +64,8 @@
64
64
  {"shape":"ResourceQuotaExceededFault"},
65
65
  {"shape":"InvalidResourceStateFault"},
66
66
  {"shape":"ResourceNotFoundFault"},
67
- {"shape":"AccessDeniedFault"}
67
+ {"shape":"AccessDeniedFault"},
68
+ {"shape":"S3AccessDeniedFault"}
68
69
  ]
69
70
  },
70
71
  "CreateEventSubscription":{
@@ -604,6 +605,20 @@
604
605
  {"shape":"KMSKeyNotAccessibleFault"}
605
606
  ]
606
607
  },
608
+ "MoveReplicationTask":{
609
+ "name":"MoveReplicationTask",
610
+ "http":{
611
+ "method":"POST",
612
+ "requestUri":"/"
613
+ },
614
+ "input":{"shape":"MoveReplicationTaskMessage"},
615
+ "output":{"shape":"MoveReplicationTaskResponse"},
616
+ "errors":[
617
+ {"shape":"AccessDeniedFault"},
618
+ {"shape":"InvalidResourceStateFault"},
619
+ {"shape":"ResourceNotFoundFault"}
620
+ ]
621
+ },
607
622
  "RebootReplicationInstance":{
608
623
  "name":"RebootReplicationInstance",
609
624
  "http":{
@@ -2002,6 +2017,23 @@
2002
2017
  "KmsKeyId":{"shape":"String"}
2003
2018
  }
2004
2019
  },
2020
+ "MoveReplicationTaskMessage":{
2021
+ "type":"structure",
2022
+ "required":[
2023
+ "ReplicationTaskArn",
2024
+ "TargetReplicationInstanceArn"
2025
+ ],
2026
+ "members":{
2027
+ "ReplicationTaskArn":{"shape":"String"},
2028
+ "TargetReplicationInstanceArn":{"shape":"String"}
2029
+ }
2030
+ },
2031
+ "MoveReplicationTaskResponse":{
2032
+ "type":"structure",
2033
+ "members":{
2034
+ "ReplicationTask":{"shape":"ReplicationTask"}
2035
+ }
2036
+ },
2005
2037
  "MySQLSettings":{
2006
2038
  "type":"structure",
2007
2039
  "members":{
@@ -2379,7 +2411,8 @@
2379
2411
  "RecoveryCheckpoint":{"shape":"String"},
2380
2412
  "ReplicationTaskArn":{"shape":"String"},
2381
2413
  "ReplicationTaskStats":{"shape":"ReplicationTaskStats"},
2382
- "TaskData":{"shape":"String"}
2414
+ "TaskData":{"shape":"String"},
2415
+ "TargetReplicationInstanceArn":{"shape":"String"}
2383
2416
  }
2384
2417
  },
2385
2418
  "ReplicationTaskAssessmentResult":{
@@ -156,10 +156,7 @@
156
156
  },
157
157
  "DestinationConfig":{
158
158
  "type":"structure",
159
- "required":[
160
- "thingName",
161
- "services"
162
- ],
159
+ "required":["services"],
163
160
  "members":{
164
161
  "thingName":{"shape":"ThingName"},
165
162
  "services":{"shape":"ServiceList"}
@@ -240,14 +237,13 @@
240
237
  },
241
238
  "Service":{
242
239
  "type":"string",
243
- "max":8,
240
+ "max":128,
244
241
  "min":1,
245
242
  "pattern":"[a-zA-Z0-9:_-]+"
246
243
  },
247
244
  "ServiceList":{
248
245
  "type":"list",
249
246
  "member":{"shape":"Service"},
250
- "max":1,
251
247
  "min":1
252
248
  },
253
249
  "Tag":{
@@ -195,6 +195,22 @@
195
195
  ],
196
196
  "endpoint":{"hostPrefix":"monitor."}
197
197
  },
198
+ "CreatePresignedPortalUrl":{
199
+ "name":"CreatePresignedPortalUrl",
200
+ "http":{
201
+ "method":"GET",
202
+ "requestUri":"/portals/{portalId}/presigned-url",
203
+ "responseCode":200
204
+ },
205
+ "input":{"shape":"CreatePresignedPortalUrlRequest"},
206
+ "output":{"shape":"CreatePresignedPortalUrlResponse"},
207
+ "errors":[
208
+ {"shape":"InvalidRequestException"},
209
+ {"shape":"InternalFailureException"},
210
+ {"shape":"ThrottlingException"}
211
+ ],
212
+ "endpoint":{"hostPrefix":"monitor."}
213
+ },
198
214
  "CreateProject":{
199
215
  "name":"CreateProject",
200
216
  "http":{
@@ -1639,6 +1655,29 @@
1639
1655
  "ssoApplicationId":{"shape":"SSOApplicationId"}
1640
1656
  }
1641
1657
  },
1658
+ "CreatePresignedPortalUrlRequest":{
1659
+ "type":"structure",
1660
+ "required":["portalId"],
1661
+ "members":{
1662
+ "portalId":{
1663
+ "shape":"ID",
1664
+ "location":"uri",
1665
+ "locationName":"portalId"
1666
+ },
1667
+ "sessionDurationSeconds":{
1668
+ "shape":"SessionDurationSeconds",
1669
+ "location":"querystring",
1670
+ "locationName":"sessionDurationSeconds"
1671
+ }
1672
+ }
1673
+ },
1674
+ "CreatePresignedPortalUrlResponse":{
1675
+ "type":"structure",
1676
+ "required":["presignedPortalUrl"],
1677
+ "members":{
1678
+ "presignedPortalUrl":{"shape":"Url"}
1679
+ }
1680
+ },
1642
1681
  "CreateProjectRequest":{
1643
1682
  "type":"structure",
1644
1683
  "required":[
@@ -2227,8 +2266,7 @@
2227
2266
  "Expression":{
2228
2267
  "type":"string",
2229
2268
  "max":1024,
2230
- "min":1,
2231
- "pattern":"^[a-z0-9._+\\-*%/^, ()]+$"
2269
+ "min":1
2232
2270
  },
2233
2271
  "ExpressionVariable":{
2234
2272
  "type":"structure",
@@ -3220,6 +3258,11 @@
3220
3258
  "exception":true,
3221
3259
  "fault":true
3222
3260
  },
3261
+ "SessionDurationSeconds":{
3262
+ "type":"integer",
3263
+ "max":43200,
3264
+ "min":900
3265
+ },
3223
3266
  "TagKey":{
3224
3267
  "type":"string",
3225
3268
  "max":128,
@@ -4552,15 +4552,20 @@
4552
4552
  "locationName":"session-lifetime"
4553
4553
  },
4554
4554
  "UndoRedoDisabled":{
4555
- "shape":"boolean",
4555
+ "shape":"Boolean",
4556
4556
  "location":"querystring",
4557
4557
  "locationName":"undo-redo-disabled"
4558
4558
  },
4559
4559
  "ResetDisabled":{
4560
- "shape":"boolean",
4560
+ "shape":"Boolean",
4561
4561
  "location":"querystring",
4562
4562
  "locationName":"reset-disabled"
4563
4563
  },
4564
+ "StatePersistenceEnabled":{
4565
+ "shape":"Boolean",
4566
+ "location":"querystring",
4567
+ "locationName":"state-persistence-enabled"
4568
+ },
4564
4569
  "UserArn":{
4565
4570
  "shape":"Arn",
4566
4571
  "location":"querystring",
@@ -2926,7 +2926,12 @@
2926
2926
  "VpcId":{"shape":"VpcId"},
2927
2927
  "Tags":{"shape":"TagList"},
2928
2928
  "AppNetworkAccessType":{"shape":"AppNetworkAccessType"},
2929
- "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"}
2929
+ "HomeEfsFileSystemKmsKeyId":{
2930
+ "shape":"KmsKeyId",
2931
+ "deprecated":true,
2932
+ "deprecatedMessage":"This property is deprecated, use KmsKeyId instead."
2933
+ },
2934
+ "KmsKeyId":{"shape":"KmsKeyId"}
2930
2935
  }
2931
2936
  },
2932
2937
  "CreateDomainResponse":{
@@ -4068,10 +4073,15 @@
4068
4073
  "AuthMode":{"shape":"AuthMode"},
4069
4074
  "DefaultUserSettings":{"shape":"UserSettings"},
4070
4075
  "AppNetworkAccessType":{"shape":"AppNetworkAccessType"},
4071
- "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"},
4076
+ "HomeEfsFileSystemKmsKeyId":{
4077
+ "shape":"KmsKeyId",
4078
+ "deprecated":true,
4079
+ "deprecatedMessage":"This property is deprecated, use KmsKeyId instead."
4080
+ },
4072
4081
  "SubnetIds":{"shape":"Subnets"},
4073
4082
  "Url":{"shape":"String1024"},
4074
- "VpcId":{"shape":"VpcId"}
4083
+ "VpcId":{"shape":"VpcId"},
4084
+ "KmsKeyId":{"shape":"KmsKeyId"}
4075
4085
  }
4076
4086
  },
4077
4087
  "DescribeEndpointConfigInput":{
@@ -700,6 +700,21 @@
700
700
  {"shape":"ResourceNotFoundException"}
701
701
  ]
702
702
  },
703
+ "ImportAsProvisionedProduct":{
704
+ "name":"ImportAsProvisionedProduct",
705
+ "http":{
706
+ "method":"POST",
707
+ "requestUri":"/"
708
+ },
709
+ "input":{"shape":"ImportAsProvisionedProductInput"},
710
+ "output":{"shape":"ImportAsProvisionedProductOutput"},
711
+ "errors":[
712
+ {"shape":"DuplicateResourceException"},
713
+ {"shape":"InvalidStateException"},
714
+ {"shape":"ResourceNotFoundException"},
715
+ {"shape":"InvalidParametersException"}
716
+ ]
717
+ },
703
718
  "ListAcceptedPortfolioShares":{
704
719
  "name":"ListAcceptedPortfolioShares",
705
720
  "http":{
@@ -2268,6 +2283,33 @@
2268
2283
  "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*"
2269
2284
  },
2270
2285
  "IgnoreErrors":{"type":"boolean"},
2286
+ "ImportAsProvisionedProductInput":{
2287
+ "type":"structure",
2288
+ "required":[
2289
+ "ProductId",
2290
+ "ProvisioningArtifactId",
2291
+ "ProvisionedProductName",
2292
+ "PhysicalId",
2293
+ "IdempotencyToken"
2294
+ ],
2295
+ "members":{
2296
+ "AcceptLanguage":{"shape":"AcceptLanguage"},
2297
+ "ProductId":{"shape":"Id"},
2298
+ "ProvisioningArtifactId":{"shape":"Id"},
2299
+ "ProvisionedProductName":{"shape":"ProvisionedProductName"},
2300
+ "PhysicalId":{"shape":"PhysicalId"},
2301
+ "IdempotencyToken":{
2302
+ "shape":"IdempotencyToken",
2303
+ "idempotencyToken":true
2304
+ }
2305
+ }
2306
+ },
2307
+ "ImportAsProvisionedProductOutput":{
2308
+ "type":"structure",
2309
+ "members":{
2310
+ "RecordDetail":{"shape":"RecordDetail"}
2311
+ }
2312
+ },
2271
2313
  "InstructionType":{"type":"string"},
2272
2314
  "InstructionValue":{"type":"string"},
2273
2315
  "InvalidParametersException":{
@@ -3455,6 +3497,7 @@
3455
3497
  }
3456
3498
  },
3457
3499
  "ResourceType":{"type":"string"},
3500
+ "RetainPhysicalResources":{"type":"boolean"},
3458
3501
  "RoleArn":{
3459
3502
  "type":"string",
3460
3503
  "max":1224,
@@ -3860,7 +3903,8 @@
3860
3903
  "idempotencyToken":true
3861
3904
  },
3862
3905
  "IgnoreErrors":{"shape":"IgnoreErrors"},
3863
- "AcceptLanguage":{"shape":"AcceptLanguage"}
3906
+ "AcceptLanguage":{"shape":"AcceptLanguage"},
3907
+ "RetainPhysicalResources":{"shape":"RetainPhysicalResources"}
3864
3908
  }
3865
3909
  },
3866
3910
  "TerminateProvisionedProductOutput":{
@@ -281,7 +281,8 @@
281
281
  "members":{
282
282
  "TimeoutInSeconds":{"shape":"MaxFifteenMinutesInSeconds"},
283
283
  "MemoryInMB":{"shape":"MaxSize3008"},
284
- "ActiveTracing":{"shape":"NullableBoolean"}
284
+ "ActiveTracing":{"shape":"NullableBoolean"},
285
+ "EnvironmentVariables":{"shape":"EnvironmentVariablesMap"}
285
286
  }
286
287
  },
287
288
  "CanaryRunConfigOutput":{
@@ -472,6 +473,16 @@
472
473
  "NextToken":{"shape":"Token"}
473
474
  }
474
475
  },
476
+ "EnvironmentVariableName":{
477
+ "type":"string",
478
+ "pattern":"[a-zA-Z]([a-zA-Z0-9_])+"
479
+ },
480
+ "EnvironmentVariableValue":{"type":"string"},
481
+ "EnvironmentVariablesMap":{
482
+ "type":"map",
483
+ "key":{"shape":"EnvironmentVariableName"},
484
+ "value":{"shape":"EnvironmentVariableValue"}
485
+ },
475
486
  "ErrorMessage":{"type":"string"},
476
487
  "FunctionArn":{
477
488
  "type":"string",
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.627'
2
+ VERSION = '2.11.628'
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.627
4
+ version: 2.11.628
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: 2020-11-13 00:00:00.000000000 Z
11
+ date: 2020-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath