aws-sdk-core 2.11.574 → 2.11.579

Sign up to get free protection for your applications and to get access to all the features.
@@ -29,6 +29,23 @@
29
29
  {"shape":"ThrottlingException"}
30
30
  ]
31
31
  },
32
+ "CreateCodeReview":{
33
+ "name":"CreateCodeReview",
34
+ "http":{
35
+ "method":"POST",
36
+ "requestUri":"/codereviews"
37
+ },
38
+ "input":{"shape":"CreateCodeReviewRequest"},
39
+ "output":{"shape":"CreateCodeReviewResponse"},
40
+ "errors":[
41
+ {"shape":"ResourceNotFoundException"},
42
+ {"shape":"InternalServerException"},
43
+ {"shape":"ValidationException"},
44
+ {"shape":"ConflictException"},
45
+ {"shape":"AccessDeniedException"},
46
+ {"shape":"ThrottlingException"}
47
+ ]
48
+ },
32
49
  "DescribeCodeReview":{
33
50
  "name":"DescribeCodeReview",
34
51
  "http":{
@@ -209,6 +226,11 @@
209
226
  "max":64,
210
227
  "min":1
211
228
  },
229
+ "BranchName":{
230
+ "type":"string",
231
+ "max":256,
232
+ "min":1
233
+ },
212
234
  "ClientRequestToken":{
213
235
  "type":"string",
214
236
  "max":64,
@@ -240,6 +262,12 @@
240
262
  "Metrics":{"shape":"Metrics"}
241
263
  }
242
264
  },
265
+ "CodeReviewName":{
266
+ "type":"string",
267
+ "max":100,
268
+ "min":1,
269
+ "pattern":"[a-zA-Z0-9-_]*"
270
+ },
243
271
  "CodeReviewSummaries":{
244
272
  "type":"list",
245
273
  "member":{"shape":"CodeReviewSummary"}
@@ -260,6 +288,13 @@
260
288
  "MetricsSummary":{"shape":"MetricsSummary"}
261
289
  }
262
290
  },
291
+ "CodeReviewType":{
292
+ "type":"structure",
293
+ "required":["RepositoryAnalysis"],
294
+ "members":{
295
+ "RepositoryAnalysis":{"shape":"RepositoryAnalysis"}
296
+ }
297
+ },
263
298
  "CommitDiffSourceCodeType":{
264
299
  "type":"structure",
265
300
  "members":{
@@ -286,6 +321,29 @@
286
321
  "min":0,
287
322
  "pattern":"arn:aws(-[\\w]+)*:.+:.+:[0-9]{12}:.+"
288
323
  },
324
+ "CreateCodeReviewRequest":{
325
+ "type":"structure",
326
+ "required":[
327
+ "Name",
328
+ "RepositoryAssociationArn",
329
+ "Type"
330
+ ],
331
+ "members":{
332
+ "Name":{"shape":"CodeReviewName"},
333
+ "RepositoryAssociationArn":{"shape":"Arn"},
334
+ "Type":{"shape":"CodeReviewType"},
335
+ "ClientRequestToken":{
336
+ "shape":"ClientRequestToken",
337
+ "idempotencyToken":true
338
+ }
339
+ }
340
+ },
341
+ "CreateCodeReviewResponse":{
342
+ "type":"structure",
343
+ "members":{
344
+ "CodeReview":{"shape":"CodeReview"}
345
+ }
346
+ },
289
347
  "DescribeCodeReviewRequest":{
290
348
  "type":"structure",
291
349
  "required":["CodeReviewArn"],
@@ -719,6 +777,13 @@
719
777
  "GitHubEnterpriseServer":{"shape":"ThirdPartySourceRepository"}
720
778
  }
721
779
  },
780
+ "RepositoryAnalysis":{
781
+ "type":"structure",
782
+ "required":["RepositoryHead"],
783
+ "members":{
784
+ "RepositoryHead":{"shape":"RepositoryHeadSourceCodeType"}
785
+ }
786
+ },
722
787
  "RepositoryAssociation":{
723
788
  "type":"structure",
724
789
  "members":{
@@ -766,6 +831,13 @@
766
831
  "State":{"shape":"RepositoryAssociationState"}
767
832
  }
768
833
  },
834
+ "RepositoryHeadSourceCodeType":{
835
+ "type":"structure",
836
+ "required":["BranchName"],
837
+ "members":{
838
+ "BranchName":{"shape":"BranchName"}
839
+ }
840
+ },
769
841
  "RepositoryNames":{
770
842
  "type":"list",
771
843
  "member":{"shape":"Name"},
@@ -783,7 +855,8 @@
783
855
  "SourceCodeType":{
784
856
  "type":"structure",
785
857
  "members":{
786
- "CommitDiff":{"shape":"CommitDiffSourceCodeType"}
858
+ "CommitDiff":{"shape":"CommitDiffSourceCodeType"},
859
+ "RepositoryHead":{"shape":"RepositoryHeadSourceCodeType"}
787
860
  }
788
861
  },
789
862
  "StateReason":{
@@ -820,7 +893,10 @@
820
893
  "TimeStamp":{"type":"timestamp"},
821
894
  "Type":{
822
895
  "type":"string",
823
- "enum":["PullRequest"]
896
+ "enum":[
897
+ "PullRequest",
898
+ "RepositoryAnalysis"
899
+ ]
824
900
  },
825
901
  "UserId":{
826
902
  "type":"string",
@@ -71,17 +71,29 @@
71
71
  "AWSRegion":{
72
72
  "type":"string",
73
73
  "enum":[
74
- "us-east-1",
75
- "us-west-1",
76
- "us-west-2",
77
- "eu-central-1",
78
- "eu-west-1",
74
+ "af-south-1",
75
+ "ap-east-1",
76
+ "ap-south-1",
79
77
  "ap-southeast-1",
80
78
  "ap-southeast-2",
81
79
  "ap-northeast-1",
82
- "eu-north-1",
80
+ "ap-northeast-2",
83
81
  "ap-northeast-3",
84
- "ap-east-1"
82
+ "ca-central-1",
83
+ "eu-central-1",
84
+ "eu-west-1",
85
+ "eu-west-2",
86
+ "eu-west-3",
87
+ "eu-north-1",
88
+ "eu-south-1",
89
+ "me-south-1",
90
+ "sa-east-1",
91
+ "us-east-1",
92
+ "us-east-2",
93
+ "us-west-1",
94
+ "us-west-2",
95
+ "cn-north-1",
96
+ "cn-northwest-1"
85
97
  ]
86
98
  },
87
99
  "AdditionalArtifact":{
@@ -139,7 +151,11 @@
139
151
  "exception":true
140
152
  },
141
153
  "ErrorMessage":{"type":"string"},
142
- "GenericString":{"type":"string"},
154
+ "GenericString":{
155
+ "type":"string",
156
+ "max":256,
157
+ "pattern":"[A-Za-z0-9_\\.\\-=]*"
158
+ },
143
159
  "InternalErrorException":{
144
160
  "type":"structure",
145
161
  "members":{
@@ -244,7 +260,8 @@
244
260
  },
245
261
  "S3Bucket":{
246
262
  "type":"string",
247
- "max":256
263
+ "max":256,
264
+ "pattern":"[A-Za-z0-9_\\.\\-]+"
248
265
  },
249
266
  "S3Prefix":{
250
267
  "type":"string",
@@ -263,7 +280,8 @@
263
280
  "type":"string",
264
281
  "enum":[
265
282
  "HOURLY",
266
- "DAILY"
283
+ "DAILY",
284
+ "MONTHLY"
267
285
  ]
268
286
  },
269
287
  "ValidationException":{
@@ -20813,6 +20813,10 @@
20813
20813
  "members":{
20814
20814
  "DryRun":{"shape":"Boolean"},
20815
20815
  "ExcessCapacityTerminationPolicy":{"shape":"FleetExcessCapacityTerminationPolicy"},
20816
+ "LaunchTemplateConfigs":{
20817
+ "shape":"FleetLaunchTemplateConfigListRequest",
20818
+ "locationName":"LaunchTemplateConfig"
20819
+ },
20816
20820
  "FleetId":{"shape":"FleetId"},
20817
20821
  "TargetCapacitySpecification":{"shape":"TargetCapacitySpecificationRequest"}
20818
20822
  }
@@ -21284,6 +21288,10 @@
21284
21288
  "shape":"ExcessCapacityTerminationPolicy",
21285
21289
  "locationName":"excessCapacityTerminationPolicy"
21286
21290
  },
21291
+ "LaunchTemplateConfigs":{
21292
+ "shape":"LaunchTemplateConfigList",
21293
+ "locationName":"LaunchTemplateConfig"
21294
+ },
21287
21295
  "SpotFleetRequestId":{
21288
21296
  "shape":"SpotFleetRequestId",
21289
21297
  "locationName":"spotFleetRequestId"
@@ -25108,6 +25116,7 @@
25108
25116
  "customer-gateway",
25109
25117
  "dedicated-host",
25110
25118
  "dhcp-options",
25119
+ "egress-only-internet-gateway",
25111
25120
  "elastic-ip",
25112
25121
  "elastic-gpu",
25113
25122
  "export-image-task",
@@ -28459,6 +28468,7 @@
28459
28468
  "vpc",
28460
28469
  "vpn",
28461
28470
  "direct-connect-gateway",
28471
+ "peering",
28462
28472
  "tgw-peering"
28463
28473
  ]
28464
28474
  },
@@ -28466,6 +28476,7 @@
28466
28476
  "type":"string",
28467
28477
  "enum":[
28468
28478
  "initiating",
28479
+ "initiatingRequest",
28469
28480
  "pendingAcceptance",
28470
28481
  "rollingBack",
28471
28482
  "pending",
@@ -128,6 +128,19 @@
128
128
  ],
129
129
  "deprecated":true
130
130
  },
131
+ "DescribeNotebookExecution":{
132
+ "name":"DescribeNotebookExecution",
133
+ "http":{
134
+ "method":"POST",
135
+ "requestUri":"/"
136
+ },
137
+ "input":{"shape":"DescribeNotebookExecutionInput"},
138
+ "output":{"shape":"DescribeNotebookExecutionOutput"},
139
+ "errors":[
140
+ {"shape":"InternalServerError"},
141
+ {"shape":"InvalidRequestException"}
142
+ ]
143
+ },
131
144
  "DescribeSecurityConfiguration":{
132
145
  "name":"DescribeSecurityConfiguration",
133
146
  "http":{
@@ -241,6 +254,19 @@
241
254
  {"shape":"InvalidRequestException"}
242
255
  ]
243
256
  },
257
+ "ListNotebookExecutions":{
258
+ "name":"ListNotebookExecutions",
259
+ "http":{
260
+ "method":"POST",
261
+ "requestUri":"/"
262
+ },
263
+ "input":{"shape":"ListNotebookExecutionsInput"},
264
+ "output":{"shape":"ListNotebookExecutionsOutput"},
265
+ "errors":[
266
+ {"shape":"InternalServerError"},
267
+ {"shape":"InvalidRequestException"}
268
+ ]
269
+ },
244
270
  "ListSecurityConfigurations":{
245
271
  "name":"ListSecurityConfigurations",
246
272
  "http":{
@@ -399,6 +425,31 @@
399
425
  {"shape":"InternalServerError"}
400
426
  ]
401
427
  },
428
+ "StartNotebookExecution":{
429
+ "name":"StartNotebookExecution",
430
+ "http":{
431
+ "method":"POST",
432
+ "requestUri":"/"
433
+ },
434
+ "input":{"shape":"StartNotebookExecutionInput"},
435
+ "output":{"shape":"StartNotebookExecutionOutput"},
436
+ "errors":[
437
+ {"shape":"InternalServerException"},
438
+ {"shape":"InvalidRequestException"}
439
+ ]
440
+ },
441
+ "StopNotebookExecution":{
442
+ "name":"StopNotebookExecution",
443
+ "http":{
444
+ "method":"POST",
445
+ "requestUri":"/"
446
+ },
447
+ "input":{"shape":"StopNotebookExecutionInput"},
448
+ "errors":[
449
+ {"shape":"InternalServerError"},
450
+ {"shape":"InvalidRequestException"}
451
+ ]
452
+ },
402
453
  "TerminateJobFlows":{
403
454
  "name":"TerminateJobFlows",
404
455
  "http":{
@@ -894,6 +945,19 @@
894
945
  "JobFlows":{"shape":"JobFlowDetailList"}
895
946
  }
896
947
  },
948
+ "DescribeNotebookExecutionInput":{
949
+ "type":"structure",
950
+ "required":["NotebookExecutionId"],
951
+ "members":{
952
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
953
+ }
954
+ },
955
+ "DescribeNotebookExecutionOutput":{
956
+ "type":"structure",
957
+ "members":{
958
+ "NotebookExecution":{"shape":"NotebookExecution"}
959
+ }
960
+ },
897
961
  "DescribeSecurityConfigurationInput":{
898
962
  "type":"structure",
899
963
  "required":["Name"],
@@ -997,6 +1061,19 @@
997
1061
  "min":1
998
1062
  },
999
1063
  "ErrorMessage":{"type":"string"},
1064
+ "ExecutionEngineConfig":{
1065
+ "type":"structure",
1066
+ "required":["Id"],
1067
+ "members":{
1068
+ "Id":{"shape":"XmlStringMaxLen256"},
1069
+ "Type":{"shape":"ExecutionEngineType"},
1070
+ "MasterInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"}
1071
+ }
1072
+ },
1073
+ "ExecutionEngineType":{
1074
+ "type":"string",
1075
+ "enum":["EMR"]
1076
+ },
1000
1077
  "FailureDetails":{
1001
1078
  "type":"structure",
1002
1079
  "members":{
@@ -1684,6 +1761,23 @@
1684
1761
  "Marker":{"shape":"Marker"}
1685
1762
  }
1686
1763
  },
1764
+ "ListNotebookExecutionsInput":{
1765
+ "type":"structure",
1766
+ "members":{
1767
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1768
+ "Status":{"shape":"NotebookExecutionStatus"},
1769
+ "From":{"shape":"Date"},
1770
+ "To":{"shape":"Date"},
1771
+ "Marker":{"shape":"Marker"}
1772
+ }
1773
+ },
1774
+ "ListNotebookExecutionsOutput":{
1775
+ "type":"structure",
1776
+ "members":{
1777
+ "NotebookExecutions":{"shape":"NotebookExecutionSummaryList"},
1778
+ "Marker":{"shape":"Marker"}
1779
+ }
1780
+ },
1687
1781
  "ListSecurityConfigurationsInput":{
1688
1782
  "type":"structure",
1689
1783
  "members":{
@@ -1780,6 +1874,54 @@
1780
1874
  "type":"double",
1781
1875
  "min":0.0
1782
1876
  },
1877
+ "NotebookExecution":{
1878
+ "type":"structure",
1879
+ "members":{
1880
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"},
1881
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1882
+ "ExecutionEngine":{"shape":"ExecutionEngineConfig"},
1883
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
1884
+ "NotebookParams":{"shape":"XmlString"},
1885
+ "Status":{"shape":"NotebookExecutionStatus"},
1886
+ "StartTime":{"shape":"Date"},
1887
+ "EndTime":{"shape":"Date"},
1888
+ "Arn":{"shape":"XmlStringMaxLen256"},
1889
+ "OutputNotebookURI":{"shape":"XmlString"},
1890
+ "LastStateChangeReason":{"shape":"XmlString"},
1891
+ "NotebookInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"},
1892
+ "Tags":{"shape":"TagList"}
1893
+ }
1894
+ },
1895
+ "NotebookExecutionStatus":{
1896
+ "type":"string",
1897
+ "enum":[
1898
+ "START_PENDING",
1899
+ "STARTING",
1900
+ "RUNNING",
1901
+ "FINISHING",
1902
+ "FINISHED",
1903
+ "FAILING",
1904
+ "FAILED",
1905
+ "STOP_PENDING",
1906
+ "STOPPING",
1907
+ "STOPPED"
1908
+ ]
1909
+ },
1910
+ "NotebookExecutionSummary":{
1911
+ "type":"structure",
1912
+ "members":{
1913
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"},
1914
+ "EditorId":{"shape":"XmlStringMaxLen256"},
1915
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
1916
+ "Status":{"shape":"NotebookExecutionStatus"},
1917
+ "StartTime":{"shape":"Date"},
1918
+ "EndTime":{"shape":"Date"}
1919
+ }
1920
+ },
1921
+ "NotebookExecutionSummaryList":{
1922
+ "type":"list",
1923
+ "member":{"shape":"NotebookExecutionSummary"}
1924
+ },
1783
1925
  "OnDemandProvisioningAllocationStrategy":{
1784
1926
  "type":"string",
1785
1927
  "enum":["lowest-price"]
@@ -1806,7 +1948,7 @@
1806
1948
  "Port":{
1807
1949
  "type":"integer",
1808
1950
  "max":65535,
1809
- "min":0
1951
+ "min":-1
1810
1952
  },
1811
1953
  "PortRange":{
1812
1954
  "type":"structure",
@@ -2100,6 +2242,31 @@
2100
2242
  "TERMINATE_CLUSTER"
2101
2243
  ]
2102
2244
  },
2245
+ "StartNotebookExecutionInput":{
2246
+ "type":"structure",
2247
+ "required":[
2248
+ "EditorId",
2249
+ "RelativePath",
2250
+ "ExecutionEngine",
2251
+ "ServiceRole"
2252
+ ],
2253
+ "members":{
2254
+ "EditorId":{"shape":"XmlStringMaxLen256"},
2255
+ "RelativePath":{"shape":"XmlString"},
2256
+ "NotebookExecutionName":{"shape":"XmlStringMaxLen256"},
2257
+ "NotebookParams":{"shape":"XmlString"},
2258
+ "ExecutionEngine":{"shape":"ExecutionEngineConfig"},
2259
+ "ServiceRole":{"shape":"XmlString"},
2260
+ "NotebookInstanceSecurityGroupId":{"shape":"XmlStringMaxLen256"},
2261
+ "Tags":{"shape":"TagList"}
2262
+ }
2263
+ },
2264
+ "StartNotebookExecutionOutput":{
2265
+ "type":"structure",
2266
+ "members":{
2267
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
2268
+ }
2269
+ },
2103
2270
  "Statistic":{
2104
2271
  "type":"string",
2105
2272
  "enum":[
@@ -2247,6 +2414,13 @@
2247
2414
  "EndDateTime":{"shape":"Date"}
2248
2415
  }
2249
2416
  },
2417
+ "StopNotebookExecutionInput":{
2418
+ "type":"structure",
2419
+ "required":["NotebookExecutionId"],
2420
+ "members":{
2421
+ "NotebookExecutionId":{"shape":"XmlStringMaxLen256"}
2422
+ }
2423
+ },
2250
2424
  "String":{"type":"string"},
2251
2425
  "StringList":{
2252
2426
  "type":"list",