aws-sdk-core 2.11.15 → 2.11.16

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: 77974e9ebac50bfce6c5865b9a63aaa1d3691497
4
- data.tar.gz: 849f617cd53e44e33d3c831a56bf968f1fd3cfd8
3
+ metadata.gz: 7e4ce1f2a000d4c6a40029f381f14f83fd8192a9
4
+ data.tar.gz: af51e0a1c9bf4cc848b3901d0638c97d1bc1789a
5
5
  SHA512:
6
- metadata.gz: e0a481a67bd48d2a29b504e28e143cd84b2dbcabd383c57aeb04ac6565e5267a8127c6b9f190979a750c978d7e74a69019fafde3f2923f064127e81944575fbc
7
- data.tar.gz: ae4abea4f55554afcb0be1da97a7a5896ef5a062377feac63a3590aadccf591c81ade14bab0035e0a41500ae7d14ed07e10032be152f001b9192111c4bb5d87d
6
+ metadata.gz: d44d299fdbeda4b5873dc54e5683e03b4990830fa0b315fb9f282d1bcc1d4a5b9a515f415292a84e4e137607635eddce0bffd83cba1260ae35b4eb99482b2413
7
+ data.tar.gz: cba4cb722ef38f17283e656483ecd2477654633a10653042a0d32d8bb6975b2841a5d468e482e6933fe3cf3a4c00bd57bef4428f4a692b9e84e31775160a208c
@@ -1513,7 +1513,8 @@
1513
1513
  "MAX_LIMIT_EXCEEDED_FILTER",
1514
1514
  "MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS",
1515
1515
  "INVALID_FULL_NAME_TARGET",
1516
- "UNRECOGNIZED_SERVICE_PRINCIPAL"
1516
+ "UNRECOGNIZED_SERVICE_PRINCIPAL",
1517
+ "INVALID_ROLE_NAME"
1517
1518
  ]
1518
1519
  },
1519
1520
  "InviteAccountToOrganizationRequest":{
@@ -2052,8 +2053,9 @@
2052
2053
  },
2053
2054
  "ServicePrincipal":{
2054
2055
  "type":"string",
2055
- "max":1000,
2056
- "min":1
2056
+ "max":128,
2057
+ "min":1,
2058
+ "pattern":"[\\w+=,.@-]*"
2057
2059
  },
2058
2060
  "SourceParentNotFoundException":{
2059
2061
  "type":"structure",
@@ -388,6 +388,33 @@
388
388
  "shape" : "TooManyRequestsException"
389
389
  } ]
390
390
  },
391
+ "DeleteEndpoint" : {
392
+ "name" : "DeleteEndpoint",
393
+ "http" : {
394
+ "method" : "DELETE",
395
+ "requestUri" : "/v1/apps/{application-id}/endpoints/{endpoint-id}",
396
+ "responseCode" : 202
397
+ },
398
+ "input" : {
399
+ "shape" : "DeleteEndpointRequest"
400
+ },
401
+ "output" : {
402
+ "shape" : "DeleteEndpointResponse"
403
+ },
404
+ "errors" : [ {
405
+ "shape" : "BadRequestException"
406
+ }, {
407
+ "shape" : "InternalServerErrorException"
408
+ }, {
409
+ "shape" : "ForbiddenException"
410
+ }, {
411
+ "shape" : "NotFoundException"
412
+ }, {
413
+ "shape" : "MethodNotAllowedException"
414
+ }, {
415
+ "shape" : "TooManyRequestsException"
416
+ } ]
417
+ },
391
418
  "DeleteEventStream" : {
392
419
  "name" : "DeleteEventStream",
393
420
  "http" : {
@@ -2938,6 +2965,32 @@
2938
2965
  "required" : [ "EmailChannelResponse" ],
2939
2966
  "payload" : "EmailChannelResponse"
2940
2967
  },
2968
+ "DeleteEndpointRequest" : {
2969
+ "type" : "structure",
2970
+ "members" : {
2971
+ "ApplicationId" : {
2972
+ "shape" : "__string",
2973
+ "location" : "uri",
2974
+ "locationName" : "application-id"
2975
+ },
2976
+ "EndpointId" : {
2977
+ "shape" : "__string",
2978
+ "location" : "uri",
2979
+ "locationName" : "endpoint-id"
2980
+ }
2981
+ },
2982
+ "required" : [ "ApplicationId", "EndpointId" ]
2983
+ },
2984
+ "DeleteEndpointResponse" : {
2985
+ "type" : "structure",
2986
+ "members" : {
2987
+ "EndpointResponse" : {
2988
+ "shape" : "EndpointResponse"
2989
+ }
2990
+ },
2991
+ "required" : [ "EndpointResponse" ],
2992
+ "payload" : "EndpointResponse"
2993
+ },
2941
2994
  "DeleteEventStreamRequest" : {
2942
2995
  "type" : "structure",
2943
2996
  "members" : {
@@ -4938,6 +4991,9 @@
4938
4991
  "MessageType" : {
4939
4992
  "shape" : "MessageType"
4940
4993
  },
4994
+ "OriginationNumber" : {
4995
+ "shape" : "__string"
4996
+ },
4941
4997
  "SenderId" : {
4942
4998
  "shape" : "__string"
4943
4999
  },
@@ -5709,4 +5765,4 @@
5709
5765
  "type" : "timestamp"
5710
5766
  }
5711
5767
  }
5712
- }
5768
+ }
@@ -70,6 +70,18 @@
70
70
  {"shape":"ResourceLimitExceeded"}
