aws-sdk-core 2.11.357 → 2.11.358

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: 2f08a1de0deaa652b94396459023160146581dd3
4
- data.tar.gz: 6c25f6080820fd355ea40e76d7665cbe7c8d654d
3
+ metadata.gz: 387f20efc5c3cb97cb38e33d342907c42d39865d
4
+ data.tar.gz: e597ae639052956578f216b6659c4dd2116c85c2
5
5
  SHA512:
6
- metadata.gz: d9d4d5a9f9d0190b27df38d578f9855e4ecf7c37257429442bcf3d8441951a473c8f146c9bf41dbd5de60c87f088273cd3962afeb0aeee3f652656bbb01c902b
7
- data.tar.gz: f0bb0e52aeab6dc891716750098959ad78dee6fa79f4900abc1c087579f42f32fe7ef728c2c5067816c70866147accbdc48d2d9723d215f37c00d50deb6b4f58
6
+ metadata.gz: 9e315e276d17d1253ef63749e82c8e9d850739325c37695924950c4e9bbf6d9a9a5404ddd0a4079b34abeadbde8ed088d9814b3ace01b514f1c2037eb324e09f
7
+ data.tar.gz: 243354c5a54313cc59b992cf773da38495bb86a2be6c68e8e28af054162aac49edca372e3a16c208b59f2597d96a18ad7995ed283e74469d60906531d55af728
@@ -15531,6 +15531,12 @@
15531
15531
  "g3.8xlarge",
15532
15532
  "g3.16xlarge",
15533
15533
  "g3s.xlarge",
15534
+ "g4dn.xlarge",
15535
+ "g4dn.2xlarge",
15536
+ "g4dn.4xlarge",
15537
+ "g4dn.8xlarge",
15538
+ "g4dn.12xlarge",
15539
+ "g4dn.16xlarge",
15534
15540
  "cg1.4xlarge",
15535
15541
  "p2.xlarge",
15536
15542
  "p2.8xlarge",
@@ -2423,6 +2423,9 @@
2423
2423
  },
2424
2424
  "IotJobId" : {
2425
2425
  "shape" : "__string"
2426
+ },
2427
+ "PlatformSoftwareVersion" : {
2428
+ "shape" : "__string"
2426
2429
  }
2427
2430
  }
2428
2431
  },
@@ -4234,6 +4234,7 @@
4234
4234
  "ProductDescription":{"shape":"String"},
4235
4235
  "OfferingType":{"shape":"String"},
4236
4236
  "MultiAZ":{"shape":"BooleanOptional"},
4237
+ "LeaseId":{"shape":"String"},
4237
4238
  "Filters":{"shape":"FilterList"},
4238
4239
  "MaxRecords":{"shape":"IntegerOptional"},
4239
4240
  "Marker":{"shape":"String"}
@@ -5737,7 +5738,8 @@
5737
5738
  "MultiAZ":{"shape":"Boolean"},
5738
5739
  "State":{"shape":"String"},
5739
5740
  "RecurringCharges":{"shape":"RecurringChargeList"},
5740
- "ReservedDBInstanceArn":{"shape":"String"}
5741
+ "ReservedDBInstanceArn":{"shape":"String"},
5742
+ "LeaseId":{"shape":"String"}
5741
5743
  },
5742
5744
  "wrapper":true
5743
5745
  },
@@ -247,6 +247,20 @@
247
247
  {"shape":"AccessDeniedException"}
248
248
  ]
249
249
  },
