@aws-sdk/client-greengrassv2 3.41.0 → 3.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/GreengrassV2.js +75 -0
  4. package/dist-cjs/commands/AssociateServiceRoleToAccountCommand.js +36 -0
  5. package/dist-cjs/commands/DisassociateServiceRoleFromAccountCommand.js +36 -0
  6. package/dist-cjs/commands/GetConnectivityInfoCommand.js +36 -0
  7. package/dist-cjs/commands/GetServiceRoleForAccountCommand.js +36 -0
  8. package/dist-cjs/commands/UpdateConnectivityInfoCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +5 -0
  10. package/dist-cjs/endpoints.js +1 -0
  11. package/dist-cjs/models/models_0.js +89 -23
  12. package/dist-cjs/protocols/Aws_restJson1.js +435 -1
  13. package/dist-cjs/runtimeConfig.js +0 -2
  14. package/dist-es/GreengrassV2.js +75 -0
  15. package/dist-es/commands/AssociateServiceRoleToAccountCommand.js +39 -0
  16. package/dist-es/commands/DisassociateServiceRoleFromAccountCommand.js +39 -0
  17. package/dist-es/commands/GetConnectivityInfoCommand.js +39 -0
  18. package/dist-es/commands/GetServiceRoleForAccountCommand.js +39 -0
  19. package/dist-es/commands/UpdateConnectivityInfoCommand.js +39 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/endpoints.js +1 -0
  22. package/dist-es/models/models_0.js +60 -16
  23. package/dist-es/protocols/Aws_restJson1.js +519 -0
  24. package/dist-es/runtimeConfig.js +0 -2
  25. package/dist-types/GreengrassV2.d.ts +59 -2
  26. package/dist-types/GreengrassV2Client.d.ts +7 -2
  27. package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +39 -0
  28. package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +1 -1
  29. package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +1 -1
  30. package/dist-types/commands/DisassociateServiceRoleFromAccountCommand.d.ts +38 -0
  31. package/dist-types/commands/GetConnectivityInfoCommand.d.ts +41 -0
  32. package/dist-types/commands/GetServiceRoleForAccountCommand.d.ts +38 -0
  33. package/dist-types/commands/UpdateConnectivityInfoCommand.d.ts +41 -0
  34. package/dist-types/commands/index.d.ts +5 -0
  35. package/dist-types/models/models_0.d.ts +229 -65
  36. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  37. package/dist-types/ts3.4/GreengrassV2.d.ts +25 -0
  38. package/dist-types/ts3.4/GreengrassV2Client.d.ts +7 -2
  39. package/dist-types/ts3.4/commands/AssociateServiceRoleToAccountCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/UpdateConnectivityInfoCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +139 -40
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  47. package/package.json +36 -43
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1AssociateServiceRoleToAccountCommand, serializeAws_restJson1AssociateServiceRoleToAccountCommand, } from "../protocols/Aws_restJson1";
6
+ var AssociateServiceRoleToAccountCommand = (function (_super) {
7
+ __extends(AssociateServiceRoleToAccountCommand, _super);
8
+ function AssociateServiceRoleToAccountCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ AssociateServiceRoleToAccountCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GreengrassV2Client";
18
+ var commandName = "AssociateServiceRoleToAccountCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: AssociateServiceRoleToAccountRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: AssociateServiceRoleToAccountResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ AssociateServiceRoleToAccountCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1AssociateServiceRoleToAccountCommand(input, context);
33
+ };
34
+ AssociateServiceRoleToAccountCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1AssociateServiceRoleToAccountCommand(output, context);
36
+ };
37
+ return AssociateServiceRoleToAccountCommand;
38
+ }($Command));
39
+ export { AssociateServiceRoleToAccountCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { DisassociateServiceRoleFromAccountRequest, DisassociateServiceRoleFromAccountResponse, } from "../models/models_0";
5
+ import { deserializeAws_restJson1DisassociateServiceRoleFromAccountCommand, serializeAws_restJson1DisassociateServiceRoleFromAccountCommand, } from "../protocols/Aws_restJson1";
6
+ var DisassociateServiceRoleFromAccountCommand = (function (_super) {
7
+ __extends(DisassociateServiceRoleFromAccountCommand, _super);
8
+ function DisassociateServiceRoleFromAccountCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ DisassociateServiceRoleFromAccountCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GreengrassV2Client";
18
+ var commandName = "DisassociateServiceRoleFromAccountCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: DisassociateServiceRoleFromAccountRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: DisassociateServiceRoleFromAccountResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DisassociateServiceRoleFromAccountCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1DisassociateServiceRoleFromAccountCommand(input, context);
33
+ };
34
+ DisassociateServiceRoleFromAccountCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1DisassociateServiceRoleFromAccountCommand(output, context);
36
+ };
37
+ return DisassociateServiceRoleFromAccountCommand;
38
+ }($Command));
39
+ export { DisassociateServiceRoleFromAccountCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1GetConnectivityInfoCommand, serializeAws_restJson1GetConnectivityInfoCommand, } from "../protocols/Aws_restJson1";
6
+ var GetConnectivityInfoCommand = (function (_super) {
7
+ __extends(GetConnectivityInfoCommand, _super);
8
+ function GetConnectivityInfoCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ GetConnectivityInfoCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GreengrassV2Client";
18
+ var commandName = "GetConnectivityInfoCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: GetConnectivityInfoRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: GetConnectivityInfoResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetConnectivityInfoCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1GetConnectivityInfoCommand(input, context);
33
+ };
34
+ GetConnectivityInfoCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1GetConnectivityInfoCommand(output, context);
36
+ };
37
+ return GetConnectivityInfoCommand;
38
+ }($Command));
39
+ export { GetConnectivityInfoCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { GetServiceRoleForAccountRequest, GetServiceRoleForAccountResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1GetServiceRoleForAccountCommand, serializeAws_restJson1GetServiceRoleForAccountCommand, } from "../protocols/Aws_restJson1";
6
+ var GetServiceRoleForAccountCommand = (function (_super) {
7
+ __extends(GetServiceRoleForAccountCommand, _super);
8
+ function GetServiceRoleForAccountCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ GetServiceRoleForAccountCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GreengrassV2Client";
18
+ var commandName = "GetServiceRoleForAccountCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: GetServiceRoleForAccountRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: GetServiceRoleForAccountResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetServiceRoleForAccountCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1GetServiceRoleForAccountCommand(input, context);
33
+ };
34
+ GetServiceRoleForAccountCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1GetServiceRoleForAccountCommand(output, context);
36
+ };
37
+ return GetServiceRoleForAccountCommand;
38
+ }($Command));
39
+ export { GetServiceRoleForAccountCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1UpdateConnectivityInfoCommand, serializeAws_restJson1UpdateConnectivityInfoCommand, } from "../protocols/Aws_restJson1";
6
+ var UpdateConnectivityInfoCommand = (function (_super) {
7
+ __extends(UpdateConnectivityInfoCommand, _super);
8
+ function UpdateConnectivityInfoCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ UpdateConnectivityInfoCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "GreengrassV2Client";
18
+ var commandName = "UpdateConnectivityInfoCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: UpdateConnectivityInfoRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: UpdateConnectivityInfoResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ UpdateConnectivityInfoCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1UpdateConnectivityInfoCommand(input, context);
33
+ };
34
+ UpdateConnectivityInfoCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1UpdateConnectivityInfoCommand(output, context);
36
+ };
37
+ return UpdateConnectivityInfoCommand;
38
+ }($Command));
39
+ export { UpdateConnectivityInfoCommand };
@@ -1,3 +1,4 @@
1
+ export * from "./AssociateServiceRoleToAccountCommand";
1
2
  export * from "./BatchAssociateClientDeviceWithCoreDeviceCommand";
2
3
  export * from "./BatchDisassociateClientDeviceFromCoreDeviceCommand";
3
4
  export * from "./CancelDeploymentCommand";
@@ -6,10 +7,13 @@ export * from "./CreateDeploymentCommand";
6
7
  export * from "./DeleteComponentCommand";
7
8
  export * from "./DeleteCoreDeviceCommand";
8
9
  export * from "./DescribeComponentCommand";
10
+ export * from "./DisassociateServiceRoleFromAccountCommand";
9
11
  export * from "./GetComponentCommand";
10
12
  export * from "./GetComponentVersionArtifactCommand";
13
+ export * from "./GetConnectivityInfoCommand";
11
14
  export * from "./GetCoreDeviceCommand";
12
15
  export * from "./GetDeploymentCommand";
16
+ export * from "./GetServiceRoleForAccountCommand";
13
17
  export * from "./ListClientDevicesAssociatedWithCoreDeviceCommand";
14
18
  export * from "./ListComponentVersionsCommand";
15
19
  export * from "./ListComponentsCommand";
@@ -21,3 +25,4 @@ export * from "./ListTagsForResourceCommand";
21
25
  export * from "./ResolveComponentCandidatesCommand";
22
26
  export * from "./TagResourceCommand";
23
27
  export * from "./UntagResourceCommand";
28
+ export * from "./UpdateConnectivityInfoCommand";
@@ -53,6 +53,7 @@ var partitionHash = {
53
53
  "ap-south-1",
54
54
  "ap-southeast-1",
55
55
  "ap-southeast-2",
56
+ "ap-southeast-3",
56
57
  "ca-central-1",
57
58
  "eu-central-1",
58
59
  "eu-north-1",
@@ -15,26 +15,18 @@ export var AssociatedClientDevice;
15
15
  (function (AssociatedClientDevice) {
16
16
  AssociatedClientDevice.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
17
17
  })(AssociatedClientDevice || (AssociatedClientDevice = {}));
18
- export var BatchAssociateClientDeviceWithCoreDeviceRequest;
19
- (function (BatchAssociateClientDeviceWithCoreDeviceRequest) {
20
- BatchAssociateClientDeviceWithCoreDeviceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
21
- })(BatchAssociateClientDeviceWithCoreDeviceRequest || (BatchAssociateClientDeviceWithCoreDeviceRequest = {}));
22
- export var BatchAssociateClientDeviceWithCoreDeviceResponse;
23
- (function (BatchAssociateClientDeviceWithCoreDeviceResponse) {
24
- BatchAssociateClientDeviceWithCoreDeviceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
- })(BatchAssociateClientDeviceWithCoreDeviceResponse || (BatchAssociateClientDeviceWithCoreDeviceResponse = {}));
18
+ export var AssociateServiceRoleToAccountRequest;
19
+ (function (AssociateServiceRoleToAccountRequest) {
20
+ AssociateServiceRoleToAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
21
+ })(AssociateServiceRoleToAccountRequest || (AssociateServiceRoleToAccountRequest = {}));
22
+ export var AssociateServiceRoleToAccountResponse;
23
+ (function (AssociateServiceRoleToAccountResponse) {
24
+ AssociateServiceRoleToAccountResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
25
+ })(AssociateServiceRoleToAccountResponse || (AssociateServiceRoleToAccountResponse = {}));
26
26
  export var InternalServerException;
27
27
  (function (InternalServerException) {
28
28
  InternalServerException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
29
29
  })(InternalServerException || (InternalServerException = {}));
30
- export var ResourceNotFoundException;
31
- (function (ResourceNotFoundException) {
32
- ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
33
- })(ResourceNotFoundException || (ResourceNotFoundException = {}));
34
- export var ThrottlingException;
35
- (function (ThrottlingException) {
36
- ThrottlingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
37
- })(ThrottlingException || (ThrottlingException = {}));
38
30
  export var ValidationExceptionField;
39
31
  (function (ValidationExceptionField) {
40
32
  ValidationExceptionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -50,6 +42,22 @@ export var ValidationException;
50
42
  (function (ValidationException) {
51
43
  ValidationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
52
44
  })(ValidationException || (ValidationException = {}));
45
+ export var BatchAssociateClientDeviceWithCoreDeviceRequest;
46
+ (function (BatchAssociateClientDeviceWithCoreDeviceRequest) {
47
+ BatchAssociateClientDeviceWithCoreDeviceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
48
+ })(BatchAssociateClientDeviceWithCoreDeviceRequest || (BatchAssociateClientDeviceWithCoreDeviceRequest = {}));
49
+ export var BatchAssociateClientDeviceWithCoreDeviceResponse;
50
+ (function (BatchAssociateClientDeviceWithCoreDeviceResponse) {
51
+ BatchAssociateClientDeviceWithCoreDeviceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
52
+ })(BatchAssociateClientDeviceWithCoreDeviceResponse || (BatchAssociateClientDeviceWithCoreDeviceResponse = {}));
53
+ export var ResourceNotFoundException;
54
+ (function (ResourceNotFoundException) {
55
+ ResourceNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
56
+ })(ResourceNotFoundException || (ResourceNotFoundException = {}));
57
+ export var ThrottlingException;
58
+ (function (ThrottlingException) {
59
+ ThrottlingException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
60
+ })(ThrottlingException || (ThrottlingException = {}));
53
61
  export var DisassociateClientDeviceFromCoreDeviceEntry;
54
62
  (function (DisassociateClientDeviceFromCoreDeviceEntry) {
55
63
  DisassociateClientDeviceFromCoreDeviceEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -140,6 +148,10 @@ export var ComponentVisibilityScope;
140
148
  ComponentVisibilityScope["PRIVATE"] = "PRIVATE";
141
149
  ComponentVisibilityScope["PUBLIC"] = "PUBLIC";
142
150
  })(ComponentVisibilityScope || (ComponentVisibilityScope = {}));
151
+ export var ConnectivityInfo;
152
+ (function (ConnectivityInfo) {
153
+ ConnectivityInfo.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
+ })(ConnectivityInfo || (ConnectivityInfo = {}));
143
155
  export var CoreDeviceStatus;
144
156
  (function (CoreDeviceStatus) {
145
157
  CoreDeviceStatus["HEALTHY"] = "HEALTHY";
@@ -315,6 +327,14 @@ export var DescribeComponentResponse;
315
327
  (function (DescribeComponentResponse) {
316
328
  DescribeComponentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
329
  })(DescribeComponentResponse || (DescribeComponentResponse = {}));
330
+ export var DisassociateServiceRoleFromAccountRequest;
331
+ (function (DisassociateServiceRoleFromAccountRequest) {
332
+ DisassociateServiceRoleFromAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
+ })(DisassociateServiceRoleFromAccountRequest || (DisassociateServiceRoleFromAccountRequest = {}));
334
+ export var DisassociateServiceRoleFromAccountResponse;
335
+ (function (DisassociateServiceRoleFromAccountResponse) {
336
+ DisassociateServiceRoleFromAccountResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
+ })(DisassociateServiceRoleFromAccountResponse || (DisassociateServiceRoleFromAccountResponse = {}));
318
338
  export var EffectiveDeploymentExecutionStatus;
319
339
  (function (EffectiveDeploymentExecutionStatus) {
320
340
  EffectiveDeploymentExecutionStatus["CANCELED"] = "CANCELED";
@@ -350,6 +370,14 @@ export var GetComponentVersionArtifactResponse;
350
370
  (function (GetComponentVersionArtifactResponse) {
351
371
  GetComponentVersionArtifactResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
372
  })(GetComponentVersionArtifactResponse || (GetComponentVersionArtifactResponse = {}));
373
+ export var GetConnectivityInfoRequest;
374
+ (function (GetConnectivityInfoRequest) {
375
+ GetConnectivityInfoRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
+ })(GetConnectivityInfoRequest || (GetConnectivityInfoRequest = {}));
377
+ export var GetConnectivityInfoResponse;
378
+ (function (GetConnectivityInfoResponse) {
379
+ GetConnectivityInfoResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
+ })(GetConnectivityInfoResponse || (GetConnectivityInfoResponse = {}));
353
381
  export var GetCoreDeviceRequest;
354
382
  (function (GetCoreDeviceRequest) {
355
383
  GetCoreDeviceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -366,6 +394,14 @@ export var GetDeploymentResponse;
366
394
  (function (GetDeploymentResponse) {
367
395
  GetDeploymentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
396
  })(GetDeploymentResponse || (GetDeploymentResponse = {}));
397
+ export var GetServiceRoleForAccountRequest;
398
+ (function (GetServiceRoleForAccountRequest) {
399
+ GetServiceRoleForAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
400
+ })(GetServiceRoleForAccountRequest || (GetServiceRoleForAccountRequest = {}));
401
+ export var GetServiceRoleForAccountResponse;
402
+ (function (GetServiceRoleForAccountResponse) {
403
+ GetServiceRoleForAccountResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
404
+ })(GetServiceRoleForAccountResponse || (GetServiceRoleForAccountResponse = {}));
369
405
  export var ListClientDevicesAssociatedWithCoreDeviceRequest;
370
406
  (function (ListClientDevicesAssociatedWithCoreDeviceRequest) {
371
407
  ListClientDevicesAssociatedWithCoreDeviceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -473,3 +509,11 @@ export var UntagResourceResponse;
473
509
  (function (UntagResourceResponse) {
474
510
  UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
475
511
  })(UntagResourceResponse || (UntagResourceResponse = {}));
512
+ export var UpdateConnectivityInfoRequest;
513
+ (function (UpdateConnectivityInfoRequest) {
514
+ UpdateConnectivityInfoRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
515
+ })(UpdateConnectivityInfoRequest || (UpdateConnectivityInfoRequest = {}));
516
+ export var UpdateConnectivityInfoResponse;
517
+ (function (UpdateConnectivityInfoResponse) {
518
+ UpdateConnectivityInfoResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
519
+ })(UpdateConnectivityInfoResponse || (UpdateConnectivityInfoResponse = {}));