index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/model
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/model/v20150815/UpdateDimensionsRequest.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.model.v20150815;
import com.alibaba.fastjson.JSON;
import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.alert.domain.CmsAlertRelation;
import com.aliyuncs.http.FormatType;
import com.aliyuncs.http.MethodType;
/**
* @author auto create
* @version
*/
public class UpdateDimensionsRequest extends RoaAcsRequest<UpdateDimensionsResponse> {
public UpdateDimensionsRequest() {
super("Alert", "2015-08-15", "UpdateDimensions");
setUriPattern("/projects/[ProjectName]/alert/dimensions/[DimensionsId]");
setMethod(MethodType.PUT);
}
private String projectName;
private String alertName;
private String dimensionsId;
private CmsAlertRelation dimensions;
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
putPathParameter("ProjectName", projectName);
}
public String getAlertName() {
return this.alertName;
}
public void setAlertName(String alertName) {
this.alertName = alertName;
putQueryParameter("alertName", alertName);
}
public String getDimensionsId() {
return this.dimensionsId;
}
public void setDimensionsId(String dimensionsId) {
this.dimensionsId = dimensionsId;
putPathParameter("DimensionsId", dimensionsId);
}
public CmsAlertRelation getDimensions() {
return this.dimensions;
}
public void setDimensions(CmsAlertRelation dimensions) {
// this.dimensions = dimensions;
setContent(JSON.toJSONString(dimensions).getBytes(),"UTF-8", FormatType.JSON);
}
@Override
public Class<UpdateDimensionsResponse> getResponseClass() {
return UpdateDimensionsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/model
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/model/v20150815/UpdateDimensionsResponse.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.model.v20150815;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alert.transform.v20150815.UpdateDimensionsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateDimensionsResponse extends AcsResponse {
private String code;
private String message;
private String success;
private String traceId;
public String getcode() {
return this.code;
}
public void setcode(String code) {
this.code = code;
}
public String getmessage() {
return this.message;
}
public void setmessage(String message) {
this.message = message;
}
public String getsuccess() {
return this.success;
}
public void setsuccess(String success) {
this.success = success;
}
public String gettraceId() {
return this.traceId;
}
public void settraceId(String traceId) {
this.traceId = traceId;
}
@Override
public UpdateDimensionsResponse getInstance(UnmarshallerContext context) {
return UpdateDimensionsResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/JSONParser.java
|
package com.aliyuncs.alert.transform;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.http.HttpResponse;
import com.aliyuncs.transform.UnmarshallerContext;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.List;
/**
* Created by fray.yangb-然诺 on 15/10/22.
*/
public final class JSONParser {
public static List<JSONObject> parseJSONArray(UnmarshallerContext context, int length) {
List<JSONObject> datapoints = new ArrayList<JSONObject>(length);
HttpResponse response = context.getHttpResponse();
try {
JSONObject json = JSON.parseObject(new String(response.getContent(), "UTF-8"));
if(json==null)return datapoints;
JSONObject dpjs = json.getJSONObject("Datapoints");
if(dpjs==null){return datapoints;}
JSONArray array = dpjs.getJSONArray("Datapoint");
if(array==null){return datapoints;}
for (int i = 0; i < length; i++) {
datapoints.add(array.getJSONObject(i));
}
} catch (UnsupportedEncodingException e) {
}
return datapoints;
}
public static List<JSONObject> parseJSONArray(UnmarshallerContext context) {
try {
String contont = new String(context.getHttpResponse().getContent(),"UTF-8");
JSONObject json = JSON.parseObject(contont);
JSONArray array = json.getJSONArray("datapoints");
if(array!=null) {
List<JSONObject> datapoints = new ArrayList<JSONObject>(array.size());
for (int i = 0; i < array.size(); i++) {
datapoints.add(array.getJSONObject(i));
}
return datapoints;
}
} catch (UnsupportedEncodingException e) {
}
return null;
}
public static <T> T parseResult(UnmarshallerContext context, Class<T> clazz) {
try {
String contont = new String(context.getHttpResponse().getContent(),"UTF-8");
JSONObject json = JSON.parseObject(contont);
return json.getObject("result", clazz);
} catch (UnsupportedEncodingException e) {
}
return null;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/CreateAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.CreateAlertResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateAlertResponseUnmarshaller {
public static CreateAlertResponse unmarshall(CreateAlertResponse createAlertResponse, UnmarshallerContext context) {
createAlertResponse.setcode(context.stringValue("CreateAlertResponse.code"));
createAlertResponse.setmessage(context.stringValue("CreateAlertResponse.message"));
createAlertResponse.setsuccess(context.stringValue("CreateAlertResponse.success"));
createAlertResponse.settraceId(context.stringValue("CreateAlertResponse.traceId"));
createAlertResponse.setresult(context.stringValue("CreateAlertResponse.result"));
return createAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/CreateContactGroupResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.CreateContactGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateContactGroupResponseUnmarshaller {
public static CreateContactGroupResponse unmarshall(CreateContactGroupResponse createContactGroupResponse, UnmarshallerContext context) {
createContactGroupResponse.setcode(context.stringValue("CreateContactGroupResponse.code"));
createContactGroupResponse.setmessage(context.stringValue("CreateContactGroupResponse.message"));
createContactGroupResponse.setsuccess(context.stringValue("CreateContactGroupResponse.success"));
createContactGroupResponse.settraceId(context.stringValue("CreateContactGroupResponse.traceId"));
createContactGroupResponse.setresult(context.stringValue("CreateContactGroupResponse.result"));
return createContactGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/CreateContactResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.CreateContactResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateContactResponseUnmarshaller {
public static CreateContactResponse unmarshall(CreateContactResponse createContactResponse, UnmarshallerContext context) {
createContactResponse.setcode(context.stringValue("CreateContactResponse.code"));
createContactResponse.setmessage(context.stringValue("CreateContactResponse.message"));
createContactResponse.setsuccess(context.stringValue("CreateContactResponse.success"));
createContactResponse.settraceId(context.stringValue("CreateContactResponse.traceId"));
createContactResponse.setresult(context.stringValue("CreateContactResponse.result"));
return createContactResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/CreateDimensionsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.CreateDimensionsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class CreateDimensionsResponseUnmarshaller {
public static CreateDimensionsResponse unmarshall(CreateDimensionsResponse createDimensionsResponse, UnmarshallerContext context) {
createDimensionsResponse.setcode(context.stringValue("CreateDimensionsResponse.code"));
createDimensionsResponse.setmessage(context.stringValue("CreateDimensionsResponse.message"));
createDimensionsResponse.setsuccess(context.stringValue("CreateDimensionsResponse.success"));
createDimensionsResponse.settraceId(context.stringValue("CreateDimensionsResponse.traceId"));
createDimensionsResponse.setresult(context.stringValue("CreateDimensionsResponse.result"));
return createDimensionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/DeleteAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.DeleteAlertResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteAlertResponseUnmarshaller {
public static DeleteAlertResponse unmarshall(DeleteAlertResponse deleteAlertResponse, UnmarshallerContext context) {
deleteAlertResponse.setcode(context.stringValue("DeleteAlertResponse.code"));
deleteAlertResponse.setmessage(context.stringValue("DeleteAlertResponse.message"));
deleteAlertResponse.setsuccess(context.stringValue("DeleteAlertResponse.success"));
deleteAlertResponse.settraceId(context.stringValue("DeleteAlertResponse.traceId"));
return deleteAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/DeleteContactGroupResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.DeleteContactGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteContactGroupResponseUnmarshaller {
public static DeleteContactGroupResponse unmarshall(DeleteContactGroupResponse deleteContactGroupResponse, UnmarshallerContext context) {
deleteContactGroupResponse.setcode(context.stringValue("DeleteContactGroupResponse.code"));
deleteContactGroupResponse.setmessage(context.stringValue("DeleteContactGroupResponse.message"));
deleteContactGroupResponse.setsuccess(context.stringValue("DeleteContactGroupResponse.success"));
deleteContactGroupResponse.settraceId(context.stringValue("DeleteContactGroupResponse.traceId"));
return deleteContactGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/DeleteContactResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.DeleteContactResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteContactResponseUnmarshaller {
public static DeleteContactResponse unmarshall(DeleteContactResponse deleteContactResponse, UnmarshallerContext context) {
deleteContactResponse.setcode(context.stringValue("DeleteContactResponse.code"));
deleteContactResponse.setmessage(context.stringValue("DeleteContactResponse.message"));
deleteContactResponse.setsuccess(context.stringValue("DeleteContactResponse.success"));
deleteContactResponse.settraceId(context.stringValue("DeleteContactResponse.traceId"));
return deleteContactResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/DeleteDimensionsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.DeleteDimensionsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DeleteDimensionsResponseUnmarshaller {
public static DeleteDimensionsResponse unmarshall(DeleteDimensionsResponse deleteDimensionsResponse, UnmarshallerContext context) {
deleteDimensionsResponse.setcode(context.stringValue("DeleteDimensionsResponse.code"));
deleteDimensionsResponse.setmessage(context.stringValue("DeleteDimensionsResponse.message"));
deleteDimensionsResponse.setsuccess(context.stringValue("DeleteDimensionsResponse.success"));
deleteDimensionsResponse.settraceId(context.stringValue("DeleteDimensionsResponse.traceId"));
return deleteDimensionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/DisableAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.DisableAlertResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class DisableAlertResponseUnmarshaller {
public static DisableAlertResponse unmarshall(DisableAlertResponse disableAlertResponse, UnmarshallerContext context) {
disableAlertResponse.setcode(context.stringValue("DisableAlertResponse.code"));
disableAlertResponse.setmessage(context.stringValue("DisableAlertResponse.message"));
disableAlertResponse.setsuccess(context.stringValue("DisableAlertResponse.success"));
disableAlertResponse.settraceId(context.stringValue("DisableAlertResponse.traceId"));
return disableAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/EnableAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.EnableAlertResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class EnableAlertResponseUnmarshaller {
public static EnableAlertResponse unmarshall(EnableAlertResponse enableAlertResponse, UnmarshallerContext context) {
enableAlertResponse.setcode(context.stringValue("EnableAlertResponse.code"));
enableAlertResponse.setmessage(context.stringValue("EnableAlertResponse.message"));
enableAlertResponse.setsuccess(context.stringValue("EnableAlertResponse.success"));
enableAlertResponse.settraceId(context.stringValue("EnableAlertResponse.traceId"));
return enableAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/GetAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.domain.AlertEntry;
import com.aliyuncs.alert.model.v20150815.GetAlertResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetAlertResponseUnmarshaller {
public static GetAlertResponse unmarshall(GetAlertResponse getAlertResponse, UnmarshallerContext context) {
getAlertResponse.setcode(context.stringValue("GetAlertResponse.code"));
getAlertResponse.setmessage(context.stringValue("GetAlertResponse.message"));
getAlertResponse.setsuccess(context.stringValue("GetAlertResponse.success"));
getAlertResponse.settraceId(context.stringValue("GetAlertResponse.traceId"));
getAlertResponse.setresult(JSONParser.parseResult(context, AlertEntry.class));
return getAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/GetContactGroupResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.domain.ContactGroup;
import com.aliyuncs.alert.model.v20150815.GetContactGroupResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetContactGroupResponseUnmarshaller {
public static GetContactGroupResponse unmarshall(GetContactGroupResponse getContactGroupResponse, UnmarshallerContext context) {
getContactGroupResponse.setcode(context.stringValue("GetContactGroupResponse.code"));
getContactGroupResponse.setmessage(context.stringValue("GetContactGroupResponse.message"));
getContactGroupResponse.setsuccess(context.stringValue("GetContactGroupResponse.success"));
getContactGroupResponse.settraceId(context.stringValue("GetContactGroupResponse.traceId"));
getContactGroupResponse.setresult(JSONParser.parseResult(context, ContactGroup.class));
return getContactGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/GetContactResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.domain.Contact;
import com.aliyuncs.alert.model.v20150815.GetContactResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetContactResponseUnmarshaller {
public static GetContactResponse unmarshall(GetContactResponse getContactResponse, UnmarshallerContext context) {
getContactResponse.setcode(context.stringValue("GetContactResponse.code"));
getContactResponse.setmessage(context.stringValue("GetContactResponse.message"));
getContactResponse.setsuccess(context.stringValue("GetContactResponse.success"));
getContactResponse.settraceId(context.stringValue("GetContactResponse.traceId"));
getContactResponse.setresult(JSONParser.parseResult(context, Contact.class));
return getContactResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/GetDimensionsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.GetDimensionsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetDimensionsResponseUnmarshaller {
public static GetDimensionsResponse unmarshall(GetDimensionsResponse getDimensionsResponse, UnmarshallerContext context) {
getDimensionsResponse.setcode(context.stringValue("GetDimensionsResponse.code"));
getDimensionsResponse.setmessage(context.stringValue("GetDimensionsResponse.message"));
getDimensionsResponse.setsuccess(context.stringValue("GetDimensionsResponse.success"));
getDimensionsResponse.settraceId(context.stringValue("GetDimensionsResponse.traceId"));
getDimensionsResponse.setresult(context.stringValue("GetDimensionsResponse.result"));
return getDimensionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListAlertResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListAlertResponseUnmarshaller {
public static ListAlertResponse unmarshall(ListAlertResponse listAlertResponse, UnmarshallerContext context) {
listAlertResponse.setcode(context.stringValue("ListAlertResponse.code"));
listAlertResponse.setmessage(context.stringValue("ListAlertResponse.message"));
listAlertResponse.setsuccess(context.stringValue("ListAlertResponse.success"));
listAlertResponse.settraceId(context.stringValue("ListAlertResponse.traceId"));
listAlertResponse.settotal(context.stringValue("ListAlertResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listAlertResponse.setDatapoints(datapoints);
return listAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListContactGroupResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListContactGroupResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListContactGroupResponseUnmarshaller {
public static ListContactGroupResponse unmarshall(ListContactGroupResponse listContactGroupResponse, UnmarshallerContext context) {
listContactGroupResponse.setcode(context.stringValue("ListContactGroupResponse.code"));
listContactGroupResponse.setmessage(context.stringValue("ListContactGroupResponse.message"));
listContactGroupResponse.setsuccess(context.stringValue("ListContactGroupResponse.success"));
listContactGroupResponse.settraceId(context.stringValue("ListContactGroupResponse.traceId"));
listContactGroupResponse.settotal(context.stringValue("ListContactGroupResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listContactGroupResponse.setDatapoints(datapoints);
return listContactGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListContactResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListContactResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListContactResponseUnmarshaller {
public static ListContactResponse unmarshall(ListContactResponse listContactResponse, UnmarshallerContext context) {
listContactResponse.setcode(context.stringValue("ListContactResponse.code"));
listContactResponse.setmessage(context.stringValue("ListContactResponse.message"));
listContactResponse.setsuccess(context.stringValue("ListContactResponse.success"));
listContactResponse.settraceId(context.stringValue("ListContactResponse.traceId"));
listContactResponse.settotal(context.stringValue("ListContactResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listContactResponse.setDatapoints(datapoints);
return listContactResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListDimensionsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListDimensionsResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListDimensionsResponseUnmarshaller {
public static ListDimensionsResponse unmarshall(ListDimensionsResponse listDimensionsResponse, UnmarshallerContext context) {
listDimensionsResponse.setcode(context.stringValue("ListDimensionsResponse.code"));
listDimensionsResponse.setmessage(context.stringValue("ListDimensionsResponse.message"));
listDimensionsResponse.setsuccess(context.stringValue("ListDimensionsResponse.success"));
listDimensionsResponse.settraceId(context.stringValue("ListDimensionsResponse.traceId"));
listDimensionsResponse.settotal(context.stringValue("ListDimensionsResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listDimensionsResponse.setDatapoints(datapoints);
return listDimensionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListNotifyHistoryNewResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListNotifyHistoryNewResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListNotifyHistoryNewResponseUnmarshaller {
public static ListNotifyHistoryNewResponse unmarshall(ListNotifyHistoryNewResponse listNotifyHistoryNewResponse, UnmarshallerContext context) {
listNotifyHistoryNewResponse.setcode(context.stringValue("ListNotifyHistoryNewResponse.code"));
listNotifyHistoryNewResponse.setmessage(context.stringValue("ListNotifyHistoryNewResponse.message"));
listNotifyHistoryNewResponse.setsuccess(context.stringValue("ListNotifyHistoryNewResponse.success"));
listNotifyHistoryNewResponse.settraceId(context.stringValue("ListNotifyHistoryNewResponse.traceId"));
listNotifyHistoryNewResponse.setCursor(context.stringValue("ListNotifyHistoryNewResponse.Cursor"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listNotifyHistoryNewResponse.setDatapoints(datapoints);
return listNotifyHistoryNewResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/ListNotifyHistoryResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.ListNotifyHistoryResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class ListNotifyHistoryResponseUnmarshaller {
public static ListNotifyHistoryResponse unmarshall(ListNotifyHistoryResponse listNotifyHistoryResponse, UnmarshallerContext context) {
listNotifyHistoryResponse.setcode(context.stringValue("ListNotifyHistoryResponse.code"));
listNotifyHistoryResponse.setmessage(context.stringValue("ListNotifyHistoryResponse.message"));
listNotifyHistoryResponse.setsuccess(context.stringValue("ListNotifyHistoryResponse.success"));
listNotifyHistoryResponse.settraceId(context.stringValue("ListNotifyHistoryResponse.traceId"));
listNotifyHistoryResponse.settotal(context.stringValue("ListNotifyHistoryResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
listNotifyHistoryResponse.setDatapoints(datapoints);
return listNotifyHistoryResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/SearchAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.alibaba.fastjson.JSONObject;
import com.aliyuncs.alert.model.v20150815.SearchAlertResponse;
import com.aliyuncs.alert.transform.JSONParser;
import com.aliyuncs.transform.UnmarshallerContext;
import java.util.List;
public class SearchAlertResponseUnmarshaller {
public static SearchAlertResponse unmarshall(SearchAlertResponse searchAlertResponse, UnmarshallerContext context) {
searchAlertResponse.setcode(context.stringValue("SearchAlertResponse.code"));
searchAlertResponse.setmessage(context.stringValue("SearchAlertResponse.message"));
searchAlertResponse.settraceId(context.stringValue("SearchAlertResponse.traceId"));
searchAlertResponse.setnextToken(context.integerValue("SearchAlertResponse.NextToken"));
searchAlertResponse.settotal(context.integerValue("SearchAlertResponse.total"));
List<JSONObject> datapoints = JSONParser.parseJSONArray(context);
searchAlertResponse.setDatapoints(datapoints);
return searchAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/UpdateAlertResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.UpdateAlertResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class UpdateAlertResponseUnmarshaller {
public static UpdateAlertResponse unmarshall(UpdateAlertResponse updateAlertResponse, UnmarshallerContext context) {
updateAlertResponse.setcode(context.stringValue("UpdateAlertResponse.code"));
updateAlertResponse.setmessage(context.stringValue("UpdateAlertResponse.message"));
updateAlertResponse.setsuccess(context.stringValue("UpdateAlertResponse.success"));
updateAlertResponse.settraceId(context.stringValue("UpdateAlertResponse.traceId"));
return updateAlertResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/UpdateContactGroupResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.UpdateContactGroupResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class UpdateContactGroupResponseUnmarshaller {
public static UpdateContactGroupResponse unmarshall(UpdateContactGroupResponse updateContactGroupResponse, UnmarshallerContext context) {
updateContactGroupResponse.setcode(context.stringValue("UpdateContactGroupResponse.code"));
updateContactGroupResponse.setmessage(context.stringValue("UpdateContactGroupResponse.message"));
updateContactGroupResponse.setsuccess(context.stringValue("UpdateContactGroupResponse.success"));
updateContactGroupResponse.settraceId(context.stringValue("UpdateContactGroupResponse.traceId"));
return updateContactGroupResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/UpdateContactResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.UpdateContactResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class UpdateContactResponseUnmarshaller {
public static UpdateContactResponse unmarshall(UpdateContactResponse updateContactResponse, UnmarshallerContext context) {
updateContactResponse.setcode(context.stringValue("UpdateContactResponse.code"));
updateContactResponse.setmessage(context.stringValue("UpdateContactResponse.message"));
updateContactResponse.setsuccess(context.stringValue("UpdateContactResponse.success"));
updateContactResponse.settraceId(context.stringValue("UpdateContactResponse.traceId"));
return updateContactResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alert/3.0.3/com/aliyuncs/alert/transform/v20150815/UpdateDimensionsResponseUnmarshaller.java
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.aliyuncs.alert.transform.v20150815;
import com.aliyuncs.alert.model.v20150815.UpdateDimensionsResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class UpdateDimensionsResponseUnmarshaller {
public static UpdateDimensionsResponse unmarshall(UpdateDimensionsResponse updateDimensionsResponse, UnmarshallerContext context) {
updateDimensionsResponse.setcode(context.stringValue("UpdateDimensionsResponse.code"));
updateDimensionsResponse.setmessage(context.stringValue("UpdateDimensionsResponse.message"));
updateDimensionsResponse.setsuccess(context.stringValue("UpdateDimensionsResponse.success"));
updateDimensionsResponse.settraceId(context.stringValue("UpdateDimensionsResponse.traceId"));
return updateDimensionsResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/ClipVideoRequest.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ClipVideoRequest extends RpcAcsRequest<ClipVideoResponse> {
public ClipVideoRequest() {
super("alibabawood", "2019-02-25", "ClipVideo");
}
private String outerUserId;
private Long videoId;
private String havanaId;
public String getOuterUserId() {
return this.outerUserId;
}
public void setOuterUserId(String outerUserId) {
this.outerUserId = outerUserId;
if(outerUserId != null){
putBodyParameter("OuterUserId", outerUserId);
}
}
public Long getVideoId() {
return this.videoId;
}
public void setVideoId(Long videoId) {
this.videoId = videoId;
if(videoId != null){
putBodyParameter("VideoId", videoId.toString());
}
}
public String getHavanaId() {
return this.havanaId;
}
public void setHavanaId(String havanaId) {
this.havanaId = havanaId;
if(havanaId != null){
putBodyParameter("HavanaId", havanaId);
}
}
@Override
public Class<ClipVideoResponse> getResponseClass() {
return ClipVideoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/ClipVideoResponse.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alibabawood.transform.v20190225.ClipVideoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ClipVideoResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String errorMessage;
private Boolean model;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Boolean getModel() {
return this.model;
}
public void setModel(Boolean model) {
this.model = model;
}
@Override
public ClipVideoResponse getInstance(UnmarshallerContext context) {
return ClipVideoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/GetVideoRequest.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
/**
* @author auto create
* @version
*/
public class GetVideoRequest extends RpcAcsRequest<GetVideoResponse> {
public GetVideoRequest() {
super("alibabawood", "2019-02-25", "GetVideo");
}
private String outerUserId;
private List<Long> videoIdss;
private String havanaId;
public String getOuterUserId() {
return this.outerUserId;
}
public void setOuterUserId(String outerUserId) {
this.outerUserId = outerUserId;
if(outerUserId != null){
putBodyParameter("OuterUserId", outerUserId);
}
}
public List<Long> getVideoIdss() {
return this.videoIdss;
}
public void setVideoIdss(List<Long> videoIdss) {
this.videoIdss = videoIdss;
if (videoIdss != null) {
for (int i = 0; i < videoIdss.size(); i++) {
putBodyParameter("VideoIds." + (i + 1) , videoIdss.get(i));
}
}
}
public String getHavanaId() {
return this.havanaId;
}
public void setHavanaId(String havanaId) {
this.havanaId = havanaId;
if(havanaId != null){
putBodyParameter("HavanaId", havanaId);
}
}
@Override
public Class<GetVideoResponse> getResponseClass() {
return GetVideoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/GetVideoResponse.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alibabawood.transform.v20190225.GetVideoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVideoResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String errorMessage;
private List<Video> model;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public List<Video> getModel() {
return this.model;
}
public void setModel(List<Video> model) {
this.model = model;
}
public static class Video {
private Long videoId;
private String originalUrl;
private String resultUrl;
private String previewUrl;
private Long duration;
private Long size;
private String originalFileName;
private String extendInfo;
public Long getVideoId() {
return this.videoId;
}
public void setVideoId(Long videoId) {
this.videoId = videoId;
}
public String getOriginalUrl() {
return this.originalUrl;
}
public void setOriginalUrl(String originalUrl) {
this.originalUrl = originalUrl;
}
public String getResultUrl() {
return this.resultUrl;
}
public void setResultUrl(String resultUrl) {
this.resultUrl = resultUrl;
}
public String getPreviewUrl() {
return this.previewUrl;
}
public void setPreviewUrl(String previewUrl) {
this.previewUrl = previewUrl;
}
public Long getDuration() {
return this.duration;
}
public void setDuration(Long duration) {
this.duration = duration;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
public String getOriginalFileName() {
return this.originalFileName;
}
public void setOriginalFileName(String originalFileName) {
this.originalFileName = originalFileName;
}
public String getExtendInfo() {
return this.extendInfo;
}
public void setExtendInfo(String extendInfo) {
this.extendInfo = extendInfo;
}
}
@Override
public GetVideoResponse getInstance(UnmarshallerContext context) {
return GetVideoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/GetVideoUploadPolicyRequest.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class GetVideoUploadPolicyRequest extends RpcAcsRequest<GetVideoUploadPolicyResponse> {
public GetVideoUploadPolicyRequest() {
super("alibabawood", "2019-02-25", "GetVideoUploadPolicy");
}
private String fIleName;
private String outerUserId;
private String havanaId;
public String getFIleName() {
return this.fIleName;
}
public void setFIleName(String fIleName) {
this.fIleName = fIleName;
if(fIleName != null){
putBodyParameter("FIleName", fIleName);
}
}
public String getOuterUserId() {
return this.outerUserId;
}
public void setOuterUserId(String outerUserId) {
this.outerUserId = outerUserId;
if(outerUserId != null){
putBodyParameter("OuterUserId", outerUserId);
}
}
public String getHavanaId() {
return this.havanaId;
}
public void setHavanaId(String havanaId) {
this.havanaId = havanaId;
if(havanaId != null){
putBodyParameter("HavanaId", havanaId);
}
}
@Override
public Class<GetVideoUploadPolicyResponse> getResponseClass() {
return GetVideoUploadPolicyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/GetVideoUploadPolicyResponse.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alibabawood.transform.v20190225.GetVideoUploadPolicyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVideoUploadPolicyResponse extends AcsResponse {
private Boolean success;
private String errorMessage;
private String requestId;
private Model model;
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Model getModel() {
return this.model;
}
public void setModel(Model model) {
this.model = model;
}
public static class Model {
private String accessId;
private String endPoint;
private String policy;
private String signature;
private String expiration;
private String objectKey;
private String fileName;
private String bucketName;
public String getAccessId() {
return this.accessId;
}
public void setAccessId(String accessId) {
this.accessId = accessId;
}
public String getEndPoint() {
return this.endPoint;
}
public void setEndPoint(String endPoint) {
this.endPoint = endPoint;
}
public String getPolicy() {
return this.policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getExpiration() {
return this.expiration;
}
public void setExpiration(String expiration) {
this.expiration = expiration;
}
public String getObjectKey() {
return this.objectKey;
}
public void setObjectKey(String objectKey) {
this.objectKey = objectKey;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getBucketName() {
return this.bucketName;
}
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
}
@Override
public GetVideoUploadPolicyResponse getInstance(UnmarshallerContext context) {
return GetVideoUploadPolicyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/UploadVideoRequest.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class UploadVideoRequest extends RpcAcsRequest<UploadVideoResponse> {
public UploadVideoRequest() {
super("alibabawood", "2019-02-25", "UploadVideo");
}
private String fileName;
private String outerUserId;
private String objectKey;
private String extendInfo;
private String havanaId;
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
if(fileName != null){
putBodyParameter("FileName", fileName);
}
}
public String getOuterUserId() {
return this.outerUserId;
}
public void setOuterUserId(String outerUserId) {
this.outerUserId = outerUserId;
if(outerUserId != null){
putBodyParameter("OuterUserId", outerUserId);
}
}
public String getObjectKey() {
return this.objectKey;
}
public void setObjectKey(String objectKey) {
this.objectKey = objectKey;
if(objectKey != null){
putBodyParameter("ObjectKey", objectKey);
}
}
public String getExtendInfo() {
return this.extendInfo;
}
public void setExtendInfo(String extendInfo) {
this.extendInfo = extendInfo;
if(extendInfo != null){
putBodyParameter("ExtendInfo", extendInfo);
}
}
public String getHavanaId() {
return this.havanaId;
}
public void setHavanaId(String havanaId) {
this.havanaId = havanaId;
if(havanaId != null){
putBodyParameter("HavanaId", havanaId);
}
}
@Override
public Class<UploadVideoResponse> getResponseClass() {
return UploadVideoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/model/v20190225/UploadVideoResponse.java
|
/*
* 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.aliyuncs.alibabawood.model.v20190225;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alibabawood.transform.v20190225.UploadVideoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UploadVideoResponse extends AcsResponse {
private String requestId;
private Boolean success;
private String errorMessage;
private Model model;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getErrorMessage() {
return this.errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Model getModel() {
return this.model;
}
public void setModel(Model model) {
this.model = model;
}
public static class Model {
private Long videoId;
private String originalUrl;
private Long size;
public Long getVideoId() {
return this.videoId;
}
public void setVideoId(Long videoId) {
this.videoId = videoId;
}
public String getOriginalUrl() {
return this.originalUrl;
}
public void setOriginalUrl(String originalUrl) {
this.originalUrl = originalUrl;
}
public Long getSize() {
return this.size;
}
public void setSize(Long size) {
this.size = size;
}
}
@Override
public UploadVideoResponse getInstance(UnmarshallerContext context) {
return UploadVideoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform/v20190225/ClipVideoResponseUnmarshaller.java
|
/*
* 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.aliyuncs.alibabawood.transform.v20190225;
import com.aliyuncs.alibabawood.model.v20190225.ClipVideoResponse;
import com.aliyuncs.transform.UnmarshallerContext;
public class ClipVideoResponseUnmarshaller {
public static ClipVideoResponse unmarshall(ClipVideoResponse clipVideoResponse, UnmarshallerContext context) {
clipVideoResponse.setRequestId(context.stringValue("ClipVideoResponse.RequestId"));
clipVideoResponse.setSuccess(context.booleanValue("ClipVideoResponse.Success"));
clipVideoResponse.setErrorMessage(context.stringValue("ClipVideoResponse.ErrorMessage"));
clipVideoResponse.setModel(context.booleanValue("ClipVideoResponse.Model"));
return clipVideoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform/v20190225/GetVideoResponseUnmarshaller.java
|
/*
* 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.aliyuncs.alibabawood.transform.v20190225;
import java.util.ArrayList;
import java.util.List;
import com.aliyuncs.alibabawood.model.v20190225.GetVideoResponse;
import com.aliyuncs.alibabawood.model.v20190225.GetVideoResponse.Video;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetVideoResponseUnmarshaller {
public static GetVideoResponse unmarshall(GetVideoResponse getVideoResponse, UnmarshallerContext context) {
getVideoResponse.setRequestId(context.stringValue("GetVideoResponse.RequestId"));
getVideoResponse.setSuccess(context.booleanValue("GetVideoResponse.Success"));
getVideoResponse.setErrorMessage(context.stringValue("GetVideoResponse.ErrorMessage"));
List<Video> model = new ArrayList<Video>();
for (int i = 0; i < context.lengthValue("GetVideoResponse.Model.Length"); i++) {
Video video = new Video();
video.setVideoId(context.longValue("GetVideoResponse.Model["+ i +"].VideoId"));
video.setOriginalUrl(context.stringValue("GetVideoResponse.Model["+ i +"].OriginalUrl"));
video.setResultUrl(context.stringValue("GetVideoResponse.Model["+ i +"].ResultUrl"));
video.setPreviewUrl(context.stringValue("GetVideoResponse.Model["+ i +"].PreviewUrl"));
video.setDuration(context.longValue("GetVideoResponse.Model["+ i +"].Duration"));
video.setSize(context.longValue("GetVideoResponse.Model["+ i +"].Size"));
video.setOriginalFileName(context.stringValue("GetVideoResponse.Model["+ i +"].OriginalFileName"));
video.setExtendInfo(context.stringValue("GetVideoResponse.Model["+ i +"].ExtendInfo"));
model.add(video);
}
getVideoResponse.setModel(model);
return getVideoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform/v20190225/GetVideoUploadPolicyResponseUnmarshaller.java
|
/*
* 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.aliyuncs.alibabawood.transform.v20190225;
import com.aliyuncs.alibabawood.model.v20190225.GetVideoUploadPolicyResponse;
import com.aliyuncs.alibabawood.model.v20190225.GetVideoUploadPolicyResponse.Model;
import com.aliyuncs.transform.UnmarshallerContext;
public class GetVideoUploadPolicyResponseUnmarshaller {
public static GetVideoUploadPolicyResponse unmarshall(GetVideoUploadPolicyResponse getVideoUploadPolicyResponse, UnmarshallerContext context) {
getVideoUploadPolicyResponse.setRequestId(context.stringValue("GetVideoUploadPolicyResponse.RequestId"));
getVideoUploadPolicyResponse.setSuccess(context.booleanValue("GetVideoUploadPolicyResponse.Success"));
getVideoUploadPolicyResponse.setErrorMessage(context.stringValue("GetVideoUploadPolicyResponse.ErrorMessage"));
Model model = new Model();
model.setAccessId(context.stringValue("GetVideoUploadPolicyResponse.Model.AccessId"));
model.setEndPoint(context.stringValue("GetVideoUploadPolicyResponse.Model.EndPoint"));
model.setPolicy(context.stringValue("GetVideoUploadPolicyResponse.Model.Policy"));
model.setSignature(context.stringValue("GetVideoUploadPolicyResponse.Model.Signature"));
model.setExpiration(context.stringValue("GetVideoUploadPolicyResponse.Model.Expiration"));
model.setObjectKey(context.stringValue("GetVideoUploadPolicyResponse.Model.ObjectKey"));
model.setFileName(context.stringValue("GetVideoUploadPolicyResponse.Model.FileName"));
model.setBucketName(context.stringValue("GetVideoUploadPolicyResponse.Model.BucketName"));
getVideoUploadPolicyResponse.setModel(model);
return getVideoUploadPolicyResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform
|
java-sources/com/aliyun/aliyun-java-sdk-alibabawood/1.0.1/com/aliyuncs/alibabawood/transform/v20190225/UploadVideoResponseUnmarshaller.java
|
/*
* 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.aliyuncs.alibabawood.transform.v20190225;
import com.aliyuncs.alibabawood.model.v20190225.UploadVideoResponse;
import com.aliyuncs.alibabawood.model.v20190225.UploadVideoResponse.Model;
import com.aliyuncs.transform.UnmarshallerContext;
public class UploadVideoResponseUnmarshaller {
public static UploadVideoResponse unmarshall(UploadVideoResponse uploadVideoResponse, UnmarshallerContext context) {
uploadVideoResponse.setRequestId(context.stringValue("UploadVideoResponse.RequestId"));
uploadVideoResponse.setSuccess(context.booleanValue("UploadVideoResponse.Success"));
uploadVideoResponse.setErrorMessage(context.stringValue("UploadVideoResponse.ErrorMessage"));
Model model = new Model();
model.setVideoId(context.longValue("UploadVideoResponse.Model.VideoId"));
model.setOriginalUrl(context.stringValue("UploadVideoResponse.Model.OriginalUrl"));
model.setSize(context.longValue("UploadVideoResponse.Model.Size"));
uploadVideoResponse.setModel(model);
return uploadVideoResponse;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/Endpoint.java
|
/*
* 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.aliyuncs.alidns;
import java.util.HashMap;
public class Endpoint {
public static HashMap<String, String> endpointMap = new HashMap<String, String>() {};
public static String endpointRegionalType = "central";
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddCustomLineRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddCustomLineRequest extends RpcAcsRequest<AddCustomLineResponse> {
private String domainName;
private List<IpSegment> ipSegments;
private String lineName;
private String lang;
public AddCustomLineRequest() {
super("Alidns", "2015-01-09", "AddCustomLine", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public List<IpSegment> getIpSegments() {
return this.ipSegments;
}
public void setIpSegments(List<IpSegment> ipSegments) {
this.ipSegments = ipSegments;
if (ipSegments != null) {
for (int depth1 = 0; depth1 < ipSegments.size(); depth1++) {
putQueryParameter("IpSegment." + (depth1 + 1) + ".EndIp" , ipSegments.get(depth1).getEndIp());
putQueryParameter("IpSegment." + (depth1 + 1) + ".StartIp" , ipSegments.get(depth1).getStartIp());
}
}
}
public String getLineName() {
return this.lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
if(lineName != null){
putQueryParameter("LineName", lineName);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public static class IpSegment {
private String endIp;
private String startIp;
public String getEndIp() {
return this.endIp;
}
public void setEndIp(String endIp) {
this.endIp = endIp;
}
public String getStartIp() {
return this.startIp;
}
public void setStartIp(String startIp) {
this.startIp = startIp;
}
}
@Override
public Class<AddCustomLineResponse> getResponseClass() {
return AddCustomLineResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddCustomLineResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddCustomLineResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddCustomLineResponse extends AcsResponse {
private Long lineId;
private String requestId;
private String lineCode;
public Long getLineId() {
return this.lineId;
}
public void setLineId(Long lineId) {
this.lineId = lineId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getLineCode() {
return this.lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
@Override
public AddCustomLineResponse getInstance(UnmarshallerContext context) {
return AddCustomLineResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsCacheDomainRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDnsCacheDomainRequest extends RpcAcsRequest<AddDnsCacheDomainResponse> {
private String remark;
private String sourceProtocol;
private String lang;
private String domainName;
private Integer cacheTtlMax;
private String instanceId;
private String sourceEdns;
private Integer cacheTtlMin;
private List<SourceDnsServer> sourceDnsServers;
public AddDnsCacheDomainRequest() {
super("Alidns", "2015-01-09", "AddDnsCacheDomain", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getSourceProtocol() {
return this.sourceProtocol;
}
public void setSourceProtocol(String sourceProtocol) {
this.sourceProtocol = sourceProtocol;
if(sourceProtocol != null){
putQueryParameter("SourceProtocol", sourceProtocol);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Integer getCacheTtlMax() {
return this.cacheTtlMax;
}
public void setCacheTtlMax(Integer cacheTtlMax) {
this.cacheTtlMax = cacheTtlMax;
if(cacheTtlMax != null){
putQueryParameter("CacheTtlMax", cacheTtlMax.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSourceEdns() {
return this.sourceEdns;
}
public void setSourceEdns(String sourceEdns) {
this.sourceEdns = sourceEdns;
if(sourceEdns != null){
putQueryParameter("SourceEdns", sourceEdns);
}
}
public Integer getCacheTtlMin() {
return this.cacheTtlMin;
}
public void setCacheTtlMin(Integer cacheTtlMin) {
this.cacheTtlMin = cacheTtlMin;
if(cacheTtlMin != null){
putQueryParameter("CacheTtlMin", cacheTtlMin.toString());
}
}
public List<SourceDnsServer> getSourceDnsServers() {
return this.sourceDnsServers;
}
public void setSourceDnsServers(List<SourceDnsServer> sourceDnsServers) {
this.sourceDnsServers = sourceDnsServers;
if (sourceDnsServers != null) {
for (int depth1 = 0; depth1 < sourceDnsServers.size(); depth1++) {
putQueryParameter("SourceDnsServer." + (depth1 + 1) + ".Port" , sourceDnsServers.get(depth1).getPort());
putQueryParameter("SourceDnsServer." + (depth1 + 1) + ".Host" , sourceDnsServers.get(depth1).getHost());
}
}
}
public static class SourceDnsServer {
private String port;
private String host;
public String getPort() {
return this.port;
}
public void setPort(String port) {
this.port = port;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
}
@Override
public Class<AddDnsCacheDomainResponse> getResponseClass() {
return AddDnsCacheDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsCacheDomainResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDnsCacheDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDnsCacheDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public AddDnsCacheDomainResponse getInstance(UnmarshallerContext context) {
return AddDnsCacheDomainResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmAccessStrategyRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDnsGtmAccessStrategyRequest extends RpcAcsRequest<AddDnsGtmAccessStrategyResponse> {
private String defaultLbaStrategy;
private String failoverAddrPoolType;
private String defaultAddrPoolType;
private Integer failoverMaxReturnAddrNum;
private String failoverLbaStrategy;
private List<DefaultAddrPool> defaultAddrPools;
private Integer failoverMinAvailableAddrNum;
private Integer defaultMaxReturnAddrNum;
private Integer defaultMinAvailableAddrNum;
private String strategyMode;
private String lang;
private String lines;
private String strategyName;
private String defaultLatencyOptimization;
private String instanceId;
private String failoverLatencyOptimization;
private List<FailoverAddrPool> failoverAddrPools;
public AddDnsGtmAccessStrategyRequest() {
super("Alidns", "2015-01-09", "AddDnsGtmAccessStrategy", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDefaultLbaStrategy() {
return this.defaultLbaStrategy;
}
public void setDefaultLbaStrategy(String defaultLbaStrategy) {
this.defaultLbaStrategy = defaultLbaStrategy;
if(defaultLbaStrategy != null){
putQueryParameter("DefaultLbaStrategy", defaultLbaStrategy);
}
}
public String getFailoverAddrPoolType() {
return this.failoverAddrPoolType;
}
public void setFailoverAddrPoolType(String failoverAddrPoolType) {
this.failoverAddrPoolType = failoverAddrPoolType;
if(failoverAddrPoolType != null){
putQueryParameter("FailoverAddrPoolType", failoverAddrPoolType);
}
}
public String getDefaultAddrPoolType() {
return this.defaultAddrPoolType;
}
public void setDefaultAddrPoolType(String defaultAddrPoolType) {
this.defaultAddrPoolType = defaultAddrPoolType;
if(defaultAddrPoolType != null){
putQueryParameter("DefaultAddrPoolType", defaultAddrPoolType);
}
}
public Integer getFailoverMaxReturnAddrNum() {
return this.failoverMaxReturnAddrNum;
}
public void setFailoverMaxReturnAddrNum(Integer failoverMaxReturnAddrNum) {
this.failoverMaxReturnAddrNum = failoverMaxReturnAddrNum;
if(failoverMaxReturnAddrNum != null){
putQueryParameter("FailoverMaxReturnAddrNum", failoverMaxReturnAddrNum.toString());
}
}
public String getFailoverLbaStrategy() {
return this.failoverLbaStrategy;
}
public void setFailoverLbaStrategy(String failoverLbaStrategy) {
this.failoverLbaStrategy = failoverLbaStrategy;
if(failoverLbaStrategy != null){
putQueryParameter("FailoverLbaStrategy", failoverLbaStrategy);
}
}
public List<DefaultAddrPool> getDefaultAddrPools() {
return this.defaultAddrPools;
}
public void setDefaultAddrPools(List<DefaultAddrPool> defaultAddrPools) {
this.defaultAddrPools = defaultAddrPools;
if (defaultAddrPools != null) {
for (int depth1 = 0; depth1 < defaultAddrPools.size(); depth1++) {
putQueryParameter("DefaultAddrPool." + (depth1 + 1) + ".Id" , defaultAddrPools.get(depth1).getId());
putQueryParameter("DefaultAddrPool." + (depth1 + 1) + ".LbaWeight" , defaultAddrPools.get(depth1).getLbaWeight());
}
}
}
public Integer getFailoverMinAvailableAddrNum() {
return this.failoverMinAvailableAddrNum;
}
public void setFailoverMinAvailableAddrNum(Integer failoverMinAvailableAddrNum) {
this.failoverMinAvailableAddrNum = failoverMinAvailableAddrNum;
if(failoverMinAvailableAddrNum != null){
putQueryParameter("FailoverMinAvailableAddrNum", failoverMinAvailableAddrNum.toString());
}
}
public Integer getDefaultMaxReturnAddrNum() {
return this.defaultMaxReturnAddrNum;
}
public void setDefaultMaxReturnAddrNum(Integer defaultMaxReturnAddrNum) {
this.defaultMaxReturnAddrNum = defaultMaxReturnAddrNum;
if(defaultMaxReturnAddrNum != null){
putQueryParameter("DefaultMaxReturnAddrNum", defaultMaxReturnAddrNum.toString());
}
}
public Integer getDefaultMinAvailableAddrNum() {
return this.defaultMinAvailableAddrNum;
}
public void setDefaultMinAvailableAddrNum(Integer defaultMinAvailableAddrNum) {
this.defaultMinAvailableAddrNum = defaultMinAvailableAddrNum;
if(defaultMinAvailableAddrNum != null){
putQueryParameter("DefaultMinAvailableAddrNum", defaultMinAvailableAddrNum.toString());
}
}
public String getStrategyMode() {
return this.strategyMode;
}
public void setStrategyMode(String strategyMode) {
this.strategyMode = strategyMode;
if(strategyMode != null){
putQueryParameter("StrategyMode", strategyMode);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getLines() {
return this.lines;
}
public void setLines(String lines) {
this.lines = lines;
if(lines != null){
putQueryParameter("Lines", lines);
}
}
public String getStrategyName() {
return this.strategyName;
}
public void setStrategyName(String strategyName) {
this.strategyName = strategyName;
if(strategyName != null){
putQueryParameter("StrategyName", strategyName);
}
}
public String getDefaultLatencyOptimization() {
return this.defaultLatencyOptimization;
}
public void setDefaultLatencyOptimization(String defaultLatencyOptimization) {
this.defaultLatencyOptimization = defaultLatencyOptimization;
if(defaultLatencyOptimization != null){
putQueryParameter("DefaultLatencyOptimization", defaultLatencyOptimization);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getFailoverLatencyOptimization() {
return this.failoverLatencyOptimization;
}
public void setFailoverLatencyOptimization(String failoverLatencyOptimization) {
this.failoverLatencyOptimization = failoverLatencyOptimization;
if(failoverLatencyOptimization != null){
putQueryParameter("FailoverLatencyOptimization", failoverLatencyOptimization);
}
}
public List<FailoverAddrPool> getFailoverAddrPools() {
return this.failoverAddrPools;
}
public void setFailoverAddrPools(List<FailoverAddrPool> failoverAddrPools) {
this.failoverAddrPools = failoverAddrPools;
if (failoverAddrPools != null) {
for (int depth1 = 0; depth1 < failoverAddrPools.size(); depth1++) {
putQueryParameter("FailoverAddrPool." + (depth1 + 1) + ".Id" , failoverAddrPools.get(depth1).getId());
putQueryParameter("FailoverAddrPool." + (depth1 + 1) + ".LbaWeight" , failoverAddrPools.get(depth1).getLbaWeight());
}
}
}
public static class DefaultAddrPool {
private String id;
private Integer lbaWeight;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Integer getLbaWeight() {
return this.lbaWeight;
}
public void setLbaWeight(Integer lbaWeight) {
this.lbaWeight = lbaWeight;
}
}
public static class FailoverAddrPool {
private String id;
private Integer lbaWeight;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Integer getLbaWeight() {
return this.lbaWeight;
}
public void setLbaWeight(Integer lbaWeight) {
this.lbaWeight = lbaWeight;
}
}
@Override
public Class<AddDnsGtmAccessStrategyResponse> getResponseClass() {
return AddDnsGtmAccessStrategyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmAccessStrategyResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDnsGtmAccessStrategyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDnsGtmAccessStrategyResponse extends AcsResponse {
private String requestId;
private String strategyId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getStrategyId() {
return this.strategyId;
}
public void setStrategyId(String strategyId) {
this.strategyId = strategyId;
}
@Override
public AddDnsGtmAccessStrategyResponse getInstance(UnmarshallerContext context) {
return AddDnsGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmAddressPoolRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDnsGtmAddressPoolRequest extends RpcAcsRequest<AddDnsGtmAddressPoolResponse> {
private String monitorExtendInfo;
private String lbaStrategy;
private String type;
private Integer timeout;
private Integer evaluationCount;
private String lang;
private List<Addr> addrs;
private String monitorStatus;
private String instanceId;
private String name;
private String protocolType;
private Integer interval;
private List<IspCityNode> ispCityNodes;
public AddDnsGtmAddressPoolRequest() {
super("Alidns", "2015-01-09", "AddDnsGtmAddressPool", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMonitorExtendInfo() {
return this.monitorExtendInfo;
}
public void setMonitorExtendInfo(String monitorExtendInfo) {
this.monitorExtendInfo = monitorExtendInfo;
if(monitorExtendInfo != null){
putQueryParameter("MonitorExtendInfo", monitorExtendInfo);
}
}
public String getLbaStrategy() {
return this.lbaStrategy;
}
public void setLbaStrategy(String lbaStrategy) {
this.lbaStrategy = lbaStrategy;
if(lbaStrategy != null){
putQueryParameter("LbaStrategy", lbaStrategy);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public Integer getTimeout() {
return this.timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
if(timeout != null){
putQueryParameter("Timeout", timeout.toString());
}
}
public Integer getEvaluationCount() {
return this.evaluationCount;
}
public void setEvaluationCount(Integer evaluationCount) {
this.evaluationCount = evaluationCount;
if(evaluationCount != null){
putQueryParameter("EvaluationCount", evaluationCount.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public List<Addr> getAddrs() {
return this.addrs;
}
public void setAddrs(List<Addr> addrs) {
this.addrs = addrs;
if (addrs != null) {
for (int depth1 = 0; depth1 < addrs.size(); depth1++) {
putQueryParameter("Addr." + (depth1 + 1) + ".AttributeInfo" , addrs.get(depth1).getAttributeInfo());
putQueryParameter("Addr." + (depth1 + 1) + ".Mode" , addrs.get(depth1).getMode());
putQueryParameter("Addr." + (depth1 + 1) + ".Remark" , addrs.get(depth1).getRemark());
putQueryParameter("Addr." + (depth1 + 1) + ".LbaWeight" , addrs.get(depth1).getLbaWeight());
putQueryParameter("Addr." + (depth1 + 1) + ".Addr" , addrs.get(depth1).getAddr());
}
}
}
public String getMonitorStatus() {
return this.monitorStatus;
}
public void setMonitorStatus(String monitorStatus) {
this.monitorStatus = monitorStatus;
if(monitorStatus != null){
putQueryParameter("MonitorStatus", monitorStatus);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getProtocolType() {
return this.protocolType;
}
public void setProtocolType(String protocolType) {
this.protocolType = protocolType;
if(protocolType != null){
putQueryParameter("ProtocolType", protocolType);
}
}
public Integer getInterval() {
return this.interval;
}
public void setInterval(Integer interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval.toString());
}
}
public List<IspCityNode> getIspCityNodes() {
return this.ispCityNodes;
}
public void setIspCityNodes(List<IspCityNode> ispCityNodes) {
this.ispCityNodes = ispCityNodes;
if (ispCityNodes != null) {
for (int depth1 = 0; depth1 < ispCityNodes.size(); depth1++) {
putQueryParameter("IspCityNode." + (depth1 + 1) + ".CityCode" , ispCityNodes.get(depth1).getCityCode());
putQueryParameter("IspCityNode." + (depth1 + 1) + ".IspCode" , ispCityNodes.get(depth1).getIspCode());
}
}
}
public static class Addr {
private String attributeInfo;
private String mode;
private String remark;
private Integer lbaWeight;
private String addr;
public String getAttributeInfo() {
return this.attributeInfo;
}
public void setAttributeInfo(String attributeInfo) {
this.attributeInfo = attributeInfo;
}
public String getMode() {
return this.mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getLbaWeight() {
return this.lbaWeight;
}
public void setLbaWeight(Integer lbaWeight) {
this.lbaWeight = lbaWeight;
}
public String getAddr() {
return this.addr;
}
public void setAddr(String addr) {
this.addr = addr;
}
}
public static class IspCityNode {
private String cityCode;
private String ispCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getIspCode() {
return this.ispCode;
}
public void setIspCode(String ispCode) {
this.ispCode = ispCode;
}
}
@Override
public Class<AddDnsGtmAddressPoolResponse> getResponseClass() {
return AddDnsGtmAddressPoolResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmAddressPoolResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDnsGtmAddressPoolResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDnsGtmAddressPoolResponse extends AcsResponse {
private String requestId;
private String addrPoolId;
private String monitorConfigId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
}
public String getMonitorConfigId() {
return this.monitorConfigId;
}
public void setMonitorConfigId(String monitorConfigId) {
this.monitorConfigId = monitorConfigId;
}
@Override
public AddDnsGtmAddressPoolResponse getInstance(UnmarshallerContext context) {
return AddDnsGtmAddressPoolResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmMonitorRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDnsGtmMonitorRequest extends RpcAcsRequest<AddDnsGtmMonitorResponse> {
private String monitorExtendInfo;
private Integer timeout;
private String addrPoolId;
private Integer evaluationCount;
private String protocolType;
private Integer interval;
private String lang;
private List<IspCityNode> ispCityNodes;
public AddDnsGtmMonitorRequest() {
super("Alidns", "2015-01-09", "AddDnsGtmMonitor", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMonitorExtendInfo() {
return this.monitorExtendInfo;
}
public void setMonitorExtendInfo(String monitorExtendInfo) {
this.monitorExtendInfo = monitorExtendInfo;
if(monitorExtendInfo != null){
putQueryParameter("MonitorExtendInfo", monitorExtendInfo);
}
}
public Integer getTimeout() {
return this.timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
if(timeout != null){
putQueryParameter("Timeout", timeout.toString());
}
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
if(addrPoolId != null){
putQueryParameter("AddrPoolId", addrPoolId);
}
}
public Integer getEvaluationCount() {
return this.evaluationCount;
}
public void setEvaluationCount(Integer evaluationCount) {
this.evaluationCount = evaluationCount;
if(evaluationCount != null){
putQueryParameter("EvaluationCount", evaluationCount.toString());
}
}
public String getProtocolType() {
return this.protocolType;
}
public void setProtocolType(String protocolType) {
this.protocolType = protocolType;
if(protocolType != null){
putQueryParameter("ProtocolType", protocolType);
}
}
public Integer getInterval() {
return this.interval;
}
public void setInterval(Integer interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public List<IspCityNode> getIspCityNodes() {
return this.ispCityNodes;
}
public void setIspCityNodes(List<IspCityNode> ispCityNodes) {
this.ispCityNodes = ispCityNodes;
if (ispCityNodes != null) {
for (int depth1 = 0; depth1 < ispCityNodes.size(); depth1++) {
putQueryParameter("IspCityNode." + (depth1 + 1) + ".CityCode" , ispCityNodes.get(depth1).getCityCode());
putQueryParameter("IspCityNode." + (depth1 + 1) + ".IspCode" , ispCityNodes.get(depth1).getIspCode());
}
}
}
public static class IspCityNode {
private String cityCode;
private String ispCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getIspCode() {
return this.ispCode;
}
public void setIspCode(String ispCode) {
this.ispCode = ispCode;
}
}
@Override
public Class<AddDnsGtmMonitorResponse> getResponseClass() {
return AddDnsGtmMonitorResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDnsGtmMonitorResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDnsGtmMonitorResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDnsGtmMonitorResponse extends AcsResponse {
private String requestId;
private String monitorConfigId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMonitorConfigId() {
return this.monitorConfigId;
}
public void setMonitorConfigId(String monitorConfigId) {
this.monitorConfigId = monitorConfigId;
}
@Override
public AddDnsGtmMonitorResponse getInstance(UnmarshallerContext context) {
return AddDnsGtmMonitorResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainBackupRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDomainBackupRequest extends RpcAcsRequest<AddDomainBackupResponse> {
private String domainName;
private String periodType;
private String lang;
public AddDomainBackupRequest() {
super("Alidns", "2015-01-09", "AddDomainBackup", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getPeriodType() {
return this.periodType;
}
public void setPeriodType(String periodType) {
this.periodType = periodType;
if(periodType != null){
putQueryParameter("PeriodType", periodType);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<AddDomainBackupResponse> getResponseClass() {
return AddDomainBackupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainBackupResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDomainBackupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDomainBackupResponse extends AcsResponse {
private String periodType;
private String requestId;
private String domainName;
public String getPeriodType() {
return this.periodType;
}
public void setPeriodType(String periodType) {
this.periodType = periodType;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
@Override
public AddDomainBackupResponse getInstance(UnmarshallerContext context) {
return AddDomainBackupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainGroupRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDomainGroupRequest extends RpcAcsRequest<AddDomainGroupResponse> {
private String groupName;
private String lang;
public AddDomainGroupRequest() {
super("Alidns", "2015-01-09", "AddDomainGroup", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<AddDomainGroupResponse> getResponseClass() {
return AddDomainGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainGroupResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDomainGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDomainGroupResponse extends AcsResponse {
private String groupName;
private String requestId;
private String groupId;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
@Override
public AddDomainGroupResponse getInstance(UnmarshallerContext context) {
return AddDomainGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainRecordRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDomainRecordRequest extends RpcAcsRequest<AddDomainRecordResponse> {
private String rR;
private String line;
private String type;
private String lang;
private String value;
private String domainName;
private Long priority;
private Long tTL;
private String userClientIp;
public AddDomainRecordRequest() {
super("Alidns", "2015-01-09", "AddDomainRecord", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRR() {
return this.rR;
}
public void setRR(String rR) {
this.rR = rR;
if(rR != null){
putQueryParameter("RR", rR);
}
}
public String getLine() {
return this.line;
}
public void setLine(String line) {
this.line = line;
if(line != null){
putQueryParameter("Line", line);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
if(value != null){
putQueryParameter("Value", value);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public Long getPriority() {
return this.priority;
}
public void setPriority(Long priority) {
this.priority = priority;
if(priority != null){
putQueryParameter("Priority", priority.toString());
}
}
public Long getTTL() {
return this.tTL;
}
public void setTTL(Long tTL) {
this.tTL = tTL;
if(tTL != null){
putQueryParameter("TTL", tTL.toString());
}
}
public String getUserClientIp() {
return this.userClientIp;
}
public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}
@Override
public Class<AddDomainRecordResponse> getResponseClass() {
return AddDomainRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainRecordResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDomainRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDomainRecordResponse extends AcsResponse {
private String requestId;
private String recordId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRecordId() {
return this.recordId;
}
public void setRecordId(String recordId) {
this.recordId = recordId;
}
@Override
public AddDomainRecordResponse getInstance(UnmarshallerContext context) {
return AddDomainRecordResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDomainRequest extends RpcAcsRequest<AddDomainResponse> {
private String groupId;
private String domainName;
private String resourceGroupId;
private String lang;
public AddDomainRequest() {
super("Alidns", "2015-01-09", "AddDomain", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putQueryParameter("ResourceGroupId", resourceGroupId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<AddDomainResponse> getResponseClass() {
return AddDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddDomainResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddDomainResponse extends AcsResponse {
private String groupName;
private String domainId;
private String requestId;
private String domainName;
private String punyCode;
private String groupId;
private List<String> dnsServers;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getDomainId() {
return this.domainId;
}
public void setDomainId(String domainId) {
this.domainId = domainId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getPunyCode() {
return this.punyCode;
}
public void setPunyCode(String punyCode) {
this.punyCode = punyCode;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public List<String> getDnsServers() {
return this.dnsServers;
}
public void setDnsServers(List<String> dnsServers) {
this.dnsServers = dnsServers;
}
@Override
public AddDomainResponse getInstance(UnmarshallerContext context) {
return AddDomainResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmAccessStrategyRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddGtmAccessStrategyRequest extends RpcAcsRequest<AddGtmAccessStrategyResponse> {
private String defaultAddrPoolId;
private String failoverAddrPoolId;
private String strategyName;
private String accessLines;
private String instanceId;
private String lang;
public AddGtmAccessStrategyRequest() {
super("Alidns", "2015-01-09", "AddGtmAccessStrategy", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDefaultAddrPoolId() {
return this.defaultAddrPoolId;
}
public void setDefaultAddrPoolId(String defaultAddrPoolId) {
this.defaultAddrPoolId = defaultAddrPoolId;
if(defaultAddrPoolId != null){
putQueryParameter("DefaultAddrPoolId", defaultAddrPoolId);
}
}
public String getFailoverAddrPoolId() {
return this.failoverAddrPoolId;
}
public void setFailoverAddrPoolId(String failoverAddrPoolId) {
this.failoverAddrPoolId = failoverAddrPoolId;
if(failoverAddrPoolId != null){
putQueryParameter("FailoverAddrPoolId", failoverAddrPoolId);
}
}
public String getStrategyName() {
return this.strategyName;
}
public void setStrategyName(String strategyName) {
this.strategyName = strategyName;
if(strategyName != null){
putQueryParameter("StrategyName", strategyName);
}
}
public String getAccessLines() {
return this.accessLines;
}
public void setAccessLines(String accessLines) {
this.accessLines = accessLines;
if(accessLines != null){
putQueryParameter("AccessLines", accessLines);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<AddGtmAccessStrategyResponse> getResponseClass() {
return AddGtmAccessStrategyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmAccessStrategyResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddGtmAccessStrategyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddGtmAccessStrategyResponse extends AcsResponse {
private String requestId;
private String strategyId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getStrategyId() {
return this.strategyId;
}
public void setStrategyId(String strategyId) {
this.strategyId = strategyId;
}
@Override
public AddGtmAccessStrategyResponse getInstance(UnmarshallerContext context) {
return AddGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmAddressPoolRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddGtmAddressPoolRequest extends RpcAcsRequest<AddGtmAddressPoolResponse> {
private String monitorExtendInfo;
private String type;
private Integer timeout;
private Integer minAvailableAddrNum;
private Integer evaluationCount;
private String lang;
private List<Addr> addrs;
private String monitorStatus;
private String instanceId;
private String name;
private String protocolType;
private Integer interval;
private List<IspCityNode> ispCityNodes;
public AddGtmAddressPoolRequest() {
super("Alidns", "2015-01-09", "AddGtmAddressPool", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMonitorExtendInfo() {
return this.monitorExtendInfo;
}
public void setMonitorExtendInfo(String monitorExtendInfo) {
this.monitorExtendInfo = monitorExtendInfo;
if(monitorExtendInfo != null){
putQueryParameter("MonitorExtendInfo", monitorExtendInfo);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public Integer getTimeout() {
return this.timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
if(timeout != null){
putQueryParameter("Timeout", timeout.toString());
}
}
public Integer getMinAvailableAddrNum() {
return this.minAvailableAddrNum;
}
public void setMinAvailableAddrNum(Integer minAvailableAddrNum) {
this.minAvailableAddrNum = minAvailableAddrNum;
if(minAvailableAddrNum != null){
putQueryParameter("MinAvailableAddrNum", minAvailableAddrNum.toString());
}
}
public Integer getEvaluationCount() {
return this.evaluationCount;
}
public void setEvaluationCount(Integer evaluationCount) {
this.evaluationCount = evaluationCount;
if(evaluationCount != null){
putQueryParameter("EvaluationCount", evaluationCount.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public List<Addr> getAddrs() {
return this.addrs;
}
public void setAddrs(List<Addr> addrs) {
this.addrs = addrs;
if (addrs != null) {
for (int depth1 = 0; depth1 < addrs.size(); depth1++) {
putQueryParameter("Addr." + (depth1 + 1) + ".Mode" , addrs.get(depth1).getMode());
putQueryParameter("Addr." + (depth1 + 1) + ".LbaWeight" , addrs.get(depth1).getLbaWeight());
putQueryParameter("Addr." + (depth1 + 1) + ".Value" , addrs.get(depth1).getValue());
}
}
}
public String getMonitorStatus() {
return this.monitorStatus;
}
public void setMonitorStatus(String monitorStatus) {
this.monitorStatus = monitorStatus;
if(monitorStatus != null){
putQueryParameter("MonitorStatus", monitorStatus);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getProtocolType() {
return this.protocolType;
}
public void setProtocolType(String protocolType) {
this.protocolType = protocolType;
if(protocolType != null){
putQueryParameter("ProtocolType", protocolType);
}
}
public Integer getInterval() {
return this.interval;
}
public void setInterval(Integer interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval.toString());
}
}
public List<IspCityNode> getIspCityNodes() {
return this.ispCityNodes;
}
public void setIspCityNodes(List<IspCityNode> ispCityNodes) {
this.ispCityNodes = ispCityNodes;
if (ispCityNodes != null) {
for (int depth1 = 0; depth1 < ispCityNodes.size(); depth1++) {
putQueryParameter("IspCityNode." + (depth1 + 1) + ".CityCode" , ispCityNodes.get(depth1).getCityCode());
putQueryParameter("IspCityNode." + (depth1 + 1) + ".IspCode" , ispCityNodes.get(depth1).getIspCode());
}
}
}
public static class Addr {
private String mode;
private Integer lbaWeight;
private String value;
public String getMode() {
return this.mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public Integer getLbaWeight() {
return this.lbaWeight;
}
public void setLbaWeight(Integer lbaWeight) {
this.lbaWeight = lbaWeight;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
public static class IspCityNode {
private String cityCode;
private String ispCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getIspCode() {
return this.ispCode;
}
public void setIspCode(String ispCode) {
this.ispCode = ispCode;
}
}
@Override
public Class<AddGtmAddressPoolResponse> getResponseClass() {
return AddGtmAddressPoolResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmAddressPoolResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddGtmAddressPoolResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddGtmAddressPoolResponse extends AcsResponse {
private String requestId;
private String addrPoolId;
private String monitorConfigId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
}
public String getMonitorConfigId() {
return this.monitorConfigId;
}
public void setMonitorConfigId(String monitorConfigId) {
this.monitorConfigId = monitorConfigId;
}
@Override
public AddGtmAddressPoolResponse getInstance(UnmarshallerContext context) {
return AddGtmAddressPoolResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmMonitorRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddGtmMonitorRequest extends RpcAcsRequest<AddGtmMonitorResponse> {
private String monitorExtendInfo;
private Integer timeout;
private String addrPoolId;
private Integer evaluationCount;
private String protocolType;
private Integer interval;
private String lang;
private List<IspCityNode> ispCityNodes;
public AddGtmMonitorRequest() {
super("Alidns", "2015-01-09", "AddGtmMonitor", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getMonitorExtendInfo() {
return this.monitorExtendInfo;
}
public void setMonitorExtendInfo(String monitorExtendInfo) {
this.monitorExtendInfo = monitorExtendInfo;
if(monitorExtendInfo != null){
putQueryParameter("MonitorExtendInfo", monitorExtendInfo);
}
}
public Integer getTimeout() {
return this.timeout;
}
public void setTimeout(Integer timeout) {
this.timeout = timeout;
if(timeout != null){
putQueryParameter("Timeout", timeout.toString());
}
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
if(addrPoolId != null){
putQueryParameter("AddrPoolId", addrPoolId);
}
}
public Integer getEvaluationCount() {
return this.evaluationCount;
}
public void setEvaluationCount(Integer evaluationCount) {
this.evaluationCount = evaluationCount;
if(evaluationCount != null){
putQueryParameter("EvaluationCount", evaluationCount.toString());
}
}
public String getProtocolType() {
return this.protocolType;
}
public void setProtocolType(String protocolType) {
this.protocolType = protocolType;
if(protocolType != null){
putQueryParameter("ProtocolType", protocolType);
}
}
public Integer getInterval() {
return this.interval;
}
public void setInterval(Integer interval) {
this.interval = interval;
if(interval != null){
putQueryParameter("Interval", interval.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public List<IspCityNode> getIspCityNodes() {
return this.ispCityNodes;
}
public void setIspCityNodes(List<IspCityNode> ispCityNodes) {
this.ispCityNodes = ispCityNodes;
if (ispCityNodes != null) {
for (int depth1 = 0; depth1 < ispCityNodes.size(); depth1++) {
putQueryParameter("IspCityNode." + (depth1 + 1) + ".CityCode" , ispCityNodes.get(depth1).getCityCode());
putQueryParameter("IspCityNode." + (depth1 + 1) + ".IspCode" , ispCityNodes.get(depth1).getIspCode());
}
}
}
public static class IspCityNode {
private String cityCode;
private String ispCode;
public String getCityCode() {
return this.cityCode;
}
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}
public String getIspCode() {
return this.ispCode;
}
public void setIspCode(String ispCode) {
this.ispCode = ispCode;
}
}
@Override
public Class<AddGtmMonitorResponse> getResponseClass() {
return AddGtmMonitorResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmMonitorResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddGtmMonitorResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddGtmMonitorResponse extends AcsResponse {
private String requestId;
private String monitorConfigId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMonitorConfigId() {
return this.monitorConfigId;
}
public void setMonitorConfigId(String monitorConfigId) {
this.monitorConfigId = monitorConfigId;
}
@Override
public AddGtmMonitorResponse getInstance(UnmarshallerContext context) {
return AddGtmMonitorResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmRecoveryPlanRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class AddGtmRecoveryPlanRequest extends RpcAcsRequest<AddGtmRecoveryPlanResponse> {
private String faultAddrPool;
private String remark;
private String name;
private String lang;
public AddGtmRecoveryPlanRequest() {
super("Alidns", "2015-01-09", "AddGtmRecoveryPlan", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getFaultAddrPool() {
return this.faultAddrPool;
}
public void setFaultAddrPool(String faultAddrPool) {
this.faultAddrPool = faultAddrPool;
if(faultAddrPool != null){
putQueryParameter("FaultAddrPool", faultAddrPool);
}
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<AddGtmRecoveryPlanResponse> getResponseClass() {
return AddGtmRecoveryPlanResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/AddGtmRecoveryPlanResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.AddGtmRecoveryPlanResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class AddGtmRecoveryPlanResponse extends AcsResponse {
private String recoveryPlanId;
private String requestId;
public String getRecoveryPlanId() {
return this.recoveryPlanId;
}
public void setRecoveryPlanId(String recoveryPlanId) {
this.recoveryPlanId = recoveryPlanId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public AddGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) {
return AddGtmRecoveryPlanResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/BindInstanceDomainsRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class BindInstanceDomainsRequest extends RpcAcsRequest<BindInstanceDomainsResponse> {
private String domainNames;
private String instanceId;
private String lang;
public BindInstanceDomainsRequest() {
super("Alidns", "2015-01-09", "BindInstanceDomains", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainNames() {
return this.domainNames;
}
public void setDomainNames(String domainNames) {
this.domainNames = domainNames;
if(domainNames != null){
putQueryParameter("DomainNames", domainNames);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<BindInstanceDomainsResponse> getResponseClass() {
return BindInstanceDomainsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/BindInstanceDomainsResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.BindInstanceDomainsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class BindInstanceDomainsResponse extends AcsResponse {
private String requestId;
private Integer failedCount;
private Integer successCount;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getFailedCount() {
return this.failedCount;
}
public void setFailedCount(Integer failedCount) {
this.failedCount = failedCount;
}
public Integer getSuccessCount() {
return this.successCount;
}
public void setSuccessCount(Integer successCount) {
this.successCount = successCount;
}
@Override
public BindInstanceDomainsResponse getInstance(UnmarshallerContext context) {
return BindInstanceDomainsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/ChangeDomainGroupRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class ChangeDomainGroupRequest extends RpcAcsRequest<ChangeDomainGroupResponse> {
private String groupId;
private String domainName;
private String lang;
public ChangeDomainGroupRequest() {
super("Alidns", "2015-01-09", "ChangeDomainGroup", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<ChangeDomainGroupResponse> getResponseClass() {
return ChangeDomainGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/ChangeDomainGroupResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.ChangeDomainGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeDomainGroupResponse extends AcsResponse {
private String groupName;
private String requestId;
private String groupId;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
@Override
public ChangeDomainGroupResponse getInstance(UnmarshallerContext context) {
return ChangeDomainGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/ChangeDomainOfDnsProductRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class ChangeDomainOfDnsProductRequest extends RpcAcsRequest<ChangeDomainOfDnsProductResponse> {
private String instanceId;
private String newDomain;
private String userClientIp;
private Boolean force;
private String lang;
public ChangeDomainOfDnsProductRequest() {
super("Alidns", "2015-01-09", "ChangeDomainOfDnsProduct", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getNewDomain() {
return this.newDomain;
}
public void setNewDomain(String newDomain) {
this.newDomain = newDomain;
if(newDomain != null){
putQueryParameter("NewDomain", newDomain);
}
}
public String getUserClientIp() {
return this.userClientIp;
}
public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}
public Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<ChangeDomainOfDnsProductResponse> getResponseClass() {
return ChangeDomainOfDnsProductResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/ChangeDomainOfDnsProductResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.ChangeDomainOfDnsProductResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeDomainOfDnsProductResponse extends AcsResponse {
private String requestId;
private String originalDomain;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getOriginalDomain() {
return this.originalDomain;
}
public void setOriginalDomain(String originalDomain) {
this.originalDomain = originalDomain;
}
@Override
public ChangeDomainOfDnsProductResponse getInstance(UnmarshallerContext context) {
return ChangeDomainOfDnsProductResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CopyGtmConfigRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class CopyGtmConfigRequest extends RpcAcsRequest<CopyGtmConfigResponse> {
private String sourceId;
private String targetId;
private String copyType;
private String lang;
public CopyGtmConfigRequest() {
super("Alidns", "2015-01-09", "CopyGtmConfig", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSourceId() {
return this.sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
if(sourceId != null){
putQueryParameter("SourceId", sourceId);
}
}
public String getTargetId() {
return this.targetId;
}
public void setTargetId(String targetId) {
this.targetId = targetId;
if(targetId != null){
putQueryParameter("TargetId", targetId);
}
}
public String getCopyType() {
return this.copyType;
}
public void setCopyType(String copyType) {
this.copyType = copyType;
if(copyType != null){
putQueryParameter("CopyType", copyType);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<CopyGtmConfigResponse> getResponseClass() {
return CopyGtmConfigResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CopyGtmConfigResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.CopyGtmConfigResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CopyGtmConfigResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public CopyGtmConfigResponse getInstance(UnmarshallerContext context) {
return CopyGtmConfigResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CreatePdnsAppKeyRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePdnsAppKeyRequest extends RpcAcsRequest<CreatePdnsAppKeyResponse> {
private String lang;
public CreatePdnsAppKeyRequest() {
super("Alidns", "2015-01-09", "CreatePdnsAppKey", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<CreatePdnsAppKeyResponse> getResponseClass() {
return CreatePdnsAppKeyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CreatePdnsAppKeyResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.CreatePdnsAppKeyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePdnsAppKeyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public CreatePdnsAppKeyResponse getInstance(UnmarshallerContext context) {
return CreatePdnsAppKeyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CreatePdnsUdpIpSegmentRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class CreatePdnsUdpIpSegmentRequest extends RpcAcsRequest<CreatePdnsUdpIpSegmentResponse> {
private String ip;
private String name;
private String lang;
public CreatePdnsUdpIpSegmentRequest() {
super("Alidns", "2015-01-09", "CreatePdnsUdpIpSegment", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
if(ip != null){
putQueryParameter("Ip", ip);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<CreatePdnsUdpIpSegmentResponse> getResponseClass() {
return CreatePdnsUdpIpSegmentResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/CreatePdnsUdpIpSegmentResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.CreatePdnsUdpIpSegmentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreatePdnsUdpIpSegmentResponse extends AcsResponse {
private String requestId;
private String validMessage;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getValidMessage() {
return this.validMessage;
}
public void setValidMessage(String validMessage) {
this.validMessage = validMessage;
}
@Override
public CreatePdnsUdpIpSegmentResponse getInstance(UnmarshallerContext context) {
return CreatePdnsUdpIpSegmentResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteCustomLinesRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteCustomLinesRequest extends RpcAcsRequest<DeleteCustomLinesResponse> {
private String lineIds;
private String lang;
public DeleteCustomLinesRequest() {
super("Alidns", "2015-01-09", "DeleteCustomLines", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getLineIds() {
return this.lineIds;
}
public void setLineIds(String lineIds) {
this.lineIds = lineIds;
if(lineIds != null){
putQueryParameter("LineIds", lineIds);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteCustomLinesResponse> getResponseClass() {
return DeleteCustomLinesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteCustomLinesResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteCustomLinesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteCustomLinesResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteCustomLinesResponse getInstance(UnmarshallerContext context) {
return DeleteCustomLinesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsCacheDomainRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDnsCacheDomainRequest extends RpcAcsRequest<DeleteDnsCacheDomainResponse> {
private String domainName;
private String lang;
public DeleteDnsCacheDomainRequest() {
super("Alidns", "2015-01-09", "DeleteDnsCacheDomain", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDnsCacheDomainResponse> getResponseClass() {
return DeleteDnsCacheDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsCacheDomainResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDnsCacheDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDnsCacheDomainResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteDnsCacheDomainResponse getInstance(UnmarshallerContext context) {
return DeleteDnsCacheDomainResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsGtmAccessStrategyRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDnsGtmAccessStrategyRequest extends RpcAcsRequest<DeleteDnsGtmAccessStrategyResponse> {
private String strategyId;
private String lang;
public DeleteDnsGtmAccessStrategyRequest() {
super("Alidns", "2015-01-09", "DeleteDnsGtmAccessStrategy", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getStrategyId() {
return this.strategyId;
}
public void setStrategyId(String strategyId) {
this.strategyId = strategyId;
if(strategyId != null){
putQueryParameter("StrategyId", strategyId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDnsGtmAccessStrategyResponse> getResponseClass() {
return DeleteDnsGtmAccessStrategyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsGtmAccessStrategyResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDnsGtmAccessStrategyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDnsGtmAccessStrategyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteDnsGtmAccessStrategyResponse getInstance(UnmarshallerContext context) {
return DeleteDnsGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsGtmAddressPoolRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDnsGtmAddressPoolRequest extends RpcAcsRequest<DeleteDnsGtmAddressPoolResponse> {
private String addrPoolId;
private String lang;
public DeleteDnsGtmAddressPoolRequest() {
super("Alidns", "2015-01-09", "DeleteDnsGtmAddressPool", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
if(addrPoolId != null){
putQueryParameter("AddrPoolId", addrPoolId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDnsGtmAddressPoolResponse> getResponseClass() {
return DeleteDnsGtmAddressPoolResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDnsGtmAddressPoolResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDnsGtmAddressPoolResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDnsGtmAddressPoolResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteDnsGtmAddressPoolResponse getInstance(UnmarshallerContext context) {
return DeleteDnsGtmAddressPoolResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainGroupRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDomainGroupRequest extends RpcAcsRequest<DeleteDomainGroupResponse> {
private String groupId;
private String lang;
public DeleteDomainGroupRequest() {
super("Alidns", "2015-01-09", "DeleteDomainGroup", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDomainGroupResponse> getResponseClass() {
return DeleteDomainGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainGroupResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDomainGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDomainGroupResponse extends AcsResponse {
private String groupName;
private String requestId;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteDomainGroupResponse getInstance(UnmarshallerContext context) {
return DeleteDomainGroupResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainRecordRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDomainRecordRequest extends RpcAcsRequest<DeleteDomainRecordResponse> {
private String recordId;
private String userClientIp;
private String lang;
public DeleteDomainRecordRequest() {
super("Alidns", "2015-01-09", "DeleteDomainRecord", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRecordId() {
return this.recordId;
}
public void setRecordId(String recordId) {
this.recordId = recordId;
if(recordId != null){
putQueryParameter("RecordId", recordId);
}
}
public String getUserClientIp() {
return this.userClientIp;
}
public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDomainRecordResponse> getResponseClass() {
return DeleteDomainRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainRecordResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDomainRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDomainRecordResponse extends AcsResponse {
private String requestId;
private String recordId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRecordId() {
return this.recordId;
}
public void setRecordId(String recordId) {
this.recordId = recordId;
}
@Override
public DeleteDomainRecordResponse getInstance(UnmarshallerContext context) {
return DeleteDomainRecordResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteDomainRequest extends RpcAcsRequest<DeleteDomainResponse> {
private String domainName;
private String lang;
public DeleteDomainRequest() {
super("Alidns", "2015-01-09", "DeleteDomain", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteDomainResponse> getResponseClass() {
return DeleteDomainResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteDomainResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDomainResponse extends AcsResponse {
private String requestId;
private String domainName;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
@Override
public DeleteDomainResponse getInstance(UnmarshallerContext context) {
return DeleteDomainResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmAccessStrategyRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteGtmAccessStrategyRequest extends RpcAcsRequest<DeleteGtmAccessStrategyResponse> {
private String strategyId;
private String lang;
public DeleteGtmAccessStrategyRequest() {
super("Alidns", "2015-01-09", "DeleteGtmAccessStrategy", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getStrategyId() {
return this.strategyId;
}
public void setStrategyId(String strategyId) {
this.strategyId = strategyId;
if(strategyId != null){
putQueryParameter("StrategyId", strategyId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteGtmAccessStrategyResponse> getResponseClass() {
return DeleteGtmAccessStrategyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmAccessStrategyResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteGtmAccessStrategyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteGtmAccessStrategyResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteGtmAccessStrategyResponse getInstance(UnmarshallerContext context) {
return DeleteGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmAddressPoolRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteGtmAddressPoolRequest extends RpcAcsRequest<DeleteGtmAddressPoolResponse> {
private String addrPoolId;
private String lang;
public DeleteGtmAddressPoolRequest() {
super("Alidns", "2015-01-09", "DeleteGtmAddressPool", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getAddrPoolId() {
return this.addrPoolId;
}
public void setAddrPoolId(String addrPoolId) {
this.addrPoolId = addrPoolId;
if(addrPoolId != null){
putQueryParameter("AddrPoolId", addrPoolId);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteGtmAddressPoolResponse> getResponseClass() {
return DeleteGtmAddressPoolResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmAddressPoolResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteGtmAddressPoolResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteGtmAddressPoolResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteGtmAddressPoolResponse getInstance(UnmarshallerContext context) {
return DeleteGtmAddressPoolResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmRecoveryPlanRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteGtmRecoveryPlanRequest extends RpcAcsRequest<DeleteGtmRecoveryPlanResponse> {
private Long recoveryPlanId;
private String lang;
public DeleteGtmRecoveryPlanRequest() {
super("Alidns", "2015-01-09", "DeleteGtmRecoveryPlan", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getRecoveryPlanId() {
return this.recoveryPlanId;
}
public void setRecoveryPlanId(Long recoveryPlanId) {
this.recoveryPlanId = recoveryPlanId;
if(recoveryPlanId != null){
putQueryParameter("RecoveryPlanId", recoveryPlanId.toString());
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteGtmRecoveryPlanResponse> getResponseClass() {
return DeleteGtmRecoveryPlanResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteGtmRecoveryPlanResponse.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.alidns.transform.v20150109.DeleteGtmRecoveryPlanResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteGtmRecoveryPlanResponse extends AcsResponse {
private String requestId;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
@Override
public DeleteGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) {
return DeleteGtmRecoveryPlanResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
|
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteSubDomainRecordsRequest.java
|
/*
* 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.aliyuncs.alidns.model.v20150109;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.alidns.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteSubDomainRecordsRequest extends RpcAcsRequest<DeleteSubDomainRecordsResponse> {
private String rR;
private String domainName;
private String type;
private String userClientIp;
private String lang;
public DeleteSubDomainRecordsRequest() {
super("Alidns", "2015-01-09", "DeleteSubDomainRecords", "alidns");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getRR() {
return this.rR;
}
public void setRR(String rR) {
this.rR = rR;
if(rR != null){
putQueryParameter("RR", rR);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getUserClientIp() {
return this.userClientIp;
}
public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
@Override
public Class<DeleteSubDomainRecordsResponse> getResponseClass() {
return DeleteSubDomainRecordsResponse.class;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.