71
71
  ]
72
72
  },
73
+ "CreateNotebookInstanceLifecycleConfig":{
74
+ "name":"CreateNotebookInstanceLifecycleConfig",
75
+ "http":{
76
+ "method":"POST",
77
+ "requestUri":"/"
78
+ },
79
+ "input":{"shape":"CreateNotebookInstanceLifecycleConfigInput"},
80
+ "output":{"shape":"CreateNotebookInstanceLifecycleConfigOutput"},
81
+ "errors":[
82
+ {"shape":"ResourceLimitExceeded"}
83
+ ]
84
+ },
73
85
  "CreatePresignedNotebookInstanceUrl":{
74
86
  "name":"CreatePresignedNotebookInstanceUrl",
75
87
  "http":{
@@ -124,6 +136,14 @@
124
136
  },
125
137
  "input":{"shape":"DeleteNotebookInstanceInput"}
126
138
  },
139
+ "DeleteNotebookInstanceLifecycleConfig":{
140
+ "name":"DeleteNotebookInstanceLifecycleConfig",
141
+ "http":{
142
+ "method":"POST",
143
+ "requestUri":"/"
144
+ },
145
+ "input":{"shape":"DeleteNotebookInstanceLifecycleConfigInput"}
146
+ },
127
147
  "DeleteTags":{
128
148
  "name":"DeleteTags",
129
149
  "http":{
@@ -169,6 +189,15 @@
169
189
  "input":{"shape":"DescribeNotebookInstanceInput"},
170
190
  "output":{"shape":"DescribeNotebookInstanceOutput"}
171
191
  },
192
+ "DescribeNotebookInstanceLifecycleConfig":{
193
+ "name":"DescribeNotebookInstanceLifecycleConfig",
194
+ "http":{
195
+ "method":"POST",
196
+ "requestUri":"/"
197
+ },
198
+ "input":{"shape":"DescribeNotebookInstanceLifecycleConfigInput"},
199
+ "output":{"shape":"DescribeNotebookInstanceLifecycleConfigOutput"}
200
+ },
172
201
  "DescribeTrainingJob":{
173
202
  "name":"DescribeTrainingJob",
174
203
  "http":{
@@ -208,6 +237,15 @@
208
237
  "input":{"shape":"ListModelsInput"},
209
238
  "output":{"shape":"ListModelsOutput"}
210
239
  },
240
+ "ListNotebookInstanceLifecycleConfigs":{
241
+ "name":"ListNotebookInstanceLifecycleConfigs",
242
+ "http":{
243
+ "method":"POST",
244
+ "requestUri":"/"
245
+ },
246
+ "input":{"shape":"ListNotebookInstanceLifecycleConfigsInput"},
247
+ "output":{"shape":"ListNotebookInstanceLifecycleConfigsOutput"}
248
+ },
211
249
  "ListNotebookInstances":{
212
250
  "name":"ListNotebookInstances",
213
251
  "http":{
@@ -300,6 +338,18 @@
300
338
  "errors":[
301
339
  {"shape":"ResourceLimitExceeded"}
302
340
  ]
341
+ },
342
+ "UpdateNotebookInstanceLifecycleConfig":{
343
+ "name":"UpdateNotebookInstanceLifecycleConfig",
344
+ "http":{
345
+ "method":"POST",
346
+ "requestUri":"/"
347
+ },
348
+ "input":{"shape":"UpdateNotebookInstanceLifecycleConfigInput"},
349
+ "output":{"shape":"UpdateNotebookInstanceLifecycleConfigOutput"},
350
+ "errors":[
351
+ {"shape":"ResourceLimitExceeded"}
352
+ ]
303
353
  }
304
354
  },
305
355
  "shapes":{
@@ -455,7 +505,24 @@
455
505
  "SecurityGroupIds":{"shape":"SecurityGroupIds"},
456
506
  "RoleArn":{"shape":"RoleArn"},
457
507
  "KmsKeyId":{"shape":"KmsKeyId"},
458
- "Tags":{"shape":"TagList"}
508
+ "Tags":{"shape":"TagList"},
509
+ "LifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
510
+ "DirectInternetAccess":{"shape":"DirectInternetAccess"}
511
+ }
512
+ },
513
+ "CreateNotebookInstanceLifecycleConfigInput":{
514
+ "type":"structure",
515
+ "required":["NotebookInstanceLifecycleConfigName"],
516
+ "members":{
517
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
518
+ "OnCreate":{"shape":"NotebookInstanceLifecycleConfigList"},
519
+ "OnStart":{"shape":"NotebookInstanceLifecycleConfigList"}
520
+ }
521
+ },
522
+ "CreateNotebookInstanceLifecycleConfigOutput":{
523
+ "type":"structure",
524
+ "members":{
525
+ "NotebookInstanceLifecycleConfigArn":{"shape":"NotebookInstanceLifecycleConfigArn"}
459
526
  }
460
527
  },
461
528
  "CreateNotebookInstanceOutput":{
@@ -544,6 +611,13 @@
544
611
  "NotebookInstanceName":{"shape":"NotebookInstanceName"}
545
612
  }
546
613
  },
