aws-sdk-s3outposts 1.12.0 → 1.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3outposts/client.rb +101 -53
- data/lib/aws-sdk-s3outposts/client_api.rb +29 -0
- data/lib/aws-sdk-s3outposts/types.rb +86 -18
- data/lib/aws-sdk-s3outposts.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d924db0cfa8d31b3faabd3c9c31e33c123755f42e218d1c5ec9c4d10d92c858a
|
4
|
+
data.tar.gz: 245c8e21e1259f7d5cb7cb802a3efe64f1a01f13ea1f88c87f94c43271aa5cd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7a5245c5fdc5b3fc3bbae0a2b79a50f2449bf4560434c605a2fa6c45bbfe9bb012496ce94cabef3480e1e0da17510bb14c10193c4732eb5e1d9f1ac35609838
|
7
|
+
data.tar.gz: ad243f7a720b5ebb7a7dd3897d1f0e49a69c35ac95992d2b06cf561c1b7c57d904edd1e5288e1a553b40ffde4fcdaa1f404917e66d4ef9a4cf61f3383760b42b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2022-03-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - S3 on Outposts is releasing a new API, ListSharedEndpoints, that lists all endpoints associated with S3 on Outpost, that has been shared by Resource Access Manager (RAM).
|
8
|
+
|
4
9
|
1.12.0 (2022-02-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -351,16 +351,9 @@ module Aws::S3Outposts
|
|
351
351
|
|
352
352
|
# @!group API Operations
|
353
353
|
|
354
|
-
#
|
355
|
-
# scale for shared datasets in S3 on Outposts. S3 on Outposts uses
|
356
|
-
# endpoints to connect to Outposts buckets so that you can perform
|
357
|
-
# actions within your virtual private cloud (VPC). For more information,
|
358
|
-
# see [ Accessing S3 on Outposts using VPC only access points][1].
|
354
|
+
# Creates an endpoint and associates it with the specified Outpost.
|
359
355
|
#
|
360
|
-
#
|
361
|
-
# Outposts.
|
362
|
-
#
|
363
|
-
# <note markdown="1"> It can take up to 5 minutes for this action to complete.
|
356
|
+
# <note markdown="1"> It can take up to 5 minutes for this action to finish.
|
364
357
|
#
|
365
358
|
# </note>
|
366
359
|
#
|
@@ -368,35 +361,39 @@ module Aws::S3Outposts
|
|
368
361
|
#
|
369
362
|
# Related actions include:
|
370
363
|
#
|
371
|
-
# * [DeleteEndpoint][
|
364
|
+
# * [DeleteEndpoint][1]
|
372
365
|
#
|
373
|
-
# * [ListEndpoints][
|
366
|
+
# * [ListEndpoints][2]
|
374
367
|
#
|
375
368
|
#
|
376
369
|
#
|
377
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
378
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
379
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html
|
370
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html
|
371
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html
|
380
372
|
#
|
381
373
|
# @option params [required, String] :outpost_id
|
382
|
-
# The ID of the
|
374
|
+
# The ID of the Outposts.
|
383
375
|
#
|
384
376
|
# @option params [required, String] :subnet_id
|
385
377
|
# The ID of the subnet in the selected VPC. The endpoint subnet must
|
386
|
-
# belong to the Outpost that has
|
378
|
+
# belong to the Outpost that has Amazon S3 on Outposts provisioned.
|
387
379
|
#
|
388
380
|
# @option params [required, String] :security_group_id
|
389
381
|
# The ID of the security group to use with the endpoint.
|
390
382
|
#
|
391
383
|
# @option params [String] :access_type
|
392
|
-
# The type of access for the
|
393
|
-
#
|
394
|
-
#
|
395
|
-
#
|
384
|
+
# The type of access for the network connectivity for the Amazon S3 on
|
385
|
+
# Outposts endpoint. To use the Amazon Web Services VPC, choose
|
386
|
+
# `Private`. To use the endpoint with an on-premises network, choose
|
387
|
+
# `CustomerOwnedIp`. If you choose `CustomerOwnedIp`, you must also
|
388
|
+
# provide the customer-owned IP address pool (CoIP pool).
|
389
|
+
#
|
390
|
+
# <note markdown="1"> `Private` is the default access type value.
|
391
|
+
#
|
392
|
+
# </note>
|
396
393
|
#
|
397
394
|
# @option params [String] :customer_owned_ipv_4_pool
|
398
|
-
# The ID of the customer-owned IPv4 pool for the
|
399
|
-
#
|
395
|
+
# The ID of the customer-owned IPv4 address pool (CoIP pool) for the
|
396
|
+
# endpoint. IP addresses are allocated from this pool for the endpoint.
|
400
397
|
#
|
401
398
|
# @return [Types::CreateEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
402
399
|
#
|
@@ -425,15 +422,9 @@ module Aws::S3Outposts
|
|
425
422
|
req.send_request(options)
|
426
423
|
end
|
427
424
|
|
428
|
-
#
|
429
|
-
# scale for shared datasets in S3 on Outposts. S3 on Outposts uses
|
430
|
-
# endpoints to connect to Outposts buckets so that you can perform
|
431
|
-
# actions within your virtual private cloud (VPC). For more information,
|
432
|
-
# see [ Accessing S3 on Outposts using VPC only access points][1].
|
433
|
-
#
|
434
|
-
# This action deletes an endpoint.
|
425
|
+
# Deletes an endpoint.
|
435
426
|
#
|
436
|
-
# <note markdown="1"> It can take up to 5 minutes for this action to
|
427
|
+
# <note markdown="1"> It can take up to 5 minutes for this action to finish.
|
437
428
|
#
|
438
429
|
# </note>
|
439
430
|
#
|
@@ -441,21 +432,20 @@ module Aws::S3Outposts
|
|
441
432
|
#
|
442
433
|
# Related actions include:
|
443
434
|
#
|
444
|
-
# * [CreateEndpoint][
|
435
|
+
# * [CreateEndpoint][1]
|
445
436
|
#
|
446
|
-
# * [ListEndpoints][
|
437
|
+
# * [ListEndpoints][2]
|
447
438
|
#
|
448
439
|
#
|
449
440
|
#
|
450
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
451
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
452
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html
|
441
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html
|
442
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_ListEndpoints.html
|
453
443
|
#
|
454
444
|
# @option params [required, String] :endpoint_id
|
455
445
|
# The ID of the endpoint.
|
456
446
|
#
|
457
447
|
# @option params [required, String] :outpost_id
|
458
|
-
# The ID of the
|
448
|
+
# The ID of the Outposts.
|
459
449
|
#
|
460
450
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
461
451
|
#
|
@@ -475,33 +465,25 @@ module Aws::S3Outposts
|
|
475
465
|
req.send_request(options)
|
476
466
|
end
|
477
467
|
|
478
|
-
#
|
479
|
-
# scale for shared datasets in S3 on Outposts. S3 on Outposts uses
|
480
|
-
# endpoints to connect to Outposts buckets so that you can perform
|
481
|
-
# actions within your virtual private cloud (VPC). For more information,
|
482
|
-
# see [ Accessing S3 on Outposts using VPC only access points][1].
|
483
|
-
#
|
484
|
-
# This action lists endpoints associated with the Outposts.
|
485
|
-
#
|
486
|
-
#
|
468
|
+
# Lists endpoints associated with the specified Outpost.
|
487
469
|
#
|
488
470
|
# Related actions include:
|
489
471
|
#
|
490
|
-
# * [CreateEndpoint][
|
472
|
+
# * [CreateEndpoint][1]
|
491
473
|
#
|
492
|
-
# * [DeleteEndpoint][
|
474
|
+
# * [DeleteEndpoint][2]
|
493
475
|
#
|
494
476
|
#
|
495
477
|
#
|
496
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/
|
497
|
-
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/
|
498
|
-
# [3]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html
|
478
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html
|
479
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html
|
499
480
|
#
|
500
481
|
# @option params [String] :next_token
|
501
|
-
#
|
482
|
+
# If a previous response from this operation included a `NextToken`
|
483
|
+
# value, provide that value here to retrieve the next page of results.
|
502
484
|
#
|
503
485
|
# @option params [Integer] :max_results
|
504
|
-
# The
|
486
|
+
# The maximum number of endpoints that will be returned in the response.
|
505
487
|
#
|
506
488
|
# @return [Types::ListEndpointsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
507
489
|
#
|
@@ -543,6 +525,72 @@ module Aws::S3Outposts
|
|
543
525
|
req.send_request(options)
|
544
526
|
end
|
545
527
|
|
528
|
+
# Lists all endpoints associated with an Outpost that has been shared by
|
529
|
+
# Amazon Web Services Resource Access Manager (RAM).
|
530
|
+
#
|
531
|
+
# Related actions include:
|
532
|
+
#
|
533
|
+
# * [CreateEndpoint][1]
|
534
|
+
#
|
535
|
+
# * [DeleteEndpoint][2]
|
536
|
+
#
|
537
|
+
#
|
538
|
+
#
|
539
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_CreateEndpoint.html
|
540
|
+
# [2]: https://docs.aws.amazon.com/AmazonS3/latest/API/API_s3outposts_DeleteEndpoint.html
|
541
|
+
#
|
542
|
+
# @option params [String] :next_token
|
543
|
+
# If a previous response from this operation included a `NextToken`
|
544
|
+
# value, you can provide that value here to retrieve the next page of
|
545
|
+
# results.
|
546
|
+
#
|
547
|
+
# @option params [Integer] :max_results
|
548
|
+
# The maximum number of endpoints that will be returned in the response.
|
549
|
+
#
|
550
|
+
# @option params [required, String] :outpost_id
|
551
|
+
# The ID of the Amazon Web Services Outpost.
|
552
|
+
#
|
553
|
+
# @return [Types::ListSharedEndpointsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
554
|
+
#
|
555
|
+
# * {Types::ListSharedEndpointsResult#endpoints #endpoints} => Array<Types::Endpoint>
|
556
|
+
# * {Types::ListSharedEndpointsResult#next_token #next_token} => String
|
557
|
+
#
|
558
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
559
|
+
#
|
560
|
+
# @example Request syntax with placeholder values
|
561
|
+
#
|
562
|
+
# resp = client.list_shared_endpoints({
|
563
|
+
# next_token: "NextToken",
|
564
|
+
# max_results: 1,
|
565
|
+
# outpost_id: "OutpostId", # required
|
566
|
+
# })
|
567
|
+
#
|
568
|
+
# @example Response structure
|
569
|
+
#
|
570
|
+
# resp.endpoints #=> Array
|
571
|
+
# resp.endpoints[0].endpoint_arn #=> String
|
572
|
+
# resp.endpoints[0].outposts_id #=> String
|
573
|
+
# resp.endpoints[0].cidr_block #=> String
|
574
|
+
# resp.endpoints[0].status #=> String, one of "Pending", "Available", "Deleting"
|
575
|
+
# resp.endpoints[0].creation_time #=> Time
|
576
|
+
# resp.endpoints[0].network_interfaces #=> Array
|
577
|
+
# resp.endpoints[0].network_interfaces[0].network_interface_id #=> String
|
578
|
+
# resp.endpoints[0].vpc_id #=> String
|
579
|
+
# resp.endpoints[0].subnet_id #=> String
|
580
|
+
# resp.endpoints[0].security_group_id #=> String
|
581
|
+
# resp.endpoints[0].access_type #=> String, one of "Private", "CustomerOwnedIp"
|
582
|
+
# resp.endpoints[0].customer_owned_ipv_4_pool #=> String
|
583
|
+
# resp.next_token #=> String
|
584
|
+
#
|
585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/ListSharedEndpoints AWS API Documentation
|
586
|
+
#
|
587
|
+
# @overload list_shared_endpoints(params = {})
|
588
|
+
# @param [Hash] params ({})
|
589
|
+
def list_shared_endpoints(params = {}, options = {})
|
590
|
+
req = build_request(:list_shared_endpoints, params)
|
591
|
+
req.send_request(options)
|
592
|
+
end
|
593
|
+
|
546
594
|
# @!endgroup
|
547
595
|
|
548
596
|
# @param params ({})
|
@@ -556,7 +604,7 @@ module Aws::S3Outposts
|
|
556
604
|
params: params,
|
557
605
|
config: config)
|
558
606
|
context[:gem_name] = 'aws-sdk-s3outposts'
|
559
|
-
context[:gem_version] = '1.
|
607
|
+
context[:gem_version] = '1.13.0'
|
560
608
|
Seahorse::Client::Request.new(handlers, context)
|
561
609
|
end
|
562
610
|
|
@@ -31,6 +31,8 @@ module Aws::S3Outposts
|
|
31
31
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
32
32
|
ListEndpointsRequest = Shapes::StructureShape.new(name: 'ListEndpointsRequest')
|
33
33
|
ListEndpointsResult = Shapes::StructureShape.new(name: 'ListEndpointsResult')
|
34
|
+
ListSharedEndpointsRequest = Shapes::StructureShape.new(name: 'ListSharedEndpointsRequest')
|
35
|
+
ListSharedEndpointsResult = Shapes::StructureShape.new(name: 'ListSharedEndpointsResult')
|
34
36
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
35
37
|
NetworkInterface = Shapes::StructureShape.new(name: 'NetworkInterface')
|
36
38
|
NetworkInterfaceId = Shapes::StringShape.new(name: 'NetworkInterfaceId')
|
@@ -89,6 +91,15 @@ module Aws::S3Outposts
|
|
89
91
|
ListEndpointsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
90
92
|
ListEndpointsResult.struct_class = Types::ListEndpointsResult
|
91
93
|
|
94
|
+
ListSharedEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
95
|
+
ListSharedEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
96
|
+
ListSharedEndpointsRequest.add_member(:outpost_id, Shapes::ShapeRef.new(shape: OutpostId, required: true, location: "querystring", location_name: "outpostId"))
|
97
|
+
ListSharedEndpointsRequest.struct_class = Types::ListSharedEndpointsRequest
|
98
|
+
|
99
|
+
ListSharedEndpointsResult.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
|
100
|
+
ListSharedEndpointsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
101
|
+
ListSharedEndpointsResult.struct_class = Types::ListSharedEndpointsResult
|
102
|
+
|
92
103
|
NetworkInterface.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
|
93
104
|
NetworkInterface.struct_class = Types::NetworkInterface
|
94
105
|
|
@@ -161,6 +172,24 @@ module Aws::S3Outposts
|
|
161
172
|
}
|
162
173
|
)
|
163
174
|
end)
|
175
|
+
|
176
|
+
api.add_operation(:list_shared_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
177
|
+
o.name = "ListSharedEndpoints"
|
178
|
+
o.http_method = "GET"
|
179
|
+
o.http_request_uri = "/S3Outposts/ListSharedEndpoints"
|
180
|
+
o.input = Shapes::ShapeRef.new(shape: ListSharedEndpointsRequest)
|
181
|
+
o.output = Shapes::ShapeRef.new(shape: ListSharedEndpointsResult)
|
182
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
183
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
184
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
185
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
186
|
+
o[:pager] = Aws::Pager.new(
|
187
|
+
limit_key: "max_results",
|
188
|
+
tokens: {
|
189
|
+
"next_token" => "next_token"
|
190
|
+
}
|
191
|
+
)
|
192
|
+
end)
|
164
193
|
end
|
165
194
|
|
166
195
|
end
|
@@ -48,13 +48,12 @@ module Aws::S3Outposts
|
|
48
48
|
# }
|
49
49
|
#
|
50
50
|
# @!attribute [rw] outpost_id
|
51
|
-
# The ID of the
|
51
|
+
# The ID of the Outposts.
|
52
52
|
# @return [String]
|
53
53
|
#
|
54
54
|
# @!attribute [rw] subnet_id
|
55
55
|
# The ID of the subnet in the selected VPC. The endpoint subnet must
|
56
|
-
# belong to the Outpost that has
|
57
|
-
# provisioned.
|
56
|
+
# belong to the Outpost that has Amazon S3 on Outposts provisioned.
|
58
57
|
# @return [String]
|
59
58
|
#
|
60
59
|
# @!attribute [rw] security_group_id
|
@@ -62,15 +61,21 @@ module Aws::S3Outposts
|
|
62
61
|
# @return [String]
|
63
62
|
#
|
64
63
|
# @!attribute [rw] access_type
|
65
|
-
# The type of access for the
|
66
|
-
#
|
67
|
-
#
|
68
|
-
#
|
64
|
+
# The type of access for the network connectivity for the Amazon S3 on
|
65
|
+
# Outposts endpoint. To use the Amazon Web Services VPC, choose
|
66
|
+
# `Private`. To use the endpoint with an on-premises network, choose
|
67
|
+
# `CustomerOwnedIp`. If you choose `CustomerOwnedIp`, you must also
|
68
|
+
# provide the customer-owned IP address pool (CoIP pool).
|
69
|
+
#
|
70
|
+
# <note markdown="1"> `Private` is the default access type value.
|
71
|
+
#
|
72
|
+
# </note>
|
69
73
|
# @return [String]
|
70
74
|
#
|
71
75
|
# @!attribute [rw] customer_owned_ipv_4_pool
|
72
|
-
# The ID of the customer-owned IPv4 pool for the
|
73
|
-
# addresses
|
76
|
+
# The ID of the customer-owned IPv4 address pool (CoIP pool) for the
|
77
|
+
# endpoint. IP addresses are allocated from this pool for the
|
78
|
+
# endpoint.
|
74
79
|
# @return [String]
|
75
80
|
#
|
76
81
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/CreateEndpointRequest AWS API Documentation
|
@@ -110,7 +115,7 @@ module Aws::S3Outposts
|
|
110
115
|
# @return [String]
|
111
116
|
#
|
112
117
|
# @!attribute [rw] outpost_id
|
113
|
-
# The ID of the
|
118
|
+
# The ID of the Outposts.
|
114
119
|
# @return [String]
|
115
120
|
#
|
116
121
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/DeleteEndpointRequest AWS API Documentation
|
@@ -126,18 +131,19 @@ module Aws::S3Outposts
|
|
126
131
|
# scale for shared datasets in S3 on Outposts. S3 on Outposts uses
|
127
132
|
# endpoints to connect to Outposts buckets so that you can perform
|
128
133
|
# actions within your virtual private cloud (VPC). For more information,
|
129
|
-
# see [ Accessing S3 on Outposts using VPC
|
134
|
+
# see [ Accessing S3 on Outposts using VPC-only access points][1] in the
|
135
|
+
# *Amazon Simple Storage Service User Guide*.
|
130
136
|
#
|
131
137
|
#
|
132
138
|
#
|
133
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/
|
139
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/WorkingWithS3Outposts.html
|
134
140
|
#
|
135
141
|
# @!attribute [rw] endpoint_arn
|
136
142
|
# The Amazon Resource Name (ARN) of the endpoint.
|
137
143
|
# @return [String]
|
138
144
|
#
|
139
145
|
# @!attribute [rw] outposts_id
|
140
|
-
# The ID of the
|
146
|
+
# The ID of the Outposts.
|
141
147
|
# @return [String]
|
142
148
|
#
|
143
149
|
# @!attribute [rw] cidr_block
|
@@ -169,10 +175,13 @@ module Aws::S3Outposts
|
|
169
175
|
# @return [String]
|
170
176
|
#
|
171
177
|
# @!attribute [rw] access_type
|
178
|
+
# The type of connectivity used to access the Amazon S3 on Outposts
|
179
|
+
# endpoint.
|
172
180
|
# @return [String]
|
173
181
|
#
|
174
182
|
# @!attribute [rw] customer_owned_ipv_4_pool
|
175
|
-
# The ID of the customer-owned IPv4 pool used for the
|
183
|
+
# The ID of the customer-owned IPv4 address pool used for the
|
184
|
+
# endpoint.
|
176
185
|
# @return [String]
|
177
186
|
#
|
178
187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/Endpoint AWS API Documentation
|
@@ -215,11 +224,13 @@ module Aws::S3Outposts
|
|
215
224
|
# }
|
216
225
|
#
|
217
226
|
# @!attribute [rw] next_token
|
218
|
-
#
|
227
|
+
# If a previous response from this operation included a `NextToken`
|
228
|
+
# value, provide that value here to retrieve the next page of results.
|
219
229
|
# @return [String]
|
220
230
|
#
|
221
231
|
# @!attribute [rw] max_results
|
222
|
-
# The
|
232
|
+
# The maximum number of endpoints that will be returned in the
|
233
|
+
# response.
|
223
234
|
# @return [Integer]
|
224
235
|
#
|
225
236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/ListEndpointsRequest AWS API Documentation
|
@@ -232,11 +243,13 @@ module Aws::S3Outposts
|
|
232
243
|
end
|
233
244
|
|
234
245
|
# @!attribute [rw] endpoints
|
235
|
-
#
|
246
|
+
# The list of endpoints associated with the specified Outpost.
|
236
247
|
# @return [Array<Types::Endpoint>]
|
237
248
|
#
|
238
249
|
# @!attribute [rw] next_token
|
239
|
-
#
|
250
|
+
# If the number of endpoints associated with the specified Outpost
|
251
|
+
# exceeds `MaxResults`, you can include this value in subsequent calls
|
252
|
+
# to this operation to retrieve more results.
|
240
253
|
# @return [String]
|
241
254
|
#
|
242
255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/ListEndpointsResult AWS API Documentation
|
@@ -248,6 +261,61 @@ module Aws::S3Outposts
|
|
248
261
|
include Aws::Structure
|
249
262
|
end
|
250
263
|
|
264
|
+
# @note When making an API call, you may pass ListSharedEndpointsRequest
|
265
|
+
# data as a hash:
|
266
|
+
#
|
267
|
+
# {
|
268
|
+
# next_token: "NextToken",
|
269
|
+
# max_results: 1,
|
270
|
+
# outpost_id: "OutpostId", # required
|
271
|
+
# }
|
272
|
+
#
|
273
|
+
# @!attribute [rw] next_token
|
274
|
+
# If a previous response from this operation included a `NextToken`
|
275
|
+
# value, you can provide that value here to retrieve the next page of
|
276
|
+
# results.
|
277
|
+
# @return [String]
|
278
|
+
#
|
279
|
+
# @!attribute [rw] max_results
|
280
|
+
# The maximum number of endpoints that will be returned in the
|
281
|
+
# response.
|
282
|
+
# @return [Integer]
|
283
|
+
#
|
284
|
+
# @!attribute [rw] outpost_id
|
285
|
+
# The ID of the Amazon Web Services Outpost.
|
286
|
+
# @return [String]
|
287
|
+
#
|
288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/ListSharedEndpointsRequest AWS API Documentation
|
289
|
+
#
|
290
|
+
class ListSharedEndpointsRequest < Struct.new(
|
291
|
+
:next_token,
|
292
|
+
:max_results,
|
293
|
+
:outpost_id)
|
294
|
+
SENSITIVE = []
|
295
|
+
include Aws::Structure
|
296
|
+
end
|
297
|
+
|
298
|
+
# @!attribute [rw] endpoints
|
299
|
+
# The list of endpoints associated with the specified Outpost that
|
300
|
+
# have been shared by Amazon Web Services Resource Access Manager
|
301
|
+
# (RAM).
|
302
|
+
# @return [Array<Types::Endpoint>]
|
303
|
+
#
|
304
|
+
# @!attribute [rw] next_token
|
305
|
+
# If the number of endpoints associated with the specified Outpost
|
306
|
+
# exceeds `MaxResults`, you can include this value in subsequent calls
|
307
|
+
# to this operation to retrieve more results.
|
308
|
+
# @return [String]
|
309
|
+
#
|
310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3outposts-2017-07-25/ListSharedEndpointsResult AWS API Documentation
|
311
|
+
#
|
312
|
+
class ListSharedEndpointsResult < Struct.new(
|
313
|
+
:endpoints,
|
314
|
+
:next_token)
|
315
|
+
SENSITIVE = []
|
316
|
+
include Aws::Structure
|
317
|
+
end
|
318
|
+
|
251
319
|
# The container for the network interface.
|
252
320
|
#
|
253
321
|
# @!attribute [rw] network_interface_id
|
data/lib/aws-sdk-s3outposts.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3outposts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|