@aws-sdk/client-networkmanager 3.935.0 → 3.937.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.
- package/README.md +56 -0
- package/dist-cjs/index.js +527 -31
- package/dist-es/NetworkManager.js +14 -0
- package/dist-es/commands/CreateCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/DeleteCoreNetworkPrefixListAssociationCommand.js +16 -0
- package/dist-es/commands/ListAttachmentRoutingPolicyAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkPrefixListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListCoreNetworkRoutingInformationCommand.js +16 -0
- package/dist-es/commands/PutAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/RemoveAttachmentRoutingPolicyLabelCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +10 -0
- package/dist-es/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkPrefixListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListCoreNetworkRoutingInformationPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +409 -31
- package/dist-types/NetworkManager.d.ts +49 -0
- package/dist-types/NetworkManagerClient.d.ts +9 -2
- package/dist-types/commands/AcceptAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateConnectAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateDirectConnectGatewayAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateSiteToSiteVpnAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransitGatewayRouteTableAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/CreateVpcAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetCoreNetworkChangeEventsCommand.d.ts +13 -1
- package/dist-types/commands/GetCoreNetworkChangeSetCommand.d.ts +30 -4
- package/dist-types/commands/GetDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetSiteToSiteVpnAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetTransitGatewayRouteTableAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/GetVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +104 -0
- package/dist-types/commands/ListAttachmentsCommand.d.ts +1 -1
- package/dist-types/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +99 -0
- package/dist-types/commands/ListCoreNetworkRoutingInformationCommand.d.ts +131 -0
- package/dist-types/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +101 -0
- package/dist-types/commands/RejectAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +99 -0
- package/dist-types/commands/UpdateDirectConnectGatewayAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcAttachmentCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +506 -1
- package/dist-types/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +30 -0
- package/dist-types/ts3.4/NetworkManager.d.ts +155 -0
- package/dist-types/ts3.4/NetworkManagerClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCoreNetworkPrefixListAssociationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAttachmentRoutingPolicyAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkPrefixListAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCoreNetworkRoutingInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveAttachmentRoutingPolicyLabelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +126 -0
- package/dist-types/ts3.4/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkPrefixListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCoreNetworkRoutingInformationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +30 -0
- package/package.json +12 -12
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { RemoveAttachmentRoutingPolicyLabelRequest, RemoveAttachmentRoutingPolicyLabelResponse } from "../models/models_0";
|
|
4
|
+
import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link RemoveAttachmentRoutingPolicyLabelCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface RemoveAttachmentRoutingPolicyLabelCommandInput extends RemoveAttachmentRoutingPolicyLabelRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link RemoveAttachmentRoutingPolicyLabelCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface RemoveAttachmentRoutingPolicyLabelCommandOutput extends RemoveAttachmentRoutingPolicyLabelResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const RemoveAttachmentRoutingPolicyLabelCommand_base: {
|
|
25
|
+
new (input: RemoveAttachmentRoutingPolicyLabelCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveAttachmentRoutingPolicyLabelCommandInput, RemoveAttachmentRoutingPolicyLabelCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: RemoveAttachmentRoutingPolicyLabelCommandInput): import("@smithy/smithy-client").CommandImpl<RemoveAttachmentRoutingPolicyLabelCommandInput, RemoveAttachmentRoutingPolicyLabelCommandOutput, NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Removes a routing policy label from an attachment.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { NetworkManagerClient, RemoveAttachmentRoutingPolicyLabelCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import
|
|
35
|
+
* // const { NetworkManagerClient, RemoveAttachmentRoutingPolicyLabelCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import
|
|
36
|
+
* // import type { NetworkManagerClientConfig } from "@aws-sdk/client-networkmanager";
|
|
37
|
+
* const config = {}; // type is NetworkManagerClientConfig
|
|
38
|
+
* const client = new NetworkManagerClient(config);
|
|
39
|
+
* const input = { // RemoveAttachmentRoutingPolicyLabelRequest
|
|
40
|
+
* CoreNetworkId: "STRING_VALUE", // required
|
|
41
|
+
* AttachmentId: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new RemoveAttachmentRoutingPolicyLabelCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // RemoveAttachmentRoutingPolicyLabelResponse
|
|
46
|
+
* // CoreNetworkId: "STRING_VALUE",
|
|
47
|
+
* // AttachmentId: "STRING_VALUE",
|
|
48
|
+
* // RoutingPolicyLabel: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param RemoveAttachmentRoutingPolicyLabelCommandInput - {@link RemoveAttachmentRoutingPolicyLabelCommandInput}
|
|
54
|
+
* @returns {@link RemoveAttachmentRoutingPolicyLabelCommandOutput}
|
|
55
|
+
* @see {@link RemoveAttachmentRoutingPolicyLabelCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link RemoveAttachmentRoutingPolicyLabelCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link NetworkManagerClientResolvedConfig | config} for NetworkManagerClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
60
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ConflictException} (client fault)
|
|
63
|
+
* <p>There was a conflict processing the request. Updating or deleting the resource can
|
|
64
|
+
* cause an inconsistent state.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServerException} (server fault)
|
|
67
|
+
* <p>The request has failed due to an internal error.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>The specified resource could not be found.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
73
|
+
* <p>A service limit was exceeded.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to request throttling.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>The input fails to satisfy the constraints.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link NetworkManagerServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from NetworkManager service.</p>
|
|
83
|
+
*
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class RemoveAttachmentRoutingPolicyLabelCommand extends RemoveAttachmentRoutingPolicyLabelCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: RemoveAttachmentRoutingPolicyLabelRequest;
|
|
92
|
+
output: RemoveAttachmentRoutingPolicyLabelResponse;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: RemoveAttachmentRoutingPolicyLabelCommandInput;
|
|
96
|
+
output: RemoveAttachmentRoutingPolicyLabelCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -91,7 +91,7 @@ declare const UpdateDirectConnectGatewayAttachmentCommand_base: {
|
|
|
91
91
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
92
92
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
93
93
|
* // { // AttachmentError
|
|
94
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
94
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
95
95
|
* // Message: "STRING_VALUE",
|
|
96
96
|
* // ResourceArn: "STRING_VALUE",
|
|
97
97
|
* // RequestId: "STRING_VALUE",
|
|
@@ -100,7 +100,7 @@ declare const UpdateVpcAttachmentCommand_base: {
|
|
|
100
100
|
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
101
101
|
* // LastModificationErrors: [ // AttachmentErrorList
|
|
102
102
|
* // { // AttachmentError
|
|
103
|
-
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",
|
|
103
|
+
* // Code: "VPC_NOT_FOUND" || "SUBNET_NOT_FOUND" || "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE" || "SUBNET_NO_FREE_ADDRESSES" || "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE" || "SUBNET_NO_IPV6_CIDRS" || "VPN_CONNECTION_NOT_FOUND" || "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED" || "DIRECT_CONNECT_GATEWAY_NOT_FOUND" || "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS" || "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF" || "VPN_EXISTING_ASSOCIATIONS" || "VPC_UNSUPPORTED_FEATURES",
|
|
104
104
|
* // Message: "STRING_VALUE",
|
|
105
105
|
* // ResourceArn: "STRING_VALUE",
|
|
106
106
|
* // RequestId: "STRING_VALUE",
|
|
@@ -7,6 +7,7 @@ export * from "./CreateConnectAttachmentCommand";
|
|
|
7
7
|
export * from "./CreateConnectPeerCommand";
|
|
8
8
|
export * from "./CreateConnectionCommand";
|
|
9
9
|
export * from "./CreateCoreNetworkCommand";
|
|
10
|
+
export * from "./CreateCoreNetworkPrefixListAssociationCommand";
|
|
10
11
|
export * from "./CreateDeviceCommand";
|
|
11
12
|
export * from "./CreateDirectConnectGatewayAttachmentCommand";
|
|
12
13
|
export * from "./CreateGlobalNetworkCommand";
|
|
@@ -21,6 +22,7 @@ export * from "./DeleteConnectPeerCommand";
|
|
|
21
22
|
export * from "./DeleteConnectionCommand";
|
|
22
23
|
export * from "./DeleteCoreNetworkCommand";
|
|
23
24
|
export * from "./DeleteCoreNetworkPolicyVersionCommand";
|
|
25
|
+
export * from "./DeleteCoreNetworkPrefixListAssociationCommand";
|
|
24
26
|
export * from "./DeleteDeviceCommand";
|
|
25
27
|
export * from "./DeleteGlobalNetworkCommand";
|
|
26
28
|
export * from "./DeleteLinkCommand";
|
|
@@ -61,17 +63,22 @@ export * from "./GetTransitGatewayPeeringCommand";
|
|
|
61
63
|
export * from "./GetTransitGatewayRegistrationsCommand";
|
|
62
64
|
export * from "./GetTransitGatewayRouteTableAttachmentCommand";
|
|
63
65
|
export * from "./GetVpcAttachmentCommand";
|
|
66
|
+
export * from "./ListAttachmentRoutingPolicyAssociationsCommand";
|
|
64
67
|
export * from "./ListAttachmentsCommand";
|
|
65
68
|
export * from "./ListConnectPeersCommand";
|
|
66
69
|
export * from "./ListCoreNetworkPolicyVersionsCommand";
|
|
70
|
+
export * from "./ListCoreNetworkPrefixListAssociationsCommand";
|
|
71
|
+
export * from "./ListCoreNetworkRoutingInformationCommand";
|
|
67
72
|
export * from "./ListCoreNetworksCommand";
|
|
68
73
|
export * from "./ListOrganizationServiceAccessStatusCommand";
|
|
69
74
|
export * from "./ListPeeringsCommand";
|
|
70
75
|
export * from "./ListTagsForResourceCommand";
|
|
76
|
+
export * from "./PutAttachmentRoutingPolicyLabelCommand";
|
|
71
77
|
export * from "./PutCoreNetworkPolicyCommand";
|
|
72
78
|
export * from "./PutResourcePolicyCommand";
|
|
73
79
|
export * from "./RegisterTransitGatewayCommand";
|
|
74
80
|
export * from "./RejectAttachmentCommand";
|
|
81
|
+
export * from "./RemoveAttachmentRoutingPolicyLabelCommand";
|
|
75
82
|
export * from "./RestoreCoreNetworkPolicyVersionCommand";
|
|
76
83
|
export * from "./StartOrganizationServiceAccessUpdateCommand";
|
|
77
84
|
export * from "./StartRouteAnalysisCommand";
|
|
@@ -28,7 +28,9 @@ export declare const AttachmentErrorCode: {
|
|
|
28
28
|
readonly SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS";
|
|
29
29
|
readonly SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE";
|
|
30
30
|
readonly VPC_NOT_FOUND: "VPC_NOT_FOUND";
|
|
31
|
+
readonly VPC_UNSUPPORTED_FEATURES: "VPC_UNSUPPORTED_FEATURES";
|
|
31
32
|
readonly VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND";
|
|
33
|
+
readonly VPN_EXISTING_ASSOCIATIONS: "VPN_EXISTING_ASSOCIATIONS";
|
|
32
34
|
};
|
|
33
35
|
/**
|
|
34
36
|
* @public
|
|
@@ -179,6 +181,10 @@ export declare const ChangeType: {
|
|
|
179
181
|
readonly CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE";
|
|
180
182
|
readonly CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT";
|
|
181
183
|
readonly NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP";
|
|
184
|
+
readonly ROUTING_POLICY: "ROUTING_POLICY";
|
|
185
|
+
readonly ROUTING_POLICY_ATTACHMENT_ASSOCIATION: "ROUTING_POLICY_ATTACHMENT_ASSOCIATION";
|
|
186
|
+
readonly ROUTING_POLICY_EDGE_ASSOCIATION: "ROUTING_POLICY_EDGE_ASSOCIATION";
|
|
187
|
+
readonly ROUTING_POLICY_SEGMENT_ASSOCIATION: "ROUTING_POLICY_SEGMENT_ASSOCIATION";
|
|
182
188
|
readonly SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION";
|
|
183
189
|
readonly SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION";
|
|
184
190
|
};
|
|
@@ -280,6 +286,18 @@ export declare const CoreNetworkState: {
|
|
|
280
286
|
* @public
|
|
281
287
|
*/
|
|
282
288
|
export type CoreNetworkState = (typeof CoreNetworkState)[keyof typeof CoreNetworkState];
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* @enum
|
|
292
|
+
*/
|
|
293
|
+
export declare const RoutingPolicyDirection: {
|
|
294
|
+
readonly INBOUND: "inbound";
|
|
295
|
+
readonly OUTBOUND: "outbound";
|
|
296
|
+
};
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
300
|
+
export type RoutingPolicyDirection = (typeof RoutingPolicyDirection)[keyof typeof RoutingPolicyDirection];
|
|
283
301
|
/**
|
|
284
302
|
* @public
|
|
285
303
|
* @enum
|