aws-sdk 2.1640.0 → 2.1642.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.
- package/README.md +1 -1
- package/apis/cloudhsmv2-2017-04-28.min.json +26 -19
- package/apis/datazone-2018-05-10.min.json +792 -403
- package/apis/datazone-2018-05-10.paginators.json +6 -0
- package/apis/glue-2017-03-31.min.json +99 -98
- package/apis/iotwireless-2020-11-22.min.json +4 -1
- package/apis/kms-2014-11-01.examples.json +29 -0
- package/apis/kms-2014-11-01.min.json +76 -23
- package/apis/macie2-2020-01-01.min.json +254 -143
- package/apis/macie2-2020-01-01.paginators.json +6 -0
- package/apis/mediaconvert-2017-08-29.min.json +57 -5
- package/apis/mediaconvert-2017-08-29.paginators.json +6 -0
- package/apis/mediapackagev2-2022-12-25.examples.json +1271 -0
- package/apis/mediapackagev2-2022-12-25.min.json +108 -71
- package/apis/route53domains-2014-05-15.min.json +7 -1
- package/clients/cloudhsmv2.d.ts +18 -1
- package/clients/datazone.d.ts +398 -4
- package/clients/ec2.d.ts +258 -258
- package/clients/glue.d.ts +6 -1
- package/clients/iotwireless.d.ts +1 -1
- package/clients/kms.d.ts +80 -14
- package/clients/macie2.d.ts +149 -44
- package/clients/mediaconvert.d.ts +46 -2
- package/clients/mediapackagev2.d.ts +57 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +22 -13
- package/dist/aws-sdk.js +121 -46
- package/dist/aws-sdk.min.js +61 -61
- package/lib/core.js +1 -1
- package/lib/credentials/cognito_identity_credentials.js +9 -0
- package/lib/shared-ini/ini-loader.d.ts +24 -1
- package/lib/shared-ini/ini-loader.js +0 -6
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +3 -3
@@ -12,6 +12,12 @@
|
|
12
12
|
"limit_key": "maxResults",
|
13
13
|
"result_key": "records"
|
14
14
|
},
|
15
|
+
"ListAutomatedDiscoveryAccounts": {
|
16
|
+
"input_token": "nextToken",
|
17
|
+
"output_token": "nextToken",
|
18
|
+
"limit_key": "maxResults",
|
19
|
+
"result_key": "items"
|
20
|
+
},
|
15
21
|
"ListClassificationJobs": {
|
16
22
|
"input_token": "nextToken",
|
17
23
|
"output_token": "nextToken",
|
@@ -642,11 +642,8 @@
|
|
642
642
|
"type": "structure",
|
643
643
|
"members": {
|
644
644
|
"Jobs": {
|
645
|
-
"
|
646
|
-
"
|
647
|
-
"member": {
|
648
|
-
"shape": "Sld"
|
649
|
-
}
|
645
|
+
"shape": "Sng",
|
646
|
+
"locationName": "jobs"
|
650
647
|
},
|
651
648
|
"NextToken": {
|
652
649
|
"locationName": "nextToken"
|
@@ -811,6 +808,55 @@
|
|
811
808
|
}
|
812
809
|
}
|
813
810
|
},
|
811
|
+
"SearchJobs": {
|
812
|
+
"http": {
|
813
|
+
"method": "GET",
|
814
|
+
"requestUri": "/2017-08-29/search",
|
815
|
+
"responseCode": 200
|
816
|
+
},
|
817
|
+
"input": {
|
818
|
+
"type": "structure",
|
819
|
+
"members": {
|
820
|
+
"InputFile": {
|
821
|
+
"locationName": "inputFile",
|
822
|
+
"location": "querystring"
|
823
|
+
},
|
824
|
+
"MaxResults": {
|
825
|
+
"locationName": "maxResults",
|
826
|
+
"location": "querystring",
|
827
|
+
"type": "integer"
|
828
|
+
},
|
829
|
+
"NextToken": {
|
830
|
+
"locationName": "nextToken",
|
831
|
+
"location": "querystring"
|
832
|
+
},
|
833
|
+
"Order": {
|
834
|
+
"locationName": "order",
|
835
|
+
"location": "querystring"
|
836
|
+
},
|
837
|
+
"Queue": {
|
838
|
+
"locationName": "queue",
|
839
|
+
"location": "querystring"
|
840
|
+
},
|
841
|
+
"Status": {
|
842
|
+
"locationName": "status",
|
843
|
+
"location": "querystring"
|
844
|
+
}
|
845
|
+
}
|
846
|
+
},
|
847
|
+
"output": {
|
848
|
+
"type": "structure",
|
849
|
+
"members": {
|
850
|
+
"Jobs": {
|
851
|
+
"shape": "Sng",
|
852
|
+
"locationName": "jobs"
|
853
|
+
},
|
854
|
+
"NextToken": {
|
855
|
+
"locationName": "nextToken"
|
856
|
+
}
|
857
|
+
}
|
858
|
+
}
|
859
|
+
},
|
814
860
|
"TagResource": {
|
815
861
|
"http": {
|
816
862
|
"requestUri": "/2017-08-29/tags",
|
@@ -5839,6 +5885,12 @@
|
|
5839
5885
|
"locationName": "s3Inputs"
|
5840
5886
|
}
|
5841
5887
|
}
|
5888
|
+
},
|
5889
|
+
"Sng": {
|
5890
|
+
"type": "list",
|
5891
|
+
"member": {
|
5892
|
+
"shape": "Sld"
|
5893
|
+
}
|
5842
5894
|
}
|
5843
5895
|
}
|
5844
5896
|
}
|
@@ -12,6 +12,12 @@
|
|
12
12
|
"limit_key": "MaxResults",
|
13
13
|
"result_key": "Jobs"
|
14
14
|
},
|
15
|
+
"SearchJobs": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"output_token": "NextToken",
|
18
|
+
"limit_key": "MaxResults",
|
19
|
+
"result_key": "Jobs"
|
20
|
+
},
|
15
21
|
"ListPresets": {
|
16
22
|
"input_token": "NextToken",
|
17
23
|
"output_token": "NextToken",
|