aws-sdk-core 2.11.311 → 2.11.312

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f55641b1b20c8266af67b7425b2e93e4733d0b3
4
- data.tar.gz: 88bcc2a89c32c5f681e2080dfc378361bc820abe
3
+ metadata.gz: 60d89216ab77fa1633442cbf85bdb3a0ee9d5bc3
4
+ data.tar.gz: becb4af1e1e432a32eaf084f32c796659cfc97c2
5
5
  SHA512:
6
- metadata.gz: c7912fe5206d08443d208f871cd0f859efb89c99d5820f9eef29f229528ce33d1d1239e2c518c60585bca430a59fb7a64579532b1ff89c3c157c13137fc00a80
7
- data.tar.gz: c34bf5968a6780b83aaa628f902a8798911b59901ba0694234bb7e3cbf69eb3d01d65334da02caeb78527ca24b547e13e0ffbc1f38eb0f6418c15c612977e3f4
6
+ metadata.gz: c22e2aa80f70f0853d442f8fb9dea703aab22f577893f26460db37ec43f071b40d3e2f4995139b673328a58ce9732817b1ff1bf14a6031e6642408ab0d3081ea
7
+ data.tar.gz: 5c5dcdbaeee6c411ce2d3e4f4f592e7e30e2aef7ecb60381813071708a5d5cb8be392b82520071ff6811e33f905b4d824345b748a5d53454757ca08fa7466211
@@ -680,6 +680,11 @@
680
680
  "shape":"boolean",
681
681
  "location":"querystring",
682
682
  "locationName":"reset-disabled"
683
+ },
684
+ "UserArn":{
685
+ "shape":"Arn",
686
+ "location":"querystring",
687
+ "locationName":"user-arn"
683
688
  }
684
689
  }
685
690
  },
@@ -970,7 +975,7 @@
970
975
  },
971
976
  "MaxResults":{
972
977
  "type":"integer",
973
- "max":100000,
978
+ "max":100,
974
979
  "min":1
975
980
  },
976
981
  "Namespace":{
@@ -525,6 +525,19 @@
525
525
  {"shape":"ResourceNotFoundException"}
526
526
  ]
527
527
  },
528
+ "DescribeServiceActionExecutionParameters":{
529
+ "name":"DescribeServiceActionExecutionParameters",
530
+ "http":{
531
+ "method":"POST",
532
+ "requestUri":"/"
533
+ },
534
+ "input":{"shape":"DescribeServiceActionExecutionParametersInput"},
535
+ "output":{"shape":"DescribeServiceActionExecutionParametersOutput"},
536
+ "errors":[
537
+ {"shape":"InvalidParametersException"},
538
+ {"shape":"ResourceNotFoundException"}
539
+ ]
540
+ },
528
541
  "DescribeTagOption":{
529
542
  "name":"DescribeTagOption",
530
543
  "http":{
@@ -1926,6 +1939,24 @@
1926
1939
  "NextPageToken":{"shape":"PageToken"}
1927
1940
  }
1928
1941
  },
1942
+ "DescribeServiceActionExecutionParametersInput":{
1943
+ "type":"structure",
1944
+ "required":[
1945
+ "ProvisionedProductId",
1946
+ "ServiceActionId"
1947
+ ],
1948
+ "members":{
1949
+ "ProvisionedProductId":{"shape":"Id"},
1950
+ "ServiceActionId":{"shape":"Id"},
1951
+ "AcceptLanguage":{"shape":"AcceptLanguage"}
1952
+ }
1953
+ },
1954
+ "DescribeServiceActionExecutionParametersOutput":{
1955
+ "type":"structure",
1956
+ "members":{
1957
+ "ServiceActionParameters":{"shape":"ExecutionParameters"}
1958
+ }
1959
+ },
1929
1960
  "DescribeServiceActionInput":{
1930
1961
  "type":"structure",
1931
1962
  "required":["Id"],
@@ -2111,7 +2142,8 @@
2111
2142
  "shape":"IdempotencyToken",
2112
2143
  "idempotencyToken":true
2113
2144
  },
2114
- "AcceptLanguage":{"shape":"AcceptLanguage"}
2145
+ "AcceptLanguage":{"shape":"AcceptLanguage"},
2146
+ "Parameters":{"shape":"ExecutionParameterMap"}
2115
2147
  }
2116
2148
  },
2117
2149
  "ExecuteProvisionedProductServiceActionOutput":{
@@ -2120,6 +2152,46 @@
2120
2152
  "RecordDetail":{"shape":"RecordDetail"}
2121
2153
  }
2122
2154
  },
2155
+ "ExecutionParameter":{
2156
+ "type":"structure",
2157
+ "members":{
2158
+ "Name":{"shape":"ExecutionParameterKey"},
2159
+ "Type":{"shape":"ExecutionParameterType"},
2160
+ "DefaultValues":{"shape":"ExecutionParameterValueList"}
2161
+ }
2162
+ },
2163
+ "ExecutionParameterKey":{
2164
+ "type":"string",
2165
+ "max":50,
2166
+ "min":1
2167
+ },
2168
+ "ExecutionParameterMap":{
2169
+ "type":"map",
2170
+ "key":{"shape":"ExecutionParameterKey"},
2171
+ "value":{"shape":"ExecutionParameterValueList"},
2172
+ "max":200,
2173
+ "min":1
2174
+ },
2175
+ "ExecutionParameterType":{
2176
+ "type":"string",
2177
+ "max":1024,
2178
+ "min":1
2179
+ },
2180
+ "ExecutionParameterValue":{
2181
+ "type":"string",
2182
+ "max":512,
2183
+ "min":0
2184
+ },
2185
+ "ExecutionParameterValueList":{
2186
+ "type":"list",
2187
+ "member":{"shape":"ExecutionParameterValue"},
2188
+ "max":25,
2189
+ "min":0
2190
+ },
2191
+ "ExecutionParameters":{
2192
+ "type":"list",
2193
+ "member":{"shape":"ExecutionParameter"}
2194
+ },
2123
2195
  "FailedServiceActionAssociation":{
2124
2196
  "type":"structure",
2125
2197
  "members":{
data/endpoints.json CHANGED
@@ -1511,6 +1511,7 @@
1511
1511
  "eu-west-1" : { },
1512
1512
  "eu-west-2" : { },
1513
1513
  "eu-west-3" : { },
1514
+ "sa-east-1" : { },
1514
1515
  "us-east-1" : { },
1515
1516
  "us-east-2" : { },
1516
1517
  "us-west-1" : { },
@@ -1604,6 +1605,7 @@
1604
1605
  "ap-south-1" : { },
1605
1606
  "ap-southeast-2" : { },
1606
1607
  "eu-central-1" : { },
1608
+ "eu-north-1" : { },
1607
1609
  "eu-west-1" : { },
1608
1610
  "eu-west-2" : { },
1609
1611
  "us-east-1" : { },
@@ -1764,6 +1766,7 @@
1764
1766
  },
1765
1767
  "license-manager" : {
1766
1768
  "endpoints" : {
1769
+ "ap-east-1" : { },
1767
1770
  "ap-northeast-1" : { },
1768
1771
  "ap-northeast-2" : { },
1769
1772
  "ap-south-1" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.311'
2
+ VERSION = '2.11.312'
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.311
4
+ version: 2.11.312
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-07-09 00:00:00.000000000 Z
11
+ date: 2019-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath