Package-level declarations

Types

Link copied to clipboard
data class GetApplicationsApplication(val appId: String, val appName: String, val applicationType: String, val buildPackageId: Int, val clusterId: String, val clusterType: Int, val regionId: String)
Link copied to clipboard
data class GetApplicationsResult(val applications: List<GetApplicationsApplication>, val id: String, val ids: List<String>, val nameRegex: String? = null, val names: List<String>, val outputFile: String? = null)

A collection of values returned by getApplications.

Link copied to clipboard
data class GetClustersCluster(val clusterId: String, val clusterName: String, val clusterType: Int, val cpu: Int, val cpuUsed: Int, val createTime: Int, val mem: Int, val memUsed: Int, val networkMode: Int, val nodeNum: Int, val regionId: String, val updateTime: Int, val vpcId: String)
Link copied to clipboard
data class GetClustersResult(val clusters: List<GetClustersCluster>, val id: String, val ids: List<String>, val logicalRegionId: String, val nameRegex: String? = null, val names: List<String>, val outputFile: String? = null)

A collection of values returned by getClusters.

Link copied to clipboard
data class GetDeployGroupsGroup(val appId: String, val appVersionId: String, val clusterId: String, val createTime: Int, val groupId: String, val groupName: String, val groupType: Int, val packageVersionId: String, val updateTime: Int)
Link copied to clipboard
data class GetDeployGroupsResult(val appId: String, val groups: List<GetDeployGroupsGroup>, val id: String, val nameRegex: String? = null, val names: List<String>, val outputFile: String? = null)

A collection of values returned by getDeployGroups.

Link copied to clipboard
data class GetNamespacesNamespace(val belongRegion: String, val debugEnable: Boolean, val description: String, val id: String, val namespaceId: String, val namespaceLogicalId: String, val namespaceName: String, val userId: String)
Link copied to clipboard
data class GetNamespacesResult(val id: String, val ids: List<String>, val nameRegex: String? = null, val names: List<String>, val namespaces: List<GetNamespacesNamespace>, val outputFile: String? = null)

A collection of values returned by getNamespaces.

Link copied to clipboard
data class GetServiceResult(val enable: String? = null, val id: String, val status: String)

A collection of values returned by getService.

Link copied to clipboard
data class K8sSlbAttachmentSlbConfig(val name: String? = null, val portMappings: List<K8sSlbAttachmentSlbConfigPortMapping>, val scheduler: String, val slbId: String? = null, val specification: String? = null, val type: String)
Link copied to clipboard
data class K8sSlbAttachmentSlbConfigPortMapping(val certId: String? = null, val loadbalancerProtocol: String, val servicePort: K8sSlbAttachmentSlbConfigPortMappingServicePort)
data class K8sSlbAttachmentSlbConfigPortMappingServicePort(val port: Int, val protocol: String, val targetPort: Int)