Skip to content

Commit

Permalink
paas: support nodes and kafka coordinator
Browse files Browse the repository at this point in the history
  • Loading branch information
CrocBomber committed Aug 30, 2024
1 parent 358298a commit 670135c
Showing 1 changed file with 47 additions and 7 deletions.
54 changes: 47 additions & 7 deletions botocore/data/paas/2022-09-06/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@
"serviceCaption": {"shape": "String"},
"serviceType": {"shape": "String"},
"protocol": {"shape": "String"},
"port": {"shape": "String"}
"port": {"shape": "Integer"}
}
},
"BalancerTargets": {
Expand Down Expand Up @@ -621,7 +621,8 @@
"backupSettings": {"shape": "BackupSettingsRequest"},
"arbitratorRequired": {"shape": "Boolean"},
"internalBalancerRequired": {"shape": "Boolean"},
"externalBalancerRequired": {"shape": "Boolean"}
"externalBalancerRequired": {"shape": "Boolean"},
"coordinator": {"shape": "NodeRequest"}
}
},
"CreateServiceResponse": {
Expand Down Expand Up @@ -1430,6 +1431,45 @@
"externalBalancerRequired": {"shape": "Boolean"}
}
},
"Node": {
"type": "structure",
"members": {
"role": {"shape": "String"},
"instanceType": {"shape": "String"},
"nodeQty": {"shape": "Integer"},
"rootVolumeType": {"shape": "String"},
"rootVolumeSize": {"shape": "Integer"},
"rootVolumeIops": {"shape": "Integer"},
"dataVolumeType": {"shape": "String"},
"dataVolumeSize": {"shape": "Integer"},
"dataVolumeIops": {"shape": "Integer"}
}
},
"Nodes": {
"type": "structure",
"members": {
"main": {"shape": "Node"},
"arbitrator": {"shape": "Node"},
"coordinator": {"shape": "Node"}
}
},
"NodeRequest": {
"type": "structure",
"required": [
"instanceType",
"rootVolumeType",
"rootVolumeSize"
],
"members": {
"instanceType": {"shape": "String"},
"rootVolumeType": {"shape": "String"},
"rootVolumeSize": {"shape": "Integer"},
"rootVolumeIops": {"shape": "Integer"},
"dataVolumeType": {"shape": "String"},
"dataVolumeSize": {"shape": "Integer"},
"dataVolumeIops": {"shape": "Integer"}
}
},
"None": {"type": "none"},
"SecurityGroup": {
"type": "structure",
Expand Down Expand Up @@ -1461,11 +1501,11 @@
"instanceType": {"shape": "String"},
"highAvailability": {"shape": "Boolean"},
"instanceQty": {"shape": "Integer"},
"nodes": {"shape": "Nodes"},
"sshKeyName": {"shape": "String"},
"parameters": {"shape": "None"},
"users": {"shape": "UserResponseList"},
"databases": {"shape": "DatabaseResponseList"},
"logstashPipelines": {"shape": "LogstashPipelineList"},
"status": {"shape": "String"},
"errorCode": {"shape": "String"},
"errorDescription": {"shape": "String"},
Expand All @@ -1480,11 +1520,11 @@
"externalBalancerRequired": {"shape": "Boolean"},
"internalBalancerAllowed": {"shape": "Boolean"},
"externalBalancerAllowed": {"shape": "Boolean"},
"internalBalancerTargets": {"shape": "BalancerTargets"},
"externalBalancerTargets": {"shape": "BalancerTargets"},
"internalBalancerTargets": {"shape": "BalancerTargets"},
"externalBalancerTargets": {"shape": "BalancerTargets"},
"loadBalancers": {"shape": "LoadBalancers"},
"environmentVersion": {"shape": "String"},
"availableEnvironmentVersions": {"shape": "StringList"},
"environmentVersion": {"shape": "String"},
"availableEnvironmentVersions": {"shape": "StringList"},
"isRolledBack": {"shape": "Boolean"}
}
},
Expand Down

0 comments on commit 670135c

Please sign in to comment.