A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/aws/aws-sdk-js-v3/commit/d130b8710967d2ecc226b7d1b3934cb31977c6c2 below:

This release adds AvailabilityZoneId support for Cr… · aws/aws-sdk-js-v3@d130b87 · GitHub

File tree Expand file treeCollapse file tree 43 files changed

+429

-67

lines changed

Filter options

Expand file treeCollapse file tree 43 files changed

+429

-67

lines changed Original file line number Diff line number Diff line change

@@ -5208,6 +5208,7 @@ export interface EC2 {

5208 5208

/**

5209 5209

* @see {@link CreateDefaultSubnetCommand}

5210 5210

*/

5211 +

createDefaultSubnet(): Promise<CreateDefaultSubnetCommandOutput>;

5211 5212

createDefaultSubnet(

5212 5213

args: CreateDefaultSubnetCommandInput,

5213 5214

options?: __HttpHandlerOptions

@@ -6400,6 +6401,7 @@ export interface EC2 {

6400 6401

/**

6401 6402

* @see {@link CreateVolumeCommand}

6402 6403

*/

6404 +

createVolume(): Promise<CreateVolumeCommandOutput>;

6403 6405

createVolume(args: CreateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CreateVolumeCommandOutput>;

6404 6406

createVolume(args: CreateVolumeCommandInput, cb: (err: any, data?: CreateVolumeCommandOutput) => void): void;

6405 6407

createVolume(

Original file line number Diff line number Diff line change

@@ -38,6 +38,7 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrResul

38 38

* location and start advertising it through Amazon Web Services.</p>

39 39

* <p>It can take a few minutes before traffic to the specified addresses starts routing to Amazon Web Services

40 40

* because of BGP propagation delays.</p>

41 +

* <p>To stop advertising the BYOIP CIDR, use <a>WithdrawByoipCidr</a>.</p>

41 42

* @example

42 43

* Use a bare-bones client and the command you need to make an API call.

43 44

* ```javascript

Original file line number Diff line number Diff line change

@@ -39,9 +39,10 @@ export interface CreateDefaultSubnetCommandOutput extends CreateDefaultSubnetRes

39 39

* // const { EC2Client, CreateDefaultSubnetCommand } = require("@aws-sdk/client-ec2"); // CommonJS import

40 40

* const client = new EC2Client(config);

41 41

* const input = { // CreateDefaultSubnetRequest

42 -

* AvailabilityZone: "STRING_VALUE", // required

42 +

* AvailabilityZone: "STRING_VALUE",

43 43

* DryRun: true || false,

44 44

* Ipv6Native: true || false,

45 +

* AvailabilityZoneId: "STRING_VALUE",

45 46

* };

46 47

* const command = new CreateDefaultSubnetCommand(input);

47 48

* const response = await client.send(command);

Original file line number Diff line number Diff line change

@@ -84,6 +84,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB

84 84

* WeightedCapacity: Number("double"),

85 85

* Priority: Number("double"),

86 86

* Placement: { // Placement

87 +

* AvailabilityZoneId: "STRING_VALUE",

87 88

* Affinity: "STRING_VALUE",

88 89

* GroupName: "STRING_VALUE",

89 90

* PartitionNumber: Number("int"),

Original file line number Diff line number Diff line change

@@ -141,6 +141,7 @@ export interface CreateLaunchTemplateCommandOutput extends CreateLaunchTemplateR

141 141

* },

142 142

* Placement: { // LaunchTemplatePlacementRequest

143 143

* AvailabilityZone: "STRING_VALUE",

144 +

* AvailabilityZoneId: "STRING_VALUE",

144 145

* Affinity: "STRING_VALUE",

145 146

* GroupName: "STRING_VALUE",

146 147

* HostId: "STRING_VALUE",

Original file line number Diff line number Diff line change

@@ -147,6 +147,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe

147 147

* },

148 148

* Placement: { // LaunchTemplatePlacementRequest

149 149

* AvailabilityZone: "STRING_VALUE",

150 +

* AvailabilityZoneId: "STRING_VALUE",

150 151

* Affinity: "STRING_VALUE",

151 152

* GroupName: "STRING_VALUE",

152 153

* HostId: "STRING_VALUE",

@@ -427,6 +428,7 @@ export interface CreateLaunchTemplateVersionCommandOutput extends CreateLaunchTe

427 428

* // },

428 429

* // Placement: { // LaunchTemplatePlacement

429 430

* // AvailabilityZone: "STRING_VALUE",

431 +

* // AvailabilityZoneId: "STRING_VALUE",

430 432

* // Affinity: "STRING_VALUE",

431 433

* // GroupName: "STRING_VALUE",

432 434

* // HostId: "STRING_VALUE",

Original file line number Diff line number Diff line change

@@ -46,7 +46,8 @@ export interface CreateVolumeCommandOutput extends Volume, __MetadataBearer {}

46 46

* // const { EC2Client, CreateVolumeCommand } = require("@aws-sdk/client-ec2"); // CommonJS import

47 47

* const client = new EC2Client(config);

48 48

* const input = { // CreateVolumeRequest

49 -

* AvailabilityZone: "STRING_VALUE", // required

49 +

* AvailabilityZone: "STRING_VALUE",

50 +

* AvailabilityZoneId: "STRING_VALUE",

50 51

* Encrypted: true || false,

51 52

* Iops: Number("int"),

52 53

* KmsKeyId: "STRING_VALUE",

@@ -77,6 +78,7 @@ export interface CreateVolumeCommandOutput extends Volume, __MetadataBearer {}

77 78

* const command = new CreateVolumeCommand(input);

78 79

* const response = await client.send(command);

79 80

* // { // Volume

81 +

* // AvailabilityZoneId: "STRING_VALUE",

80 82

* // OutpostArn: "STRING_VALUE",

81 83

* // Iops: Number("int"),

82 84

* // Tags: [ // TagList

Original file line number Diff line number Diff line change

@@ -101,7 +101,10 @@ export interface CreateVpcEndpointServiceConfigurationCommandOutput

101 101

* // ServiceId: "STRING_VALUE",

102 102

* // ServiceName: "STRING_VALUE",

103 103

* // ServiceState: "Pending" || "Available" || "Deleting" || "Deleted" || "Failed",

104 -

* // AvailabilityZones: [ // ValueStringList

104 +

* // AvailabilityZoneIds: [ // ValueStringList

105 +

* // "STRING_VALUE",

106 +

* // ],

107 +

* // AvailabilityZones: [

105 108

* // "STRING_VALUE",

106 109

* // ],

107 110

* // AcceptanceRequired: true || false,

Original file line number Diff line number Diff line change

@@ -30,8 +30,8 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR

30 30

/**

31 31

* <p>Releases the specified address range that you provisioned for use with your Amazon Web Services resources

32 32

* through bring your own IP addresses (BYOIP) and deletes the corresponding address pool.</p>

33 -

* <p>Before you can release an address range, you must stop advertising it and you must not

34 -

* have any IP addresses allocated from its address range.</p>

33 +

* <p>Before you can release an address range, you must stop advertising it using <a>WithdrawByoipCidr</a> and you must not have any IP addresses allocated from its

34 +

* address range.</p>

35 35

* @example

36 36

* Use a bare-bones client and the command you need to make an API call.

37 37

* ```javascript

Original file line number Diff line number Diff line change

@@ -28,8 +28,9 @@ export interface DescribeByoipCidrsCommandInput extends DescribeByoipCidrsReques

28 28

export interface DescribeByoipCidrsCommandOutput extends DescribeByoipCidrsResult, __MetadataBearer {}

29 29 30 30

/**

31 -

* <p>Describes the IP address ranges that were provisioned for use with Amazon Web Services resources

32 -

* through through bring your own IP addresses (BYOIP).</p>

31 +

* <p>Describes the IP address ranges that were specified in calls to <a>ProvisionByoipCidr</a>.</p>

32 +

* <p>To describe the address pools that were created when you provisioned the address

33 +

* ranges, use <a>DescribePublicIpv4Pools</a> or <a>DescribeIpv6Pools</a>.</p>

33 34

* @example

34 35

* Use a bare-bones client and the command you need to make an API call.

35 36

* ```javascript

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4