Skip to content

Commit 9e16f6d

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated API models and rebuilt service gems.
1 parent 63ff090 commit 9e16f6d

File tree

32 files changed

+1690
-108
lines changed

32 files changed

+1690
-108
lines changed

apis/connectparticipant/2018-09-07/api-2.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,7 @@
216216
"MESSAGE",
217217
"EVENT",
218218
"ATTACHMENT",
219-
"CONNECTION_ACK",
220-
"PARTICIPANT_ACTIVE",
221-
"PARTICIPANT_INACTIVE",
222-
"PARTICIPANT_ENGAGED",
223-
"PARTICIPANT_DISENGAGED"
219+
"CONNECTION_ACK"
224220
]
225221
},
226222
"ClientToken":{

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

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,19 @@
6666
{"shape":"InternalException"}
6767
]
6868
},
69+
"CreateLocationHdfs":{
70+
"name":"CreateLocationHdfs",
71+
"http":{
72+
"method":"POST",
73+
"requestUri":"/"
74+
},
75+
"input":{"shape":"CreateLocationHdfsRequest"},
76+
"output":{"shape":"CreateLocationHdfsResponse"},
77+
"errors":[
78+
{"shape":"InvalidRequestException"},
79+
{"shape":"InternalException"}
80+
]
81+
},
6982
"CreateLocationNfs":{
7083
"name":"CreateLocationNfs",
7184
"http":{
@@ -209,6 +222,19 @@
209222
{"shape":"InternalException"}
210223
]
211224
},
225+
"DescribeLocationHdfs":{
226+
"name":"DescribeLocationHdfs",
227+
"http":{
228+
"method":"POST",
229+
"requestUri":"/"
230+
},
231+
"input":{"shape":"DescribeLocationHdfsRequest"},
232+
"output":{"shape":"DescribeLocationHdfsResponse"},
233+
"errors":[
234+
{"shape":"InvalidRequestException"},
235+
{"shape":"InternalException"}
236+
]
237+
},
212238
"DescribeLocationNfs":{
213239
"name":"DescribeLocationNfs",
214240
"http":{
@@ -404,6 +430,19 @@
404430
{"shape":"InternalException"}
405431
]
406432
},
433+
"UpdateLocationHdfs":{
434+
"name":"UpdateLocationHdfs",
435+
"http":{
436+
"method":"POST",
437+
"requestUri":"/"
438+
},
439+
"input":{"shape":"UpdateLocationHdfsRequest"},
440+
"output":{"shape":"UpdateLocationHdfsResponse"},
441+
"errors":[
442+
{"shape":"InvalidRequestException"},
443+
{"shape":"InternalException"}
444+
]
445+
},
407446
"UpdateLocationNfs":{
408447
"name":"UpdateLocationNfs",
409448
"http":{
@@ -590,6 +629,35 @@
590629
"LocationArn":{"shape":"LocationArn"}
591630
}
592631
},
632+
"CreateLocationHdfsRequest":{
633+
"type":"structure",
634+
"required":[
635+
"NameNodes",
636+
"AuthenticationType",
637+
"AgentArns"
638+
],
639+
"members":{
640+
"Subdirectory":{"shape":"HdfsSubdirectory"},
641+
"NameNodes":{"shape":"HdfsNameNodeList"},
642+
"BlockSize":{"shape":"HdfsBlockSize"},
643+
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
644+
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
645+
"QopConfiguration":{"shape":"QopConfiguration"},
646+
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
647+
"SimpleUser":{"shape":"HdfsUser"},
648+
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
649+
"KerberosKeytab":{"shape":"KerberosKeytabFile"},
650+
"KerberosKrb5Conf":{"shape":"KerberosKrb5ConfFile"},
651+
"AgentArns":{"shape":"AgentArnList"},
652+
"Tags":{"shape":"InputTagList"}
653+
}
654+
},
655+
"CreateLocationHdfsResponse":{
656+
"type":"structure",
657+
"members":{
658+
"LocationArn":{"shape":"LocationArn"}
659+
}
660+
},
593661
"CreateLocationNfsRequest":{
594662
"type":"structure",
595663
"required":[
@@ -796,6 +864,30 @@
796864
"Domain":{"shape":"SmbDomain"}
797865
}
798866
},
867+
"DescribeLocationHdfsRequest":{
868+
"type":"structure",
869+
"required":["LocationArn"],
870+
"members":{
871+
"LocationArn":{"shape":"LocationArn"}
872+
}
873+
},
874+
"DescribeLocationHdfsResponse":{
875+
"type":"structure",
876+
"members":{
877+
"LocationArn":{"shape":"LocationArn"},
878+
"LocationUri":{"shape":"LocationUri"},
879+
"NameNodes":{"shape":"HdfsNameNodeList"},
880+
"BlockSize":{"shape":"HdfsBlockSize"},
881+
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
882+
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
883+
"QopConfiguration":{"shape":"QopConfiguration"},
884+
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
885+
"SimpleUser":{"shape":"HdfsUser"},
886+
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
887+
"AgentArns":{"shape":"AgentArnList"},
888+
"CreationTime":{"shape":"Time"}
889+
}
890+
},
799891
"DescribeLocationNfsRequest":{
800892
"type":"structure",
801893
"required":["LocationArn"],
@@ -1033,6 +1125,82 @@
10331125
"BOTH"
10341126
]
10351127
},
1128+
"HdfsAuthenticationType":{
1129+
"type":"string",
1130+
"enum":[
1131+
"SIMPLE",
1132+
"KERBEROS"
1133+
]
1134+
},
1135+
"HdfsBlockSize":{
1136+
"type":"integer",
1137+
"box":true,
1138+
"max":1073741824,
1139+
"min":1048576
1140+
},
1141+
"HdfsDataTransferProtection":{
1142+
"type":"string",
1143+
"enum":[
1144+
"DISABLED",
1145+
"AUTHENTICATION",
1146+
"INTEGRITY",
1147+
"PRIVACY"
1148+
]
1149+
},
1150+
"HdfsNameNode":{
1151+
"type":"structure",
1152+
"required":[
1153+
"Hostname",
1154+
"Port"
1155+
],
1156+
"members":{
1157+
"Hostname":{"shape":"HdfsServerHostname"},
1158+
"Port":{"shape":"HdfsServerPort"}
1159+
}
1160+
},
1161+
"HdfsNameNodeList":{
1162+
"type":"list",
1163+
"member":{"shape":"HdfsNameNode"},
1164+
"min":1
1165+
},
1166+
"HdfsReplicationFactor":{
1167+
"type":"integer",
1168+
"box":true,
1169+
"max":512,
1170+
"min":1
1171+
},
1172+
"HdfsRpcProtection":{
1173+
"type":"string",
1174+
"enum":[
1175+
"DISABLED",
1176+
"AUTHENTICATION",
1177+
"INTEGRITY",
1178+
"PRIVACY"
1179+
]
1180+
},
1181+
"HdfsServerHostname":{
1182+
"type":"string",
1183+
"max":255,
1184+
"min":1,
1185+
"pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])$"
1186+
},
1187+
"HdfsServerPort":{
1188+
"type":"integer",
1189+
"box":true,
1190+
"max":65536,
1191+
"min":1
1192+
},
1193+
"HdfsSubdirectory":{
1194+
"type":"string",
1195+
"max":4096,
1196+
"pattern":"^[a-zA-Z0-9_\\-\\+\\./\\(\\)\\$\\p{Zs}]+$"
1197+
},
1198+
"HdfsUser":{
1199+
"type":"string",
1200+
"max":256,
1201+
"min":1,
1202+
"pattern":"^[_.A-Za-z0-9][-_.A-Za-z0-9]*$"
1203+
},
10361204
"IamRoleArn":{
10371205
"type":"string",
10381206
"max":2048,
@@ -1061,6 +1229,26 @@
10611229
},
10621230
"exception":true
10631231
},
1232+
"KerberosKeytabFile":{
1233+
"type":"blob",
1234+
"max":65536
1235+
},
1236+
"KerberosKrb5ConfFile":{
1237+
"type":"blob",
1238+
"max":131072
1239+
},
1240+
"KerberosPrincipal":{
1241+
"type":"string",
1242+
"max":256,
1243+
"min":1,
1244+
"pattern":"^.+$"
1245+
},
1246+
"KmsKeyProviderUri":{
1247+
"type":"string",
1248+
"max":255,
1249+
"min":1,
1250+
"pattern":"^kms:\\/\\/http[s]?@(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])(;(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9]))*:[0-9]{1,5}\\/kms$"
1251+
},
10641252
"ListAgentsRequest":{
10651253
"type":"structure",
10661254
"members":{
@@ -1373,6 +1561,13 @@
13731561
"SecurityGroupArns":{"shape":"PLSecurityGroupArnList"}
13741562
}
13751563
},
1564+
"QopConfiguration":{
1565+
"type":"structure",
1566+
"members":{
1567+
"RpcProtection":{"shape":"HdfsRpcProtection"},
1568+
"DataTransferProtection":{"shape":"HdfsDataTransferProtection"}
1569+
}
1570+
},
13761571
"S3BucketArn":{
13771572
"type":"string",
13781573
"max":156,
@@ -1675,6 +1870,30 @@
16751870
"members":{
16761871
}
16771872
},
1873+
"UpdateLocationHdfsRequest":{
1874+
"type":"structure",
1875+
"required":["LocationArn"],
1876+
"members":{
1877+
"LocationArn":{"shape":"LocationArn"},
1878+
"Subdirectory":{"shape":"HdfsSubdirectory"},
1879+
"NameNodes":{"shape":"HdfsNameNodeList"},
1880+
"BlockSize":{"shape":"HdfsBlockSize"},
1881+
"ReplicationFactor":{"shape":"HdfsReplicationFactor"},
1882+
"KmsKeyProviderUri":{"shape":"KmsKeyProviderUri"},
1883+
"QopConfiguration":{"shape":"QopConfiguration"},
1884+
"AuthenticationType":{"shape":"HdfsAuthenticationType"},
1885+
"SimpleUser":{"shape":"HdfsUser"},
1886+
"KerberosPrincipal":{"shape":"KerberosPrincipal"},
1887+
"KerberosKeytab":{"shape":"KerberosKeytabFile"},
1888+
"KerberosKrb5Conf":{"shape":"KerberosKrb5ConfFile"},
1889+
"AgentArns":{"shape":"AgentArnList"}
1890+
}
1891+
},
1892+
"UpdateLocationHdfsResponse":{
1893+
"type":"structure",
1894+
"members":{
1895+
}
1896+
},
16781897
"UpdateLocationNfsRequest":{
16791898
"type":"structure",
16801899
"required":["LocationArn"],

0 commit comments

Comments
 (0)