aws-sdk-supplychain 1.18.0 → 1.20.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 +131 -36
- data/lib/aws-sdk-supplychain/client_api.rb +2 -0
- data/lib/aws-sdk-supplychain/types.rb +32 -12
- data/lib/aws-sdk-supplychain.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +2 -0
- 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: e6719a7fb2a9a45a9365bb864d2fbc6658fb3577c3eb79d56ebbbec8c7504c3d
|
4
|
+
data.tar.gz: f9388a236096062c5983c47c838a32a24df6db8206933ca7b999300af1cc7fd2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c79609423d894285c06340a710bc1153a5657e52e601fef6615639e92a044295459d752b0f1afa67d26c8211dbc20abaebc5fd0607f5e0f72c265f51d0544210
|
7
|
+
data.tar.gz: 9354cd3c9c31b14a6bff8ef5c176b6990dd5b6c8ed3be52983357affd8221680b5fcba4ba00c73e7e724baa759e37aa14b215714217e3c8b493de90397d3297c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.19.0 (2024-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - API doc updates, and also support showing error message on a failed instance
|
13
|
+
|
4
14
|
1.18.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -515,8 +515,11 @@ module Aws::SupplyChain
|
|
515
515
|
req.send_request(options)
|
516
516
|
end
|
517
517
|
|
518
|
-
#
|
519
|
-
#
|
518
|
+
# Enables you to programmatically create a data pipeline to ingest data
|
519
|
+
# from source systems such as Amazon S3 buckets, to a predefined Amazon
|
520
|
+
# Web Services Supply Chain dataset (product, inbound\_order) or a
|
521
|
+
# temporary dataset along with the data transformation query provided
|
522
|
+
# with the API.
|
520
523
|
#
|
521
524
|
# @option params [required, String] :instance_id
|
522
525
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -691,7 +694,10 @@ module Aws::SupplyChain
|
|
691
694
|
req.send_request(options)
|
692
695
|
end
|
693
696
|
|
694
|
-
#
|
697
|
+
# Enables you to programmatically create an Amazon Web Services Supply
|
698
|
+
# Chain data lake dataset. Developers can create the datasets using
|
699
|
+
# their pre-defined or custom schema for a given instance ID, namespace,
|
700
|
+
# and dataset name.
|
695
701
|
#
|
696
702
|
# @option params [required, String] :instance_id
|
697
703
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -720,7 +726,7 @@ module Aws::SupplyChain
|
|
720
726
|
#
|
721
727
|
# @option params [Types::DataLakeDatasetSchema] :schema
|
722
728
|
# The custom schema of the data lake dataset and is only required when
|
723
|
-
# the name space is
|
729
|
+
# the name space is **default**.
|
724
730
|
#
|
725
731
|
# @option params [String] :description
|
726
732
|
# The description of the dataset.
|
@@ -1036,12 +1042,18 @@ module Aws::SupplyChain
|
|
1036
1042
|
req.send_request(options)
|
1037
1043
|
end
|
1038
1044
|
|
1039
|
-
#
|
1040
|
-
#
|
1041
|
-
#
|
1042
|
-
#
|
1043
|
-
#
|
1044
|
-
#
|
1045
|
+
# Enables you to programmatically create an Amazon Web Services Supply
|
1046
|
+
# Chain instance by applying KMS keys and relevant information
|
1047
|
+
# associated with the API without using the Amazon Web Services console.
|
1048
|
+
#
|
1049
|
+
# This is an asynchronous operation. Upon receiving a CreateInstance
|
1050
|
+
# request, Amazon Web Services Supply Chain immediately returns the
|
1051
|
+
# instance resource, instance ID, and the initializing state while
|
1052
|
+
# simultaneously creating all required Amazon Web Services resources for
|
1053
|
+
# an instance creation. You can use GetInstance to check the status of
|
1054
|
+
# the instance. If the instance results in an unhealthy state, you need
|
1055
|
+
# to check the error message, delete the current instance, and recreate
|
1056
|
+
# a new one based on the mitigation from the error message.
|
1045
1057
|
#
|
1046
1058
|
# @option params [String] :instance_name
|
1047
1059
|
# The AWS Supply Chain instance name.
|
@@ -1055,6 +1067,12 @@ module Aws::SupplyChain
|
|
1055
1067
|
# the Amazon Web Services owned KMS key. If you don't provide anything
|
1056
1068
|
# here, AWS Supply Chain uses the Amazon Web Services owned KMS key.
|
1057
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
|
+
#
|
1058
1076
|
# @option params [Hash<String,String>] :tags
|
1059
1077
|
# The Amazon Web Services tags of an instance to be created.
|
1060
1078
|
#
|
@@ -1120,6 +1138,7 @@ module Aws::SupplyChain
|
|
1120
1138
|
# instance_name: "InstanceName",
|
1121
1139
|
# instance_description: "InstanceDescription",
|
1122
1140
|
# kms_key_arn: "KmsKeyArn",
|
1141
|
+
# web_app_dns_domain: "InstanceWebAppDnsDomain",
|
1123
1142
|
# tags: {
|
1124
1143
|
# "TagKey" => "TagValue",
|
1125
1144
|
# },
|
@@ -1131,6 +1150,7 @@ module Aws::SupplyChain
|
|
1131
1150
|
# resp.instance.instance_id #=> String
|
1132
1151
|
# resp.instance.aws_account_id #=> String
|
1133
1152
|
# resp.instance.state #=> String, one of "Initializing", "Active", "CreateFailed", "DeleteFailed", "Deleting", "Deleted"
|
1153
|
+
# resp.instance.error_message #=> String
|
1134
1154
|
# resp.instance.web_app_dns_domain #=> String
|
1135
1155
|
# resp.instance.created_time #=> Time
|
1136
1156
|
# resp.instance.last_modified_time #=> Time
|
@@ -1148,7 +1168,9 @@ module Aws::SupplyChain
|
|
1148
1168
|
req.send_request(options)
|
1149
1169
|
end
|
1150
1170
|
|
1151
|
-
#
|
1171
|
+
# Enable you to programmatically delete an existing data pipeline for
|
1172
|
+
# the provided Amazon Web Services Supply Chain instance and
|
1173
|
+
# DataIntegrationFlow name.
|
1152
1174
|
#
|
1153
1175
|
# @option params [required, String] :instance_id
|
1154
1176
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -1196,25 +1218,30 @@ module Aws::SupplyChain
|
|
1196
1218
|
req.send_request(options)
|
1197
1219
|
end
|
1198
1220
|
|
1199
|
-
#
|
1221
|
+
# Enables you to programmatically delete an Amazon Web Services Supply
|
1222
|
+
# Chain data lake dataset. Developers can delete the existing datasets
|
1223
|
+
# for a given instance ID, namespace, and instance name.
|
1200
1224
|
#
|
1201
1225
|
# @option params [required, String] :instance_id
|
1202
1226
|
# The AWS Supply Chain instance identifier.
|
1203
1227
|
#
|
1204
1228
|
# @option params [required, String] :namespace
|
1205
|
-
# The
|
1229
|
+
# The name space of the dataset. The available values are:
|
1206
1230
|
#
|
1207
|
-
# * asc
|
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].
|
1208
1234
|
#
|
1209
|
-
# * default
|
1235
|
+
# * **default** - For datasets with custom user-defined schemas.
|
1210
1236
|
#
|
1211
1237
|
#
|
1212
1238
|
#
|
1213
1239
|
# [1]: https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html
|
1214
1240
|
#
|
1215
1241
|
# @option params [required, String] :name
|
1216
|
-
# The name of the dataset.
|
1217
|
-
#
|
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].
|
1218
1245
|
#
|
1219
1246
|
#
|
1220
1247
|
#
|
@@ -1280,8 +1307,12 @@ module Aws::SupplyChain
|
|
1280
1307
|
req.send_request(options)
|
1281
1308
|
end
|
1282
1309
|
|
1283
|
-
#
|
1284
|
-
#
|
1310
|
+
# Enables you to programmatically delete an Amazon Web Services Supply
|
1311
|
+
# Chain instance by deleting the KMS keys and relevant information
|
1312
|
+
# associated with the API without using the Amazon Web Services console.
|
1313
|
+
#
|
1314
|
+
# This is an asynchronous operation. Upon receiving a DeleteInstance
|
1315
|
+
# request, Amazon Web Services Supply Chain immediately returns a
|
1285
1316
|
# response with the instance resource, delete state while cleaning up
|
1286
1317
|
# all Amazon Web Services resources created during the instance creation
|
1287
1318
|
# process. You can use the GetInstance action to check the instance
|
@@ -1327,6 +1358,7 @@ module Aws::SupplyChain
|
|
1327
1358
|
# resp.instance.instance_id #=> String
|
1328
1359
|
# resp.instance.aws_account_id #=> String
|
1329
1360
|
# resp.instance.state #=> String, one of "Initializing", "Active", "CreateFailed", "DeleteFailed", "Deleting", "Deleted"
|
1361
|
+
# resp.instance.error_message #=> String
|
1330
1362
|
# resp.instance.web_app_dns_domain #=> String
|
1331
1363
|
# resp.instance.created_time #=> Time
|
1332
1364
|
# resp.instance.last_modified_time #=> Time
|
@@ -1416,7 +1448,9 @@ module Aws::SupplyChain
|
|
1416
1448
|
req.send_request(options)
|
1417
1449
|
end
|
1418
1450
|
|
1419
|
-
#
|
1451
|
+
# Enables you to programmatically view a specific data pipeline for the
|
1452
|
+
# provided Amazon Web Services Supply Chain instance and
|
1453
|
+
# DataIntegrationFlow name.
|
1420
1454
|
#
|
1421
1455
|
# @option params [required, String] :instance_id
|
1422
1456
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -1509,7 +1543,10 @@ module Aws::SupplyChain
|
|
1509
1543
|
req.send_request(options)
|
1510
1544
|
end
|
1511
1545
|
|
1512
|
-
#
|
1546
|
+
# Enables you to programmatically view an Amazon Web Services Supply
|
1547
|
+
# Chain data lake dataset. Developers can view the data lake dataset
|
1548
|
+
# information such as namespace, schema, and so on for a given instance
|
1549
|
+
# ID, namespace, and dataset name.
|
1513
1550
|
#
|
1514
1551
|
# @option params [required, String] :instance_id
|
1515
1552
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -1795,7 +1832,8 @@ module Aws::SupplyChain
|
|
1795
1832
|
req.send_request(options)
|
1796
1833
|
end
|
1797
1834
|
|
1798
|
-
#
|
1835
|
+
# Enables you to programmatically retrieve the information related to an
|
1836
|
+
# Amazon Web Services Supply Chain instance ID.
|
1799
1837
|
#
|
1800
1838
|
# @option params [required, String] :instance_id
|
1801
1839
|
# The AWS Supply Chain instance identifier
|
@@ -1826,6 +1864,28 @@ module Aws::SupplyChain
|
|
1826
1864
|
# },
|
1827
1865
|
# }
|
1828
1866
|
#
|
1867
|
+
# @example Example: Successful GetInstance request with error message
|
1868
|
+
#
|
1869
|
+
# resp = client.get_instance({
|
1870
|
+
# instance_id: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
1871
|
+
# })
|
1872
|
+
#
|
1873
|
+
# resp.to_h outputs the following:
|
1874
|
+
# {
|
1875
|
+
# instance: {
|
1876
|
+
# aws_account_id: "123456789012",
|
1877
|
+
# created_time: Time.parse(172615383136),
|
1878
|
+
# error_message: "Access denied when attempting to create an S3 bucket. Please correct your IAM policy and try again.",
|
1879
|
+
# instance_description: "example instance description",
|
1880
|
+
# instance_id: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
1881
|
+
# instance_name: "example instance name",
|
1882
|
+
# kms_key_arn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
1883
|
+
# last_modified_time: Time.parse(172615383136),
|
1884
|
+
# state: "CreateFailed",
|
1885
|
+
# version_number: 2.0,
|
1886
|
+
# },
|
1887
|
+
# }
|
1888
|
+
#
|
1829
1889
|
# @example Request syntax with placeholder values
|
1830
1890
|
#
|
1831
1891
|
# resp = client.get_instance({
|
@@ -1837,6 +1897,7 @@ module Aws::SupplyChain
|
|
1837
1897
|
# resp.instance.instance_id #=> String
|
1838
1898
|
# resp.instance.aws_account_id #=> String
|
1839
1899
|
# resp.instance.state #=> String, one of "Initializing", "Active", "CreateFailed", "DeleteFailed", "Deleting", "Deleted"
|
1900
|
+
# resp.instance.error_message #=> String
|
1840
1901
|
# resp.instance.web_app_dns_domain #=> String
|
1841
1902
|
# resp.instance.created_time #=> Time
|
1842
1903
|
# resp.instance.last_modified_time #=> Time
|
@@ -1854,7 +1915,8 @@ module Aws::SupplyChain
|
|
1854
1915
|
req.send_request(options)
|
1855
1916
|
end
|
1856
1917
|
|
1857
|
-
#
|
1918
|
+
# Enables you to programmatically list all data pipelines for the
|
1919
|
+
# provided Amazon Web Services Supply Chain instance.
|
1858
1920
|
#
|
1859
1921
|
# @option params [required, String] :instance_id
|
1860
1922
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -1993,17 +2055,22 @@ module Aws::SupplyChain
|
|
1993
2055
|
req.send_request(options)
|
1994
2056
|
end
|
1995
2057
|
|
1996
|
-
#
|
2058
|
+
# Enables you to programmatically view the list of Amazon Web Services
|
2059
|
+
# Supply Chain data lake datasets. Developers can view the datasets and
|
2060
|
+
# the corresponding information such as namespace, schema, and so on for
|
2061
|
+
# a given instance ID and namespace.
|
1997
2062
|
#
|
1998
2063
|
# @option params [required, String] :instance_id
|
1999
2064
|
# The Amazon Web Services Supply Chain instance identifier.
|
2000
2065
|
#
|
2001
2066
|
# @option params [required, String] :namespace
|
2002
|
-
# The
|
2067
|
+
# The name space of the dataset. The available values are:
|
2003
2068
|
#
|
2004
|
-
# * asc
|
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].
|
2005
2072
|
#
|
2006
|
-
# * default
|
2073
|
+
# * **default** - For datasets with custom user-defined schemas.
|
2007
2074
|
#
|
2008
2075
|
#
|
2009
2076
|
#
|
@@ -2309,7 +2376,10 @@ module Aws::SupplyChain
|
|
2309
2376
|
req.send_request(options)
|
2310
2377
|
end
|
2311
2378
|
|
2312
|
-
# List all
|
2379
|
+
# List all Amazon Web Services Supply Chain instances for a specific
|
2380
|
+
# account. Enables you to programmatically list all Amazon Web Services
|
2381
|
+
# Supply Chain instances based on their account ID, instance name, and
|
2382
|
+
# state of the instance (active or delete).
|
2313
2383
|
#
|
2314
2384
|
# @option params [String] :next_token
|
2315
2385
|
# The pagination token to fetch the next page of instances.
|
@@ -2454,6 +2524,7 @@ module Aws::SupplyChain
|
|
2454
2524
|
# resp.instances[0].instance_id #=> String
|
2455
2525
|
# resp.instances[0].aws_account_id #=> String
|
2456
2526
|
# resp.instances[0].state #=> String, one of "Initializing", "Active", "CreateFailed", "DeleteFailed", "Deleting", "Deleted"
|
2527
|
+
# resp.instances[0].error_message #=> String
|
2457
2528
|
# resp.instances[0].web_app_dns_domain #=> String
|
2458
2529
|
# resp.instances[0].created_time #=> Time
|
2459
2530
|
# resp.instances[0].last_modified_time #=> Time
|
@@ -2472,7 +2543,11 @@ module Aws::SupplyChain
|
|
2472
2543
|
req.send_request(options)
|
2473
2544
|
end
|
2474
2545
|
|
2475
|
-
# List all the tags for an Amazon Web ServicesSupply Chain resource.
|
2546
|
+
# List all the tags for an Amazon Web ServicesSupply Chain resource. You
|
2547
|
+
# can list all the tags added to a resource. By listing the tags,
|
2548
|
+
# developers can view the tag level information on a resource and
|
2549
|
+
# perform actions such as, deleting a resource associated with a
|
2550
|
+
# particular tag.
|
2476
2551
|
#
|
2477
2552
|
# @option params [required, String] :resource_arn
|
2478
2553
|
# The Amazon Web Services Supply chain resource ARN that needs tags to
|
@@ -2531,7 +2606,7 @@ module Aws::SupplyChain
|
|
2531
2606
|
#
|
2532
2607
|
# @option params [required, String] :data
|
2533
2608
|
# The data payload of the event. For more information on the data schema
|
2534
|
-
# to use, see [Data entities supported in AWS Supply Chain
|
2609
|
+
# to use, see [Data entities supported in AWS Supply Chain][1].
|
2535
2610
|
#
|
2536
2611
|
#
|
2537
2612
|
#
|
@@ -2804,7 +2879,12 @@ module Aws::SupplyChain
|
|
2804
2879
|
req.send_request(options)
|
2805
2880
|
end
|
2806
2881
|
|
2807
|
-
#
|
2882
|
+
# You can create tags during or after creating a resource such as
|
2883
|
+
# instance, data flow, or dataset in AWS Supply chain. During the data
|
2884
|
+
# ingestion process, you can add tags such as dev, test, or prod to data
|
2885
|
+
# flows created during the data ingestion process in the AWS Supply
|
2886
|
+
# Chain datasets. You can use these tags to identify a group of
|
2887
|
+
# resources or a single resource used by the developer.
|
2808
2888
|
#
|
2809
2889
|
# @option params [required, String] :resource_arn
|
2810
2890
|
# The Amazon Web Services Supply chain resource ARN that needs to be
|
@@ -2848,7 +2928,11 @@ module Aws::SupplyChain
|
|
2848
2928
|
req.send_request(options)
|
2849
2929
|
end
|
2850
2930
|
|
2851
|
-
#
|
2931
|
+
# You can delete tags for an Amazon Web Services Supply chain resource
|
2932
|
+
# such as instance, data flow, or dataset in AWS Supply Chain. During
|
2933
|
+
# the data ingestion process, you can delete tags such as dev, test, or
|
2934
|
+
# prod to data flows created during the data ingestion process in the
|
2935
|
+
# AWS Supply Chain datasets.
|
2852
2936
|
#
|
2853
2937
|
# @option params [required, String] :resource_arn
|
2854
2938
|
# The Amazon Web Services Supply chain resource ARN that needs to be
|
@@ -2890,7 +2974,11 @@ module Aws::SupplyChain
|
|
2890
2974
|
req.send_request(options)
|
2891
2975
|
end
|
2892
2976
|
|
2893
|
-
#
|
2977
|
+
# Enables you to programmatically update an existing data pipeline to
|
2978
|
+
# ingest data from the source systems such as, Amazon S3 buckets, to a
|
2979
|
+
# predefined Amazon Web Services Supply Chain dataset (product,
|
2980
|
+
# inbound\_order) or a temporary dataset along with the data
|
2981
|
+
# transformation query provided with the API.
|
2894
2982
|
#
|
2895
2983
|
# @option params [required, String] :instance_id
|
2896
2984
|
# The Amazon Web Services Supply Chain instance identifier.
|
@@ -3130,7 +3218,10 @@ module Aws::SupplyChain
|
|
3130
3218
|
req.send_request(options)
|
3131
3219
|
end
|
3132
3220
|
|
3133
|
-
#
|
3221
|
+
# Enables you to programmatically update an Amazon Web Services Supply
|
3222
|
+
# Chain data lake dataset. Developers can update the description of a
|
3223
|
+
# data lake dataset for a given instance ID, namespace, and dataset
|
3224
|
+
# name.
|
3134
3225
|
#
|
3135
3226
|
# @option params [required, String] :instance_id
|
3136
3227
|
# The Amazon Web Services Chain instance identifier.
|
@@ -3422,7 +3513,10 @@ module Aws::SupplyChain
|
|
3422
3513
|
req.send_request(options)
|
3423
3514
|
end
|
3424
3515
|
|
3425
|
-
#
|
3516
|
+
# Enables you to programmatically update an Amazon Web Services Supply
|
3517
|
+
# Chain instance description by providing all the relevant information
|
3518
|
+
# such as account ID, instance ID and so on without using the AWS
|
3519
|
+
# console.
|
3426
3520
|
#
|
3427
3521
|
# @option params [required, String] :instance_id
|
3428
3522
|
# The AWS Supply Chain instance identifier.
|
@@ -3474,6 +3568,7 @@ module Aws::SupplyChain
|
|
3474
3568
|
# resp.instance.instance_id #=> String
|
3475
3569
|
# resp.instance.aws_account_id #=> String
|
3476
3570
|
# resp.instance.state #=> String, one of "Initializing", "Active", "CreateFailed", "DeleteFailed", "Deleting", "Deleted"
|
3571
|
+
# resp.instance.error_message #=> String
|
3477
3572
|
# resp.instance.web_app_dns_domain #=> String
|
3478
3573
|
# resp.instance.created_time #=> Time
|
3479
3574
|
# resp.instance.last_modified_time #=> Time
|
@@ -3509,7 +3604,7 @@ module Aws::SupplyChain
|
|
3509
3604
|
tracer: tracer
|
3510
3605
|
)
|
3511
3606
|
context[:gem_name] = 'aws-sdk-supplychain'
|
3512
|
-
context[:gem_version] = '1.
|
3607
|
+
context[:gem_version] = '1.20.0'
|
3513
3608
|
Seahorse::Client::Request.new(handlers, context)
|
3514
3609
|
end
|
3515
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
|
@@ -321,6 +322,7 @@ module Aws::SupplyChain
|
|
321
322
|
Instance.add_member(:instance_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "instanceId"))
|
322
323
|
Instance.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "awsAccountId"))
|
323
324
|
Instance.add_member(:state, Shapes::ShapeRef.new(shape: InstanceState, required: true, location_name: "state"))
|
325
|
+
Instance.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
|
324
326
|
Instance.add_member(:web_app_dns_domain, Shapes::ShapeRef.new(shape: InstanceWebAppDnsDomain, location_name: "webAppDnsDomain"))
|
325
327
|
Instance.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdTime"))
|
326
328
|
Instance.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModifiedTime"))
|
@@ -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
|
@@ -951,6 +962,13 @@ module Aws::SupplyChain
|
|
951
962
|
# The state of the instance.
|
952
963
|
# @return [String]
|
953
964
|
#
|
965
|
+
# @!attribute [rw] error_message
|
966
|
+
# The Amazon Web Services Supply Chain instance error message. If the
|
967
|
+
# instance results in an unhealthy state, customers need to check the
|
968
|
+
# error message, delete the current instance, and recreate a new one
|
969
|
+
# based on the mitigation from the error message.
|
970
|
+
# @return [String]
|
971
|
+
#
|
954
972
|
# @!attribute [rw] web_app_dns_domain
|
955
973
|
# The WebApp DNS domain name of the instance.
|
956
974
|
# @return [String]
|
@@ -988,6 +1006,7 @@ module Aws::SupplyChain
|
|
988
1006
|
:instance_id,
|
989
1007
|
:aws_account_id,
|
990
1008
|
:state,
|
1009
|
+
:error_message,
|
991
1010
|
:web_app_dns_domain,
|
992
1011
|
:created_time,
|
993
1012
|
:last_modified_time,
|
@@ -1065,11 +1084,13 @@ module Aws::SupplyChain
|
|
1065
1084
|
# @return [String]
|
1066
1085
|
#
|
1067
1086
|
# @!attribute [rw] namespace
|
1068
|
-
# The
|
1087
|
+
# The name space of the dataset. The available values are:
|
1069
1088
|
#
|
1070
|
-
# * 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].
|
1071
1092
|
#
|
1072
|
-
# * default
|
1093
|
+
# * **default** - For datasets with custom user-defined schemas.
|
1073
1094
|
#
|
1074
1095
|
#
|
1075
1096
|
#
|
@@ -1217,8 +1238,7 @@ module Aws::SupplyChain
|
|
1217
1238
|
#
|
1218
1239
|
# @!attribute [rw] data
|
1219
1240
|
# The data payload of the event. For more information on the data
|
1220
|
-
# schema to use, see [Data entities supported in AWS Supply Chain
|
1221
|
-
# ][1].
|
1241
|
+
# schema to use, see [Data entities supported in AWS Supply Chain][1].
|
1222
1242
|
#
|
1223
1243
|
#
|
1224
1244
|
#
|
data/lib/aws-sdk-supplychain.rb
CHANGED
data/sig/client.rbs
CHANGED
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: []
|
@@ -267,6 +268,7 @@ module Aws::SupplyChain
|
|
267
268
|
attr_accessor instance_id: ::String
|
268
269
|
attr_accessor aws_account_id: ::String
|
269
270
|
attr_accessor state: ("Initializing" | "Active" | "CreateFailed" | "DeleteFailed" | "Deleting" | "Deleted")
|
271
|
+
attr_accessor error_message: ::String
|
270
272
|
attr_accessor web_app_dns_domain: ::String
|
271
273
|
attr_accessor created_time: ::Time
|
272
274
|
attr_accessor last_modified_time: ::Time
|
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.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:
|
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
|