Skip to content

Commit d56a60a

Browse files
author
awstools
committedMay 10, 2024
feat(client-greengrassv2): Mark ComponentVersion in ComponentDeploymentSpecification as required.
1 parent 0f5cee8 commit d56a60a

File tree

7 files changed

+122
-52
lines changed

7 files changed

+122
-52
lines changed
 

‎clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts

+3-39
Original file line numberDiff line numberDiff line change
@@ -50,45 +50,9 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers
5050
* <p>Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe
5151
* and artifacts from the Lambda function's deployment package. You can use this operation to
5252
* migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2.</p>
53-
* <p>This function only accepts Lambda functions that use the following runtimes:</p>
54-
* <ul>
55-
* <li>
56-
* <p>Python 2.7 – <code>python2.7</code>
57-
* </p>
58-
* </li>
59-
* <li>
60-
* <p>Python 3.7 – <code>python3.7</code>
61-
* </p>
62-
* </li>
63-
* <li>
64-
* <p>Python 3.8 – <code>python3.8</code>
65-
* </p>
66-
* </li>
67-
* <li>
68-
* <p>Python 3.9 – <code>python3.9</code>
69-
* </p>
70-
* </li>
71-
* <li>
72-
* <p>Java 8 – <code>java8</code>
73-
* </p>
74-
* </li>
75-
* <li>
76-
* <p>Java 11 – <code>java11</code>
77-
* </p>
78-
* </li>
79-
* <li>
80-
* <p>Node.js 10 – <code>nodejs10.x</code>
81-
* </p>
82-
* </li>
83-
* <li>
84-
* <p>Node.js 12 – <code>nodejs12.x</code>
85-
* </p>
86-
* </li>
87-
* <li>
88-
* <p>Node.js 14 – <code>nodejs14.x</code>
89-
* </p>
90-
* </li>
91-
* </ul>
53+
* <p>This function accepts Lambda functions in all supported versions of Python, Node.js,
54+
* and Java runtimes. IoT Greengrass doesn't apply any additional restrictions on deprecated Lambda
55+
* runtime versions.</p>
9256
* <p>To create a component from a Lambda function, specify <code>lambdaFunction</code> when
9357
* you call this operation.</p>
9458
* <note>

‎clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
4949
* deploymentName: "STRING_VALUE",
5050
* components: { // ComponentDeploymentSpecifications
5151
* "<keys>": { // ComponentDeploymentSpecification
52-
* componentVersion: "STRING_VALUE",
52+
* componentVersion: "STRING_VALUE", // required
5353
* configurationUpdate: { // ComponentConfigurationUpdate
5454
* merge: "STRING_VALUE",
5555
* reset: [ // ComponentConfigurationPathList

‎clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ export interface GetComponentVersionArtifactCommandOutput
4444
* const input = { // GetComponentVersionArtifactRequest
4545
* arn: "STRING_VALUE", // required
4646
* artifactName: "STRING_VALUE", // required
47+
* s3EndpointType: "REGIONAL" || "GLOBAL",
48+
* iotEndpointType: "fips" || "standard",
4749
* };
4850
* const command = new GetComponentVersionArtifactCommand(input);
4951
* const response = await client.send(command);

‎clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met
4949
* // iotJobArn: "STRING_VALUE",
5050
* // components: { // ComponentDeploymentSpecifications
5151
* // "<keys>": { // ComponentDeploymentSpecification
52-
* // componentVersion: "STRING_VALUE",
52+
* // componentVersion: "STRING_VALUE", // required
5353
* // configurationUpdate: { // ComponentConfigurationUpdate
5454
* // merge: "STRING_VALUE",
5555
* // reset: [ // ComponentConfigurationPathList

‎clients/client-greengrassv2/src/models/models_0.ts

+50-3
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ export interface ComponentDeploymentSpecification {
790790
* <p>The version of the component.</p>
791791
* @public
792792
*/
793-
componentVersion?: string;
793+
componentVersion: string | undefined;
794794

795795
/**
796796
* <p>The configuration updates to deploy for the component. You can define
@@ -2275,6 +2275,34 @@ export interface GetComponentResponse {
22752275
tags?: Record<string, string>;
22762276
}
22772277

2278+
/**
2279+
* @public
2280+
* @enum
2281+
*/
2282+
export const IotEndpointType = {
2283+
fips: "fips",
2284+
standard: "standard",
2285+
} as const;
2286+
2287+
/**
2288+
* @public
2289+
*/
2290+
export type IotEndpointType = (typeof IotEndpointType)[keyof typeof IotEndpointType];
2291+
2292+
/**
2293+
* @public
2294+
* @enum
2295+
*/
2296+
export const S3EndpointType = {
2297+
GLOBAL: "GLOBAL",
2298+
REGIONAL: "REGIONAL",
2299+
} as const;
2300+
2301+
/**
2302+
* @public
2303+
*/
2304+
export type S3EndpointType = (typeof S3EndpointType)[keyof typeof S3EndpointType];
2305+
22782306
/**
22792307
* @public
22802308
*/
@@ -2295,6 +2323,23 @@ export interface GetComponentVersionArtifactRequest {
22952323
* @public
22962324
*/
22972325
artifactName: string | undefined;
2326+
2327+
/**
2328+
* <p>Specifies the endpoint to use when getting Amazon S3 pre-signed URLs.</p>
2329+
* <p>All Amazon Web Services Regions except US East (N. Virginia) use <code>REGIONAL</code> in all cases.
2330+
* In the US East (N. Virginia) Region the default is <code>GLOBAL</code>, but you can change it
2331+
* to <code>REGIONAL</code> with this parameter.</p>
2332+
* @public
2333+
*/
2334+
s3EndpointType?: S3EndpointType;
2335+
2336+
/**
2337+
* <p>Determines if the Amazon S3 URL returned is a FIPS pre-signed URL endpoint.
2338+
* Specify <code>fips</code> if you want the returned Amazon S3 pre-signed URL to point to
2339+
* an Amazon S3 FIPS endpoint. If you don't specify a value, the default is <code>standard</code>.</p>
2340+
* @public
2341+
*/
2342+
iotEndpointType?: IotEndpointType;
22982343
}
22992344

23002345
/**
@@ -2760,6 +2805,8 @@ export interface ListDeploymentsRequest {
27602805

27612806
/**
27622807
* <p>The maximum number of results to be returned per paginated request.</p>
2808+
* <p>Default: <code>50</code>
2809+
* </p>
27632810
* @public
27642811
*/
27652812
maxResults?: number;
@@ -2964,8 +3011,8 @@ export interface InstalledComponent {
29643011

29653012
/**
29663013
* <p>The most recent deployment source that brought the component to the Greengrass core device. For
2967-
* a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for
2968-
* local deployments it will be <code>LOCAL</code>.</p>
3014+
* a thing group deployment or thing deployment, the source will be the ID of the last deployment
3015+
* that contained the component. For local deployments it will be <code>LOCAL</code>.</p>
29693016
* <note>
29703017
* <p>Any deployment will attempt to reinstall currently broken components on the device,
29713018
* which will update the last installation source.</p>

‎clients/client-greengrassv2/src/protocols/Aws_restJson1.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -398,12 +398,17 @@ export const se_GetComponentVersionArtifactCommand = async (
398398
context: __SerdeContext
399399
): Promise<__HttpRequest> => {
400400
const b = rb(input, context);
401-
const headers: any = {};
401+
const headers: any = map({}, isSerializableHeaderValue, {
402+
[_xaiet]: input[_iET]!,
403+
});
402404
b.bp("/greengrass/v2/components/{arn}/artifacts/{artifactName+}");
403405
b.p("arn", () => input.arn!, "{arn}", false);
404406
b.p("artifactName", () => input.artifactName!, "{artifactName+}", true);
407+
const query: any = map({
408+
[_sET]: [, input[_sET]!],
409+
});
405410
let body: any;
406-
b.m("GET").h(headers).b(body);
411+
b.m("GET").h(headers).q(query).b(body);
407412
return b.build();
408413
};
409414

@@ -2178,15 +2183,18 @@ const isSerializableHeaderValue = (value: any): boolean =>
21782183
(!Object.getOwnPropertyNames(value).includes("size") || value.size != 0);
21792184

21802185
const _hF = "historyFilter";
2186+
const _iET = "iotEndpointType";
21812187
const _mR = "maxResults";
21822188
const _nT = "nextToken";
21832189
const _pTA = "parentTargetArn";
21842190
const _rAS = "retryAfterSeconds";
21852191
const _rOF = "recipeOutputFormat";
21862192
const _ra = "retry-after";
21872193
const _s = "scope";
2194+
const _sET = "s3EndpointType";
21882195
const _st = "status";
21892196
const _tA = "targetArn";
21902197
const _tF = "topologyFilter";
21912198
const _tGA = "thingGroupArn";
21922199
const _tK = "tagKeys";
2200+
const _xaiet = "x-amz-iot-endpoint-type";

‎codegen/sdk-codegen/aws-models/greengrassv2.json

+55-6
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@
657657
"componentVersion": {
658658
"target": "com.amazonaws.greengrassv2#ComponentVersionString",
659659
"traits": {
660-
"smithy.api#documentation": "<p>The version of the component.</p>"
660+
"smithy.api#documentation": "<p>The version of the component.</p>",
661+
"smithy.api#required": {}
661662
}
662663
},
663664
"configurationUpdate": {
@@ -1045,7 +1046,7 @@
10451046
}
10461047
],
10471048
"traits": {
1048-
"smithy.api#documentation": "<p>Creates a component. Components are software that run on Greengrass core devices. After you\n develop and test a component on your core device, you can use this operation to upload your\n component to IoT Greengrass. Then, you can deploy the component to other core devices.</p>\n <p>You can use this operation to do the following:</p>\n <ul>\n <li>\n <p>\n <b>Create components from recipes</b>\n </p>\n <p>Create a component from a recipe, which is a file that defines the component's\n metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For\n more information, see <a href=\"https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html\">IoT Greengrass component recipe\n reference</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>\n <p>To create a component from a recipe, specify <code>inlineRecipe</code> when you call\n this operation.</p>\n </li>\n <li>\n <p>\n <b>Create components from Lambda functions</b>\n </p>\n <p>Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe\n and artifacts from the Lambda function's deployment package. You can use this operation to\n migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2.</p>\n <p>This function only accepts Lambda functions that use the following runtimes:</p>\n <ul>\n <li>\n <p>Python 2.7 – <code>python2.7</code>\n </p>\n </li>\n <li>\n <p>Python 3.7 – <code>python3.7</code>\n </p>\n </li>\n <li>\n <p>Python 3.8 – <code>python3.8</code>\n </p>\n </li>\n <li>\n <p>Python 3.9 – <code>python3.9</code>\n </p>\n </li>\n <li>\n <p>Java 8 – <code>java8</code>\n </p>\n </li>\n <li>\n <p>Java 11 – <code>java11</code>\n </p>\n </li>\n <li>\n <p>Node.js 10 – <code>nodejs10.x</code>\n </p>\n </li>\n <li>\n <p>Node.js 12 – <code>nodejs12.x</code>\n </p>\n </li>\n <li>\n <p>Node.js 14 – <code>nodejs14.x</code>\n </p>\n </li>\n </ul>\n <p>To create a component from a Lambda function, specify <code>lambdaFunction</code> when\n you call this operation.</p>\n <note>\n <p>IoT Greengrass currently supports Lambda functions on only Linux core devices.</p>\n </note>\n </li>\n </ul>",
1049+
"smithy.api#documentation": "<p>Creates a component. Components are software that run on Greengrass core devices. After you\n develop and test a component on your core device, you can use this operation to upload your\n component to IoT Greengrass. Then, you can deploy the component to other core devices.</p>\n <p>You can use this operation to do the following:</p>\n <ul>\n <li>\n <p>\n <b>Create components from recipes</b>\n </p>\n <p>Create a component from a recipe, which is a file that defines the component's\n metadata, parameters, dependencies, lifecycle, artifacts, and platform capability. For\n more information, see <a href=\"https://docs.aws.amazon.com/greengrass/v2/developerguide/component-recipe-reference.html\">IoT Greengrass component recipe\n reference</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>\n <p>To create a component from a recipe, specify <code>inlineRecipe</code> when you call\n this operation.</p>\n </li>\n <li>\n <p>\n <b>Create components from Lambda functions</b>\n </p>\n <p>Create a component from an Lambda function that runs on IoT Greengrass. This creates a recipe\n and artifacts from the Lambda function's deployment package. You can use this operation to\n migrate Lambda functions from IoT Greengrass V1 to IoT Greengrass V2.</p>\n <p>This function accepts Lambda functions in all supported versions of Python, Node.js,\n and Java runtimes. IoT Greengrass doesn't apply any additional restrictions on deprecated Lambda\n runtime versions.</p>\n <p>To create a component from a Lambda function, specify <code>lambdaFunction</code> when\n you call this operation.</p>\n <note>\n <p>IoT Greengrass currently supports Lambda functions on only Linux core devices.</p>\n </note>\n </li>\n </ul>",
10491050
"smithy.api#http": {
10501051
"method": "POST",
10511052
"uri": "/greengrass/v2/createComponentVersion",
@@ -2249,6 +2250,20 @@
22492250
"smithy.api#httpLabel": {},
22502251
"smithy.api#required": {}
22512252
}
2253+
},
2254+
"s3EndpointType": {
2255+
"target": "com.amazonaws.greengrassv2#S3EndpointType",
2256+
"traits": {
2257+
"smithy.api#documentation": "<p>Specifies the endpoint to use when getting Amazon S3 pre-signed URLs.</p>\n <p>All Amazon Web Services Regions except US East (N. Virginia) use <code>REGIONAL</code> in all cases.\n In the US East (N. Virginia) Region the default is <code>GLOBAL</code>, but you can change it\n to <code>REGIONAL</code> with this parameter.</p>",
2258+
"smithy.api#httpQuery": "s3EndpointType"
2259+
}
2260+
},
2261+
"iotEndpointType": {
2262+
"target": "com.amazonaws.greengrassv2#IotEndpointType",
2263+
"traits": {
2264+
"smithy.api#documentation": "<p>Determines if the Amazon S3 URL returned is a FIPS pre-signed URL endpoint. \n Specify <code>fips</code> if you want the returned Amazon S3 pre-signed URL to point to \n an Amazon S3 FIPS endpoint. If you don't specify a value, the default is <code>standard</code>.</p>",
2265+
"smithy.api#httpHeader": "x-amz-iot-endpoint-type"
2266+
}
22522267
}
22532268
},
22542269
"traits": {
@@ -2724,7 +2739,7 @@
27242739
"sdkId": "GreengrassV2",
27252740
"arnNamespace": "greengrass",
27262741
"cloudFormationName": "GreengrassV2",
2727-
"cloudTrailEventSource": "greengrassv2.amazonaws.com",
2742+
"cloudTrailEventSource": "greengrass.amazonaws.com",
27282743
"endpointPrefix": "greengrass"
27292744
},
27302745
"aws.auth#sigv4": {
@@ -3717,7 +3732,7 @@
37173732
"lastInstallationSource": {
37183733
"target": "com.amazonaws.greengrassv2#NonEmptyString",
37193734
"traits": {
3720-
"smithy.api#documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For\n a thing group deployment or thing deployment, the source will be the The ID of the deployment. and for\n local deployments it will be <code>LOCAL</code>.</p>\n <note>\n <p>Any deployment will attempt to reinstall currently broken components on the device,\n which will update the last installation source.</p>\n </note>"
3735+
"smithy.api#documentation": "<p>The most recent deployment source that brought the component to the Greengrass core device. For\n a thing group deployment or thing deployment, the source will be the ID of the last deployment\n that contained the component. For local deployments it will be <code>LOCAL</code>.</p>\n <note>\n <p>Any deployment will attempt to reinstall currently broken components on the device,\n which will update the last installation source.</p>\n </note>"
37213736
}
37223737
},
37233738
"lifecycleStatusCodes": {
@@ -4115,6 +4130,23 @@
41154130
}
41164131
}
41174132
},
4133+
"com.amazonaws.greengrassv2#IotEndpointType": {
4134+
"type": "enum",
4135+
"members": {
4136+
"fips": {
4137+
"target": "smithy.api#Unit",
4138+
"traits": {
4139+
"smithy.api#enumValue": "fips"
4140+
}
4141+
},
4142+
"standard": {
4143+
"target": "smithy.api#Unit",
4144+
"traits": {
4145+
"smithy.api#enumValue": "standard"
4146+
}
4147+
}
4148+
}
4149+
},
41184150
"com.amazonaws.greengrassv2#IsLatestForTarget": {
41194151
"type": "boolean",
41204152
"traits": {
@@ -4930,7 +4962,7 @@
49304962
"maxResults": {
49314963
"target": "com.amazonaws.greengrassv2#DefaultMaxResults",
49324964
"traits": {
4933-
"smithy.api#documentation": "<p>The maximum number of results to be returned per paginated request.</p>",
4965+
"smithy.api#documentation": "<p>The maximum number of results to be returned per paginated request.</p>\n <p>Default: <code>50</code>\n </p>",
49344966
"smithy.api#httpQuery": "maxResults"
49354967
}
49364968
},
@@ -5217,7 +5249,7 @@
52175249
"smithy.api#default": 0,
52185250
"smithy.api#range": {
52195251
"min": 0,
5220-
"max": 9223372036854772000
5252+
"max": 9223372036854771712
52215253
}
52225254
}
52235255
},
@@ -5465,6 +5497,23 @@
54655497
"smithy.api#default": 0
54665498
}
54675499
},
5500+
"com.amazonaws.greengrassv2#S3EndpointType": {
5501+
"type": "enum",
5502+
"members": {
5503+
"REGIONAL": {
5504+
"target": "smithy.api#Unit",
5505+
"traits": {
5506+
"smithy.api#enumValue": "REGIONAL"
5507+
}
5508+
},
5509+
"GLOBAL": {
5510+
"target": "smithy.api#Unit",
5511+
"traits": {
5512+
"smithy.api#enumValue": "GLOBAL"
5513+
}
5514+
}
5515+
}
5516+
},
54685517
"com.amazonaws.greengrassv2#ServiceQuotaExceededException": {
54695518
"type": "structure",
54705519
"members": {

0 commit comments

Comments
 (0)
Please sign in to comment.