aws-sdk-s3control 1.119.0 → 1.120.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-s3control/client.rb +1 -1
- data/lib/aws-sdk-s3control/endpoint_parameters.rb +12 -12
- data/lib/aws-sdk-s3control.rb +1 -1
- 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: ed7bc264735bb85bf6e0db4e4be0e5f46afe0dcac89b610cccf4c401b095ab1d
|
|
4
|
+
data.tar.gz: '01735749eedc668b829529c2255524329501d1de610460bc779bc22ede6a338a'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e145d704231b10f21a61b9cb8c4a9b93eab4ee00a66c758df1cb2af572ec444d1cb49c43385408c7bbe77ae79bd56fec06c3f8ebe1f2faa17ef8503a970bd48c
|
|
7
|
+
data.tar.gz: f34448a043bd2045bb5a38d08442a8c64fe0d81a4883ef22a53ea39dfee8863761054894528c60fa3d6619e1b95f8bc9f8a83509cdc5b1e2dcbbced5e51817dc
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.120.0
|
|
@@ -13,62 +13,62 @@ module Aws::S3Control
|
|
|
13
13
|
# @!attribute region
|
|
14
14
|
# The AWS region used to dispatch the request.
|
|
15
15
|
#
|
|
16
|
-
# @return [
|
|
16
|
+
# @return [string]
|
|
17
17
|
#
|
|
18
18
|
# @!attribute use_fips
|
|
19
19
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [boolean]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute use_dual_stack
|
|
24
24
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [boolean]
|
|
27
27
|
#
|
|
28
28
|
# @!attribute endpoint
|
|
29
29
|
# Override the endpoint used to send this request
|
|
30
30
|
#
|
|
31
|
-
# @return [
|
|
31
|
+
# @return [string]
|
|
32
32
|
#
|
|
33
33
|
# @!attribute account_id
|
|
34
34
|
# The Account ID used to send the request. This is an optional parameter that will be set automatically for operations that require it.
|
|
35
35
|
#
|
|
36
|
-
# @return [
|
|
36
|
+
# @return [string]
|
|
37
37
|
#
|
|
38
38
|
# @!attribute requires_account_id
|
|
39
39
|
# Internal parameter for operations that require account id host prefix.
|
|
40
40
|
#
|
|
41
|
-
# @return [
|
|
41
|
+
# @return [boolean]
|
|
42
42
|
#
|
|
43
43
|
# @!attribute outpost_id
|
|
44
44
|
# The Outpost ID. Some operations have an optional OutpostId which should be used in endpoint construction.
|
|
45
45
|
#
|
|
46
|
-
# @return [
|
|
46
|
+
# @return [string]
|
|
47
47
|
#
|
|
48
48
|
# @!attribute bucket
|
|
49
49
|
# The S3 bucket used to send the request. This is an optional parameter that will be set automatically for operations that are scoped to an S3 bucket.
|
|
50
50
|
#
|
|
51
|
-
# @return [
|
|
51
|
+
# @return [string]
|
|
52
52
|
#
|
|
53
53
|
# @!attribute access_point_name
|
|
54
54
|
# The S3 AccessPointName used to send the request. This is an optional parameter that will be set automatically for operations that are scoped to an S3 AccessPoint.
|
|
55
55
|
#
|
|
56
|
-
# @return [
|
|
56
|
+
# @return [string]
|
|
57
57
|
#
|
|
58
58
|
# @!attribute use_arn_region
|
|
59
59
|
# When an Access Point ARN is provided and this flag is enabled, the SDK MUST use the ARN's region when constructing the endpoint instead of the client's configured region.
|
|
60
60
|
#
|
|
61
|
-
# @return [
|
|
61
|
+
# @return [boolean]
|
|
62
62
|
#
|
|
63
63
|
# @!attribute resource_arn
|
|
64
64
|
# The resource ARN included in the request. Only set on TagResource, UntagResourceand ListTagsForResource
|
|
65
65
|
#
|
|
66
|
-
# @return [
|
|
66
|
+
# @return [string]
|
|
67
67
|
#
|
|
68
68
|
# @!attribute use_s3_express_control_endpoint
|
|
69
69
|
# Internal parameter to indicate whether S3Express operation should use control plane, (ex. ListDirectoryAccessPoints)
|
|
70
70
|
#
|
|
71
|
-
# @return [
|
|
71
|
+
# @return [boolean]
|
|
72
72
|
#
|
|
73
73
|
EndpointParameters = Struct.new(
|
|
74
74
|
:region,
|
data/lib/aws-sdk-s3control.rb
CHANGED