aws-sdk-outposts 1.108.0 → 1.109.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +90 -1
- data/lib/aws-sdk-outposts/client_api.rb +67 -0
- data/lib/aws-sdk-outposts/types.rb +126 -0
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +28 -0
- data/sig/types.rbs +37 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f7036ebae1693693ea46036779b4b055dc45f17203f767210d6441532b62347
|
|
4
|
+
data.tar.gz: 72b85e1fed7500c9ab118922a7435af739b7b12c89f06ccb9febdfaf47b57be7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '093d9966a9530939ac7a522f5e0e7718380d52bca13c8592a2b5e5111fdbfc8793cd869096d062f3b038b1225b658df4dca0a8d86f897c905c4b9fa66694bd8c'
|
|
7
|
+
data.tar.gz: 97f2384f59499042f73a607a66e70952e51e9e08a47d6c7fbdb8cef33db81c7af2bc258ff430603b1296183ee212a9ae170ae7a21d0e8de593dab6e7d9ed2177
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.109.0 (2026-08-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Outposts now supports VPC Endpoint configuration in CreatePrivateConnectivityConfig, enabling scoped private connectivity with provisioning role creation for secure outpost installations
|
|
8
|
+
|
|
4
9
|
1.108.0 (2026-07-31)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.109.0
|
|
@@ -666,6 +666,60 @@ module Aws::Outposts
|
|
|
666
666
|
req.send_request(options)
|
|
667
667
|
end
|
|
668
668
|
|
|
669
|
+
# Creates the private connectivity configuration for the specified
|
|
670
|
+
# Outpost. Private connectivity establishes a service link VPN
|
|
671
|
+
# connection between the Outpost and its home Amazon Web Services Region
|
|
672
|
+
# using a VPC and subnet that you specify, which allows the service link
|
|
673
|
+
# traffic to flow through your VPC and minimizes public internet
|
|
674
|
+
# exposure.
|
|
675
|
+
#
|
|
676
|
+
# @option params [required, String] :outpost_id
|
|
677
|
+
# The ID or ARN of the Outpost.
|
|
678
|
+
#
|
|
679
|
+
# @option params [required, Array<Types::VpcInformation>] :vpc_information_list
|
|
680
|
+
# Information about the VPC used for private connectivity, including the
|
|
681
|
+
# VPC, its subnets, and an associated VPC endpoint. You can specify at
|
|
682
|
+
# most one entry.
|
|
683
|
+
#
|
|
684
|
+
# @return [Types::CreatePrivateConnectivityConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
685
|
+
#
|
|
686
|
+
# * {Types::CreatePrivateConnectivityConfigOutput#private_connectivity_config #private_connectivity_config} => Types::PrivateConnectivityConfig
|
|
687
|
+
# * {Types::CreatePrivateConnectivityConfigOutput#outpost_id #outpost_id} => String
|
|
688
|
+
#
|
|
689
|
+
# @example Request syntax with placeholder values
|
|
690
|
+
#
|
|
691
|
+
# resp = client.create_private_connectivity_config({
|
|
692
|
+
# outpost_id: "OutpostId", # required
|
|
693
|
+
# vpc_information_list: [ # required
|
|
694
|
+
# {
|
|
695
|
+
# vpc_id: "VpcId",
|
|
696
|
+
# subnet_ids: ["SubnetId"],
|
|
697
|
+
# vpc_endpoint_id: "VpcEndpointId",
|
|
698
|
+
# },
|
|
699
|
+
# ],
|
|
700
|
+
# })
|
|
701
|
+
#
|
|
702
|
+
# @example Response structure
|
|
703
|
+
#
|
|
704
|
+
# resp.private_connectivity_config.role_arn #=> String
|
|
705
|
+
# resp.private_connectivity_config.private_connectivity_status #=> String, one of "ENABLED", "DISABLED"
|
|
706
|
+
# resp.private_connectivity_config.vpc_information_list #=> Array
|
|
707
|
+
# resp.private_connectivity_config.vpc_information_list[0].vpc_id #=> String
|
|
708
|
+
# resp.private_connectivity_config.vpc_information_list[0].subnet_ids #=> Array
|
|
709
|
+
# resp.private_connectivity_config.vpc_information_list[0].subnet_ids[0] #=> String
|
|
710
|
+
# resp.private_connectivity_config.vpc_information_list[0].vpc_endpoint_id #=> String
|
|
711
|
+
# resp.private_connectivity_config.provisioning_role_arn #=> String
|
|
712
|
+
# resp.outpost_id #=> String
|
|
713
|
+
#
|
|
714
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreatePrivateConnectivityConfig AWS API Documentation
|
|
715
|
+
#
|
|
716
|
+
# @overload create_private_connectivity_config(params = {})
|
|
717
|
+
# @param [Hash] params ({})
|
|
718
|
+
def create_private_connectivity_config(params = {}, options = {})
|
|
719
|
+
req = build_request(:create_private_connectivity_config, params)
|
|
720
|
+
req.send_request(options)
|
|
721
|
+
end
|
|
722
|
+
|
|
669
723
|
# Creates a quote for an Outpost. A quote provides pricing and
|
|
670
724
|
# configuration options based on the requested capacity. You can
|
|
671
725
|
# optionally associate the quote with an existing Outpost or create a
|
|
@@ -1467,6 +1521,41 @@ module Aws::Outposts
|
|
|
1467
1521
|
req.send_request(options)
|
|
1468
1522
|
end
|
|
1469
1523
|
|
|
1524
|
+
# Gets the private connectivity configuration for the specified Outpost.
|
|
1525
|
+
#
|
|
1526
|
+
# @option params [required, String] :outpost_id
|
|
1527
|
+
# The ID or ARN of the Outpost.
|
|
1528
|
+
#
|
|
1529
|
+
# @return [Types::GetPrivateConnectivityConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1530
|
+
#
|
|
1531
|
+
# * {Types::GetPrivateConnectivityConfigOutput#private_connectivity_config #private_connectivity_config} => Types::PrivateConnectivityConfig
|
|
1532
|
+
#
|
|
1533
|
+
# @example Request syntax with placeholder values
|
|
1534
|
+
#
|
|
1535
|
+
# resp = client.get_private_connectivity_config({
|
|
1536
|
+
# outpost_id: "OutpostId", # required
|
|
1537
|
+
# })
|
|
1538
|
+
#
|
|
1539
|
+
# @example Response structure
|
|
1540
|
+
#
|
|
1541
|
+
# resp.private_connectivity_config.role_arn #=> String
|
|
1542
|
+
# resp.private_connectivity_config.private_connectivity_status #=> String, one of "ENABLED", "DISABLED"
|
|
1543
|
+
# resp.private_connectivity_config.vpc_information_list #=> Array
|
|
1544
|
+
# resp.private_connectivity_config.vpc_information_list[0].vpc_id #=> String
|
|
1545
|
+
# resp.private_connectivity_config.vpc_information_list[0].subnet_ids #=> Array
|
|
1546
|
+
# resp.private_connectivity_config.vpc_information_list[0].subnet_ids[0] #=> String
|
|
1547
|
+
# resp.private_connectivity_config.vpc_information_list[0].vpc_endpoint_id #=> String
|
|
1548
|
+
# resp.private_connectivity_config.provisioning_role_arn #=> String
|
|
1549
|
+
#
|
|
1550
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetPrivateConnectivityConfig AWS API Documentation
|
|
1551
|
+
#
|
|
1552
|
+
# @overload get_private_connectivity_config(params = {})
|
|
1553
|
+
# @param [Hash] params ({})
|
|
1554
|
+
def get_private_connectivity_config(params = {}, options = {})
|
|
1555
|
+
req = build_request(:get_private_connectivity_config, params)
|
|
1556
|
+
req.send_request(options)
|
|
1557
|
+
end
|
|
1558
|
+
|
|
1470
1559
|
# Gets information about the specified quote.
|
|
1471
1560
|
#
|
|
1472
1561
|
# @option params [required, String] :quote_identifier
|
|
@@ -3182,7 +3271,7 @@ module Aws::Outposts
|
|
|
3182
3271
|
tracer: tracer
|
|
3183
3272
|
)
|
|
3184
3273
|
context[:gem_name] = 'aws-sdk-outposts'
|
|
3185
|
-
context[:gem_version] = '1.
|
|
3274
|
+
context[:gem_version] = '1.109.0'
|
|
3186
3275
|
Seahorse::Client::Request.new(handlers, context)
|
|
3187
3276
|
end
|
|
3188
3277
|
|
|
@@ -85,6 +85,8 @@ module Aws::Outposts
|
|
|
85
85
|
CreateOrderOutput = Shapes::StructureShape.new(name: 'CreateOrderOutput')
|
|
86
86
|
CreateOutpostInput = Shapes::StructureShape.new(name: 'CreateOutpostInput')
|
|
87
87
|
CreateOutpostOutput = Shapes::StructureShape.new(name: 'CreateOutpostOutput')
|
|
88
|
+
CreatePrivateConnectivityConfigInput = Shapes::StructureShape.new(name: 'CreatePrivateConnectivityConfigInput')
|
|
89
|
+
CreatePrivateConnectivityConfigOutput = Shapes::StructureShape.new(name: 'CreatePrivateConnectivityConfigOutput')
|
|
88
90
|
CreateQuoteInput = Shapes::StructureShape.new(name: 'CreateQuoteInput')
|
|
89
91
|
CreateQuoteOutput = Shapes::StructureShape.new(name: 'CreateQuoteOutput')
|
|
90
92
|
CreateRenewalInput = Shapes::StructureShape.new(name: 'CreateRenewalInput')
|
|
@@ -129,6 +131,8 @@ module Aws::Outposts
|
|
|
129
131
|
GetOutpostOutput = Shapes::StructureShape.new(name: 'GetOutpostOutput')
|
|
130
132
|
GetOutpostSupportedInstanceTypesInput = Shapes::StructureShape.new(name: 'GetOutpostSupportedInstanceTypesInput')
|
|
131
133
|
GetOutpostSupportedInstanceTypesOutput = Shapes::StructureShape.new(name: 'GetOutpostSupportedInstanceTypesOutput')
|
|
134
|
+
GetPrivateConnectivityConfigInput = Shapes::StructureShape.new(name: 'GetPrivateConnectivityConfigInput')
|
|
135
|
+
GetPrivateConnectivityConfigOutput = Shapes::StructureShape.new(name: 'GetPrivateConnectivityConfigOutput')
|
|
132
136
|
GetQuoteInput = Shapes::StructureShape.new(name: 'GetQuoteInput')
|
|
133
137
|
GetQuoteOutput = Shapes::StructureShape.new(name: 'GetQuoteOutput')
|
|
134
138
|
GetRenewalPricingInput = Shapes::StructureShape.new(name: 'GetRenewalPricingInput')
|
|
@@ -235,6 +239,8 @@ module Aws::Outposts
|
|
|
235
239
|
PricingOption = Shapes::StructureShape.new(name: 'PricingOption')
|
|
236
240
|
PricingOptionList = Shapes::ListShape.new(name: 'PricingOptionList')
|
|
237
241
|
PricingResult = Shapes::StringShape.new(name: 'PricingResult')
|
|
242
|
+
PrivateConnectivityConfig = Shapes::StructureShape.new(name: 'PrivateConnectivityConfig')
|
|
243
|
+
PrivateConnectivityStatus = Shapes::StringShape.new(name: 'PrivateConnectivityStatus')
|
|
238
244
|
Quantity = Shapes::StringShape.new(name: 'Quantity')
|
|
239
245
|
Quote = Shapes::StructureShape.new(name: 'Quote')
|
|
240
246
|
QuoteCapacity = Shapes::StructureShape.new(name: 'QuoteCapacity')
|
|
@@ -264,6 +270,7 @@ module Aws::Outposts
|
|
|
264
270
|
RackUnitHeight = Shapes::StringShape.new(name: 'RackUnitHeight')
|
|
265
271
|
RequestedInstancePools = Shapes::ListShape.new(name: 'RequestedInstancePools')
|
|
266
272
|
ResourceType = Shapes::StringShape.new(name: 'ResourceType')
|
|
273
|
+
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
267
274
|
ServerEndpoint = Shapes::StringShape.new(name: 'ServerEndpoint')
|
|
268
275
|
ServerSpecificationDetails = Shapes::StructureShape.new(name: 'ServerSpecificationDetails')
|
|
269
276
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
@@ -287,6 +294,8 @@ module Aws::Outposts
|
|
|
287
294
|
StatusList = Shapes::ListShape.new(name: 'StatusList')
|
|
288
295
|
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
|
289
296
|
String = Shapes::StringShape.new(name: 'String')
|
|
297
|
+
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
|
298
|
+
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
|
290
299
|
Subscription = Shapes::StructureShape.new(name: 'Subscription')
|
|
291
300
|
SubscriptionList = Shapes::ListShape.new(name: 'SubscriptionList')
|
|
292
301
|
SubscriptionPricingDetails = Shapes::StructureShape.new(name: 'SubscriptionPricingDetails')
|
|
@@ -324,6 +333,10 @@ module Aws::Outposts
|
|
|
324
333
|
VCPUCount = Shapes::IntegerShape.new(name: 'VCPUCount')
|
|
325
334
|
ValidateOnly = Shapes::BooleanShape.new(name: 'ValidateOnly')
|
|
326
335
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
336
|
+
VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
|
|
337
|
+
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
338
|
+
VpcInformation = Shapes::StructureShape.new(name: 'VpcInformation')
|
|
339
|
+
VpcInformationList = Shapes::ListShape.new(name: 'VpcInformationList')
|
|
327
340
|
WireGuardPublicKey = Shapes::StringShape.new(name: 'WireGuardPublicKey')
|
|
328
341
|
outpostListDefinition = Shapes::ListShape.new(name: 'outpostListDefinition')
|
|
329
342
|
siteListDefinition = Shapes::ListShape.new(name: 'siteListDefinition')
|
|
@@ -488,6 +501,14 @@ module Aws::Outposts
|
|
|
488
501
|
CreateOutpostOutput.add_member(:outpost, Shapes::ShapeRef.new(shape: Outpost, location_name: "Outpost"))
|
|
489
502
|
CreateOutpostOutput.struct_class = Types::CreateOutpostOutput
|
|
490
503
|
|
|
504
|
+
CreatePrivateConnectivityConfigInput.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, required: true, location: "uri", location_name: "OutpostId"))
|
|
505
|
+
CreatePrivateConnectivityConfigInput.add_member(:vpc_information_list, Shapes::ShapeRef.new(shape: VpcInformationList, required: true, location_name: "VpcInformationList"))
|
|
506
|
+
CreatePrivateConnectivityConfigInput.struct_class = Types::CreatePrivateConnectivityConfigInput
|
|
507
|
+
|
|
508
|
+
CreatePrivateConnectivityConfigOutput.add_member(:private_connectivity_config, Shapes::ShapeRef.new(shape: PrivateConnectivityConfig, location_name: "PrivateConnectivityConfig"))
|
|
509
|
+
CreatePrivateConnectivityConfigOutput.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, location_name: "OutpostId"))
|
|
510
|
+
CreatePrivateConnectivityConfigOutput.struct_class = Types::CreatePrivateConnectivityConfigOutput
|
|
511
|
+
|
|
491
512
|
CreateQuoteInput.add_member(:outpost_identifier, Shapes::ShapeRef.new(shape: OutpostIdentifier, location_name: "OutpostIdentifier"))
|
|
492
513
|
CreateQuoteInput.add_member(:country_code, Shapes::ShapeRef.new(shape: CountryCode, required: true, location_name: "CountryCode"))
|
|
493
514
|
CreateQuoteInput.add_member(:requested_capacities, Shapes::ShapeRef.new(shape: QuoteCapacityList, required: true, location_name: "RequestedCapacities"))
|
|
@@ -643,6 +664,12 @@ module Aws::Outposts
|
|
|
643
664
|
GetOutpostSupportedInstanceTypesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
|
644
665
|
GetOutpostSupportedInstanceTypesOutput.struct_class = Types::GetOutpostSupportedInstanceTypesOutput
|
|
645
666
|
|
|
667
|
+
GetPrivateConnectivityConfigInput.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, required: true, location: "uri", location_name: "OutpostId"))
|
|
668
|
+
GetPrivateConnectivityConfigInput.struct_class = Types::GetPrivateConnectivityConfigInput
|
|
669
|
+
|
|
670
|
+
GetPrivateConnectivityConfigOutput.add_member(:private_connectivity_config, Shapes::ShapeRef.new(shape: PrivateConnectivityConfig, location_name: "PrivateConnectivityConfig"))
|
|
671
|
+
GetPrivateConnectivityConfigOutput.struct_class = Types::GetPrivateConnectivityConfigOutput
|
|
672
|
+
|
|
646
673
|
GetQuoteInput.add_member(:quote_identifier, Shapes::ShapeRef.new(shape: QuoteIdentifier, required: true, location: "uri", location_name: "QuoteIdentifier"))
|
|
647
674
|
GetQuoteInput.struct_class = Types::GetQuoteInput
|
|
648
675
|
|
|
@@ -898,6 +925,12 @@ module Aws::Outposts
|
|
|
898
925
|
|
|
899
926
|
PricingOptionList.member = Shapes::ShapeRef.new(shape: PricingOption)
|
|
900
927
|
|
|
928
|
+
PrivateConnectivityConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
|
|
929
|
+
PrivateConnectivityConfig.add_member(:private_connectivity_status, Shapes::ShapeRef.new(shape: PrivateConnectivityStatus, location_name: "PrivateConnectivityStatus"))
|
|
930
|
+
PrivateConnectivityConfig.add_member(:vpc_information_list, Shapes::ShapeRef.new(shape: VpcInformationList, location_name: "VpcInformationList"))
|
|
931
|
+
PrivateConnectivityConfig.add_member(:provisioning_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ProvisioningRoleArn"))
|
|
932
|
+
PrivateConnectivityConfig.struct_class = Types::PrivateConnectivityConfig
|
|
933
|
+
|
|
901
934
|
Quote.add_member(:quote_id, Shapes::ShapeRef.new(shape: QuoteId, location_name: "QuoteId"))
|
|
902
935
|
Quote.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
|
903
936
|
Quote.add_member(:quote_status, Shapes::ShapeRef.new(shape: QuoteStatus, location_name: "QuoteStatus"))
|
|
@@ -1064,6 +1097,8 @@ module Aws::Outposts
|
|
|
1064
1097
|
|
|
1065
1098
|
StatusList.member = Shapes::ShapeRef.new(shape: AssetState)
|
|
1066
1099
|
|
|
1100
|
+
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
|
1101
|
+
|
|
1067
1102
|
Subscription.add_member(:subscription_id, Shapes::ShapeRef.new(shape: String, location_name: "SubscriptionId"))
|
|
1068
1103
|
Subscription.add_member(:subscription_type, Shapes::ShapeRef.new(shape: SubscriptionType, location_name: "SubscriptionType"))
|
|
1069
1104
|
Subscription.add_member(:subscription_status, Shapes::ShapeRef.new(shape: SubscriptionStatus, location_name: "SubscriptionStatus"))
|
|
@@ -1163,6 +1198,13 @@ module Aws::Outposts
|
|
|
1163
1198
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
1164
1199
|
ValidationException.struct_class = Types::ValidationException
|
|
1165
1200
|
|
|
1201
|
+
VpcInformation.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
|
1202
|
+
VpcInformation.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
|
1203
|
+
VpcInformation.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "VpcEndpointId"))
|
|
1204
|
+
VpcInformation.struct_class = Types::VpcInformation
|
|
1205
|
+
|
|
1206
|
+
VpcInformationList.member = Shapes::ShapeRef.new(shape: VpcInformation)
|
|
1207
|
+
|
|
1166
1208
|
outpostListDefinition.member = Shapes::ShapeRef.new(shape: Outpost)
|
|
1167
1209
|
|
|
1168
1210
|
siteListDefinition.member = Shapes::ShapeRef.new(shape: Site)
|
|
@@ -1242,6 +1284,19 @@ module Aws::Outposts
|
|
|
1242
1284
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1243
1285
|
end)
|
|
1244
1286
|
|
|
1287
|
+
api.add_operation(:create_private_connectivity_config, Seahorse::Model::Operation.new.tap do |o|
|
|
1288
|
+
o.name = "CreatePrivateConnectivityConfig"
|
|
1289
|
+
o.http_method = "POST"
|
|
1290
|
+
o.http_request_uri = "/outposts/{OutpostId}/privateConnectivity"
|
|
1291
|
+
o.input = Shapes::ShapeRef.new(shape: CreatePrivateConnectivityConfigInput)
|
|
1292
|
+
o.output = Shapes::ShapeRef.new(shape: CreatePrivateConnectivityConfigOutput)
|
|
1293
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1294
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1295
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1296
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1297
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1298
|
+
end)
|
|
1299
|
+
|
|
1245
1300
|
api.add_operation(:create_quote, Seahorse::Model::Operation.new.tap do |o|
|
|
1246
1301
|
o.name = "CreateQuote"
|
|
1247
1302
|
o.http_method = "POST"
|
|
@@ -1429,6 +1484,18 @@ module Aws::Outposts
|
|
|
1429
1484
|
)
|
|
1430
1485
|
end)
|
|
1431
1486
|
|
|
1487
|
+
api.add_operation(:get_private_connectivity_config, Seahorse::Model::Operation.new.tap do |o|
|
|
1488
|
+
o.name = "GetPrivateConnectivityConfig"
|
|
1489
|
+
o.http_method = "GET"
|
|
1490
|
+
o.http_request_uri = "/outposts/{OutpostId}/privateConnectivity"
|
|
1491
|
+
o.input = Shapes::ShapeRef.new(shape: GetPrivateConnectivityConfigInput)
|
|
1492
|
+
o.output = Shapes::ShapeRef.new(shape: GetPrivateConnectivityConfigOutput)
|
|
1493
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
1494
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
|
1495
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1496
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1497
|
+
end)
|
|
1498
|
+
|
|
1432
1499
|
api.add_operation(:get_quote, Seahorse::Model::Operation.new.tap do |o|
|
|
1433
1500
|
o.name = "GetQuote"
|
|
1434
1501
|
o.http_method = "GET"
|
|
@@ -611,6 +611,42 @@ module Aws::Outposts
|
|
|
611
611
|
include Aws::Structure
|
|
612
612
|
end
|
|
613
613
|
|
|
614
|
+
# @!attribute [rw] outpost_id
|
|
615
|
+
# The ID or ARN of the Outpost.
|
|
616
|
+
# @return [String]
|
|
617
|
+
#
|
|
618
|
+
# @!attribute [rw] vpc_information_list
|
|
619
|
+
# Information about the VPC used for private connectivity, including
|
|
620
|
+
# the VPC, its subnets, and an associated VPC endpoint. You can
|
|
621
|
+
# specify at most one entry.
|
|
622
|
+
# @return [Array<Types::VpcInformation>]
|
|
623
|
+
#
|
|
624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreatePrivateConnectivityConfigInput AWS API Documentation
|
|
625
|
+
#
|
|
626
|
+
class CreatePrivateConnectivityConfigInput < Struct.new(
|
|
627
|
+
:outpost_id,
|
|
628
|
+
:vpc_information_list)
|
|
629
|
+
SENSITIVE = []
|
|
630
|
+
include Aws::Structure
|
|
631
|
+
end
|
|
632
|
+
|
|
633
|
+
# @!attribute [rw] private_connectivity_config
|
|
634
|
+
# The private connectivity configuration for the Outpost.
|
|
635
|
+
# @return [Types::PrivateConnectivityConfig]
|
|
636
|
+
#
|
|
637
|
+
# @!attribute [rw] outpost_id
|
|
638
|
+
# The ID of the Outpost.
|
|
639
|
+
# @return [String]
|
|
640
|
+
#
|
|
641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/CreatePrivateConnectivityConfigOutput AWS API Documentation
|
|
642
|
+
#
|
|
643
|
+
class CreatePrivateConnectivityConfigOutput < Struct.new(
|
|
644
|
+
:private_connectivity_config,
|
|
645
|
+
:outpost_id)
|
|
646
|
+
SENSITIVE = []
|
|
647
|
+
include Aws::Structure
|
|
648
|
+
end
|
|
649
|
+
|
|
614
650
|
# @!attribute [rw] outpost_identifier
|
|
615
651
|
# The ID or ARN of the Outpost to associate with the quote. If not
|
|
616
652
|
# specified, the quote is created without an Outpost association.
|
|
@@ -1320,6 +1356,30 @@ module Aws::Outposts
|
|
|
1320
1356
|
include Aws::Structure
|
|
1321
1357
|
end
|
|
1322
1358
|
|
|
1359
|
+
# @!attribute [rw] outpost_id
|
|
1360
|
+
# The ID or ARN of the Outpost.
|
|
1361
|
+
# @return [String]
|
|
1362
|
+
#
|
|
1363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetPrivateConnectivityConfigInput AWS API Documentation
|
|
1364
|
+
#
|
|
1365
|
+
class GetPrivateConnectivityConfigInput < Struct.new(
|
|
1366
|
+
:outpost_id)
|
|
1367
|
+
SENSITIVE = []
|
|
1368
|
+
include Aws::Structure
|
|
1369
|
+
end
|
|
1370
|
+
|
|
1371
|
+
# @!attribute [rw] private_connectivity_config
|
|
1372
|
+
# The private connectivity configuration for the Outpost.
|
|
1373
|
+
# @return [Types::PrivateConnectivityConfig]
|
|
1374
|
+
#
|
|
1375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/GetPrivateConnectivityConfigOutput AWS API Documentation
|
|
1376
|
+
#
|
|
1377
|
+
class GetPrivateConnectivityConfigOutput < Struct.new(
|
|
1378
|
+
:private_connectivity_config)
|
|
1379
|
+
SENSITIVE = []
|
|
1380
|
+
include Aws::Structure
|
|
1381
|
+
end
|
|
1382
|
+
|
|
1323
1383
|
# @!attribute [rw] quote_identifier
|
|
1324
1384
|
# The ID of the quote.
|
|
1325
1385
|
# @return [String]
|
|
@@ -2427,6 +2487,43 @@ module Aws::Outposts
|
|
|
2427
2487
|
include Aws::Structure
|
|
2428
2488
|
end
|
|
2429
2489
|
|
|
2490
|
+
# Information about the private connectivity configuration for an
|
|
2491
|
+
# Outpost.
|
|
2492
|
+
#
|
|
2493
|
+
# @!attribute [rw] role_arn
|
|
2494
|
+
# The Amazon Resource Name (ARN) of the service-linked role that
|
|
2495
|
+
# Amazon Web Services Outposts creates and uses to provision and
|
|
2496
|
+
# attach the network interfaces for private connectivity in your VPC.
|
|
2497
|
+
# The role's permissions are scoped to the specific Outpost and VPC.
|
|
2498
|
+
# @return [String]
|
|
2499
|
+
#
|
|
2500
|
+
# @!attribute [rw] private_connectivity_status
|
|
2501
|
+
# The status of private connectivity for the Outpost. Valid values are
|
|
2502
|
+
# `ENABLED` and `DISABLED`.
|
|
2503
|
+
# @return [String]
|
|
2504
|
+
#
|
|
2505
|
+
# @!attribute [rw] vpc_information_list
|
|
2506
|
+
# Information about the VPC used for private connectivity.
|
|
2507
|
+
# @return [Array<Types::VpcInformation>]
|
|
2508
|
+
#
|
|
2509
|
+
# @!attribute [rw] provisioning_role_arn
|
|
2510
|
+
# The Amazon Resource Name (ARN) of the provisioning role in your
|
|
2511
|
+
# account that Amazon Web Services Outposts uses to establish the
|
|
2512
|
+
# service link connection during Outpost installation. This field is
|
|
2513
|
+
# present only when VPC endpoint-based provisioning is configured.
|
|
2514
|
+
# @return [String]
|
|
2515
|
+
#
|
|
2516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/PrivateConnectivityConfig AWS API Documentation
|
|
2517
|
+
#
|
|
2518
|
+
class PrivateConnectivityConfig < Struct.new(
|
|
2519
|
+
:role_arn,
|
|
2520
|
+
:private_connectivity_status,
|
|
2521
|
+
:vpc_information_list,
|
|
2522
|
+
:provisioning_role_arn)
|
|
2523
|
+
SENSITIVE = []
|
|
2524
|
+
include Aws::Structure
|
|
2525
|
+
end
|
|
2526
|
+
|
|
2430
2527
|
# Information about a quote for an Outpost. A quote provides pricing and
|
|
2431
2528
|
# configuration options based on the requested capacity.
|
|
2432
2529
|
#
|
|
@@ -3708,6 +3805,35 @@ module Aws::Outposts
|
|
|
3708
3805
|
include Aws::Structure
|
|
3709
3806
|
end
|
|
3710
3807
|
|
|
3808
|
+
# Information about a VPC used for private connectivity, including its
|
|
3809
|
+
# subnets and an associated VPC endpoint.
|
|
3810
|
+
#
|
|
3811
|
+
# @!attribute [rw] vpc_id
|
|
3812
|
+
# The ID of the VPC used for private connectivity.
|
|
3813
|
+
# @return [String]
|
|
3814
|
+
#
|
|
3815
|
+
# @!attribute [rw] subnet_ids
|
|
3816
|
+
# The IDs of the subnets associated with the VPC endpoint. Currently,
|
|
3817
|
+
# only one subnet is supported.
|
|
3818
|
+
# @return [Array<String>]
|
|
3819
|
+
#
|
|
3820
|
+
# @!attribute [rw] vpc_endpoint_id
|
|
3821
|
+
# The ID of the interface VPC endpoint for the Amazon Web Services
|
|
3822
|
+
# Outposts service. When specified, the endpoint must be in the
|
|
3823
|
+
# `available` state and the specified subnets must be associated with
|
|
3824
|
+
# it.
|
|
3825
|
+
# @return [String]
|
|
3826
|
+
#
|
|
3827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/VpcInformation AWS API Documentation
|
|
3828
|
+
#
|
|
3829
|
+
class VpcInformation < Struct.new(
|
|
3830
|
+
:vpc_id,
|
|
3831
|
+
:subnet_ids,
|
|
3832
|
+
:vpc_endpoint_id)
|
|
3833
|
+
SENSITIVE = []
|
|
3834
|
+
include Aws::Structure
|
|
3835
|
+
end
|
|
3836
|
+
|
|
3711
3837
|
end
|
|
3712
3838
|
end
|
|
3713
3839
|
|
data/lib/aws-sdk-outposts.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -133,6 +133,24 @@ module Aws
|
|
|
133
133
|
) -> _CreateOutpostResponseSuccess
|
|
134
134
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOutpostResponseSuccess
|
|
135
135
|
|
|
136
|
+
interface _CreatePrivateConnectivityConfigResponseSuccess
|
|
137
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePrivateConnectivityConfigOutput]
|
|
138
|
+
def private_connectivity_config: () -> Types::PrivateConnectivityConfig
|
|
139
|
+
def outpost_id: () -> ::String
|
|
140
|
+
end
|
|
141
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#create_private_connectivity_config-instance_method
|
|
142
|
+
def create_private_connectivity_config: (
|
|
143
|
+
outpost_id: ::String,
|
|
144
|
+
vpc_information_list: Array[
|
|
145
|
+
{
|
|
146
|
+
vpc_id: ::String?,
|
|
147
|
+
subnet_ids: Array[::String]?,
|
|
148
|
+
vpc_endpoint_id: ::String?
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
) -> _CreatePrivateConnectivityConfigResponseSuccess
|
|
152
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrivateConnectivityConfigResponseSuccess
|
|
153
|
+
|
|
136
154
|
interface _CreateQuoteResponseSuccess
|
|
137
155
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateQuoteOutput]
|
|
138
156
|
def quote: () -> Types::Quote
|
|
@@ -341,6 +359,16 @@ module Aws
|
|
|
341
359
|
) -> _GetOutpostSupportedInstanceTypesResponseSuccess
|
|
342
360
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOutpostSupportedInstanceTypesResponseSuccess
|
|
343
361
|
|
|
362
|
+
interface _GetPrivateConnectivityConfigResponseSuccess
|
|
363
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPrivateConnectivityConfigOutput]
|
|
364
|
+
def private_connectivity_config: () -> Types::PrivateConnectivityConfig
|
|
365
|
+
end
|
|
366
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Outposts/Client.html#get_private_connectivity_config-instance_method
|
|
367
|
+
def get_private_connectivity_config: (
|
|
368
|
+
outpost_id: ::String
|
|
369
|
+
) -> _GetPrivateConnectivityConfigResponseSuccess
|
|
370
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPrivateConnectivityConfigResponseSuccess
|
|
371
|
+
|
|
344
372
|
interface _GetQuoteResponseSuccess
|
|
345
373
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetQuoteOutput]
|
|
346
374
|
def quote: () -> Types::Quote
|
data/sig/types.rbs
CHANGED
|
@@ -174,6 +174,18 @@ module Aws::Outposts
|
|
|
174
174
|
SENSITIVE: []
|
|
175
175
|
end
|
|
176
176
|
|
|
177
|
+
class CreatePrivateConnectivityConfigInput
|
|
178
|
+
attr_accessor outpost_id: ::String
|
|
179
|
+
attr_accessor vpc_information_list: ::Array[Types::VpcInformation]
|
|
180
|
+
SENSITIVE: []
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
class CreatePrivateConnectivityConfigOutput
|
|
184
|
+
attr_accessor private_connectivity_config: Types::PrivateConnectivityConfig
|
|
185
|
+
attr_accessor outpost_id: ::String
|
|
186
|
+
SENSITIVE: []
|
|
187
|
+
end
|
|
188
|
+
|
|
177
189
|
class CreateQuoteInput
|
|
178
190
|
attr_accessor outpost_identifier: ::String
|
|
179
191
|
attr_accessor country_code: ::String
|
|
@@ -380,6 +392,16 @@ module Aws::Outposts
|
|
|
380
392
|
SENSITIVE: []
|
|
381
393
|
end
|
|
382
394
|
|
|
395
|
+
class GetPrivateConnectivityConfigInput
|
|
396
|
+
attr_accessor outpost_id: ::String
|
|
397
|
+
SENSITIVE: []
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
class GetPrivateConnectivityConfigOutput
|
|
401
|
+
attr_accessor private_connectivity_config: Types::PrivateConnectivityConfig
|
|
402
|
+
SENSITIVE: []
|
|
403
|
+
end
|
|
404
|
+
|
|
383
405
|
class GetQuoteInput
|
|
384
406
|
attr_accessor quote_identifier: ::String
|
|
385
407
|
SENSITIVE: []
|
|
@@ -686,6 +708,14 @@ module Aws::Outposts
|
|
|
686
708
|
SENSITIVE: []
|
|
687
709
|
end
|
|
688
710
|
|
|
711
|
+
class PrivateConnectivityConfig
|
|
712
|
+
attr_accessor role_arn: ::String
|
|
713
|
+
attr_accessor private_connectivity_status: ("ENABLED" | "DISABLED")
|
|
714
|
+
attr_accessor vpc_information_list: ::Array[Types::VpcInformation]
|
|
715
|
+
attr_accessor provisioning_role_arn: ::String
|
|
716
|
+
SENSITIVE: []
|
|
717
|
+
end
|
|
718
|
+
|
|
689
719
|
class Quote
|
|
690
720
|
attr_accessor quote_id: ::String
|
|
691
721
|
attr_accessor account_id: ::String
|
|
@@ -991,5 +1021,12 @@ module Aws::Outposts
|
|
|
991
1021
|
attr_accessor message: ::String
|
|
992
1022
|
SENSITIVE: []
|
|
993
1023
|
end
|
|
1024
|
+
|
|
1025
|
+
class VpcInformation
|
|
1026
|
+
attr_accessor vpc_id: ::String
|
|
1027
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
1028
|
+
attr_accessor vpc_endpoint_id: ::String
|
|
1029
|
+
SENSITIVE: []
|
|
1030
|
+
end
|
|
994
1031
|
end
|
|
995
1032
|
end
|