aws-sdk-core 2.11.390 → 2.11.391

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -114,6 +114,20 @@
114
114
  {"shape":"InternalServiceErrorException"}
115
115
  ]
116
116
  },
117
+ "ListTagsForResource":{
118
+ "name":"ListTagsForResource",
119
+ "http":{
120
+ "method":"GET",
121
+ "requestUri":"/tags/{resourceArn}"
122
+ },
123
+ "input":{"shape":"ListTagsForResourceRequest"},
124
+ "output":{"shape":"ListTagsForResourceResponse"},
125
+ "errors":[
126
+ {"shape":"InternalServiceErrorException"},
127
+ {"shape":"BadRequestException"},
128
+ {"shape":"NotFoundException"}
129
+ ]
130
+ },
117
131
  "PutSigningProfile":{
118
132
  "name":"PutSigningProfile",
119
133
  "http":{
@@ -145,6 +159,34 @@
145
159
  {"shape":"ThrottlingException"},
146
160
  {"shape":"InternalServiceErrorException"}
147
161
  ]
162
+ },
163
+ "TagResource":{
164
+ "name":"TagResource",
165
+ "http":{
166
+ "method":"POST",
167
+ "requestUri":"/tags/{resourceArn}"
168
+ },
169
+ "input":{"shape":"TagResourceRequest"},
170
+ "output":{"shape":"TagResourceResponse"},
171
+ "errors":[
172
+ {"shape":"InternalServiceErrorException"},
173
+ {"shape":"BadRequestException"},
174
+ {"shape":"NotFoundException"}
175
+ ]
176
+ },
177
+ "UntagResource":{
178
+ "name":"UntagResource",
179
+ "http":{
180
+ "method":"DELETE",
181
+ "requestUri":"/tags/{resourceArn}"
182
+ },
183
+ "input":{"shape":"UntagResourceRequest"},
184
+ "output":{"shape":"UntagResourceResponse"},
185
+ "errors":[
186
+ {"shape":"InternalServiceErrorException"},
187
+ {"shape":"BadRequestException"},
188
+ {"shape":"NotFoundException"}
189
+ ]
148
190
  }
149
191
  },
150
192
  "shapes":{
@@ -157,6 +199,14 @@
157
199
  "error":{"httpStatusCode":403},
158
200
  "exception":true
159
201
  },
202
+ "BadRequestException":{
203
+ "type":"structure",
204
+ "members":{
205
+ "message":{"shape":"ErrorMessage"}
206
+ },
207
+ "error":{"httpStatusCode":400},
208
+ "exception":true
209
+ },
160
210
  "BucketName":{"type":"string"},
161
211
  "CancelSigningProfileRequest":{
162
212
  "type":"structure",
@@ -279,7 +329,9 @@
279
329
  "platformId":{"shape":"PlatformId"},
280
330
  "overrides":{"shape":"SigningPlatformOverrides"},
281
331
  "signingParameters":{"shape":"SigningParameters"},
282
- "status":{"shape":"SigningProfileStatus"}
332
+ "status":{"shape":"SigningProfileStatus"},
333
+ "arn":{"shape":"string"},
334
+ "tags":{"shape":"TagMap"}
283
335
  }
284
336
  },
285
337
  "HashAlgorithm":{
@@ -423,6 +475,23 @@
423
475
  "nextToken":{"shape":"NextToken"}
424
476
  }
425
477
  },
478
+ "ListTagsForResourceRequest":{
479
+ "type":"structure",
480
+ "required":["resourceArn"],
481
+ "members":{
482
+ "resourceArn":{
483
+ "shape":"String",
484
+ "location":"uri",
485
+ "locationName":"resourceArn"
486
+ }
487
+ }
488
+ },
489
+ "ListTagsForResourceResponse":{
490
+ "type":"structure",
491
+ "members":{
492
+ "tags":{"shape":"TagMap"}
493
+ }
494
+ },
426
495
  "MaxResults":{
427
496
  "type":"integer",
428
497
  "box":true,
@@ -431,6 +500,14 @@
431
500
  },
432
501
  "MaxSizeInMB":{"type":"integer"},
433
502
  "NextToken":{"type":"string"},
503
+ "NotFoundException":{
504
+ "type":"structure",
505
+ "members":{
506
+ "message":{"shape":"ErrorMessage"}
507
+ },
508
+ "error":{"httpStatusCode":404},
509
+ "exception":true
510
+ },
434
511
  "PlatformId":{"type":"string"},
435
512
  "Prefix":{"type":"string"},
436
513
  "ProfileName":{
@@ -455,7 +532,8 @@
455
532
  "signingMaterial":{"shape":"SigningMaterial"},
456
533
  "platformId":{"shape":"PlatformId"},
457
534
  "overrides":{"shape":"SigningPlatformOverrides"},
458
- "signingParameters":{"shape":"SigningParameters"}
535
+ "signingParameters":{"shape":"SigningParameters"},
536
+ "tags":{"shape":"TagMap"}
459
537
  }
460
538
  },
461
539
  "PutSigningProfileResponse":{
@@ -594,7 +672,9 @@
594
672
  "signingMaterial":{"shape":"SigningMaterial"},
595
673
  "platformId":{"shape":"PlatformId"},
596
674
  "signingParameters":{"shape":"SigningParameters"},
597
- "status":{"shape":"SigningProfileStatus"}
675
+ "status":{"shape":"SigningProfileStatus"},
676
+ "arn":{"shape":"string"},
677
+ "tags":{"shape":"TagMap"}
598
678
  }
599
679
  },
600
680
  "SigningProfileStatus":{
@@ -647,6 +727,49 @@
647
727
  },
648
728
  "StatusReason":{"type":"string"},
649
729
  "String":{"type":"string"},
730
+ "TagKey":{
731
+ "type":"string",
732
+ "max":128,
733
+ "min":1,
734
+ "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$"
735
+ },
736
+ "TagKeyList":{
737
+ "type":"list",
738
+ "member":{"shape":"TagKey"},
739
+ "max":200,
740
+ "min":1
741
+ },
742
+ "TagMap":{
743
+ "type":"map",
744
+ "key":{"shape":"TagKey"},
745
+ "value":{"shape":"TagValue"},
746
+ "max":200,
747
+ "min":1
748
+ },
749
+ "TagResourceRequest":{
750
+ "type":"structure",
751
+ "required":[
752
+ "resourceArn",
753
+ "tags"
754
+ ],
755
+ "members":{
756
+ "resourceArn":{
757
+ "shape":"String",
758
+ "location":"uri",
759
+ "locationName":"resourceArn"
760
+ },
761
+ "tags":{"shape":"TagMap"}
762
+ }
763
+ },
764
+ "TagResourceResponse":{
765
+ "type":"structure",
766
+ "members":{
767
+ }
768
+ },
769
+ "TagValue":{
770
+ "type":"string",
771
+ "max":256
772
+ },
650
773
  "ThrottlingException":{
651
774
  "type":"structure",
652
775
  "members":{
@@ -655,6 +778,30 @@
655
778
  "error":{"httpStatusCode":429},
656
779
  "exception":true
657
780
  },
781
+ "UntagResourceRequest":{
782
+ "type":"structure",
783
+ "required":[
784
+ "resourceArn",
785
+ "tagKeys"
786
+ ],
787
+ "members":{
788
+ "resourceArn":{
789
+ "shape":"String",
790
+ "location":"uri",
791
+ "locationName":"resourceArn"
792
+ },
793
+ "tagKeys":{
794
+ "shape":"TagKeyList",
795
+ "location":"querystring",
796
+ "locationName":"tagKeys"
797
+ }
798
+ }
799
+ },
800
+ "UntagResourceResponse":{
801
+ "type":"structure",
802
+ "members":{
803
+ }
804
+ },
658
805
  "ValidationException":{
659
806
  "type":"structure",
660
807
  "members":{
@@ -191,6 +191,7 @@ module Aws
191
191
  SWF
192
192
  SageMaker
193
193
  SageMakerRuntime
194
+ SavingsPlans
194
195
  SecretsManager
195
196
  SecurityHub
196
197
  ServerlessApplicationRepository
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:SavingsPlans, {
2
+ api: "#{Aws::API_DIR}/savingsplans/2019-06-28/api-2.json",
3
+ docs: "#{Aws::API_DIR}/savingsplans/2019-06-28/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/savingsplans/2019-06-28/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/savingsplans/2019-06-28/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.390'
2
+ VERSION = '2.11.391'
3
3
  end
@@ -670,6 +670,10 @@
670
670
  "models": "runtime.sagemaker/2017-05-13",
671
671
  "endpoint": "runtime.sagemaker"
672
672
  },
673
+ "SavingsPlans": {
674
+ "models": "savingsplans/2019-06-28",
675
+ "endpoint": "savingsplans"
676
+ },
673
677
  "SecretsManager": {
674
678
  "models": "secretsmanager/2017-10-17",
675
679
  "endpoint": "secretsmanager"
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.390
4
+ version: 2.11.391
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-11-05 00:00:00.000000000 Z
11
+ date: 2019-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -700,6 +700,9 @@ files:
700
700
  - apis/sagemaker/2017-07-24/examples-1.json
701
701
  - apis/sagemaker/2017-07-24/paginators-1.json
702
702
  - apis/sagemaker/2017-07-24/waiters-2.json
703
+ - apis/savingsplans/2019-06-28/api-2.json
704
+ - apis/savingsplans/2019-06-28/examples-1.json
705
+ - apis/savingsplans/2019-06-28/paginators-1.json
703
706
  - apis/sdb/2009-04-15/api-2.json
704
707
  - apis/sdb/2009-04-15/paginators-1.json
705
708
  - apis/secretsmanager/2017-10-17/api-2.json
@@ -1109,6 +1112,7 @@ files:
1109
1112
  - lib/aws-sdk-core/s3control.rb
1110
1113
  - lib/aws-sdk-core/sagemaker.rb
1111
1114
  - lib/aws-sdk-core/sagemakerruntime.rb
1115
+ - lib/aws-sdk-core/savingsplans.rb
1112
1116
  - lib/aws-sdk-core/secretsmanager.rb
1113
1117
  - lib/aws-sdk-core/securityhub.rb
1114
1118
  - lib/aws-sdk-core/serverlessapplicationrepository.rb