aws-sdk-supplychain 1.19.0 → 1.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6de64e3122dd8aa459e01a0ab6fd727d40bf51caeca5aa0d4d273ef24eccbfac
4
- data.tar.gz: 916e60ec8e31688fadbe4b759d6c9fbd37419bee3679df701e70bcf292f0f73e
3
+ metadata.gz: e6719a7fb2a9a45a9365bb864d2fbc6658fb3577c3eb79d56ebbbec8c7504c3d
4
+ data.tar.gz: f9388a236096062c5983c47c838a32a24df6db8206933ca7b999300af1cc7fd2
5
5
  SHA512:
6
- metadata.gz: 22608c92f02fa4baeae0ad8583ab67f6868650c4d652de74a9b6d62e36d0f54b1ce6ceee8331f06bf5c7a4640f06c1ca2c64b9c509cf571ccdc34b3d8940bfb8
7
- data.tar.gz: a27537297a59c5c6ff0133ddd379c6b970af59ace0732856770b0ebf0e69b612e29b9e01f3350f4d880b230603e210f355f3d721ad163ac66ec13cc1c79148cf
6
+ metadata.gz: c79609423d894285c06340a710bc1153a5657e52e601fef6615639e92a044295459d752b0f1afa67d26c8211dbc20abaebc5fd0607f5e0f72c265f51d0544210
7
+ data.tar.gz: 9354cd3c9c31b14a6bff8ef5c176b6990dd5b6c8ed3be52983357affd8221680b5fcba4ba00c73e7e724baa759e37aa14b215714217e3c8b493de90397d3297c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2025-01-06)
5
+ ------------------
6
+
7
+ * Feature - Allow vanity DNS domain when creating a new ASC instance
8
+
4
9
  1.19.0 (2024-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -726,7 +726,7 @@ module Aws::SupplyChain
726
726
  #
727
727
  # @option params [Types::DataLakeDatasetSchema] :schema
728
728
  # The custom schema of the data lake dataset and is only required when
729
- # the name space is *default*.
729
+ # the name space is **default**.
730
730
  #
731
731
  # @option params [String] :description
732
732
  # The description of the dataset.
@@ -1067,6 +1067,12 @@ module Aws::SupplyChain
1067
1067
  # the Amazon Web Services owned KMS key. If you don't provide anything
1068
1068
  # here, AWS Supply Chain uses the Amazon Web Services owned KMS key.
1069
1069
  #
1070
+ # @option params [String] :web_app_dns_domain
1071
+ # The DNS subdomain of the web app. This would be "example" in the URL
1072
+ # "example.scn.global.on.aws". You can set this to a custom value, as
1073
+ # long as the domain isn't already being used by someone else. The name
1074
+ # may only include alphanumeric characters and hyphens.
1075
+ #
1070
1076
  # @option params [Hash<String,String>] :tags
1071
1077
  # The Amazon Web Services tags of an instance to be created.
1072
1078
  #
@@ -1132,6 +1138,7 @@ module Aws::SupplyChain
1132
1138
  # instance_name: "InstanceName",
1133
1139
  # instance_description: "InstanceDescription",
1134
1140
  # kms_key_arn: "KmsKeyArn",
1141
+ # web_app_dns_domain: "InstanceWebAppDnsDomain",
1135
1142
  # tags: {
1136
1143
  # "TagKey" => "TagValue",
1137
1144
  # },
@@ -1219,19 +1226,22 @@ module Aws::SupplyChain
1219
1226
  # The AWS Supply Chain instance identifier.
1220
1227
  #
1221
1228
  # @option params [required, String] :namespace
1222
- # The namespace of the dataset. The available values are:
1229
+ # The name space of the dataset. The available values are:
1223
1230
  #
1224
- # * asc: for [ AWS Supply Chain supported datasets ][1].
1231
+ # * **asc** - For information on the Amazon Web Services Supply Chain
1232
+ # supported datasets see
1233
+ # [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
1225
1234
  #
1226
- # * default: for datasets with custom user-defined schemas.
1235
+ # * **default** - For datasets with custom user-defined schemas.
1227
1236
  #
1228
1237
  #
1229
1238
  #
1230
1239
  # [1]: https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html
1231
1240
  #
1232
1241
  # @option params [required, String] :name
1233
- # The name of the dataset. If the namespace is *asc*, the name must be
1234
- # one of the supported [data entities ][1].
1242
+ # The name of the dataset. For **asc** name space, the name must be one
1243
+ # of the supported data entities under
1244
+ # [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
1235
1245
  #
1236
1246
  #
1237
1247
  #
@@ -2054,11 +2064,13 @@ module Aws::SupplyChain
2054
2064
  # The Amazon Web Services Supply Chain instance identifier.
2055
2065
  #
2056
2066
  # @option params [required, String] :namespace
2057
- # The namespace of the dataset. The available values are:
2067
+ # The name space of the dataset. The available values are:
2058
2068
  #
2059
- # * asc: for [ AWS Supply Chain supported datasets ][1].
2069
+ # * **asc** - For information on the Amazon Web Services Supply Chain
2070
+ # supported datasets see
2071
+ # [https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html][1].
2060
2072
  #
2061
- # * default: for datasets with custom user-defined schemas.
2073
+ # * **default** - For datasets with custom user-defined schemas.
2062
2074
  #
2063
2075
  #
2064
2076
  #
@@ -2594,7 +2606,7 @@ module Aws::SupplyChain
2594
2606
  #
2595
2607
  # @option params [required, String] :data
2596
2608
  # The data payload of the event. For more information on the data schema
2597
- # to use, see [Data entities supported in AWS Supply Chain ][1].
2609
+ # to use, see [Data entities supported in AWS Supply Chain][1].
2598
2610
  #
2599
2611
  #
2600
2612
  #
@@ -3592,7 +3604,7 @@ module Aws::SupplyChain
3592
3604
  tracer: tracer
3593
3605
  )
3594
3606
  context[:gem_name] = 'aws-sdk-supplychain'
3595
- context[:gem_version] = '1.19.0'
3607
+ context[:gem_version] = '1.20.0'
3596
3608
  Seahorse::Client::Request.new(handlers, context)
3597
3609
  end
3598
3610
 
@@ -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 *default*.
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 namespace of the dataset. The available values are:
718
+ # The name space of the dataset. The available values are:
711
719
  #
712
- # * asc: for [ AWS Supply Chain supported datasets ][1].
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: for datasets with custom user-defined schemas.
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. If the namespace is *asc*, the name must be
723
- # one of the supported [data entities ][1].
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 namespace of deleted dataset.
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 namespace of the dataset. The available values are:
1087
+ # The name space of the dataset. The available values are:
1077
1088
  #
1078
- # * asc: for [ AWS Supply Chain supported datasets ][1].
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: for datasets with custom user-defined schemas.
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
  #
@@ -54,7 +54,7 @@ module Aws::SupplyChain
54
54
  autoload :EndpointProvider, 'aws-sdk-supplychain/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-supplychain/endpoints'
56
56
 
57
- GEM_VERSION = '1.19.0'
57
+ GEM_VERSION = '1.20.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -176,6 +176,7 @@ module Aws
176
176
  ?instance_name: ::String,
177
177
  ?instance_description: ::String,
178
178
  ?kms_key_arn: ::String,
179
+ ?web_app_dns_domain: ::String,
179
180
  ?tags: Hash[::String, ::String],
180
181
  ?client_token: ::String
181
182
  ) -> _CreateInstanceResponseSuccess
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.19.0
4
+ version: 1.20.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: 2024-10-25 00:00:00.000000000 Z
11
+ date: 2025-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core