Skip to content

Commit

Permalink
eks: fix parameters types in Cluster schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dagaponov committed Mar 22, 2023
1 parent e5c655b commit 4d6d5cb
Showing 1 changed file with 43 additions and 13 deletions.
56 changes: 43 additions & 13 deletions botocore/data/eks/2017-11-01/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -397,44 +397,62 @@
"Name":{"shape":"String"},
"Version":{"shape":"String"},
"HighAvailability":{"shape":"Boolean"},
"WorkersQuantity":{"shape":"String"},
"WorkersQuantity":{"shape":"Integer"},
"MastersInstanceType":{"shape":"String"},
"WorkersInstanceType":{"shape":"String"},
"MastersVolumeType":{"shape":"String"},
"WorkersVolumeType":{"shape":"String"},
"MastersVolumeSize":{"shape":"String"},
"WorkersVolumeSize":{"shape":"String"},
"MastersVolumeSize":{"shape":"Integer"},
"WorkersVolumeSize":{"shape":"Integer"},
"MastersVolumeIops":{"shape":"String"},
"WorkersVolumeIops":{"shape":"String"},
"IngressInstanceType":{"shape":"String"},
"IngressVolumeType":{"shape":"String"},
"IngressVolumeSize":{"shape":"String"},
"IngressVolumeSize":{"shape":"Integer"},
"IngressVolumeIops":{"shape":"String"},
"SecurityGroupIds":{"shape":"StringList"},
"Instances":{"shape":"InstanceList"},
"SubnetIds":{"shape":"StringList"},
"SshKeyName":{"shape":"String"},
"Status":{"shape":"String"},
"Status":{"shape":"ClusterStatus"},
"Health":{"shape":"String"},
"DashboardToken":{"shape":"String"},
"DockerRegistry":{"shape":"String"},
"Ingress":{"shape":"String"},
"ApiServer":{"shape":"String"},
"Ingress":{"shape":"Ingress"},
"ApiServer":{"shape":"ApiServer"},
"ErrorCode":{"shape":"String"},
"ErrorDescription":{"shape":"String"},
"UsePlacementGroups":{"shape":"String"},
"UsePlacementGroups":{"shape":"Boolean"},
"UserData":{"shape":"String"},
"UserDataContentType":{"shape":"String"},
"HasNewWarnings":{"shape":"String"},
"TotalCPUCount":{"shape":"String"},
"TotalMemory":{"shape":"String"},
"HasNewWarnings":{"shape":"Boolean"},
"TotalCPUCount":{"shape":"Integer"},
"TotalMemory":{"shape":"Float"},
"EbsUser":{"shape":"String"},
"PodSubnetCidr":{"shape":"String"},
"ServiceSubnetCidr":{"shape":"String"},
"AutoUpdateCertificates":{"shape":"Boolean"},
"SupportedFeatures":{"shape":"StringList"}
}
},
"ClusterList": {
"type":"list",
"member":{"shape":"Cluster"}
},
"ApiServer":{
"type":"structure",
"members":{
"PublicIp":{
"shape":"String"
},
"PrivateIp":{
"shape":"String"
},
"PrivateIps":{
"shape":"StringList"
}
}
},
"ClusterName":{
"type":"string",
"max":100,
Expand All @@ -451,6 +469,18 @@
"UPDATING"
]
},
"Float":{"type":"float"},
"Ingress":{
"type":"structure",
"members":{
"PublicIp":{
"shape":"String"
},
"PrivateIp":{
"shape":"String"
}
}
},
"InstanceList":{
"type":"list",
"member":{"shape":"Instance"}
Expand Down Expand Up @@ -498,7 +528,7 @@
"members":{
"ccus":{"shape":"String"},
"cpu":{"shape":"Integer"},
"memory":{"shape":"Integer"},
"memory":{"shape":"Float"},
"name":{"shape":"String"}
}
},
Expand Down Expand Up @@ -1538,7 +1568,7 @@
"type":"structure",
"members":{
"clusters":{
"shape":"StringList",
"shape":"ClusterList",
"documentation":"<p>A list of all of the clusters for your account in the specified Region.</p>"
},
"nextToken":{
Expand Down

0 comments on commit 4d6d5cb

Please sign in to comment.