Skip to content

Commit 4f0bc23

Browse files
Release v1.44.44 (2022-06-28) (#4458)
Release v1.44.44 (2022-06-28) === ### Service Client Updates * `service/datasync`: Updates service API and documentation * `service/ec2`: Updates service API and documentation * This release adds a new spread placement group to EC2 Placement Groups: host level spread, which spread instances between physical hosts, available to Outpost customers only. CreatePlacementGroup and DescribePlacementGroups APIs were updated with a new parameter: SpreadLevel to support this feature. * `service/finspace-data`: Updates service API and documentation * `service/polly`: Updates service API * Add 4 new neural voices - Pedro (es-US), Liam (fr-CA), Daniel (de-DE) and Arthur (en-GB).
1 parent 64d937d commit 4f0bc23

File tree

15 files changed

+1546
-220
lines changed

15 files changed

+1546
-220
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release v1.44.44 (2022-06-28)
2+
===
3+
4+
### Service Client Updates
5+
* `service/datasync`: Updates service API and documentation
6+
* `service/ec2`: Updates service API and documentation
7+
* This release adds a new spread placement group to EC2 Placement Groups: host level spread, which spread instances between physical hosts, available to Outpost customers only. CreatePlacementGroup and DescribePlacementGroups APIs were updated with a new parameter: SpreadLevel to support this feature.
8+
* `service/finspace-data`: Updates service API and documentation
9+
* `service/polly`: Updates service API
10+
* Add 4 new neural voices - Pedro (es-US), Liam (fr-CA), Daniel (de-DE) and Arthur (en-GB).
11+
112
Release v1.44.43 (2022-06-27)
213
===
314

aws/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.44.43"
8+
const SDKVersion = "1.44.44"

models/apis/datasync/2018-11-09/api-2.json

+94-4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,19 @@
6666
{"shape":"InternalException"}
6767
]
6868
},
69+
"CreateLocationFsxOntap":{
70+
"name":"CreateLocationFsxOntap",
71+
"http":{
72+
"method":"POST",
73+
"requestUri":"/"
74+
},
75+
"input":{"shape":"CreateLocationFsxOntapRequest"},
76+
"output":{"shape":"CreateLocationFsxOntapResponse"},
77+
"errors":[
78+
{"shape":"InvalidRequestException"},
79+
{"shape":"InternalException"}
80+
]
81+
},
6982
"CreateLocationFsxOpenZfs":{
7083
"name":"CreateLocationFsxOpenZfs",
7184
"http":{
@@ -248,6 +261,19 @@
248261
{"shape":"InternalException"}
249262
]
250263
},
264+
"DescribeLocationFsxOntap":{
265+
"name":"DescribeLocationFsxOntap",
266+
"http":{
267+
"method":"POST",
268+
"requestUri":"/"
269+
},
270+
"input":{"shape":"DescribeLocationFsxOntapRequest"},
271+
"output":{"shape":"DescribeLocationFsxOntapResponse"},
272+
"errors":[
273+
{"shape":"InvalidRequestException"},
274+
{"shape":"InternalException"}
275+
]
276+
},
251277
"DescribeLocationFsxOpenZfs":{
252278
"name":"DescribeLocationFsxOpenZfs",
253279
"http":{
@@ -679,6 +705,27 @@
679705
"LocationArn":{"shape":"LocationArn"}
680706
}
681707
},
708+
"CreateLocationFsxOntapRequest":{
709+
"type":"structure",
710+
"required":[
711+
"Protocol",
712+
"SecurityGroupArns",
713+
"StorageVirtualMachineArn"
714+
],
715+
"members":{
716+
"Protocol":{"shape":"FsxProtocol"},
717+
"SecurityGroupArns":{"shape":"Ec2SecurityGroupArnList"},
718+
"StorageVirtualMachineArn":{"shape":"StorageVirtualMachineArn"},
719+
"Subdirectory":{"shape":"FsxOntapSubdirectory"},
720+
"Tags":{"shape":"InputTagList"}
721+
}
722+
},
723+
"CreateLocationFsxOntapResponse":{
724+
"type":"structure",
725+
"members":{
726+
"LocationArn":{"shape":"LocationArn"}
727+
}
728+
},
682729
"CreateLocationFsxOpenZfsRequest":{
683730
"type":"structure",
684731
"required":[
@@ -960,6 +1007,25 @@
9601007
"CreationTime":{"shape":"Time"}
9611008
}
9621009
},
1010+
"DescribeLocationFsxOntapRequest":{
1011+
"type":"structure",
1012+
"required":["LocationArn"],
1013+
"members":{
1014+
"LocationArn":{"shape":"LocationArn"}
1015+
}
1016+
},
1017+
"DescribeLocationFsxOntapResponse":{
1018+
"type":"structure",
1019+
"members":{
1020+
"CreationTime":{"shape":"Time"},
1021+
"LocationArn":{"shape":"LocationArn"},
1022+
"LocationUri":{"shape":"LocationUri"},
1023+
"Protocol":{"shape":"FsxProtocol"},
1024+
"SecurityGroupArns":{"shape":"Ec2SecurityGroupArnList"},
1025+
"StorageVirtualMachineArn":{"shape":"StorageVirtualMachineArn"},
1026+
"FsxFilesystemArn":{"shape":"FsxFilesystemArn"}
1027+
}
1028+
},
9631029
"DescribeLocationFsxOpenZfsRequest":{
9641030
"type":"structure",
9651031
"required":["LocationArn"],
@@ -1259,6 +1325,11 @@
12591325
"max":4096,
12601326
"pattern":"^[a-zA-Z0-9_\\-\\+\\./\\(\\)\\$\\p{Zs}]+$"
12611327
},
1328+
"FsxOntapSubdirectory":{
1329+
"type":"string",
1330+
"max":255,
1331+
"pattern":"^[^\\u0000\\u0085\\u2028\\u2029\\r\\n]{1,255}$"
1332+
},
12621333
"FsxOpenZfsSubdirectory":{
12631334
"type":"string",
12641335
"max":4096,
@@ -1267,7 +1338,8 @@
12671338
"FsxProtocol":{
12681339
"type":"structure",
12691340
"members":{
1270-
"NFS":{"shape":"FsxProtocolNfs"}
1341+
"NFS":{"shape":"FsxProtocolNfs"},
1342+
"SMB":{"shape":"FsxProtocolSmb"}
12711343
}
12721344
},
12731345
"FsxProtocolNfs":{
@@ -1276,6 +1348,19 @@
12761348
"MountOptions":{"shape":"NfsMountOptions"}
12771349
}
12781350
},
1351+
"FsxProtocolSmb":{
1352+
"type":"structure",
1353+
"required":[
1354+
"Password",
1355+
"User"
1356+
],
1357+
"members":{
1358+
"Domain":{"shape":"SmbDomain"},
1359+
"MountOptions":{"shape":"SmbMountOptions"},
1360+
"Password":{"shape":"SmbPassword"},
1361+
"User":{"shape":"SmbUser"}
1362+
}
1363+
},
12791364
"FsxWindowsSubdirectory":{
12801365
"type":"string",
12811366
"max":4096,
@@ -1533,8 +1618,8 @@
15331618
},
15341619
"LocationUri":{
15351620
"type":"string",
1536-
"max":4356,
1537-
"pattern":"^(efs|nfs|s3|smb|hdfs|fsx[a-z0-9]+)://[a-zA-Z0-9.:/\\-]+$"
1621+
"max":4360,
1622+
"pattern":"^(efs|nfs|s3|smb|hdfs|fsx[a-z0-9-]+)://[a-zA-Z0-9.:/\\-]+$"
15381623
},
15391624
"LogGroupArn":{
15401625
"type":"string",
@@ -1784,7 +1869,7 @@
17841869
"SmbDomain":{
17851870
"type":"string",
17861871
"max":253,
1787-
"pattern":"^([A-Za-z0-9]+[A-Za-z0-9-.]*)*[A-Za-z0-9-]*[A-Za-z0-9]$"
1872+
"pattern":"^[A-Za-z0-9]((\\.|-+)?[A-Za-z0-9]){0,252}$"
17881873
},
17891874
"SmbMountOptions":{
17901875
"type":"structure",
@@ -1844,6 +1929,11 @@
18441929
"TaskExecutionArn":{"shape":"TaskExecutionArn"}
18451930
}
18461931
},
1932+
"StorageVirtualMachineArn":{
1933+
"type":"string",
1934+
"max":162,
1935+
"pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$"
1936+
},
18471937
"TagKey":{
18481938
"type":"string",
18491939
"max":256,

0 commit comments

Comments
 (0)