
com.tencentcloudapi.tsf.v20180326.models.OperateApplicationTcrBindingRequest Maven / Gradle / Ivy
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* 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.
*/
package com.tencentcloudapi.tsf.v20180326.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class OperateApplicationTcrBindingRequest extends AbstractModel {
/**
* bind 或 unbind
*/
@SerializedName("Command")
@Expose
private String Command;
/**
* 应用id
*/
@SerializedName("ApplicationId")
@Expose
private String ApplicationId;
/**
* TcrRepoInfo值
*/
@SerializedName("TcrRepoInfo")
@Expose
private TcrRepoInfo TcrRepoInfo;
/**
* Get bind 或 unbind
* @return Command bind 或 unbind
*/
public String getCommand() {
return this.Command;
}
/**
* Set bind 或 unbind
* @param Command bind 或 unbind
*/
public void setCommand(String Command) {
this.Command = Command;
}
/**
* Get 应用id
* @return ApplicationId 应用id
*/
public String getApplicationId() {
return this.ApplicationId;
}
/**
* Set 应用id
* @param ApplicationId 应用id
*/
public void setApplicationId(String ApplicationId) {
this.ApplicationId = ApplicationId;
}
/**
* Get TcrRepoInfo值
* @return TcrRepoInfo TcrRepoInfo值
*/
public TcrRepoInfo getTcrRepoInfo() {
return this.TcrRepoInfo;
}
/**
* Set TcrRepoInfo值
* @param TcrRepoInfo TcrRepoInfo值
*/
public void setTcrRepoInfo(TcrRepoInfo TcrRepoInfo) {
this.TcrRepoInfo = TcrRepoInfo;
}
public OperateApplicationTcrBindingRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public OperateApplicationTcrBindingRequest(OperateApplicationTcrBindingRequest source) {
if (source.Command != null) {
this.Command = new String(source.Command);
}
if (source.ApplicationId != null) {
this.ApplicationId = new String(source.ApplicationId);
}
if (source.TcrRepoInfo != null) {
this.TcrRepoInfo = new TcrRepoInfo(source.TcrRepoInfo);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Command", this.Command);
this.setParamSimple(map, prefix + "ApplicationId", this.ApplicationId);
this.setParamObj(map, prefix + "TcrRepoInfo.", this.TcrRepoInfo);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy