aws-sdk-core 2.11.569 → 2.11.574

Sign up to get free protection for your applications and to get access to all the features.
@@ -206,6 +206,20 @@
206
206
  {"shape":"ThrottledException"}
207
207
  ]
208
208
  },
209
+ "ListTagsForResource":{
210
+ "name":"ListTagsForResource",
211
+ "http":{
212
+ "method":"POST",
213
+ "requestUri":"/ListTagsForResource"
214
+ },
215
+ "input":{"shape":"ListTagsForResourceRequest"},
216
+ "output":{"shape":"ListTagsForResourceResponse"},
217
+ "errors":[
218
+ {"shape":"InvalidRequestException"},
219
+ {"shape":"ThrottledException"},
220
+ {"shape":"ResourceNotFoundException"}
221
+ ]
222
+ },
209
223
  "PutEncryptionConfig":{
210
224
  "name":"PutEncryptionConfig",
211
225
  "http":{
@@ -245,6 +259,35 @@
245
259
  {"shape":"ThrottledException"}
246
260
  ]
247
261
  },
262
+ "TagResource":{
263
+ "name":"TagResource",
264
+ "http":{
265
+ "method":"POST",
266
+ "requestUri":"/TagResource"
267
+ },
268
+ "input":{"shape":"TagResourceRequest"},
269
+ "output":{"shape":"TagResourceResponse"},
270
+ "errors":[
271
+ {"shape":"InvalidRequestException"},
272
+ {"shape":"ThrottledException"},
273
+ {"shape":"ResourceNotFoundException"},
274
+ {"shape":"TooManyTagsException"}
275
+ ]
276
+ },
277
+ "UntagResource":{
278
+ "name":"UntagResource",
279
+ "http":{
280
+ "method":"POST",
281
+ "requestUri":"/UntagResource"
282
+ },
283
+ "input":{"shape":"UntagResourceRequest"},
284
+ "output":{"shape":"UntagResourceResponse"},
285
+ "errors":[
286
+ {"shape":"InvalidRequestException"},
287
+ {"shape":"ThrottledException"},
288
+ {"shape":"ResourceNotFoundException"}
289
+ ]
290
+ },
248
291
  "UpdateGroup":{
249
292
  "name":"UpdateGroup",
250
293
  "http":{
@@ -289,6 +332,11 @@
289
332
  "type":"list",
290
333
  "member":{"shape":"String"}
291
334
  },
335
+ "AmazonResourceName":{
336
+ "type":"string",
337
+ "max":1011,
338
+ "min":1
339
+ },
292
340
  "AnnotationKey":{"type":"string"},
293
341
  "AnnotationValue":{
294
342
  "type":"structure",
@@ -367,7 +415,8 @@
367
415
  "required":["GroupName"],
368
416
  "members":{
369
417
  "GroupName":{"shape":"GroupName"},
370
- "FilterExpression":{"shape":"FilterExpression"}
418
+ "FilterExpression":{"shape":"FilterExpression"},
419
+ "Tags":{"shape":"TagList"}
371
420
  }
372
421
  },
373
422
  "CreateGroupResult":{
@@ -380,7 +429,8 @@
380
429
  "type":"structure",
381
430
  "required":["SamplingRule"],
382
431
  "members":{
383
- "SamplingRule":{"shape":"SamplingRule"}
432
+ "SamplingRule":{"shape":"SamplingRule"},
433
+ "Tags":{"shape":"TagList"}
384
434
  }
385
435
  },
386
436
  "CreateSamplingRuleResult":{
@@ -822,6 +872,21 @@
822
872
  },
823
873
  "exception":true
824
874
  },
875
+ "ListTagsForResourceRequest":{
876
+ "type":"structure",
877
+ "required":["ResourceARN"],
878
+ "members":{
879
+ "ResourceARN":{"shape":"AmazonResourceName"},
880
+ "NextToken":{"shape":"String"}
881
+ }
882
+ },
883
+ "ListTagsForResourceResponse":{
884
+ "type":"structure",
885
+ "members":{
886
+ "Tags":{"shape":"TagList"},
887
+ "NextToken":{"shape":"String"}
888
+ }
889
+ },
825
890
  "NullableBoolean":{"type":"boolean"},
826
891
  "NullableDouble":{"type":"double"},
827
892
  "NullableInteger":{"type":"integer"},
@@ -891,6 +956,15 @@
891
956
  "ARN":{"shape":"String"}
892
957
  }
893
958
  },
959
+ "ResourceNotFoundException":{
960
+ "type":"structure",
961
+ "members":{
962
+ "Message":{"shape":"ErrorMessage"},
963
+ "ResourceName":{"shape":"AmazonResourceName"}
964
+ },
965
+ "error":{"httpStatusCode":404},
966
+ "exception":true
967
+ },
894
968
  "ResponseTimeRootCause":{
895
969
  "type":"structure",
896
970
  "members":{
@@ -1154,6 +1228,55 @@
1154
1228
  "max":64
1155
1229
  },
1156
1230
  "String":{"type":"string"},
1231
+ "Tag":{
1232
+ "type":"structure",
1233
+ "required":[
1234
+ "Key",
1235
+ "Value"
1236
+ ],
1237
+ "members":{
1238
+ "Key":{"shape":"TagKey"},
1239
+ "Value":{"shape":"TagValue"}
1240
+ }
1241
+ },
1242
+ "TagKey":{
1243
+ "type":"string",
1244
+ "max":128,
1245
+ "min":1
1246
+ },
1247
+ "TagKeyList":{
1248
+ "type":"list",
1249
+ "member":{"shape":"TagKey"},
1250
+ "max":200,
1251
+ "min":0
1252
+ },
1253
+ "TagList":{
1254
+ "type":"list",
1255
+ "member":{"shape":"Tag"},
1256
+ "max":200,
1257
+ "min":0
1258
+ },
1259
+ "TagResourceRequest":{
1260
+ "type":"structure",
1261
+ "required":[
1262
+ "ResourceARN",
1263
+ "Tags"
1264
+ ],
1265
+ "members":{
1266
+ "ResourceARN":{"shape":"AmazonResourceName"},
1267
+ "Tags":{"shape":"TagList"}
1268
+ }
1269
+ },
1270
+ "TagResourceResponse":{
1271
+ "type":"structure",
1272
+ "members":{
1273
+ }
1274
+ },
1275
+ "TagValue":{
1276
+ "type":"string",
1277
+ "max":256,
1278
+ "min":0
1279
+ },
1157
1280
  "TelemetryRecord":{
1158
1281
  "type":"structure",
1159
1282
  "required":["Timestamp"],
@@ -1199,6 +1322,15 @@
1199
1322
  "member":{"shape":"TimeSeriesServiceStatistics"}
1200
1323
  },
1201
1324
  "Timestamp":{"type":"timestamp"},
1325
+ "TooManyTagsException":{
1326
+ "type":"structure",
1327
+ "members":{
1328
+ "Message":{"shape":"ErrorMessage"},
1329
+ "ResourceName":{"shape":"AmazonResourceName"}
1330
+ },
1331
+ "error":{"httpStatusCode":400},
1332
+ "exception":true
1333
+ },
1202
1334
  "Trace":{
1203
1335
  "type":"structure",
1204
1336
  "members":{
@@ -1309,6 +1441,22 @@
1309
1441
  "type":"list",
1310
1442
  "member":{"shape":"UnprocessedTraceSegment"}
1311
1443
  },
1444
+ "UntagResourceRequest":{
1445
+ "type":"structure",
1446
+ "required":[
1447
+ "ResourceARN",
1448
+ "TagKeys"
1449
+ ],
1450
+ "members":{
1451
+ "ResourceARN":{"shape":"AmazonResourceName"},
1452
+ "TagKeys":{"shape":"TagKeyList"}
1453
+ }
1454
+ },
1455
+ "UntagResourceResponse":{
1456
+ "type":"structure",
1457
+ "members":{
1458
+ }
1459
+ },
1312
1460
  "UpdateGroupRequest":{
1313
1461
  "type":"structure",
1314
1462
  "members":{
@@ -549,6 +549,25 @@
549
549
  "us-west-2" : { }
550
550
  }
551
551
  },
552
+ "appflow" : {
553
+ "endpoints" : {
554
+ "ap-northeast-1" : { },
555
+ "ap-northeast-2" : { },
556
+ "ap-south-1" : { },
557
+ "ap-southeast-1" : { },
558
+ "ap-southeast-2" : { },
559
+ "ca-central-1" : { },
560
+ "eu-central-1" : { },
561
+ "eu-west-1" : { },
562
+ "eu-west-2" : { },
563
+ "eu-west-3" : { },
564
+ "sa-east-1" : { },
565
+ "us-east-1" : { },
566
+ "us-east-2" : { },
567
+ "us-west-1" : { },
568
+ "us-west-2" : { }
569
+ }
570
+ },
552
571
  "application-autoscaling" : {
553
572
  "defaults" : {
554
573
  "protocols" : [ "http", "https" ]
@@ -1634,6 +1653,8 @@
1634
1653
  "ap-northeast-1" : { },
1635
1654
  "ap-southeast-2" : { },
1636
1655
  "eu-central-1" : { },
1656
+ "eu-west-1" : { },
1657
+ "eu-west-2" : { },
1637
1658
  "us-east-1" : { },
1638
1659
  "us-west-2" : { }
1639
1660
  }
@@ -2667,6 +2688,7 @@
2667
2688
  "eu-west-1" : { },
2668
2689
  "eu-west-2" : { },
2669
2690
  "eu-west-3" : { },
2691
+ "sa-east-1" : { },
2670
2692
  "us-east-1" : { },
2671
2693
  "us-east-2" : { },
2672
2694
  "us-west-1" : { },
@@ -2915,6 +2937,20 @@
2915
2937
  "isRegionalized" : false,
2916
2938
  "partitionEndpoint" : "aws-global"
2917
2939
  },
2940
+ "identitystore" : {
2941
+ "endpoints" : {
2942
+ "ap-southeast-1" : { },
2943
+ "ap-southeast-2" : { },
2944
+ "ca-central-1" : { },
2945
+ "eu-central-1" : { },
2946
+ "eu-north-1" : { },
2947
+ "eu-west-1" : { },
2948
+ "eu-west-2" : { },
2949
+ "us-east-1" : { },
2950
+ "us-east-2" : { },
2951
+ "us-west-2" : { }
2952
+ }
2953
+ },
2918
2954
  "importexport" : {
2919
2955
  "endpoints" : {
2920
2956
  "aws-global" : {
@@ -3133,6 +3169,7 @@
3133
3169
  "ca-central-1" : { },
3134
3170
  "eu-central-1" : { },
3135
3171
  "eu-north-1" : { },
3172
+ "eu-south-1" : { },
3136
3173
  "eu-west-1" : { },
3137
3174
  "eu-west-2" : { },
3138
3175
  "eu-west-3" : { },
@@ -3691,6 +3728,8 @@
3691
3728
  "ap-northeast-1" : { },
3692
3729
  "ap-southeast-2" : { },
3693
3730
  "eu-central-1" : { },
3731
+ "eu-west-1" : { },
3732
+ "eu-west-2" : { },
3694
3733
  "us-east-1" : { },
3695
3734
  "us-west-2" : { }
3696
3735
  }
@@ -5108,6 +5147,7 @@
5108
5147
  "protocols" : [ "https" ]
5109
5148
  },
5110
5149
  "endpoints" : {
5150
+ "af-south-1" : { },
5111
5151
  "ap-east-1" : { },
5112
5152
  "ap-northeast-1" : { },
5113
5153
  "ap-northeast-2" : { },
@@ -5117,6 +5157,7 @@
5117
5157
  "ca-central-1" : { },
5118
5158
  "eu-central-1" : { },
5119
5159
  "eu-north-1" : { },
5160
+ "eu-south-1" : { },
5120
5161
  "eu-west-1" : { },
5121
5162
  "eu-west-2" : { },
5122
5163
  "eu-west-3" : { },
@@ -7313,6 +7354,7 @@
7313
7354
  "protocols" : [ "https" ]
7314
7355
  },
7315
7356
  "endpoints" : {
7357
+ "us-gov-east-1" : { },
7316
7358
  "us-gov-west-1" : { }
7317
7359
  }
7318
7360
  },
@@ -7706,11 +7748,13 @@
7706
7748
  }
7707
7749
  },
7708
7750
  "endpoints" : {
7751
+ "us-gov-east-1" : { },
7709
7752
  "us-gov-west-1" : { }
7710
7753
  }
7711
7754
  },
7712
7755
  "iotsecuredtunneling" : {
7713
7756
  "endpoints" : {
7757
+ "us-gov-east-1" : { },
7714
7758
  "us-gov-west-1" : { }
7715
7759
  }
7716
7760
  },
@@ -35,6 +35,7 @@ module Aws
35
35
  AppMesh
36
36
  AppStream
37
37
  AppSync
38
+ Appflow
38
39
  ApplicationAutoScaling
39
40
  ApplicationDiscoveryService
40
41
  ApplicationInsights
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:Appflow, {
2
+ api: "#{Aws::API_DIR}/appflow/2020-08-23/api-2.json",
3
+ docs: "#{Aws::API_DIR}/appflow/2020-08-23/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/appflow/2020-08-23/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/appflow/2020-08-23/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.569'
2
+ VERSION = '2.11.574'
3
3
  end
@@ -47,6 +47,10 @@
47
47
  "models": "appsync/2017-07-25",
48
48
  "endpoint": "appsync"
49
49
  },
50
+ "Appflow": {
51
+ "models": "appflow/2020-08-23",
52
+ "endpoint": "appflow"
53
+ },
50
54
  "ApplicationAutoScaling": {
51
55
  "models": "application-autoscaling/2016-02-06",
52
56
  "endpoint": "application-autoscaling"
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.569
4
+ version: 2.11.574
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-08-18 00:00:00.000000000 Z
11
+ date: 2020-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -80,6 +80,9 @@ files:
80
80
  - apis/appconfig/2019-10-09/api-2.json
81
81
  - apis/appconfig/2019-10-09/examples-1.json
82
82
  - apis/appconfig/2019-10-09/paginators-1.json
83
+ - apis/appflow/2020-08-23/api-2.json
84
+ - apis/appflow/2020-08-23/examples-1.json
85
+ - apis/appflow/2020-08-23/paginators-1.json
83
86
  - apis/application-autoscaling/2016-02-06/api-2.json
84
87
  - apis/application-autoscaling/2016-02-06/examples-1.json
85
88
  - apis/application-autoscaling/2016-02-06/paginators-1.json
@@ -958,6 +961,7 @@ files:
958
961
  - lib/aws-sdk-core/apigatewaymanagementapi.rb
959
962
  - lib/aws-sdk-core/apigatewayv2.rb
960
963
  - lib/aws-sdk-core/appconfig.rb
964
+ - lib/aws-sdk-core/appflow.rb
961
965
  - lib/aws-sdk-core/applicationautoscaling.rb
962
966
  - lib/aws-sdk-core/applicationdiscoveryservice.rb
963
967
  - lib/aws-sdk-core/applicationinsights.rb