614
+ "DeleteNotebookInstanceLifecycleConfigInput":{
615
+ "type":"structure",
616
+ "required":["NotebookInstanceLifecycleConfigName"],
617
+ "members":{
618
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"}
619
+ }
620
+ },
547
621
  "DeleteTagsInput":{
548
622
  "type":"structure",
549
623
  "required":[
@@ -642,6 +716,24 @@
642
716
  "NotebookInstanceName":{"shape":"NotebookInstanceName"}
643
717
  }
644
718
  },
719
+ "DescribeNotebookInstanceLifecycleConfigInput":{
720
+ "type":"structure",
721
+ "required":["NotebookInstanceLifecycleConfigName"],
722
+ "members":{
723
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"}
724
+ }
725
+ },
726
+ "DescribeNotebookInstanceLifecycleConfigOutput":{
727
+ "type":"structure",
728
+ "members":{
729
+ "NotebookInstanceLifecycleConfigArn":{"shape":"NotebookInstanceLifecycleConfigArn"},
730
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
731
+ "OnCreate":{"shape":"NotebookInstanceLifecycleConfigList"},
732
+ "OnStart":{"shape":"NotebookInstanceLifecycleConfigList"},
733
+ "LastModifiedTime":{"shape":"LastModifiedTime"},
734
+ "CreationTime":{"shape":"CreationTime"}
735
+ }
736
+ },
645
737
  "DescribeNotebookInstanceOutput":{
646
738
  "type":"structure",
647
739
  "members":{
@@ -657,7 +749,9 @@
657
749
  "KmsKeyId":{"shape":"KmsKeyId"},
658
750
  "NetworkInterfaceId":{"shape":"NetworkInterfaceId"},
659
751
  "LastModifiedTime":{"shape":"LastModifiedTime"},
660
- "CreationTime":{"shape":"CreationTime"}
752
+ "CreationTime":{"shape":"CreationTime"},
753
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
754
+ "DirectInternetAccess":{"shape":"DirectInternetAccess"}
661
755
  }
662
756
  },
