Skip to content

Commit 6b24aec

Browse files
Update SDK models
1 parent acb6a8a commit 6b24aec

File tree

342 files changed

+13457
-2901
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+13457
-2901
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[workspace]
22
resolver = "2"
33
exclude = [
4-
"examples/test-utils",
4+
"examples/cross_service",
55
"examples/webassembly",
66
"examples/examples",
7-
"examples/cross_service",
7+
"examples/test-utils",
88
"examples/lambda",
99
"tests/webassembly",
1010
"tests/no-default-features"

aws-models/amplify.json

Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2388,7 +2388,7 @@
23882388
}
23892389
],
23902390
"traits": {
2391-
"smithy.api#documentation": "<p>Creates a deployment for a manually deployed Amplify app. Manually deployed apps are\n not connected to a repository. </p>\n <p>The maximum duration between the <code>CreateDeployment</code> call and the\n <code>StartDeployment</code> call cannot exceed 8 hours. If the duration exceeds 8\n hours, the <code>StartDeployment</code> call and the associated <code>Job</code> will\n fail.</p>",
2391+
"smithy.api#documentation": "<p>Creates a deployment for a manually deployed Amplify app. Manually deployed apps are\n not connected to a Git repository. </p>\n <p>The maximum duration between the <code>CreateDeployment</code> call and the\n <code>StartDeployment</code> call cannot exceed 8 hours. If the duration exceeds 8\n hours, the <code>StartDeployment</code> call and the associated <code>Job</code> will\n fail.</p>",
23922392
"smithy.api#http": {
23932393
"method": "POST",
23942394
"uri": "/apps/{appId}/branches/{branchName}/deployments",
@@ -4280,9 +4280,21 @@
42804280
"jobType": {
42814281
"target": "com.amazonaws.amplify#JobType",
42824282
"traits": {
4283-
"smithy.api#documentation": "<p> The type for the job. If the value is <code>RELEASE</code>, the job was manually\n released from its source by using the <code>StartJob</code> API. If the value is\n <code>RETRY</code>, the job was manually retried using the <code>StartJob</code>\n API. If the value is <code>WEB_HOOK</code>, the job was automatically triggered by\n webhooks. </p>",
4283+
"smithy.api#documentation": "<p> The type for the job. If the value is <code>RELEASE</code>, the job was manually\n released from its source by using the <code>StartJob</code> API. This value is available only for apps\n that are connected to a repository.</p>\n <p>If the value is <code>RETRY</code>, the job was manually retried using the <code>StartJob</code>\n API. If the value is <code>WEB_HOOK</code>, the job was automatically triggered by\n webhooks. If the value is <code>MANUAL</code>, the job is for a manually deployed app. Manually deployed apps are not connected to a Git repository.</p>",
42844284
"smithy.api#required": {}
42854285
}
4286+
},
4287+
"sourceUrl": {
4288+
"target": "com.amazonaws.amplify#SourceUrl",
4289+
"traits": {
4290+
"smithy.api#documentation": "<p>The source URL for the files to deploy. The source URL can be either an HTTP GET URL that is publicly accessible and\n downloads a single .zip file, or an Amazon S3 bucket and prefix.</p>"
4291+
}
4292+
},
4293+
"sourceUrlType": {
4294+
"target": "com.amazonaws.amplify#SourceUrlType",
4295+
"traits": {
4296+
"smithy.api#documentation": "<p>The type of source specified by the <code>sourceURL</code>.\n If the value is <code>ZIP</code>, the source is a .zip file.\n If the value is <code>BUCKET_PREFIX</code>, the source is an Amazon S3 bucket and\n prefix. If no value is specified, the default is <code>ZIP</code>.</p>"
4297+
}
42864298
}
42874299
},
42884300
"traits": {
@@ -5279,7 +5291,24 @@
52795291
"min": 0,
52805292
"max": 3000
52815293
},
5282-
"smithy.api#pattern": "^(?s)"
5294+
"smithy.api#pattern": "^(s3|https|http)://"
5295+
}
5296+
},
5297+
"com.amazonaws.amplify#SourceUrlType": {
5298+
"type": "enum",
5299+
"members": {
5300+
"ZIP": {
5301+
"target": "smithy.api#Unit",
5302+
"traits": {
5303+
"smithy.api#enumValue": "ZIP"
5304+
}
5305+
},
5306+
"BUCKET_PREFIX": {
5307+
"target": "smithy.api#Unit",
5308+
"traits": {
5309+
"smithy.api#enumValue": "BUCKET_PREFIX"
5310+
}
5311+
}
52835312
}
52845313
},
52855314
"com.amazonaws.amplify#StackArn": {
@@ -5363,7 +5392,7 @@
53635392
}
53645393
],
53655394
"traits": {
5366-
"smithy.api#documentation": "<p>Starts a deployment for a manually deployed app. Manually deployed apps are not\n connected to a repository. </p>\n <p>The maximum duration between the <code>CreateDeployment</code> call and the\n <code>StartDeployment</code> call cannot exceed 8 hours. If the duration exceeds 8\n hours, the <code>StartDeployment</code> call and the associated <code>Job</code> will\n fail.</p>",
5395+
"smithy.api#documentation": "<p>Starts a deployment for a manually deployed app. Manually deployed apps are not\n connected to a Git repository. </p>\n <p>The maximum duration between the <code>CreateDeployment</code> call and the\n <code>StartDeployment</code> call cannot exceed 8 hours. If the duration exceeds 8\n hours, the <code>StartDeployment</code> call and the associated <code>Job</code> will\n fail.</p>",
53675396
"smithy.api#http": {
53685397
"method": "POST",
53695398
"uri": "/apps/{appId}/branches/{branchName}/deployments/start",
@@ -5385,21 +5414,27 @@
53855414
"branchName": {
53865415
"target": "com.amazonaws.amplify#BranchName",
53875416
"traits": {
5388-
"smithy.api#documentation": "<p>The name of the branch to use for the job. </p>",
5417+
"smithy.api#documentation": "<p>The name of the branch to use for the deployment job. </p>",
53895418
"smithy.api#httpLabel": {},
53905419
"smithy.api#required": {}
53915420
}
53925421
},
53935422
"jobId": {
53945423
"target": "com.amazonaws.amplify#JobId",
53955424
"traits": {
5396-
"smithy.api#documentation": "<p>The job ID for this deployment, generated by the create deployment request. </p>"
5425+
"smithy.api#documentation": "<p>The job ID for this deployment that is generated by the <code>CreateDeployment</code> request. </p>"
53975426
}
53985427
},
53995428
"sourceUrl": {
54005429
"target": "com.amazonaws.amplify#SourceUrl",
54015430
"traits": {
5402-
"smithy.api#documentation": "<p>The source URL for this deployment, used when calling start deployment without create\n deployment. The source URL can be any HTTP GET URL that is publicly accessible and\n downloads a single .zip file. </p>"
5431+
"smithy.api#documentation": "<p>The source URL for the deployment that is used when calling <code>StartDeployment</code> without <code>CreateDeployment</code>. The source URL can be either an HTTP GET URL that is publicly accessible and\n downloads a single .zip file, or an Amazon S3 bucket and prefix.</p>"
5432+
}
5433+
},
5434+
"sourceUrlType": {
5435+
"target": "com.amazonaws.amplify#SourceUrlType",
5436+
"traits": {
5437+
"smithy.api#documentation": "<p>The type of source specified by the <code>sourceURL</code>.\n If the value is <code>ZIP</code>, the source is a .zip file.\n If the value is <code>BUCKET_PREFIX</code>, the source is an Amazon S3 bucket and\n prefix. If no value is specified, the default is <code>ZIP</code>.</p>"
54035438
}
54045439
}
54055440
},

0 commit comments

Comments
 (0)