-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
384 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2024-12-25 Version: 3.0.20 | ||
-- Supported DeleteEip | ||
|
||
2024-11-27 Version: 3.0.19 | ||
- Generated 2017-11-10 for `Ens`. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
aliyun-java-sdk-ens/src/main/java/com/aliyuncs/ens/model/v20171110/DeleteEipRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* 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.ens.model.v20171110; | ||
|
||
import com.aliyuncs.RpcAcsRequest; | ||
import com.aliyuncs.http.MethodType; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class DeleteEipRequest extends RpcAcsRequest<DeleteEipResponse> { | ||
|
||
|
||
private String instanceId; | ||
public DeleteEipRequest() { | ||
super("Ens", "2017-11-10", "DeleteEip", "ens"); | ||
setMethod(MethodType.POST); | ||
} | ||
|
||
public String getInstanceId() { | ||
return this.instanceId; | ||
} | ||
|
||
public void setInstanceId(String instanceId) { | ||
this.instanceId = instanceId; | ||
if(instanceId != null){ | ||
putQueryParameter("InstanceId", instanceId); | ||
} | ||
} | ||
|
||
@Override | ||
public Class<DeleteEipResponse> getResponseClass() { | ||
return DeleteEipResponse.class; | ||
} | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
aliyun-java-sdk-ens/src/main/java/com/aliyuncs/ens/model/v20171110/DeleteEipResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* 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.ens.model.v20171110; | ||
|
||
import com.aliyuncs.AcsResponse; | ||
import com.aliyuncs.ens.transform.v20171110.DeleteEipResponseUnmarshaller; | ||
import com.aliyuncs.transform.UnmarshallerContext; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class DeleteEipResponse extends AcsResponse { | ||
|
||
private String requestId; | ||
|
||
public String getRequestId() { | ||
return this.requestId; | ||
} | ||
|
||
public void setRequestId(String requestId) { | ||
this.requestId = requestId; | ||
} | ||
|
||
@Override | ||
public DeleteEipResponse getInstance(UnmarshallerContext context) { | ||
return DeleteEipResponseUnmarshaller.unmarshall(this, context); | ||
} | ||
|
||
@Override | ||
public boolean checkShowJsonItemName() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
...n-java-sdk-ens/src/main/java/com/aliyuncs/ens/model/v20171110/ModifySnatEntryRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
/* | ||
* 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.ens.model.v20171110; | ||
|
||
import com.aliyuncs.RpcAcsRequest; | ||
import com.aliyuncs.http.MethodType; | ||
|
||
/** | ||
* @author auto create | ||
* @version | ||
*/ | ||
public class ModifySnatEntryRequest extends RpcAcsRequest<ModifySnatEntryResponse> { | ||
|
||
|
||
private String snatEntryId; | ||
|
||
private String snatEntryName; | ||
|
||
private Boolean ispAffinity; | ||
public ModifySnatEntryRequest() { | ||
super("Ens", "2017-11-10", "ModifySnatEntry", "ens"); | ||
setMethod(MethodType.POST); | ||
} | ||
|
||
public String getSnatEntryId() { | ||
return this.snatEntryId; | ||
} | ||
|
||
public void setSnatEntryId(String snatEntryId) { | ||
this.snatEntryId = snatEntryId; | ||
if(snatEntryId != null){ | ||
putQueryParameter("SnatEntryId", snatEntryId); | ||
} | ||
} | ||
|
||
public String getSnatEntryName() { | ||
return this.snatEntryName; | ||
} | ||
|
||
public void setSnatEntryName(String snatEntryName) { | ||
this.snatEntryName = snatEntryName; | ||
if(snatEntryName != null){ | ||
putQueryParameter("SnatEntryName", snatEntryName); | ||
} | ||
} | ||
|
||
public Boolean getIspAffinity() { | ||
return this.ispAffinity; | ||
} | ||
|
||
public void setIspAffinity(Boolean ispAffinity) { | ||
this.ispAffinity = ispAffinity; | ||
if(ispAffinity != null){ | ||
putQueryParameter("IspAffinity", ispAffinity.toString()); | ||
} | ||
} | ||
|
||
@Override | ||
public Class<ModifySnatEntryResponse> getResponseClass() { | ||
return ModifySnatEntryResponse.class; | ||
} | ||
|
||
} |
Oops, something went wrong.