663
757
  "DescribeTrainingJobRequest":{
@@ -715,6 +809,13 @@
715
809
  "member":{"shape":"DesiredWeightAndCapacity"},
716
810
  "min":1
717
811
  },
812
+ "DirectInternetAccess":{
813
+ "type":"string",
814
+ "enum":[
815
+ "Enabled",
816
+ "Disabled"
817
+ ]
818
+ },
718
819
  "EndpointArn":{
719
820
  "type":"string",
720
821
  "max":2048,
@@ -850,7 +951,8 @@
850
951
  "enum":[
851
952
  "ml.t2.medium",
852
953
  "ml.m4.xlarge",
853
- "ml.p2.xlarge"
954
+ "ml.p2.xlarge",
955
+ "ml.p3.2xlarge"
854
956
  ]
855
957
  },
856
958
  "KmsKeyId":{
@@ -921,6 +1023,27 @@
921
1023
  "NextToken":{"shape":"PaginationToken"}
922
1024
  }
923
1025
  },
1026
+ "ListNotebookInstanceLifecycleConfigsInput":{
1027
+ "type":"structure",
1028
+ "members":{
1029
+ "NextToken":{"shape":"NextToken"},
1030
+ "MaxResults":{"shape":"MaxResults"},
1031
+ "SortBy":{"shape":"NotebookInstanceLifecycleConfigSortKey"},
1032
+ "SortOrder":{"shape":"NotebookInstanceLifecycleConfigSortOrder"},
1033
+ "NameContains":{"shape":"NotebookInstanceLifecycleConfigNameContains"},
1034
+ "CreationTimeBefore":{"shape":"CreationTime"},
1035
+ "CreationTimeAfter":{"shape":"CreationTime"},
1036
+ "LastModifiedTimeBefore":{"shape":"LastModifiedTime"},
1037
+ "LastModifiedTimeAfter":{"shape":"LastModifiedTime"}
1038
+ }
1039
+ },
1040
+ "ListNotebookInstanceLifecycleConfigsOutput":{
1041
+ "type":"structure",
1042
+ "members":{
1043
+ "NextToken":{"shape":"NextToken"},
1044
+ "NotebookInstanceLifecycleConfigs":{"shape":"NotebookInstanceLifecycleConfigSummaryList"}
1045
+ }
1046
+ },
924
1047
  "ListNotebookInstancesInput":{
925
1048
  "type":"structure",
926
1049
  "members":{
@@ -933,7 +1056,8 @@
933
1056
  "CreationTimeAfter":{"shape":"CreationTime"},
934
1057
  "LastModifiedTimeBefore":{"shape":"LastModifiedTime"},
935
1058
  "LastModifiedTimeAfter":{"shape":"LastModifiedTime"},
936
- "StatusEquals":{"shape":"NotebookInstanceStatus"}
1059
+ "StatusEquals":{"shape":"NotebookInstanceStatus"},
1060
+ "NotebookInstanceLifecycleConfigNameContains":{"shape":"NotebookInstanceLifecycleConfigName"}
937
1061
  }
938
1062
  },
939
1063
  "ListNotebookInstancesOutput":{
@@ -1057,6 +1181,67 @@
1057
1181
  "type":"string",
1058
1182
  "max":256
1059
1183
  },
1184
+ "NotebookInstanceLifecycleConfigArn":{
1185
+ "type":"string",
1186
+ "max":256
1187
+ },
1188
+ "NotebookInstanceLifecycleConfigContent":{
1189
+ "type":"string",
1190
+ "max":16384,
1191
+ "min":1
1192
+ },
1193
+ "NotebookInstanceLifecycleConfigList":{
1194
+ "type":"list",
1195
+ "member":{"shape":"NotebookInstanceLifecycleHook"},
1196
+ "max":1
1197
+ },
1198
+ "NotebookInstanceLifecycleConfigName":{
1199
+ "type":"string",
1200
+ "max":63,
1201
+ "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1202
+ },
1203
+ "NotebookInstanceLifecycleConfigNameContains":{
1204
+ "type":"string",
1205
+ "pattern":"[a-zA-Z0-9-]+"
1206
+ },
1207
+ "NotebookInstanceLifecycleConfigSortKey":{
1208
+ "type":"string",
1209
+ "enum":[
1210
+ "Name",
1211
+ "CreationTime",
1212
+ "LastModifiedTime"
1213
+ ]
1214
+ },
1215
+ "NotebookInstanceLifecycleConfigSortOrder":{
1216
+ "type":"string",
1217
+ "enum":[
1218
+ "Ascending",
1219
+ "Descending"
1220
+ ]
1221
+ },
1222
+ "NotebookInstanceLifecycleConfigSummary":{
1223
+ "type":"structure",
1224
+ "required":[
1225
+ "NotebookInstanceLifecycleConfigName",
1226
+ "NotebookInstanceLifecycleConfigArn"
1227
+ ],
1228
+ "members":{
1229
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
1230
+ "NotebookInstanceLifecycleConfigArn":{"shape":"NotebookInstanceLifecycleConfigArn"},
1231
+ "CreationTime":{"shape":"CreationTime"},
1232
+ "LastModifiedTime":{"shape":"LastModifiedTime"}
1233
+ }
1234
+ },
1235
+ "NotebookInstanceLifecycleConfigSummaryList":{
1236
+ "type":"list",
1237
+ "member":{"shape":"NotebookInstanceLifecycleConfigSummary"}
1238
+ },
1239
+ "NotebookInstanceLifecycleHook":{
1240
+ "type":"structure",
1241
+ "members":{
1242
+ "Content":{"shape":"NotebookInstanceLifecycleConfigContent"}
1243
+ }
1244
+ },
1060
1245
  "NotebookInstanceName":{
1061
1246
  "type":"string",
1062
1247
  "max":63,
@@ -1105,7 +1290,8 @@
1105
1290
  "Url":{"shape":"NotebookInstanceUrl"},
1106
1291
  "InstanceType":{"shape":"InstanceType"},
1107
1292
  "CreationTime":{"shape":"CreationTime"},
1108
- "LastModifiedTime":{"shape":"LastModifiedTime"}
1293
+ "LastModifiedTime":{"shape":"LastModifiedTime"},
1294
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"}
1109
1295
  }
1110
1296
  },
1111
1297
  "NotebookInstanceSummaryList":{
@@ -1509,6 +1695,20 @@
1509
1695
  "RoleArn":{"shape":"RoleArn"}
1510
1696
  }
1511
1697
  },
1698
+ "UpdateNotebookInstanceLifecycleConfigInput":{
1699
+ "type":"structure",
1700
+ "required":["NotebookInstanceLifecycleConfigName"],
1701
+ "members":{
1702
+ "NotebookInstanceLifecycleConfigName":{"shape":"NotebookInstanceLifecycleConfigName"},
1703
+ "OnCreate":{"shape":"NotebookInstanceLifecycleConfigList"},
1704
+ "OnStart":{"shape":"NotebookInstanceLifecycleConfigList"}
1705
+ }
1706
+ },
1707
+ "UpdateNotebookInstanceLifecycleConfigOutput":{
1708
+ "type":"structure",
1709
+ "members":{
1710
+ }
1711
+ },
1512
1712
  "UpdateNotebookInstanceOutput":{
1513
1713
  "type":"structure",
1514
1714
  "members":{
@@ -15,6 +15,11 @@
15
15
  "output_token": "NextToken",
16
16
  "limit_key": "MaxResults"
17
17
  },
18
+ "ListNotebookInstanceLifecycleConfigs": {
19
+ "input_token": "NextToken",
20
+ "output_token": "NextToken",
21
+ "limit_key": "MaxResults"
22
+ },
18
23
  "ListNotebookInstances": {
19
24
  "input_token": "NextToken",
20
25
  "output_token": "NextToken",
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.15'
2
+ VERSION = '2.11.16'
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.15
4
+ version: 2.11.16
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: 2018-03-14 00:00:00.000000000 Z
11
+ date: 2018-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath