mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-09 22:39:53 +00:00
Update vendored deps, including AWS SDK, openpgp, ftp, ...
This commit is contained in:
+1778
File diff suppressed because it is too large
Load Diff
+1210
File diff suppressed because it is too large
Load Diff
Generated
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": "1.0",
|
||||
"examples": {
|
||||
}
|
||||
}
|
||||
Generated
Vendored
+39
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"pagination": {
|
||||
"ListEndpointConfigs": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListEndpoints": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListModels": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListNotebookInstanceLifecycleConfigs": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListNotebookInstances": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTags": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
},
|
||||
"ListTrainingJobs": {
|
||||
"input_token": "NextToken",
|
||||
"output_token": "NextToken",
|
||||
"limit_key": "MaxResults"
|
||||
}
|
||||
}
|
||||
}
|
||||
+133
@@ -0,0 +1,133 @@
|
||||
{
|
||||
"version": 2,
|
||||
"waiters": {
|
||||
"NotebookInstanceInService": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 60,
|
||||
"operation": "DescribeNotebookInstance",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "InService",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "NotebookInstanceStatus"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "NotebookInstanceStatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
"NotebookInstanceStopped": {
|
||||
"delay": 30,
|
||||
"operation": "DescribeNotebookInstance",
|
||||
"maxAttempts": 60,
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Stopped",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "NotebookInstanceStatus"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "NotebookInstanceStatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
"NotebookInstanceDeleted": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 60,
|
||||
"operation": "DescribeNotebookInstance",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "ValidationException",
|
||||
"matcher": "error",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "NotebookInstanceStatus"
|
||||
}
|
||||
]
|
||||
},
|
||||
"TrainingJobCompletedOrStopped": {
|
||||
"delay": 120,
|
||||
"maxAttempts": 180,
|
||||
"operation": "DescribeTrainingJob",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "Completed",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "TrainingJobStatus"
|
||||
},
|
||||
{
|
||||
"expected": "Stopped",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "TrainingJobStatus"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "TrainingJobStatus"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationException",
|
||||
"matcher": "error",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
},
|
||||
"EndpointInService": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 120,
|
||||
"operation": "DescribeEndpoint",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "InService",
|
||||
"matcher": "path",
|
||||
"state": "success",
|
||||
"argument": "EndpointStatus"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "EndpointStatus"
|
||||
},
|
||||
{
|
||||
"expected": "ValidationException",
|
||||
"matcher": "error",
|
||||
"state": "failure"
|
||||
}
|
||||
]
|
||||
},
|
||||
"EndpointDeleted": {
|
||||
"delay": 30,
|
||||
"maxAttempts": 60,
|
||||
"operation": "DescribeEndpoint",
|
||||
"acceptors": [
|
||||
{
|
||||
"expected": "ValidationException",
|
||||
"matcher": "error",
|
||||
"state": "success"
|
||||
},
|
||||
{
|
||||
"expected": "Failed",
|
||||
"matcher": "path",
|
||||
"state": "failure",
|
||||
"argument": "EndpointStatus"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user