250
+ "DescribeWorkspaceSnapshots":{
251
+ "name":"DescribeWorkspaceSnapshots",
252
+ "http":{
253
+ "method":"POST",
254
+ "requestUri":"/"
255
+ },
256
+ "input":{"shape":"DescribeWorkspaceSnapshotsRequest"},
257
+ "output":{"shape":"DescribeWorkspaceSnapshotsResult"},
258
+ "errors":[
259
+ {"shape":"InvalidParameterValuesException"},
260
+ {"shape":"ResourceNotFoundException"},
261
+ {"shape":"AccessDeniedException"}
262
+ ]
263
+ },
250
264
  "DescribeWorkspaces":{
251
265
  "name":"DescribeWorkspaces",
252
266
  "http":{
@@ -397,6 +411,20 @@
397
411
  "input":{"shape":"RebuildWorkspacesRequest"},
398
412
  "output":{"shape":"RebuildWorkspacesResult"}
399
413
  },
414
+ "RestoreWorkspace":{
415
+ "name":"RestoreWorkspace",
416
+ "http":{
417
+ "method":"POST",
418
+ "requestUri":"/"
419
+ },
420
+ "input":{"shape":"RestoreWorkspaceRequest"},
421
+ "output":{"shape":"RestoreWorkspaceResult"},
422
+ "errors":[
423
+ {"shape":"InvalidParameterValuesException"},
424
+ {"shape":"ResourceNotFoundException"},
425
+ {"shape":"AccessDeniedException"}
426
+ ]
427
+ },
400
428
  "RevokeIpRules":{
401
429
  "name":"RevokeIpRules",
402
430
  "http":{
@@ -831,6 +859,20 @@
831
859
  "NextToken":{"shape":"PaginationToken"}
832
860
  }
833
861
  },
862
+ "DescribeWorkspaceSnapshotsRequest":{
863
+ "type":"structure",
864
+ "required":["WorkspaceId"],
865
+ "members":{
866
+ "WorkspaceId":{"shape":"WorkspaceId"}
867
+ }
868
+ },
869
+ "DescribeWorkspaceSnapshotsResult":{
870
+ "type":"structure",
871
+ "members":{
872
+ "RebuildSnapshots":{"shape":"SnapshotList"},
873
+ "RestoreSnapshots":{"shape":"SnapshotList"}
874
+ }
875
+ },
834
876
  "DescribeWorkspacesConnectionStatusRequest":{
835
877
  "type":"structure",
836
878
  "members":{
@@ -1281,6 +1323,18 @@
1281
1323
  },
1282
1324
  "exception":true
1283
1325
  },
1326
+ "RestoreWorkspaceRequest":{
1327
+ "type":"structure",
1328
+ "required":["WorkspaceId"],
1329
+ "members":{
1330
+ "WorkspaceId":{"shape":"WorkspaceId"}
1331
+ }
1332
+ },
1333
+ "RestoreWorkspaceResult":{
1334
+ "type":"structure",
1335
+ "members":{
1336
+ }
1337
+ },
1284
1338
  "RevokeIpRulesRequest":{
1285
1339
  "type":"structure",
1286
1340
  "required":[
@@ -1316,6 +1370,16 @@
1316
1370
  "type":"string",
1317
1371
  "pattern":"^(sg-[0-9a-f]{8})$"
1318
1372
  },
1373
+ "Snapshot":{
1374
+ "type":"structure",
1375
+ "members":{
1376
+ "SnapshotTime":{"shape":"Timestamp"}
1377
+ }
1378
+ },
1379
+ "SnapshotList":{
1380
+ "type":"list",
1381
+ "member":{"shape":"Snapshot"}
1382
+ },
1319
1383
  "StartRequest":{
1320
1384
  "type":"structure",
1321
1385
  "members":{
@@ -1671,6 +1735,7 @@
1671
1735
  "REBOOTING",
1672
1736
  "STARTING",
1673
1737
  "REBUILDING",
1738
+ "RESTORING",
1674
1739
  "MAINTENANCE",
1675
1740
  "ADMIN_MAINTENANCE",
1676
1741
  "TERMINATING",
@@ -4302,7 +4302,6 @@
4302
4302
  },
4303
4303
  "health" : {
4304
4304
  "endpoints" : {
4305
- "us-gov-east-1" : { },
4306
4305
  "us-gov-west-1" : { }
4307
4306
  }
4308
4307
  },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.357'
2
+ VERSION = '2.11.358'
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.357
4
+ version: 2.11.358
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-09-19 00:00:00.000000000 Z
11
+ date: 2019-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath