@aws-sdk/client-outposts 3.299.0 → 3.300.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/dist-types/commands/CancelOrderCommand.d.ts +3 -0
- package/dist-types/commands/CreateOrderCommand.d.ts +11 -0
- package/dist-types/commands/CreateOutpostCommand.d.ts +11 -0
- package/dist-types/commands/CreateSiteCommand.d.ts +45 -0
- package/dist-types/commands/DeleteOutpostCommand.d.ts +3 -0
- package/dist-types/commands/DeleteSiteCommand.d.ts +3 -0
- package/dist-types/commands/GetCatalogItemCommand.d.ts +3 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +3 -0
- package/dist-types/commands/GetOrderCommand.d.ts +3 -0
- package/dist-types/commands/GetOutpostCommand.d.ts +3 -0
- package/dist-types/commands/GetOutpostInstanceTypesCommand.d.ts +5 -0
- package/dist-types/commands/GetSiteAddressCommand.d.ts +4 -0
- package/dist-types/commands/GetSiteCommand.d.ts +3 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +11 -0
- package/dist-types/commands/ListCatalogItemsCommand.d.ts +13 -0
- package/dist-types/commands/ListOrdersCommand.d.ts +5 -0
- package/dist-types/commands/ListOutpostsCommand.d.ts +13 -0
- package/dist-types/commands/ListSitesCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartConnectionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateOutpostCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSiteAddressCommand.d.ts +17 -0
- package/dist-types/commands/UpdateSiteCommand.d.ts +6 -0
- package/dist-types/commands/UpdateSiteRackPhysicalPropertiesCommand.d.ts +12 -0
- package/package.json +8 -8
|
@@ -26,6 +26,9 @@ export interface CancelOrderCommandOutput extends CancelOrderOutput, __MetadataB
|
|
|
26
26
|
* import { OutpostsClient, CancelOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CancelOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OrderId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelOrderCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface CreateOrderCommandOutput extends CreateOrderOutput, __MetadataB
|
|
|
26
26
|
* import { OutpostsClient, CreateOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CreateOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostIdentifier: "STRING_VALUE", // required
|
|
31
|
+
* LineItems: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* CatalogItemId: "STRING_VALUE",
|
|
34
|
+
* Quantity: Number("int"),
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* PaymentOption: "ALL_UPFRONT" || "NO_UPFRONT" || "PARTIAL_UPFRONT", // required
|
|
38
|
+
* PaymentTerm: "THREE_YEARS" || "ONE_YEAR",
|
|
39
|
+
* };
|
|
29
40
|
* const command = new CreateOrderCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface CreateOutpostCommandOutput extends CreateOutpostOutput, __Metad
|
|
|
27
27
|
* import { OutpostsClient, CreateOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
28
28
|
* // const { OutpostsClient, CreateOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
29
29
|
* const client = new OutpostsClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* Name: "STRING_VALUE", // required
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* SiteId: "STRING_VALUE", // required
|
|
34
|
+
* AvailabilityZone: "STRING_VALUE",
|
|
35
|
+
* AvailabilityZoneId: "STRING_VALUE",
|
|
36
|
+
* Tags: {
|
|
37
|
+
* "<keys>": "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* SupportedHardwareType: "RACK" || "SERVER",
|
|
40
|
+
* };
|
|
30
41
|
* const command = new CreateOutpostCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -26,6 +26,51 @@ export interface CreateSiteCommandOutput extends CreateSiteOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, CreateSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, CreateSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* Name: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* Notes: "STRING_VALUE",
|
|
33
|
+
* Tags: {
|
|
34
|
+
* "<keys>": "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* OperatingAddress: {
|
|
37
|
+
* ContactName: "STRING_VALUE",
|
|
38
|
+
* ContactPhoneNumber: "STRING_VALUE",
|
|
39
|
+
* AddressLine1: "STRING_VALUE", // required
|
|
40
|
+
* AddressLine2: "STRING_VALUE",
|
|
41
|
+
* AddressLine3: "STRING_VALUE",
|
|
42
|
+
* City: "STRING_VALUE", // required
|
|
43
|
+
* StateOrRegion: "STRING_VALUE", // required
|
|
44
|
+
* DistrictOrCounty: "STRING_VALUE",
|
|
45
|
+
* PostalCode: "STRING_VALUE", // required
|
|
46
|
+
* CountryCode: "STRING_VALUE", // required
|
|
47
|
+
* Municipality: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* ShippingAddress: {
|
|
50
|
+
* ContactName: "STRING_VALUE",
|
|
51
|
+
* ContactPhoneNumber: "STRING_VALUE",
|
|
52
|
+
* AddressLine1: "STRING_VALUE", // required
|
|
53
|
+
* AddressLine2: "STRING_VALUE",
|
|
54
|
+
* AddressLine3: "STRING_VALUE",
|
|
55
|
+
* City: "STRING_VALUE", // required
|
|
56
|
+
* StateOrRegion: "STRING_VALUE", // required
|
|
57
|
+
* DistrictOrCounty: "STRING_VALUE",
|
|
58
|
+
* PostalCode: "STRING_VALUE", // required
|
|
59
|
+
* CountryCode: "STRING_VALUE", // required
|
|
60
|
+
* Municipality: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* RackPhysicalProperties: {
|
|
63
|
+
* PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
64
|
+
* PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
65
|
+
* PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
66
|
+
* PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
67
|
+
* UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
68
|
+
* UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
69
|
+
* FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
70
|
+
* OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
71
|
+
* MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
72
|
+
* },
|
|
73
|
+
* };
|
|
29
74
|
* const command = new CreateSiteCommand(input);
|
|
30
75
|
* const response = await client.send(command);
|
|
31
76
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteOutpostCommandOutput extends DeleteOutpostOutput, __Metad
|
|
|
26
26
|
* import { OutpostsClient, DeleteOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, DeleteOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteOutpostCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteSiteCommandOutput extends DeleteSiteOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, DeleteSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, DeleteSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SiteId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteSiteCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetCatalogItemCommandOutput extends GetCatalogItemOutput, __Met
|
|
|
26
26
|
* import { OutpostsClient, GetCatalogItemCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetCatalogItemCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* CatalogItemId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetCatalogItemCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -36,6 +36,9 @@ export interface GetConnectionCommandOutput extends GetConnectionResponse, __Met
|
|
|
36
36
|
* import { OutpostsClient, GetConnectionCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
37
37
|
* // const { OutpostsClient, GetConnectionCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
38
38
|
* const client = new OutpostsClient(config);
|
|
39
|
+
* const input = {
|
|
40
|
+
* ConnectionId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
39
42
|
* const command = new GetConnectionCommand(input);
|
|
40
43
|
* const response = await client.send(command);
|
|
41
44
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetOrderCommandOutput extends GetOrderOutput, __MetadataBearer
|
|
|
26
26
|
* import { OutpostsClient, GetOrderCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOrderCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OrderId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetOrderCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetOutpostCommandOutput extends GetOutpostOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, GetOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetOutpostCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface GetOutpostInstanceTypesCommandOutput extends GetOutpostInstance
|
|
|
26
26
|
* import { OutpostsClient, GetOutpostInstanceTypesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetOutpostInstanceTypesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new GetOutpostInstanceTypesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetSiteAddressCommandOutput extends GetSiteAddressOutput, __Met
|
|
|
26
26
|
* import { OutpostsClient, GetSiteAddressCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetSiteAddressCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SiteId: "STRING_VALUE", // required
|
|
31
|
+
* AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetSiteAddressCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSiteCommandOutput extends GetSiteOutput, __MetadataBearer {
|
|
|
26
26
|
* import { OutpostsClient, GetSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, GetSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SiteId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSiteCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface ListAssetsCommandOutput extends ListAssetsOutput, __MetadataBea
|
|
|
29
29
|
* import { OutpostsClient, ListAssetsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListAssetsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* OutpostIdentifier: "STRING_VALUE", // required
|
|
34
|
+
* HostIdFilter: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* MaxResults: Number("int"),
|
|
38
|
+
* NextToken: "STRING_VALUE",
|
|
39
|
+
* StatusFilter: [
|
|
40
|
+
* "ACTIVE" || "RETIRING",
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
32
43
|
* const command = new ListAssetsCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -29,6 +29,19 @@ export interface ListCatalogItemsCommandOutput extends ListCatalogItemsOutput, _
|
|
|
29
29
|
* import { OutpostsClient, ListCatalogItemsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListCatalogItemsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* ItemClassFilter: [
|
|
36
|
+
* "RACK" || "SERVER",
|
|
37
|
+
* ],
|
|
38
|
+
* SupportedStorageFilter: [
|
|
39
|
+
* "EBS" || "S3",
|
|
40
|
+
* ],
|
|
41
|
+
* EC2FamilyFilter: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
32
45
|
* const command = new ListCatalogItemsCommand(input);
|
|
33
46
|
* const response = await client.send(command);
|
|
34
47
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListOrdersCommandOutput extends ListOrdersOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, ListOrdersCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, ListOrdersCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostIdentifierFilter: "STRING_VALUE",
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListOrdersCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -29,6 +29,19 @@ export interface ListOutpostsCommandOutput extends ListOutpostsOutput, __Metadat
|
|
|
29
29
|
* import { OutpostsClient, ListOutpostsCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
30
30
|
* // const { OutpostsClient, ListOutpostsCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
31
31
|
* const client = new OutpostsClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* LifeCycleStatusFilter: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* AvailabilityZoneFilter: [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* AvailabilityZoneIdFilter: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
32
45
|
* const command = new ListOutpostsCommand(input);
|
|
33
46
|
* const response = await client.send(command);
|
|
34
47
|
* ```
|
|
@@ -30,6 +30,19 @@ export interface ListSitesCommandOutput extends ListSitesOutput, __MetadataBeare
|
|
|
30
30
|
* import { OutpostsClient, ListSitesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
31
31
|
* // const { OutpostsClient, ListSitesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
32
32
|
* const client = new OutpostsClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* OperatingAddressCountryCodeFilter: [
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* OperatingAddressStateOrRegionFilter: [
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* OperatingAddressCityFilter: [
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* };
|
|
33
46
|
* const command = new ListSitesCommand(input);
|
|
34
47
|
* const response = await client.send(command);
|
|
35
48
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { OutpostsClient, ListTagsForResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -36,6 +36,12 @@ export interface StartConnectionCommandOutput extends StartConnectionResponse, _
|
|
|
36
36
|
* import { OutpostsClient, StartConnectionCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
37
37
|
* // const { OutpostsClient, StartConnectionCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
38
38
|
* const client = new OutpostsClient(config);
|
|
39
|
+
* const input = {
|
|
40
|
+
* DeviceSerialNumber: "STRING_VALUE", // required
|
|
41
|
+
* AssetId: "STRING_VALUE", // required
|
|
42
|
+
* ClientPublicKey: "STRING_VALUE", // required
|
|
43
|
+
* NetworkInterfaceDeviceIndex: Number("int"), // required
|
|
44
|
+
* };
|
|
39
45
|
* const command = new StartConnectionCommand(input);
|
|
40
46
|
* const response = await client.send(command);
|
|
41
47
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { OutpostsClient, TagResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, TagResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { OutpostsClient, UntagResourceCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, UntagResourceCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UpdateOutpostCommandOutput extends UpdateOutpostOutput, __Metad
|
|
|
26
26
|
* import { OutpostsClient, UpdateOutpostCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, UpdateOutpostCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* OutpostId: "STRING_VALUE", // required
|
|
31
|
+
* Name: "STRING_VALUE",
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* SupportedHardwareType: "RACK" || "SERVER",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UpdateOutpostCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -30,6 +30,23 @@ export interface UpdateSiteAddressCommandOutput extends UpdateSiteAddressOutput,
|
|
|
30
30
|
* import { OutpostsClient, UpdateSiteAddressCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
31
31
|
* // const { OutpostsClient, UpdateSiteAddressCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
32
32
|
* const client = new OutpostsClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* SiteId: "STRING_VALUE", // required
|
|
35
|
+
* AddressType: "SHIPPING_ADDRESS" || "OPERATING_ADDRESS", // required
|
|
36
|
+
* Address: {
|
|
37
|
+
* ContactName: "STRING_VALUE",
|
|
38
|
+
* ContactPhoneNumber: "STRING_VALUE",
|
|
39
|
+
* AddressLine1: "STRING_VALUE", // required
|
|
40
|
+
* AddressLine2: "STRING_VALUE",
|
|
41
|
+
* AddressLine3: "STRING_VALUE",
|
|
42
|
+
* City: "STRING_VALUE", // required
|
|
43
|
+
* StateOrRegion: "STRING_VALUE", // required
|
|
44
|
+
* DistrictOrCounty: "STRING_VALUE",
|
|
45
|
+
* PostalCode: "STRING_VALUE", // required
|
|
46
|
+
* CountryCode: "STRING_VALUE", // required
|
|
47
|
+
* Municipality: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
33
50
|
* const command = new UpdateSiteAddressCommand(input);
|
|
34
51
|
* const response = await client.send(command);
|
|
35
52
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UpdateSiteCommandOutput extends UpdateSiteOutput, __MetadataBea
|
|
|
26
26
|
* import { OutpostsClient, UpdateSiteCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
27
27
|
* // const { OutpostsClient, UpdateSiteCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
28
28
|
* const client = new OutpostsClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* SiteId: "STRING_VALUE", // required
|
|
31
|
+
* Name: "STRING_VALUE",
|
|
32
|
+
* Description: "STRING_VALUE",
|
|
33
|
+
* Notes: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UpdateSiteCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -31,6 +31,18 @@ export interface UpdateSiteRackPhysicalPropertiesCommandOutput extends UpdateSit
|
|
|
31
31
|
* import { OutpostsClient, UpdateSiteRackPhysicalPropertiesCommand } from "@aws-sdk/client-outposts"; // ES Modules import
|
|
32
32
|
* // const { OutpostsClient, UpdateSiteRackPhysicalPropertiesCommand } = require("@aws-sdk/client-outposts"); // CommonJS import
|
|
33
33
|
* const client = new OutpostsClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* SiteId: "STRING_VALUE", // required
|
|
36
|
+
* PowerDrawKva: "POWER_5_KVA" || "POWER_10_KVA" || "POWER_15_KVA" || "POWER_30_KVA",
|
|
37
|
+
* PowerPhase: "SINGLE_PHASE" || "THREE_PHASE",
|
|
38
|
+
* PowerConnector: "L6_30P" || "IEC309" || "AH530P7W" || "AH532P6W",
|
|
39
|
+
* PowerFeedDrop: "ABOVE_RACK" || "BELOW_RACK",
|
|
40
|
+
* UplinkGbps: "UPLINK_1G" || "UPLINK_10G" || "UPLINK_40G" || "UPLINK_100G",
|
|
41
|
+
* UplinkCount: "UPLINK_COUNT_1" || "UPLINK_COUNT_2" || "UPLINK_COUNT_3" || "UPLINK_COUNT_4" || "UPLINK_COUNT_5" || "UPLINK_COUNT_6" || "UPLINK_COUNT_7" || "UPLINK_COUNT_8" || "UPLINK_COUNT_12" || "UPLINK_COUNT_16",
|
|
42
|
+
* FiberOpticCableType: "SINGLE_MODE" || "MULTI_MODE",
|
|
43
|
+
* OpticalStandard: "OPTIC_10GBASE_SR" || "OPTIC_10GBASE_IR" || "OPTIC_10GBASE_LR" || "OPTIC_40GBASE_SR" || "OPTIC_40GBASE_ESR" || "OPTIC_40GBASE_IR4_LR4L" || "OPTIC_40GBASE_LR4" || "OPTIC_100GBASE_SR4" || "OPTIC_100GBASE_CWDM4" || "OPTIC_100GBASE_LR4" || "OPTIC_100G_PSM4_MSA" || "OPTIC_1000BASE_LX" || "OPTIC_1000BASE_SX",
|
|
44
|
+
* MaximumSupportedWeightLbs: "NO_LIMIT" || "MAX_1400_LBS" || "MAX_1600_LBS" || "MAX_1800_LBS" || "MAX_2000_LBS",
|
|
45
|
+
* };
|
|
34
46
|
* const command = new UpdateSiteRackPhysicalPropertiesCommand(input);
|
|
35
47
|
* const response = await client.send(command);
|
|
36
48
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|