| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package edas
- //Licensed under the Apache License, Version 2.0 (the "License");
- //you may not use this file except in compliance with the License.
- //You may obtain a copy of the License at
- //
- //http://www.apache.org/licenses/LICENSE-2.0
- //
- //Unless required by applicable law or agreed to in writing, software
- //distributed under the License is distributed on an "AS IS" BASIS,
- //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- //See the License for the specific language governing permissions and
- //limitations under the License.
- //
- // Code generated by Alibaba Cloud SDK Code Generator.
- // Changes may cause incorrect behavior and will be lost if the code is regenerated.
- // DeployGroup is a nested struct in edas response
- type DeployGroup struct {
- CsClusterId string `json:"CsClusterId" xml:"CsClusterId"`
- Reversion string `json:"Reversion" xml:"Reversion"`
- GroupName string `json:"GroupName" xml:"GroupName"`
- DeploymentName string `json:"DeploymentName" xml:"DeploymentName"`
- MemoryLimit string `json:"MemoryLimit" xml:"MemoryLimit"`
- CreateTime int64 `json:"CreateTime" xml:"CreateTime"`
- PackageVersion string `json:"PackageVersion" xml:"PackageVersion"`
- PackagePublicUrl string `json:"PackagePublicUrl" xml:"PackagePublicUrl"`
- Selector string `json:"Selector" xml:"Selector"`
- Strategy string `json:"Strategy" xml:"Strategy"`
- PackageVersionId string `json:"PackageVersionId" xml:"PackageVersionId"`
- ClusterName string `json:"ClusterName" xml:"ClusterName"`
- PreStop string `json:"PreStop" xml:"PreStop"`
- Env string `json:"Env" xml:"Env"`
- BaseComponentMetaName string `json:"BaseComponentMetaName" xml:"BaseComponentMetaName"`
- GroupId string `json:"GroupId" xml:"GroupId"`
- AppVersionId string `json:"AppVersionId" xml:"AppVersionId"`
- ClusterId string `json:"ClusterId" xml:"ClusterId"`
- LastUpdateTime int64 `json:"LastUpdateTime" xml:"LastUpdateTime"`
- UpdateTime int64 `json:"UpdateTime" xml:"UpdateTime"`
- NameSpace string `json:"NameSpace" xml:"NameSpace"`
- PostStart string `json:"PostStart" xml:"PostStart"`
- GroupType int `json:"GroupType" xml:"GroupType"`
- AppId string `json:"AppId" xml:"AppId"`
- CpuLimit string `json:"CpuLimit" xml:"CpuLimit"`
- Labels string `json:"Labels" xml:"Labels"`
- Status string `json:"Status" xml:"Status"`
- PackageUrl string `json:"PackageUrl" xml:"PackageUrl"`
- Components Components `json:"Components" xml:"Components"`
- }
|