aws-sdk-outposts 1.107.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-outposts/client.rb +96 -7
- data/lib/aws-sdk-outposts/client_api.rb +67 -0
- data/lib/aws-sdk-outposts/types.rb +130 -4
- data/lib/aws-sdk-outposts.rb +1 -1
- data/sig/client.rbs +30 -2
- data/sig/types.rbs +45 -8
- 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,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.108.0 (2026-07-31)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds the "EKS" value to the AWSServiceName enum and marks the Address field as sensitive.
|
|
13
|
+
|
|
4
14
|
1.107.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
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
|
|
@@ -1110,7 +1164,7 @@ module Aws::Outposts
|
|
|
1110
1164
|
# resp.instances_to_exclude.account_ids #=> Array
|
|
1111
1165
|
# resp.instances_to_exclude.account_ids[0] #=> String
|
|
1112
1166
|
# resp.instances_to_exclude.services #=> Array
|
|
1113
|
-
# resp.instances_to_exclude.services[0] #=> String, one of "AWS", "EC2", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1167
|
+
# resp.instances_to_exclude.services[0] #=> String, one of "AWS", "EC2", "EKS", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1114
1168
|
# resp.dry_run #=> Boolean
|
|
1115
1169
|
# resp.capacity_task_status #=> String, one of "REQUESTED", "IN_PROGRESS", "FAILED", "COMPLETED", "WAITING_FOR_EVACUATION", "CANCELLATION_IN_PROGRESS", "CANCELLED"
|
|
1116
1170
|
# resp.failed.reason #=> String
|
|
@@ -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
|
|
@@ -1748,7 +1837,7 @@ module Aws::Outposts
|
|
|
1748
1837
|
# asset_id_filter: ["AssetId"],
|
|
1749
1838
|
# instance_type_filter: ["OutpostInstanceType"],
|
|
1750
1839
|
# account_id_filter: ["AccountId"],
|
|
1751
|
-
# aws_service_filter: ["AWS"], # accepts AWS, EC2, ELASTICACHE, ELB, RDS, ROUTE53
|
|
1840
|
+
# aws_service_filter: ["AWS"], # accepts AWS, EC2, EKS, ELASTICACHE, ELB, RDS, ROUTE53
|
|
1752
1841
|
# max_results: 1,
|
|
1753
1842
|
# next_token: "Token",
|
|
1754
1843
|
# })
|
|
@@ -1760,7 +1849,7 @@ module Aws::Outposts
|
|
|
1760
1849
|
# resp.asset_instances[0].instance_type #=> String
|
|
1761
1850
|
# resp.asset_instances[0].asset_id #=> String
|
|
1762
1851
|
# resp.asset_instances[0].account_id #=> String
|
|
1763
|
-
# resp.asset_instances[0].aws_service_name #=> String, one of "AWS", "EC2", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1852
|
+
# resp.asset_instances[0].aws_service_name #=> String, one of "AWS", "EC2", "EKS", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1764
1853
|
# resp.next_token #=> String
|
|
1765
1854
|
#
|
|
1766
1855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListAssetInstances AWS API Documentation
|
|
@@ -1892,7 +1981,7 @@ module Aws::Outposts
|
|
|
1892
1981
|
# resp.blocking_instances #=> Array
|
|
1893
1982
|
# resp.blocking_instances[0].instance_id #=> String
|
|
1894
1983
|
# resp.blocking_instances[0].account_id #=> String
|
|
1895
|
-
# resp.blocking_instances[0].aws_service_name #=> String, one of "AWS", "EC2", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1984
|
+
# resp.blocking_instances[0].aws_service_name #=> String, one of "AWS", "EC2", "EKS", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
1896
1985
|
# resp.next_token #=> String
|
|
1897
1986
|
#
|
|
1898
1987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/outposts-2019-12-03/ListBlockingInstancesForCapacityTask AWS API Documentation
|
|
@@ -2484,7 +2573,7 @@ module Aws::Outposts
|
|
|
2484
2573
|
# instances_to_exclude: {
|
|
2485
2574
|
# instances: ["InstanceId"],
|
|
2486
2575
|
# account_ids: ["AccountId"],
|
|
2487
|
-
# services: ["AWS"], # accepts AWS, EC2, ELASTICACHE, ELB, RDS, ROUTE53
|
|
2576
|
+
# services: ["AWS"], # accepts AWS, EC2, EKS, ELASTICACHE, ELB, RDS, ROUTE53
|
|
2488
2577
|
# },
|
|
2489
2578
|
# dry_run: false,
|
|
2490
2579
|
# task_action_on_blocking_instances: "WAIT_FOR_EVACUATION", # accepts WAIT_FOR_EVACUATION, FAIL_TASK
|
|
@@ -2504,7 +2593,7 @@ module Aws::Outposts
|
|
|
2504
2593
|
# resp.instances_to_exclude.account_ids #=> Array
|
|
2505
2594
|
# resp.instances_to_exclude.account_ids[0] #=> String
|
|
2506
2595
|
# resp.instances_to_exclude.services #=> Array
|
|
2507
|
-
# resp.instances_to_exclude.services[0] #=> String, one of "AWS", "EC2", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
2596
|
+
# resp.instances_to_exclude.services[0] #=> String, one of "AWS", "EC2", "EKS", "ELASTICACHE", "ELB", "RDS", "ROUTE53"
|
|
2508
2597
|
# resp.dry_run #=> Boolean
|
|
2509
2598
|
# resp.capacity_task_status #=> String, one of "REQUESTED", "IN_PROGRESS", "FAILED", "COMPLETED", "WAITING_FOR_EVACUATION", "CANCELLATION_IN_PROGRESS", "CANCELLED"
|
|
2510
2599
|
# resp.failed.reason #=> String
|
|
@@ -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.
|
|
@@ -791,7 +827,7 @@ module Aws::Outposts
|
|
|
791
827
|
:operating_address,
|
|
792
828
|
:shipping_address,
|
|
793
829
|
:rack_physical_properties)
|
|
794
|
-
SENSITIVE = []
|
|
830
|
+
SENSITIVE = [:operating_address, :shipping_address]
|
|
795
831
|
include Aws::Structure
|
|
796
832
|
end
|
|
797
833
|
|
|
@@ -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]
|
|
@@ -1408,7 +1468,7 @@ module Aws::Outposts
|
|
|
1408
1468
|
:site_id,
|
|
1409
1469
|
:address_type,
|
|
1410
1470
|
:address)
|
|
1411
|
-
SENSITIVE = []
|
|
1471
|
+
SENSITIVE = [:address]
|
|
1412
1472
|
include Aws::Structure
|
|
1413
1473
|
end
|
|
1414
1474
|
|
|
@@ -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
|
#
|
|
@@ -3498,7 +3595,7 @@ module Aws::Outposts
|
|
|
3498
3595
|
:site_id,
|
|
3499
3596
|
:address_type,
|
|
3500
3597
|
:address)
|
|
3501
|
-
SENSITIVE = []
|
|
3598
|
+
SENSITIVE = [:address]
|
|
3502
3599
|
include Aws::Structure
|
|
3503
3600
|
end
|
|
3504
3601
|
|
|
@@ -3515,7 +3612,7 @@ module Aws::Outposts
|
|
|
3515
3612
|
class UpdateSiteAddressOutput < Struct.new(
|
|
3516
3613
|
:address_type,
|
|
3517
3614
|
:address)
|
|
3518
|
-
SENSITIVE = []
|
|
3615
|
+
SENSITIVE = [:address]
|
|
3519
3616
|
include Aws::Structure
|
|
3520
3617
|
end
|
|
3521
3618
|
|
|
@@ -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
|
|
@@ -396,7 +424,7 @@ module Aws
|
|
|
396
424
|
?asset_id_filter: Array[::String],
|
|
397
425
|
?instance_type_filter: Array[::String],
|
|
398
426
|
?account_id_filter: Array[::String],
|
|
399
|
-
?aws_service_filter: Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")],
|
|
427
|
+
?aws_service_filter: Array[("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")],
|
|
400
428
|
?max_results: ::Integer,
|
|
401
429
|
?next_token: ::String
|
|
402
430
|
) -> _ListAssetInstancesResponseSuccess
|
|
@@ -569,7 +597,7 @@ module Aws
|
|
|
569
597
|
?instances_to_exclude: {
|
|
570
598
|
instances: Array[::String]?,
|
|
571
599
|
account_ids: Array[::String]?,
|
|
572
|
-
services: Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]?
|
|
600
|
+
services: Array[("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]?
|
|
573
601
|
},
|
|
574
602
|
?dry_run: bool,
|
|
575
603
|
?task_action_on_blocking_instances: ("WAIT_FOR_EVACUATION" | "FAIL_TASK")
|
data/sig/types.rbs
CHANGED
|
@@ -42,7 +42,7 @@ module Aws::Outposts
|
|
|
42
42
|
attr_accessor instance_type: ::String
|
|
43
43
|
attr_accessor asset_id: ::String
|
|
44
44
|
attr_accessor account_id: ::String
|
|
45
|
-
attr_accessor aws_service_name: ("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
|
45
|
+
attr_accessor aws_service_name: ("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
|
46
46
|
SENSITIVE: []
|
|
47
47
|
end
|
|
48
48
|
|
|
@@ -60,7 +60,7 @@ module Aws::Outposts
|
|
|
60
60
|
class BlockingInstance
|
|
61
61
|
attr_accessor instance_id: ::String
|
|
62
62
|
attr_accessor account_id: ::String
|
|
63
|
-
attr_accessor aws_service_name: ("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
|
63
|
+
attr_accessor aws_service_name: ("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")
|
|
64
64
|
SENSITIVE: []
|
|
65
65
|
end
|
|
66
66
|
|
|
@@ -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
|
|
@@ -216,7 +228,7 @@ module Aws::Outposts
|
|
|
216
228
|
attr_accessor operating_address: Types::Address
|
|
217
229
|
attr_accessor shipping_address: Types::Address
|
|
218
230
|
attr_accessor rack_physical_properties: Types::RackPhysicalProperties
|
|
219
|
-
SENSITIVE: []
|
|
231
|
+
SENSITIVE: [:operating_address, :shipping_address]
|
|
220
232
|
end
|
|
221
233
|
|
|
222
234
|
class CreateSiteOutput
|
|
@@ -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: []
|
|
@@ -411,7 +433,7 @@ module Aws::Outposts
|
|
|
411
433
|
attr_accessor site_id: ::String
|
|
412
434
|
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
|
413
435
|
attr_accessor address: Types::Address
|
|
414
|
-
SENSITIVE: []
|
|
436
|
+
SENSITIVE: [:address]
|
|
415
437
|
end
|
|
416
438
|
|
|
417
439
|
class GetSiteInput
|
|
@@ -439,7 +461,7 @@ module Aws::Outposts
|
|
|
439
461
|
class InstancesToExclude
|
|
440
462
|
attr_accessor instances: ::Array[::String]
|
|
441
463
|
attr_accessor account_ids: ::Array[::String]
|
|
442
|
-
attr_accessor services: ::Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
|
464
|
+
attr_accessor services: ::Array[("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
|
443
465
|
SENSITIVE: []
|
|
444
466
|
end
|
|
445
467
|
|
|
@@ -477,7 +499,7 @@ module Aws::Outposts
|
|
|
477
499
|
attr_accessor asset_id_filter: ::Array[::String]
|
|
478
500
|
attr_accessor instance_type_filter: ::Array[::String]
|
|
479
501
|
attr_accessor account_id_filter: ::Array[::String]
|
|
480
|
-
attr_accessor aws_service_filter: ::Array[("AWS" | "EC2" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
|
502
|
+
attr_accessor aws_service_filter: ::Array[("AWS" | "EC2" | "EKS" | "ELASTICACHE" | "ELB" | "RDS" | "ROUTE53")]
|
|
481
503
|
attr_accessor max_results: ::Integer
|
|
482
504
|
attr_accessor next_token: ::String
|
|
483
505
|
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
|
|
@@ -946,13 +976,13 @@ module Aws::Outposts
|
|
|
946
976
|
attr_accessor site_id: ::String
|
|
947
977
|
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
|
948
978
|
attr_accessor address: Types::Address
|
|
949
|
-
SENSITIVE: []
|
|
979
|
+
SENSITIVE: [:address]
|
|
950
980
|
end
|
|
951
981
|
|
|
952
982
|
class UpdateSiteAddressOutput
|
|
953
983
|
attr_accessor address_type: ("SHIPPING_ADDRESS" | "OPERATING_ADDRESS")
|
|
954
984
|
attr_accessor address: Types::Address
|
|
955
|
-
SENSITIVE: []
|
|
985
|
+
SENSITIVE: [:address]
|
|
956
986
|
end
|
|
957
987
|
|
|
958
988
|
class UpdateSiteInput
|
|
@@ -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
|