aws-sdk-core 2.11.513 → 2.11.514

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: b134264e545f8f0b1322122f8ec165b87fa030c948cd4b39ef10ec97fc442388
4
- data.tar.gz: bcbf659e3a78aed6ac82f3b7b6150cf0d003a7722a31b93df75e5b9be7b55eb2
3
+ metadata.gz: 6a1e6cf60e97506c78d1b5d27cfc2b7a917cd9d5d86ba3978e8420d6520db12b
4
+ data.tar.gz: e75f71ce2609aac865a50318accc17a7bc8b5e52515068cbc5f8a6167e6f2361
5
5
  SHA512:
6
- metadata.gz: cde9cacffac185320bc8ac8a1e026332f44475cd8fed68c81d50f1874d37063a4030dbc4d88df25f020ead25b189e3da0ecd45286d693cf5f6b98167d9970641
7
- data.tar.gz: 1137cdf491d9e20c6c897756cfb662c7b97e5f66d7677fd55b58fdf4ad816d09e8bbf594139b2cee1672f15c32f510652f36ab9999c9278be71ddad9f8de6e84
6
+ metadata.gz: eb2cdf4a967a11112d48a63e213050f2bf7d8b69cebc1f03c98ae5490b757908de5fe6f541b11c3f7c20f422f2f63ce5c4fe61db81192aef33c2310e6849ed07
7
+ data.tar.gz: 0e92913651dee69a0c3af4df78efbe4051f4ab2e97762577a0f0bd1182f41152e402f2bec28c0a4cac21f120359ba7ad528ef91d79382670c259118fc68185cb
@@ -964,7 +964,8 @@
964
964
  "COUNT",
965
965
  "MAXIMUM",
966
966
  "MINIMUM",
967
- "SUM"
967
+ "SUM",
968
+ "STANDARD_DEVIATION"
968
969
  ]
969
970
  },
970
971
  "AggregateTypes":{
@@ -996,7 +997,8 @@
996
997
  "count":{"shape":"AggregatedDoubleValue"},
997
998
  "maximum":{"shape":"AggregatedDoubleValue"},
998
999
  "minimum":{"shape":"AggregatedDoubleValue"},
999
- "sum":{"shape":"AggregatedDoubleValue"}
1000
+ "sum":{"shape":"AggregatedDoubleValue"},
1001
+ "standardDeviation":{"shape":"AggregatedDoubleValue"}
1000
1002
  }
1001
1003
  },
1002
1004
  "AmazonResourceName":{
@@ -2119,7 +2121,7 @@
2119
2121
  "portalStatus":{"shape":"PortalStatus"},
2120
2122
  "portalCreationDate":{"shape":"Timestamp"},
2121
2123
  "portalLastUpdateDate":{"shape":"Timestamp"},
2122
- "portalLogoImage":{"shape":"Image"},
2124
+ "portalLogoImageLocation":{"shape":"ImageLocation"},
2123
2125
  "roleArn":{"shape":"ARN"}
2124
2126
  }
2125
2127
  },
@@ -2487,26 +2489,41 @@
2487
2489
  "Image":{
2488
2490
  "type":"structure",
2489
2491
  "members":{
2490
- "locationUrl":{"shape":"Url"},
2491
- "lastUpdateDate":{"shape":"Timestamp"}
2492
+ "id":{"shape":"ID"},
2493
+ "file":{"shape":"ImageFile"}
2492
2494
  }
2493
2495
  },
2494
2496
  "ImageFile":{
2495
2497
  "type":"structure",
2496
2498
  "required":[
2497
- "encodedString",
2498
- "fileType"
2499
+ "data",
2500
+ "type"
2499
2501
  ],
2500
2502
  "members":{
2501
- "encodedString":{"shape":"ImageFileData"},
2502
- "fileType":{"shape":"ImageFileType"}
2503
+ "data":{"shape":"ImageFileData"},
2504
+ "type":{"shape":"ImageFileType"}
2503
2505
  }
2504
2506
  },
2505
- "ImageFileData":{"type":"blob"},
2507
+ "ImageFileData":{
2508
+ "type":"blob",
2509
+ "max":1500000,
2510
+ "min":1
2511
+ },
2506
2512
  "ImageFileType":{
2507
2513
  "type":"string",
2508
2514
  "enum":["PNG"]
2509
2515
  },
2516
+ "ImageLocation":{
2517
+ "type":"structure",
2518
+ "required":[
2519
+ "id",
2520
+ "url"
2521
+ ],
2522
+ "members":{
2523
+ "id":{"shape":"ID"},
2524
+ "url":{"shape":"Url"}
2525
+ }
2526
+ },
2510
2527
  "InternalFailureException":{
2511
2528
  "type":"structure",
2512
2529
  "required":["message"],
@@ -3500,7 +3517,7 @@
3500
3517
  "portalName":{"shape":"Name"},
3501
3518
  "portalDescription":{"shape":"Description"},
3502
3519
  "portalContactEmail":{"shape":"Email"},
3503
- "portalLogoImageFile":{"shape":"ImageFile"},
3520
+ "portalLogoImage":{"shape":"Image"},
3504
3521
  "roleArn":{"shape":"ARN"},
3505
3522
  "clientToken":{
3506
3523
  "shape":"ClientToken",
@@ -7520,9 +7520,17 @@
7520
7520
  },
7521
7521
  "endpoints" : {
7522
7522
  "us-gov-east-1" : {
7523
+ "credentialScope" : {
7524
+ "region" : "us-gov-east-1"
7525
+ },
7526
+ "hostname" : "serverlessrepo.us-gov-east-1.amazonaws.com",
7523
7527
  "protocols" : [ "https" ]
7524
7528
  },
7525
7529
  "us-gov-west-1" : {
7530
+ "credentialScope" : {
7531
+ "region" : "us-gov-west-1"
7532
+ },
7533
+ "hostname" : "serverlessrepo.us-gov-west-1.amazonaws.com",
7526
7534
  "protocols" : [ "https" ]
7527
7535
  }
7528
7536
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.513'
2
+ VERSION = '2.11.514'
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.513
4
+ version: 2.11.514
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-05-21 00:00:00.000000000 Z
11
+ date: 2020-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath