aws-sdk-supplychain 1.19.0 → 1.21.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-supplychain/client.rb +46 -11
- data/lib/aws-sdk-supplychain/client_api.rb +1 -0
- data/lib/aws-sdk-supplychain/types.rb +24 -12
- data/lib/aws-sdk-supplychain.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2376de2ebeb3a993366b1f47cb4574c2b22f908ef1538d4b7f9ac337691f8056
|
4
|
+
data.tar.gz: 686ba654111e7f27e3d76b4f95627acf12711b2fb7eed35afee58173a66bedc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 921d3bff701bf8bcbe7a7fa1cf9461986adeaa2139f939d609e7d8b9c88c51be85fdb59b020e1f0cc86670edba271ea72e7bc7ad8143c8081334892ee9812431
|
7
|
+
data.tar.gz: 9b5030431f9e73e9839cc20eb82a9e795b6808fe0a9cef3dcdb1f9428e2a6f6f688167ff008169bb9c4d0482240618ebba13e6835e5ea137a6f59d40edfe62d4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.20.0 (2025-01-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Allow vanity DNS domain when creating a new ASC instance
|
13
|
+
|
4
14
|
1.19.0 (2024-10-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
@@ -257,11 +257,34 @@ module Aws::SupplyChain
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -726,7 +749,7 @@ module Aws::SupplyChain
|
|
726
749
|
#
|
727
750
|
# @option params [Types::DataLakeDatasetSchema] :schema
|
728
751
|
# The custom schema of the data lake dataset and is only required when
|
729
|
-
# the name space is
|
752
|
+
# the name space is **default**.
|
730
753
|
#
|
731
754
|
# @option params [String] :description
|
732
755
|
# The description of the dataset.
|
@@ -1067,6 +1090,12 @@ module Aws::SupplyChain
|
|
1067
1090
|
# the Amazon Web Services owned KMS key. If you don't provide anything
|
1068
1091
|
# here, AWS Supply Chain uses the Amazon Web Services owned KMS key.
|
1069
1092
|
#
|
1093
|
+
# @option params [String] :web_app_dns_domain
|
1094
|
+
# The DNS subdomain of the web app. This would be "example" in the URL
|
1095
|
+
# "example.scn.global.on.aws". You can set this to a custom value, as
|
1096
|
+
# long as the domain isn't already being used by someone else. The name
|
1097
|
+
# may only include alphanumeric characters and hyphens.
|
1098
|
+
#
|
1070
1099
|
# @option params [Hash<String,String>] :tags
|
1071
1100
|
# The Amazon Web Services tags of an instance to be created.
|
1072
1101
|
#
|
@@ -1132,6 +1161,7 @@ module Aws::SupplyChain
|
|
1132
1161
|
# instance_name: "InstanceName",
|
1133
1162
|
# instance_description: "InstanceDescription",
|
1134
1163
|
# kms_key_arn: "KmsKeyArn",
|
1164
|
+
# web_app_dns_domain: "InstanceWebAppDnsDomain",
|
1135
1165
|
# tags: {
|
1136
1166
|
# "TagKey" => "TagValue",
|
1137
1167
|
# },
|
@@ -1219,19 +1249,22 @@ module Aws::SupplyChain
|
|
1219
1249
|
# The AWS Supply Chain instance identifier.
|
1220
1250
|
#
|
1221
1251
|
# @option params [required, String] :namespace
|
1222
|
-
# The
|
1252
|
+
# The name space of the dataset. The available values are:
|
1223
1253
|
#
|
1224
|
-
# * asc
|
1254
|
+
# * **asc** - For information on the Amazon Web Services Supply Chain
|
1255
|
+
# supported datasets see
|
1256
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
1225
1257
|
#
|
1226
|
-
# * default
|
1258
|
+
# * **default** - For datasets with custom user-defined schemas.
|
1227
1259
|
#
|
1228
1260
|
#
|
1229
1261
|
#
|
1230
1262
|
# [1]: https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html
|
1231
1263
|
#
|
1232
1264
|
# @option params [required, String] :name
|
1233
|
-
# The name of the dataset.
|
1234
|
-
#
|
1265
|
+
# The name of the dataset. For **asc** name space, the name must be one
|
1266
|
+
# of the supported data entities under
|
1267
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
1235
1268
|
#
|
1236
1269
|
#
|
1237
1270
|
#
|
@@ -2054,11 +2087,13 @@ module Aws::SupplyChain
|
|
2054
2087
|
# The Amazon Web Services Supply Chain instance identifier.
|
2055
2088
|
#
|
2056
2089
|
# @option params [required, String] :namespace
|
2057
|
-
# The
|
2090
|
+
# The name space of the dataset. The available values are:
|
2058
2091
|
#
|
2059
|
-
# * asc
|
2092
|
+
# * **asc** - For information on the Amazon Web Services Supply Chain
|
2093
|
+
# supported datasets see
|
2094
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
2060
2095
|
#
|
2061
|
-
# * default
|
2096
|
+
# * **default** - For datasets with custom user-defined schemas.
|
2062
2097
|
#
|
2063
2098
|
#
|
2064
2099
|
#
|
@@ -2594,7 +2629,7 @@ module Aws::SupplyChain
|
|
2594
2629
|
#
|
2595
2630
|
# @option params [required, String] :data
|
2596
2631
|
# The data payload of the event. For more information on the data schema
|
2597
|
-
# to use, see [Data entities supported in AWS Supply Chain
|
2632
|
+
# to use, see [Data entities supported in AWS Supply Chain][1].
|
2598
2633
|
#
|
2599
2634
|
#
|
2600
2635
|
#
|
@@ -3592,7 +3627,7 @@ module Aws::SupplyChain
|
|
3592
3627
|
tracer: tracer
|
3593
3628
|
)
|
3594
3629
|
context[:gem_name] = 'aws-sdk-supplychain'
|
3595
|
-
context[:gem_version] = '1.
|
3630
|
+
context[:gem_version] = '1.21.0'
|
3596
3631
|
Seahorse::Client::Request.new(handlers, context)
|
3597
3632
|
end
|
3598
3633
|
|
@@ -180,6 +180,7 @@ module Aws::SupplyChain
|
|
180
180
|
CreateInstanceRequest.add_member(:instance_name, Shapes::ShapeRef.new(shape: InstanceName, location_name: "instanceName"))
|
181
181
|
CreateInstanceRequest.add_member(:instance_description, Shapes::ShapeRef.new(shape: InstanceDescription, location_name: "instanceDescription"))
|
182
182
|
CreateInstanceRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
|
183
|
+
CreateInstanceRequest.add_member(:web_app_dns_domain, Shapes::ShapeRef.new(shape: InstanceWebAppDnsDomain, location_name: "webAppDnsDomain"))
|
183
184
|
CreateInstanceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
184
185
|
CreateInstanceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
185
186
|
CreateInstanceRequest.struct_class = Types::CreateInstanceRequest
|
@@ -211,7 +211,7 @@ module Aws::SupplyChain
|
|
211
211
|
#
|
212
212
|
# @!attribute [rw] schema
|
213
213
|
# The custom schema of the data lake dataset and is only required when
|
214
|
-
# the name space is
|
214
|
+
# the name space is **default**.
|
215
215
|
# @return [Types::DataLakeDatasetSchema]
|
216
216
|
#
|
217
217
|
# @!attribute [rw] description
|
@@ -267,6 +267,13 @@ module Aws::SupplyChain
|
|
267
267
|
# KMS key.
|
268
268
|
# @return [String]
|
269
269
|
#
|
270
|
+
# @!attribute [rw] web_app_dns_domain
|
271
|
+
# The DNS subdomain of the web app. This would be "example" in the
|
272
|
+
# URL "example.scn.global.on.aws". You can set this to a custom
|
273
|
+
# value, as long as the domain isn't already being used by someone
|
274
|
+
# else. The name may only include alphanumeric characters and hyphens.
|
275
|
+
# @return [String]
|
276
|
+
#
|
270
277
|
# @!attribute [rw] tags
|
271
278
|
# The Amazon Web Services tags of an instance to be created.
|
272
279
|
# @return [Hash<String,String>]
|
@@ -284,6 +291,7 @@ module Aws::SupplyChain
|
|
284
291
|
:instance_name,
|
285
292
|
:instance_description,
|
286
293
|
:kms_key_arn,
|
294
|
+
:web_app_dns_domain,
|
287
295
|
:tags,
|
288
296
|
:client_token)
|
289
297
|
SENSITIVE = []
|
@@ -707,11 +715,13 @@ module Aws::SupplyChain
|
|
707
715
|
# @return [String]
|
708
716
|
#
|
709
717
|
# @!attribute [rw] namespace
|
710
|
-
# The
|
718
|
+
# The name space of the dataset. The available values are:
|
711
719
|
#
|
712
|
-
# * asc
|
720
|
+
# * **asc** - For information on the Amazon Web Services Supply Chain
|
721
|
+
# supported datasets see
|
722
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
713
723
|
#
|
714
|
-
# * default
|
724
|
+
# * **default** - For datasets with custom user-defined schemas.
|
715
725
|
#
|
716
726
|
#
|
717
727
|
#
|
@@ -719,8 +729,9 @@ module Aws::SupplyChain
|
|
719
729
|
# @return [String]
|
720
730
|
#
|
721
731
|
# @!attribute [rw] name
|
722
|
-
# The name of the dataset.
|
723
|
-
# one of the supported
|
732
|
+
# The name of the dataset. For **asc** name space, the name must be
|
733
|
+
# one of the supported data entities under
|
734
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
724
735
|
#
|
725
736
|
#
|
726
737
|
#
|
@@ -744,7 +755,7 @@ module Aws::SupplyChain
|
|
744
755
|
# @return [String]
|
745
756
|
#
|
746
757
|
# @!attribute [rw] namespace
|
747
|
-
# The
|
758
|
+
# The name space of deleted dataset.
|
748
759
|
# @return [String]
|
749
760
|
#
|
750
761
|
# @!attribute [rw] name
|
@@ -1073,11 +1084,13 @@ module Aws::SupplyChain
|
|
1073
1084
|
# @return [String]
|
1074
1085
|
#
|
1075
1086
|
# @!attribute [rw] namespace
|
1076
|
-
# The
|
1087
|
+
# The name space of the dataset. The available values are:
|
1077
1088
|
#
|
1078
|
-
# * asc
|
1089
|
+
# * **asc** - For information on the Amazon Web Services Supply Chain
|
1090
|
+
# supported datasets see
|
1091
|
+
# [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
|
1079
1092
|
#
|
1080
|
-
# * default
|
1093
|
+
# * **default** - For datasets with custom user-defined schemas.
|
1081
1094
|
#
|
1082
1095
|
#
|
1083
1096
|
#
|
@@ -1225,8 +1238,7 @@ module Aws::SupplyChain
|
|
1225
1238
|
#
|
1226
1239
|
# @!attribute [rw] data
|
1227
1240
|
# The data payload of the event. For more information on the data
|
1228
|
-
# schema to use, see [Data entities supported in AWS Supply Chain
|
1229
|
-
# ][1].
|
1241
|
+
# schema to use, see [Data entities supported in AWS Supply Chain][1].
|
1230
1242
|
#
|
1231
1243
|
#
|
1232
1244
|
#
|
data/lib/aws-sdk-supplychain.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -176,6 +178,7 @@ module Aws
|
|
176
178
|
?instance_name: ::String,
|
177
179
|
?instance_description: ::String,
|
178
180
|
?kms_key_arn: ::String,
|
181
|
+
?web_app_dns_domain: ::String,
|
179
182
|
?tags: Hash[::String, ::String],
|
180
183
|
?client_token: ::String
|
181
184
|
) -> _CreateInstanceResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -74,6 +74,7 @@ module Aws::SupplyChain
|
|
74
74
|
attr_accessor instance_name: ::String
|
75
75
|
attr_accessor instance_description: ::String
|
76
76
|
attr_accessor kms_key_arn: ::String
|
77
|
+
attr_accessor web_app_dns_domain: ::String
|
77
78
|
attr_accessor tags: ::Hash[::String, ::String]
|
78
79
|
attr_accessor client_token: ::String
|
79
80
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-supplychain
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.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:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|