From 89d399f2495a0e1f6530bb091648383842e4e1d6 Mon Sep 17 00:00:00 2001 From: ucloud-bot Date: Tue, 25 Aug 2026 10:10:06 +0000 Subject: [PATCH] sdk: rolling update for 1.2.89-release --- VERSION | 2 +- examples/generic/pom.xml | 4 +- examples/uhost/pom.xml | 4 +- pom.xml | 2 +- ucloud-sdk-java-cloudwatch/pom.xml | 6 +- ucloud-sdk-java-common/pom.xml | 4 +- ucloud-sdk-java-cube/pom.xml | 6 +- ucloud-sdk-java-ipsecvpn/pom.xml | 6 +- ucloud-sdk-java-label/pom.xml | 6 +- ucloud-sdk-java-nlb/pom.xml | 6 +- ucloud-sdk-java-pathx/pom.xml | 6 +- ucloud-sdk-java-sandbox/pom.xml | 6 +- .../ucloud/sandbox/client/SandboxClient.java | 126 +++++++++ .../client/SandboxClientInterface.java | 98 +++++++ .../ucloud/sandbox/client/sandboxClient.java | 40 --- .../client/sandboxClientInterface.java | 32 --- .../CheckSandboxCustomDomainRequest.java | 101 ++++++++ .../CheckSandboxCustomDomainResponse.java | 34 +++ .../models/CreateSandboxSiteRequest.java | 127 +++++++++ .../models/CreateSandboxSiteResponse.java | 20 ++ .../models/DeleteSandboxSiteRequest.java | 76 ++++++ .../models/DeleteSandboxSiteResponse.java | 20 ++ .../models/GetSandboxSiteResponse.java | 41 ++- .../models/ListSandboxSitesRequest.java | 63 +++++ .../models/ListSandboxSitesResponse.java | 245 ++++++++++++++++++ .../UpdateSandboxSiteCustomDomainRequest.java | 89 +++++++ ...UpdateSandboxSiteCustomDomainResponse.java | 20 ++ .../models/UpdateSandboxSiteRequest.java | 175 +++++++++++++ .../models/UpdateSandboxSiteResponse.java | 20 ++ ucloud-sdk-java-sts/pom.xml | 6 +- ucloud-sdk-java-tidb/pom.xml | 6 +- ucloud-sdk-java-uaccount/pom.xml | 6 +- ucloud-sdk-java-uai_modelverse/pom.xml | 6 +- ucloud-sdk-java-uas/pom.xml | 6 +- ucloud-sdk-java-ubill/pom.xml | 6 +- ucloud-sdk-java-ucdn/pom.xml | 6 +- ucloud-sdk-java-uclickhouse/pom.xml | 6 +- ucloud-sdk-java-ucompshare/pom.xml | 6 +- ucloud-sdk-java-udb/pom.xml | 6 +- ucloud-sdk-java-udbproxy/pom.xml | 6 +- ucloud-sdk-java-udi/pom.xml | 6 +- ucloud-sdk-java-udisk/pom.xml | 6 +- ucloud-sdk-java-udns/pom.xml | 6 +- ucloud-sdk-java-udpn/pom.xml | 6 +- ucloud-sdk-java-uec/pom.xml | 6 +- ucloud-sdk-java-ues/pom.xml | 6 +- ucloud-sdk-java-uewaf/pom.xml | 6 +- ucloud-sdk-java-ufile/pom.xml | 6 +- ucloud-sdk-java-ufs/pom.xml | 6 +- ucloud-sdk-java-uhadoop/pom.xml | 6 +- ucloud-sdk-java-uhids/pom.xml | 6 +- ucloud-sdk-java-uhost/pom.xml | 6 +- ucloud-sdk-java-uk8s/pom.xml | 6 +- ucloud-sdk-java-ukafka/pom.xml | 6 +- ucloud-sdk-java-ukms/pom.xml | 6 +- ucloud-sdk-java-ulb/pom.xml | 6 +- ucloud-sdk-java-ulighthost/pom.xml | 6 +- ucloud-sdk-java-ulog/pom.xml | 6 +- ucloud-sdk-java-umem/pom.xml | 6 +- ucloud-sdk-java-umon/pom.xml | 6 +- ucloud-sdk-java-umongodb/pom.xml | 6 +- ucloud-sdk-java-unet/pom.xml | 6 +- ucloud-sdk-java-upfs/pom.xml | 6 +- ucloud-sdk-java-upgsql/pom.xml | 6 +- ucloud-sdk-java-uphone/pom.xml | 6 +- ucloud-sdk-java-uphost/pom.xml | 6 +- ucloud-sdk-java-uslk/pom.xml | 6 +- ucloud-sdk-java-usms/pom.xml | 6 +- ucloud-sdk-java-usnap/pom.xml | 6 +- ucloud-sdk-java-uvms/pom.xml | 6 +- ucloud-sdk-java-uwsc/pom.xml | 6 +- ucloud-sdk-java-vpc/pom.xml | 6 +- 72 files changed, 1412 insertions(+), 231 deletions(-) create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClient.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClientInterface.java delete mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClient.java delete mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClientInterface.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainResponse.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteResponse.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteResponse.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesResponse.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainResponse.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteRequest.java create mode 100644 ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteResponse.java diff --git a/VERSION b/VERSION index 11cfb53f..0753dd1f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.88-release +1.2.89-release diff --git a/examples/generic/pom.xml b/examples/generic/pom.xml index 7c399426..93a85000 100644 --- a/examples/generic/pom.xml +++ b/examples/generic/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 @@ -19,7 +19,7 @@ cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/examples/uhost/pom.xml b/examples/uhost/pom.xml index 0bc44b43..3fa950c1 100644 --- a/examples/uhost/pom.xml +++ b/examples/uhost/pom.xml @@ -7,7 +7,7 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 @@ -19,7 +19,7 @@ cn.ucloud ucloud-sdk-java-uhost - 1.2.88-release + 1.2.89-release diff --git a/pom.xml b/pom.xml index 10acd6f6..e31599b8 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ cn.ucloud ucloud-sdk-java pom - 1.2.88-release + 1.2.89-release ucloud-sdk-java-common ucloud-sdk-java-cloudwatch diff --git a/ucloud-sdk-java-cloudwatch/pom.xml b/ucloud-sdk-java-cloudwatch/pom.xml index 89413c92..e41c1696 100644 --- a/ucloud-sdk-java-cloudwatch/pom.xml +++ b/ucloud-sdk-java-cloudwatch/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-cloudwatch ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-common/pom.xml b/ucloud-sdk-java-common/pom.xml index e7ec583c..955daca7 100644 --- a/ucloud-sdk-java-common/pom.xml +++ b/ucloud-sdk-java-common/pom.xml @@ -7,13 +7,13 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-common ucloud-sdk-java - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-cube/pom.xml b/ucloud-sdk-java-cube/pom.xml index 2e89dc29..274b0096 100644 --- a/ucloud-sdk-java-cube/pom.xml +++ b/ucloud-sdk-java-cube/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-cube ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ipsecvpn/pom.xml b/ucloud-sdk-java-ipsecvpn/pom.xml index a1e4fb68..c761c12a 100644 --- a/ucloud-sdk-java-ipsecvpn/pom.xml +++ b/ucloud-sdk-java-ipsecvpn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ipsecvpn ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-label/pom.xml b/ucloud-sdk-java-label/pom.xml index 098bf3d5..8609f5d6 100644 --- a/ucloud-sdk-java-label/pom.xml +++ b/ucloud-sdk-java-label/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-label ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-nlb/pom.xml b/ucloud-sdk-java-nlb/pom.xml index 5d5878bb..21ed8e82 100644 --- a/ucloud-sdk-java-nlb/pom.xml +++ b/ucloud-sdk-java-nlb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-nlb ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-pathx/pom.xml b/ucloud-sdk-java-pathx/pom.xml index 28520f5a..e75cd1d2 100644 --- a/ucloud-sdk-java-pathx/pom.xml +++ b/ucloud-sdk-java-pathx/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-pathx ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-sandbox/pom.xml b/ucloud-sdk-java-sandbox/pom.xml index f023fbf9..ef62fcd9 100644 --- a/ucloud-sdk-java-sandbox/pom.xml +++ b/ucloud-sdk-java-sandbox/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-sandbox ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClient.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClient.java new file mode 100644 index 00000000..55dba0c9 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClient.java @@ -0,0 +1,126 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.client; + +import cn.ucloud.common.client.DefaultClient; +import cn.ucloud.common.config.Config; +import cn.ucloud.common.credential.Credential; +import cn.ucloud.common.exception.UCloudException; +import cn.ucloud.sandbox.models.CheckSandboxCustomDomainRequest; +import cn.ucloud.sandbox.models.CheckSandboxCustomDomainResponse; +import cn.ucloud.sandbox.models.CreateSandboxSiteRequest; +import cn.ucloud.sandbox.models.CreateSandboxSiteResponse; +import cn.ucloud.sandbox.models.DeleteSandboxSiteRequest; +import cn.ucloud.sandbox.models.DeleteSandboxSiteResponse; +import cn.ucloud.sandbox.models.GetSandboxSiteRequest; +import cn.ucloud.sandbox.models.GetSandboxSiteResponse; +import cn.ucloud.sandbox.models.ListSandboxSitesRequest; +import cn.ucloud.sandbox.models.ListSandboxSitesResponse; +import cn.ucloud.sandbox.models.UpdateSandboxSiteCustomDomainRequest; +import cn.ucloud.sandbox.models.UpdateSandboxSiteCustomDomainResponse; +import cn.ucloud.sandbox.models.UpdateSandboxSiteRequest; +import cn.ucloud.sandbox.models.UpdateSandboxSiteResponse; + +/** This client is used to call actions of **Sandbox** service */ +public class SandboxClient extends DefaultClient implements SandboxClientInterface { + public SandboxClient(Config config, Credential credential) { + super(config, credential); + } + + /** + * CheckSandboxCustomDomain - 检查自定义域名 + * + * @param request Request object + * @throws UCloudException Exception + */ + public CheckSandboxCustomDomainResponse checkSandboxCustomDomain( + CheckSandboxCustomDomainRequest request) throws UCloudException { + request.setAction("CheckSandboxCustomDomain"); + return (CheckSandboxCustomDomainResponse) + this.invoke(request, CheckSandboxCustomDomainResponse.class); + } + + /** + * CreateSandboxSite - 创建站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public CreateSandboxSiteResponse createSandboxSite(CreateSandboxSiteRequest request) + throws UCloudException { + request.setAction("CreateSandboxSite"); + return (CreateSandboxSiteResponse) this.invoke(request, CreateSandboxSiteResponse.class); + } + + /** + * DeleteSandboxSite - 删除站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public DeleteSandboxSiteResponse deleteSandboxSite(DeleteSandboxSiteRequest request) + throws UCloudException { + request.setAction("DeleteSandboxSite"); + return (DeleteSandboxSiteResponse) this.invoke(request, DeleteSandboxSiteResponse.class); + } + + /** + * GetSandboxSite - 获取沙箱站点 + * + * @param request Request object + * @throws UCloudException Exception + */ + public GetSandboxSiteResponse getSandboxSite(GetSandboxSiteRequest request) + throws UCloudException { + request.setAction("GetSandboxSite"); + return (GetSandboxSiteResponse) this.invoke(request, GetSandboxSiteResponse.class); + } + + /** + * ListSandboxSites - 列出站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public ListSandboxSitesResponse listSandboxSites(ListSandboxSitesRequest request) + throws UCloudException { + request.setAction("ListSandboxSites"); + return (ListSandboxSitesResponse) this.invoke(request, ListSandboxSitesResponse.class); + } + + /** + * UpdateSandboxSite - 更新站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public UpdateSandboxSiteResponse updateSandboxSite(UpdateSandboxSiteRequest request) + throws UCloudException { + request.setAction("UpdateSandboxSite"); + return (UpdateSandboxSiteResponse) this.invoke(request, UpdateSandboxSiteResponse.class); + } + + /** + * UpdateSandboxSiteCustomDomain - 更新沙箱站点自定义域名 + * + * @param request Request object + * @throws UCloudException Exception + */ + public UpdateSandboxSiteCustomDomainResponse updateSandboxSiteCustomDomain( + UpdateSandboxSiteCustomDomainRequest request) throws UCloudException { + request.setAction("UpdateSandboxSiteCustomDomain"); + return (UpdateSandboxSiteCustomDomainResponse) + this.invoke(request, UpdateSandboxSiteCustomDomainResponse.class); + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClientInterface.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClientInterface.java new file mode 100644 index 00000000..d13575b2 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/SandboxClientInterface.java @@ -0,0 +1,98 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.client; + +import cn.ucloud.common.client.Client; +import cn.ucloud.common.exception.UCloudException; +import cn.ucloud.sandbox.models.CheckSandboxCustomDomainRequest; +import cn.ucloud.sandbox.models.CheckSandboxCustomDomainResponse; +import cn.ucloud.sandbox.models.CreateSandboxSiteRequest; +import cn.ucloud.sandbox.models.CreateSandboxSiteResponse; +import cn.ucloud.sandbox.models.DeleteSandboxSiteRequest; +import cn.ucloud.sandbox.models.DeleteSandboxSiteResponse; +import cn.ucloud.sandbox.models.GetSandboxSiteRequest; +import cn.ucloud.sandbox.models.GetSandboxSiteResponse; +import cn.ucloud.sandbox.models.ListSandboxSitesRequest; +import cn.ucloud.sandbox.models.ListSandboxSitesResponse; +import cn.ucloud.sandbox.models.UpdateSandboxSiteCustomDomainRequest; +import cn.ucloud.sandbox.models.UpdateSandboxSiteCustomDomainResponse; +import cn.ucloud.sandbox.models.UpdateSandboxSiteRequest; +import cn.ucloud.sandbox.models.UpdateSandboxSiteResponse; + +/** This client is used to call actions of **Sandbox** service */ +public interface SandboxClientInterface extends Client { + + /** + * CheckSandboxCustomDomain - 检查自定义域名 + * + * @param request Request object + * @throws UCloudException Exception + */ + public CheckSandboxCustomDomainResponse checkSandboxCustomDomain( + CheckSandboxCustomDomainRequest request) throws UCloudException; + + /** + * CreateSandboxSite - 创建站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public CreateSandboxSiteResponse createSandboxSite(CreateSandboxSiteRequest request) + throws UCloudException; + + /** + * DeleteSandboxSite - 删除站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public DeleteSandboxSiteResponse deleteSandboxSite(DeleteSandboxSiteRequest request) + throws UCloudException; + + /** + * GetSandboxSite - 获取沙箱站点 + * + * @param request Request object + * @throws UCloudException Exception + */ + public GetSandboxSiteResponse getSandboxSite(GetSandboxSiteRequest request) + throws UCloudException; + + /** + * ListSandboxSites - 列出站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public ListSandboxSitesResponse listSandboxSites(ListSandboxSitesRequest request) + throws UCloudException; + + /** + * UpdateSandboxSite - 更新站点空间 + * + * @param request Request object + * @throws UCloudException Exception + */ + public UpdateSandboxSiteResponse updateSandboxSite(UpdateSandboxSiteRequest request) + throws UCloudException; + + /** + * UpdateSandboxSiteCustomDomain - 更新沙箱站点自定义域名 + * + * @param request Request object + * @throws UCloudException Exception + */ + public UpdateSandboxSiteCustomDomainResponse updateSandboxSiteCustomDomain( + UpdateSandboxSiteCustomDomainRequest request) throws UCloudException; +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClient.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClient.java deleted file mode 100644 index 51573ccf..00000000 --- a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClient.java +++ /dev/null @@ -1,40 +0,0 @@ -/** - * Copyright 2021 UCloud Technology Co., Ltd. - * - *

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 cn.ucloud.sandbox.client; - -import cn.ucloud.common.client.DefaultClient; -import cn.ucloud.common.config.Config; -import cn.ucloud.common.credential.Credential; -import cn.ucloud.common.exception.UCloudException; -import cn.ucloud.sandbox.models.GetSandboxSiteRequest; -import cn.ucloud.sandbox.models.GetSandboxSiteResponse; - -/** This client is used to call actions of **sandbox** service */ -public class sandboxClient extends DefaultClient implements sandboxClientInterface { - public sandboxClient(Config config, Credential credential) { - super(config, credential); - } - - /** - * GetSandboxSite - 获取沙箱站点 - * - * @param request Request object - * @throws UCloudException Exception - */ - public GetSandboxSiteResponse getSandboxSite(GetSandboxSiteRequest request) - throws UCloudException { - request.setAction("GetSandboxSite"); - return (GetSandboxSiteResponse) this.invoke(request, GetSandboxSiteResponse.class); - } -} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClientInterface.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClientInterface.java deleted file mode 100644 index 26a8304f..00000000 --- a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/client/sandboxClientInterface.java +++ /dev/null @@ -1,32 +0,0 @@ -/** - * Copyright 2021 UCloud Technology Co., Ltd. - * - *

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 cn.ucloud.sandbox.client; - -import cn.ucloud.common.client.Client; -import cn.ucloud.common.exception.UCloudException; -import cn.ucloud.sandbox.models.GetSandboxSiteRequest; -import cn.ucloud.sandbox.models.GetSandboxSiteResponse; - -/** This client is used to call actions of **sandbox** service */ -public interface sandboxClientInterface extends Client { - - /** - * GetSandboxSite - 获取沙箱站点 - * - * @param request Request object - * @throws UCloudException Exception - */ - public GetSandboxSiteResponse getSandboxSite(GetSandboxSiteRequest request) - throws UCloudException; -} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainRequest.java new file mode 100644 index 00000000..16925594 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainRequest.java @@ -0,0 +1,101 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class CheckSandboxCustomDomainRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + /** 自定义域名 */ + @NotEmpty + @UCloudParam("CustomDomain") + private String customDomain; + + /** 目标域名 */ + @NotEmpty + @UCloudParam("TargetDomain") + private String targetDomain; + + /** 如果为true,则表示获取检查结果 */ + @UCloudParam("Get") + private Boolean get; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getCustomDomain() { + return customDomain; + } + + public void setCustomDomain(String customDomain) { + this.customDomain = customDomain; + } + + public String getTargetDomain() { + return targetDomain; + } + + public void setTargetDomain(String targetDomain) { + this.targetDomain = targetDomain; + } + + public Boolean getGet() { + return get; + } + + public void setGet(Boolean get) { + this.get = get; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainResponse.java new file mode 100644 index 00000000..f499d478 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CheckSandboxCustomDomainResponse.java @@ -0,0 +1,34 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.response.Response; + +import com.google.gson.annotations.SerializedName; + +public class CheckSandboxCustomDomainResponse extends Response { + + /** 检查结果 Unknown:未知 Checking:检查中 Success:成功 Timeout:超时 Error:检查失败 */ + @SerializedName("Status") + private String status; + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteRequest.java new file mode 100644 index 00000000..383a279f --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteRequest.java @@ -0,0 +1,127 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class CreateSandboxSiteRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + /** 站点空间名称 */ + @NotEmpty + @UCloudParam("Name") + private String name; + + /** 密钥 */ + @NotEmpty + @UCloudParam("APIKey") + private String apiKey; + + /** 密钥ID */ + @NotEmpty + @UCloudParam("KeyID") + private String keyID; + + /** 访问码 */ + @NotEmpty + @UCloudParam("AccessCode") + private String accessCode; + + /** 环境变量,格式:["key=value"] */ + @UCloudParam("Envs") + private String envs; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getAPIKey() { + return apiKey; + } + + public void setAPIKey(String apiKey) { + this.apiKey = apiKey; + } + + public String getKeyID() { + return keyID; + } + + public void setKeyID(String keyID) { + this.keyID = keyID; + } + + public String getAccessCode() { + return accessCode; + } + + public void setAccessCode(String accessCode) { + this.accessCode = accessCode; + } + + public String getEnvs() { + return envs; + } + + public void setEnvs(String envs) { + this.envs = envs; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteResponse.java new file mode 100644 index 00000000..7ee17ef7 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/CreateSandboxSiteResponse.java @@ -0,0 +1,20 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + + +import cn.ucloud.common.response.Response; + +public class CreateSandboxSiteResponse extends Response {} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteRequest.java new file mode 100644 index 00000000..71d40805 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteRequest.java @@ -0,0 +1,76 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class DeleteSandboxSiteRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + /** 站点沙箱ID */ + @NotEmpty + @UCloudParam("SandboxID") + private String sandboxID; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getSandboxID() { + return sandboxID; + } + + public void setSandboxID(String sandboxID) { + this.sandboxID = sandboxID; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteResponse.java new file mode 100644 index 00000000..6c2659ba --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/DeleteSandboxSiteResponse.java @@ -0,0 +1,20 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + + +import cn.ucloud.common.response.Response; + +public class DeleteSandboxSiteResponse extends Response {} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/GetSandboxSiteResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/GetSandboxSiteResponse.java index a75caeb1..7cecd616 100644 --- a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/GetSandboxSiteResponse.java +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/GetSandboxSiteResponse.java @@ -71,7 +71,7 @@ public static class Site extends Response { @SerializedName("ConnectKey") private String connectKey; - /** 站点环境变量。格式:key=value */ + /** 站点环境变量。格式:["key=value"] */ @SerializedName("Envs") private List envs; @@ -87,6 +87,10 @@ public static class Site extends Response { @SerializedName("CustomDomainError") private String customDomainError; + /** IP限制 */ + @SerializedName("IPAccess") + private SiteIPAccess ipAccess; + public String getName() { return name; } @@ -190,5 +194,40 @@ public String getCustomDomainError() { public void setCustomDomainError(String customDomainError) { this.customDomainError = customDomainError; } + + public SiteIPAccess getIPAccess() { + return ipAccess; + } + + public void setIPAccess(SiteIPAccess ipAccess) { + this.ipAccess = ipAccess; + } + } + + public static class SiteIPAccess extends Response { + + /** IP 列表 */ + @SerializedName("IPList") + private List ipList; + + /** IP限制模式 "":不限制IP “allow”:自定义白名单 “deny”:自定义黑名单 */ + @SerializedName("Mode") + private String mode; + + public List getIPList() { + return ipList; + } + + public void setIPList(List ipList) { + this.ipList = ipList; + } + + public String getMode() { + return mode; + } + + public void setMode(String mode) { + this.mode = mode; + } } } diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesRequest.java new file mode 100644 index 00000000..2f960f80 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesRequest.java @@ -0,0 +1,63 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class ListSandboxSitesRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesResponse.java new file mode 100644 index 00000000..9e2c8cd8 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/ListSandboxSitesResponse.java @@ -0,0 +1,245 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + +import cn.ucloud.common.response.Response; + +import com.google.gson.annotations.SerializedName; + +import java.util.List; + +public class ListSandboxSitesResponse extends Response { + + /** 站点空间列表 */ + @SerializedName("Sites") + private List sites; + + /** 目标域名地址 */ + @SerializedName("CustomTargetDomain") + private String customTargetDomain; + + public List getSites() { + return sites; + } + + public void setSites(List sites) { + this.sites = sites; + } + + public String getCustomTargetDomain() { + return customTargetDomain; + } + + public void setCustomTargetDomain(String customTargetDomain) { + this.customTargetDomain = customTargetDomain; + } + + public static class Site extends Response { + + /** 名称 */ + @SerializedName("Name") + private String name; + + /** 是否就绪 */ + @SerializedName("Ready") + private Boolean ready; + + /** 站点ID */ + @SerializedName("ID") + private String id; + + /** 沙箱ID */ + @SerializedName("SandboxID") + private String sandboxID; + + /** 站点访问地址 */ + @SerializedName("Host") + private String host; + + /** 站点Key ID */ + @SerializedName("KeyID") + private String keyID; + + /** 更新时间 */ + @SerializedName("UpdateTime") + private Integer updateTime; + + /** 访问码 */ + @SerializedName("AccessCode") + private String accessCode; + + /** 连接密钥 */ + @SerializedName("ConnectKey") + private String connectKey; + + /** 站点环境变量。格式:["key=value"] */ + @SerializedName("Envs") + private List envs; + + /** 自定义域名 */ + @SerializedName("CustomDomain") + private String customDomain; + + /** 自定义域名签发状态 */ + @SerializedName("CustomDomainStatus") + private String customDomainStatus; + + /** 自定义域名签发错误信息 */ + @SerializedName("CustomDomainError") + private String customDomainError; + + /** IP限制 */ + @SerializedName("IPAccess") + private SiteIPAccess ipAccess; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Boolean getReady() { + return ready; + } + + public void setReady(Boolean ready) { + this.ready = ready; + } + + public String getID() { + return id; + } + + public void setID(String id) { + this.id = id; + } + + public String getSandboxID() { + return sandboxID; + } + + public void setSandboxID(String sandboxID) { + this.sandboxID = sandboxID; + } + + public String getHost() { + return host; + } + + public void setHost(String host) { + this.host = host; + } + + public String getKeyID() { + return keyID; + } + + public void setKeyID(String keyID) { + this.keyID = keyID; + } + + public Integer getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Integer updateTime) { + this.updateTime = updateTime; + } + + public String getAccessCode() { + return accessCode; + } + + public void setAccessCode(String accessCode) { + this.accessCode = accessCode; + } + + public String getConnectKey() { + return connectKey; + } + + public void setConnectKey(String connectKey) { + this.connectKey = connectKey; + } + + public List getEnvs() { + return envs; + } + + public void setEnvs(List envs) { + this.envs = envs; + } + + public String getCustomDomain() { + return customDomain; + } + + public void setCustomDomain(String customDomain) { + this.customDomain = customDomain; + } + + public String getCustomDomainStatus() { + return customDomainStatus; + } + + public void setCustomDomainStatus(String customDomainStatus) { + this.customDomainStatus = customDomainStatus; + } + + public String getCustomDomainError() { + return customDomainError; + } + + public void setCustomDomainError(String customDomainError) { + this.customDomainError = customDomainError; + } + + public SiteIPAccess getIPAccess() { + return ipAccess; + } + + public void setIPAccess(SiteIPAccess ipAccess) { + this.ipAccess = ipAccess; + } + } + + public static class SiteIPAccess extends Response { + + /** IP 列表 */ + @SerializedName("IPList") + private List ipList; + + /** IP限制模式 "":不限制IP “allow”:自定义白名单 “deny”:自定义黑名单 */ + @SerializedName("Mode") + private String mode; + + public List getIPList() { + return ipList; + } + + public void setIPList(List ipList) { + this.ipList = ipList; + } + + public String getMode() { + return mode; + } + + public void setMode(String mode) { + this.mode = mode; + } + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainRequest.java new file mode 100644 index 00000000..6a3d5d94 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainRequest.java @@ -0,0 +1,89 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class UpdateSandboxSiteCustomDomainRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + /** 沙箱ID */ + @NotEmpty + @UCloudParam("SandboxID") + private String sandboxID; + + /** 自定义域名 */ + @NotEmpty + @UCloudParam("CustomDomain") + private String customDomain; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getSandboxID() { + return sandboxID; + } + + public void setSandboxID(String sandboxID) { + this.sandboxID = sandboxID; + } + + public String getCustomDomain() { + return customDomain; + } + + public void setCustomDomain(String customDomain) { + this.customDomain = customDomain; + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainResponse.java new file mode 100644 index 00000000..5ae38e53 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteCustomDomainResponse.java @@ -0,0 +1,20 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + + +import cn.ucloud.common.response.Response; + +public class UpdateSandboxSiteCustomDomainResponse extends Response {} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteRequest.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteRequest.java new file mode 100644 index 00000000..d8d6b412 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteRequest.java @@ -0,0 +1,175 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + +import cn.ucloud.common.annotation.NotEmpty; +import cn.ucloud.common.annotation.UCloudParam; +import cn.ucloud.common.request.Request; + +public class UpdateSandboxSiteRequest extends Request { + + /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Region") + private String region; + + /** 可用区。参见 [可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */ + @NotEmpty + @UCloudParam("Zone") + private String zone; + + /** + * 项目ID。不填写为默认项目,子帐号必须填写。 + * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list) + */ + @UCloudParam("ProjectId") + private String projectId; + + /** 站点沙箱ID */ + @NotEmpty + @UCloudParam("SandboxID") + private String sandboxID; + + /** 更新站点空间名称 */ + @UCloudParam("Name") + private String name; + + /** 更新站点空间API Key */ + @UCloudParam("APIKey") + private String apiKey; + + /** 更新站点空间Key ID(需要和APIKey一起传) */ + @UCloudParam("KeyID") + private String keyID; + + /** 更新站点空间环境变量,格式为["Key=Value"] */ + @UCloudParam("Envs") + private String envs; + + /** 访问码 */ + @UCloudParam("AccessCode") + private String accessCode; + + /** */ + @UCloudParam("IPAccess") + private IPAccess ipAccess; + + public String getRegion() { + return region; + } + + public void setRegion(String region) { + this.region = region; + } + + public String getZone() { + return zone; + } + + public void setZone(String zone) { + this.zone = zone; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getSandboxID() { + return sandboxID; + } + + public void setSandboxID(String sandboxID) { + this.sandboxID = sandboxID; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getAPIKey() { + return apiKey; + } + + public void setAPIKey(String apiKey) { + this.apiKey = apiKey; + } + + public String getKeyID() { + return keyID; + } + + public void setKeyID(String keyID) { + this.keyID = keyID; + } + + public String getEnvs() { + return envs; + } + + public void setEnvs(String envs) { + this.envs = envs; + } + + public String getAccessCode() { + return accessCode; + } + + public void setAccessCode(String accessCode) { + this.accessCode = accessCode; + } + + public IPAccess getIPAccess() { + return ipAccess; + } + + public void setIPAccess(IPAccess ipAccess) { + this.ipAccess = ipAccess; + } + + public static class IPAccess extends Request { + + /** 访问限制IP,格式 ["192.168.1.2","192.168.1.3"] */ + @UCloudParam("IPList") + private String ipList; + + /** 访问模式, - "":无IP限制 - "allow":白名单模式 - "deny":黑名单 */ + @UCloudParam("Mode") + private String mode; + + public String getIPList() { + return ipList; + } + + public void setIPList(String ipList) { + this.ipList = ipList; + } + + public String getMode() { + return mode; + } + + public void setMode(String mode) { + this.mode = mode; + } + } +} diff --git a/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteResponse.java b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteResponse.java new file mode 100644 index 00000000..01a312c3 --- /dev/null +++ b/ucloud-sdk-java-sandbox/src/main/java/cn/ucloud/sandbox/models/UpdateSandboxSiteResponse.java @@ -0,0 +1,20 @@ +/** + * Copyright 2021 UCloud Technology Co., Ltd. + * + *

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 cn.ucloud.sandbox.models; + + + +import cn.ucloud.common.response.Response; + +public class UpdateSandboxSiteResponse extends Response {} diff --git a/ucloud-sdk-java-sts/pom.xml b/ucloud-sdk-java-sts/pom.xml index e26aaf65..57bcbd41 100644 --- a/ucloud-sdk-java-sts/pom.xml +++ b/ucloud-sdk-java-sts/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-sts ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-tidb/pom.xml b/ucloud-sdk-java-tidb/pom.xml index 6398d3c1..be406b9f 100644 --- a/ucloud-sdk-java-tidb/pom.xml +++ b/ucloud-sdk-java-tidb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-tidb ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uaccount/pom.xml b/ucloud-sdk-java-uaccount/pom.xml index 2966523e..d87a226f 100644 --- a/ucloud-sdk-java-uaccount/pom.xml +++ b/ucloud-sdk-java-uaccount/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uaccount ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uai_modelverse/pom.xml b/ucloud-sdk-java-uai_modelverse/pom.xml index 0f84ae62..beee08ce 100644 --- a/ucloud-sdk-java-uai_modelverse/pom.xml +++ b/ucloud-sdk-java-uai_modelverse/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uai_modelverse ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uas/pom.xml b/ucloud-sdk-java-uas/pom.xml index 7a352c33..5b77373e 100644 --- a/ucloud-sdk-java-uas/pom.xml +++ b/ucloud-sdk-java-uas/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uas ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ubill/pom.xml b/ucloud-sdk-java-ubill/pom.xml index 2b0c6dc5..cb766876 100644 --- a/ucloud-sdk-java-ubill/pom.xml +++ b/ucloud-sdk-java-ubill/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ubill ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ucdn/pom.xml b/ucloud-sdk-java-ucdn/pom.xml index 43943d0f..a6ff0375 100644 --- a/ucloud-sdk-java-ucdn/pom.xml +++ b/ucloud-sdk-java-ucdn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ucdn ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uclickhouse/pom.xml b/ucloud-sdk-java-uclickhouse/pom.xml index ec134f4d..5760d27e 100644 --- a/ucloud-sdk-java-uclickhouse/pom.xml +++ b/ucloud-sdk-java-uclickhouse/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uclickhouse ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ucompshare/pom.xml b/ucloud-sdk-java-ucompshare/pom.xml index dcb32316..3793166b 100644 --- a/ucloud-sdk-java-ucompshare/pom.xml +++ b/ucloud-sdk-java-ucompshare/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ucompshare ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udb/pom.xml b/ucloud-sdk-java-udb/pom.xml index d3ee929c..b063f508 100644 --- a/ucloud-sdk-java-udb/pom.xml +++ b/ucloud-sdk-java-udb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udb ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udbproxy/pom.xml b/ucloud-sdk-java-udbproxy/pom.xml index 692f7aae..17e08cbc 100644 --- a/ucloud-sdk-java-udbproxy/pom.xml +++ b/ucloud-sdk-java-udbproxy/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udbproxy ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udi/pom.xml b/ucloud-sdk-java-udi/pom.xml index 98998c4d..c94b4be4 100644 --- a/ucloud-sdk-java-udi/pom.xml +++ b/ucloud-sdk-java-udi/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udi ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udisk/pom.xml b/ucloud-sdk-java-udisk/pom.xml index a14dcf0e..f2ed3b40 100644 --- a/ucloud-sdk-java-udisk/pom.xml +++ b/ucloud-sdk-java-udisk/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udisk ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udns/pom.xml b/ucloud-sdk-java-udns/pom.xml index c88cec75..c2bd1dcd 100644 --- a/ucloud-sdk-java-udns/pom.xml +++ b/ucloud-sdk-java-udns/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udns ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-udpn/pom.xml b/ucloud-sdk-java-udpn/pom.xml index d036df48..28270d38 100644 --- a/ucloud-sdk-java-udpn/pom.xml +++ b/ucloud-sdk-java-udpn/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-udpn ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uec/pom.xml b/ucloud-sdk-java-uec/pom.xml index d0d262b6..81b2b88d 100644 --- a/ucloud-sdk-java-uec/pom.xml +++ b/ucloud-sdk-java-uec/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uec ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ues/pom.xml b/ucloud-sdk-java-ues/pom.xml index 27f74c1b..739d221a 100644 --- a/ucloud-sdk-java-ues/pom.xml +++ b/ucloud-sdk-java-ues/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ues ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uewaf/pom.xml b/ucloud-sdk-java-uewaf/pom.xml index 3dd6f9f0..208dfd22 100644 --- a/ucloud-sdk-java-uewaf/pom.xml +++ b/ucloud-sdk-java-uewaf/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uewaf ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ufile/pom.xml b/ucloud-sdk-java-ufile/pom.xml index 7e4febfd..4573630e 100644 --- a/ucloud-sdk-java-ufile/pom.xml +++ b/ucloud-sdk-java-ufile/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ufile ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ufs/pom.xml b/ucloud-sdk-java-ufs/pom.xml index f4818905..04507af6 100644 --- a/ucloud-sdk-java-ufs/pom.xml +++ b/ucloud-sdk-java-ufs/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ufs ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uhadoop/pom.xml b/ucloud-sdk-java-uhadoop/pom.xml index a51199f9..51a1a26a 100644 --- a/ucloud-sdk-java-uhadoop/pom.xml +++ b/ucloud-sdk-java-uhadoop/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uhadoop ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uhids/pom.xml b/ucloud-sdk-java-uhids/pom.xml index 27a81b6a..45f063a7 100644 --- a/ucloud-sdk-java-uhids/pom.xml +++ b/ucloud-sdk-java-uhids/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uhids ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uhost/pom.xml b/ucloud-sdk-java-uhost/pom.xml index 95200fd1..3282ae13 100644 --- a/ucloud-sdk-java-uhost/pom.xml +++ b/ucloud-sdk-java-uhost/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uhost ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uk8s/pom.xml b/ucloud-sdk-java-uk8s/pom.xml index c49a15ba..2c1d6cc7 100644 --- a/ucloud-sdk-java-uk8s/pom.xml +++ b/ucloud-sdk-java-uk8s/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uk8s ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ukafka/pom.xml b/ucloud-sdk-java-ukafka/pom.xml index 64e5ffe8..91b67460 100644 --- a/ucloud-sdk-java-ukafka/pom.xml +++ b/ucloud-sdk-java-ukafka/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ukafka ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ukms/pom.xml b/ucloud-sdk-java-ukms/pom.xml index 394dcffd..00889dd7 100644 --- a/ucloud-sdk-java-ukms/pom.xml +++ b/ucloud-sdk-java-ukms/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ukms ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ulb/pom.xml b/ucloud-sdk-java-ulb/pom.xml index 28503541..cf468a6c 100644 --- a/ucloud-sdk-java-ulb/pom.xml +++ b/ucloud-sdk-java-ulb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ulb ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ulighthost/pom.xml b/ucloud-sdk-java-ulighthost/pom.xml index a6712d16..aa063db9 100644 --- a/ucloud-sdk-java-ulighthost/pom.xml +++ b/ucloud-sdk-java-ulighthost/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ulighthost ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-ulog/pom.xml b/ucloud-sdk-java-ulog/pom.xml index 82e772de..7ed9ba54 100644 --- a/ucloud-sdk-java-ulog/pom.xml +++ b/ucloud-sdk-java-ulog/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-ulog ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml index c45f3cea..125e5b43 100644 --- a/ucloud-sdk-java-umem/pom.xml +++ b/ucloud-sdk-java-umem/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-umem ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-umon/pom.xml b/ucloud-sdk-java-umon/pom.xml index e4429fb3..6655e5dd 100644 --- a/ucloud-sdk-java-umon/pom.xml +++ b/ucloud-sdk-java-umon/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-umon ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-umongodb/pom.xml b/ucloud-sdk-java-umongodb/pom.xml index d788d5a8..d2bd58c6 100644 --- a/ucloud-sdk-java-umongodb/pom.xml +++ b/ucloud-sdk-java-umongodb/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-umongodb ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml index 7c96d68f..f2df2c20 100644 --- a/ucloud-sdk-java-unet/pom.xml +++ b/ucloud-sdk-java-unet/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-unet ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-upfs/pom.xml b/ucloud-sdk-java-upfs/pom.xml index 7e0fe994..8e368198 100644 --- a/ucloud-sdk-java-upfs/pom.xml +++ b/ucloud-sdk-java-upfs/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-upfs ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml index 7e7df808..8fa40e01 100644 --- a/ucloud-sdk-java-upgsql/pom.xml +++ b/ucloud-sdk-java-upgsql/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-upgsql ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml index 7658a19c..86e16115 100644 --- a/ucloud-sdk-java-uphone/pom.xml +++ b/ucloud-sdk-java-uphone/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uphone ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml index f71ca2ff..5c52257f 100644 --- a/ucloud-sdk-java-uphost/pom.xml +++ b/ucloud-sdk-java-uphost/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uphost ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml index 6f0cc3ab..878d50a7 100644 --- a/ucloud-sdk-java-uslk/pom.xml +++ b/ucloud-sdk-java-uslk/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uslk ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml index bd5eefe3..b4e6734b 100644 --- a/ucloud-sdk-java-usms/pom.xml +++ b/ucloud-sdk-java-usms/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-usms ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml index 2e67048d..c51a7946 100644 --- a/ucloud-sdk-java-usnap/pom.xml +++ b/ucloud-sdk-java-usnap/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-usnap ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml index 1180090b..e633a5de 100644 --- a/ucloud-sdk-java-uvms/pom.xml +++ b/ucloud-sdk-java-uvms/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uvms ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-uwsc/pom.xml b/ucloud-sdk-java-uwsc/pom.xml index ee6fd2cb..da0301fd 100644 --- a/ucloud-sdk-java-uwsc/pom.xml +++ b/ucloud-sdk-java-uwsc/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-uwsc ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml index 2c46f46c..a85b2431 100644 --- a/ucloud-sdk-java-vpc/pom.xml +++ b/ucloud-sdk-java-vpc/pom.xml @@ -5,19 +5,19 @@ ucloud-sdk-java cn.ucloud - 1.2.88-release + 1.2.89-release 4.0.0 ucloud-sdk-java-vpc ucloud-sdk-java - 1.2.88-release + 1.2.89-release cn.ucloud ucloud-sdk-java-common - 1.2.88-release + 1.2.89-release