index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetChatappVerifyCodeResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetChatappVerifyCodeResponse; import com.aliyuncs.transform.UnmarshallerContext; public class GetChatappVerifyCodeResponseUnmarshaller { public static GetChatappVerifyCodeResponse unmarshall(GetChatappVerifyCodeResponse getChatappVerifyCodeResponse, UnmarshallerContext _ctx) { getChatappVerifyCodeResponse.setRequestId(_ctx.stringValue("GetChatappVerifyCodeResponse.RequestId")); getChatappVerifyCodeResponse.setAccessDeniedDetail(_ctx.stringValue("GetChatappVerifyCodeResponse.AccessDeniedDetail")); getChatappVerifyCodeResponse.setMessage(_ctx.stringValue("GetChatappVerifyCodeResponse.Message")); getChatappVerifyCodeResponse.setCode(_ctx.stringValue("GetChatappVerifyCodeResponse.Code")); getChatappVerifyCodeResponse.setSuccess(_ctx.booleanValue("GetChatappVerifyCodeResponse.Success")); return getChatappVerifyCodeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetCommerceSettingResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetCommerceSettingResponse; import com.aliyuncs.cams.model.v20200606.GetCommerceSettingResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetCommerceSettingResponseUnmarshaller { public static GetCommerceSettingResponse unmarshall(GetCommerceSettingResponse getCommerceSettingResponse, UnmarshallerContext _ctx) { getCommerceSettingResponse.setRequestId(_ctx.stringValue("GetCommerceSettingResponse.RequestId")); getCommerceSettingResponse.setAccessDeniedDetail(_ctx.stringValue("GetCommerceSettingResponse.AccessDeniedDetail")); getCommerceSettingResponse.setMessage(_ctx.stringValue("GetCommerceSettingResponse.Message")); getCommerceSettingResponse.setCode(_ctx.stringValue("GetCommerceSettingResponse.Code")); getCommerceSettingResponse.setSuccess(_ctx.booleanValue("GetCommerceSettingResponse.Success")); Data data = new Data(); data.setCartEnable(_ctx.booleanValue("GetCommerceSettingResponse.Data.CartEnable")); data.setCatalogVisible(_ctx.booleanValue("GetCommerceSettingResponse.Data.CatalogVisible")); getCommerceSettingResponse.setData(data); return getCommerceSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetConversationalAutomationResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.GetConversationalAutomationResponse; import com.aliyuncs.cams.model.v20200606.GetConversationalAutomationResponse.Data; import com.aliyuncs.cams.model.v20200606.GetConversationalAutomationResponse.Data.CommandsItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetConversationalAutomationResponseUnmarshaller { public static GetConversationalAutomationResponse unmarshall(GetConversationalAutomationResponse getConversationalAutomationResponse, UnmarshallerContext _ctx) { getConversationalAutomationResponse.setRequestId(_ctx.stringValue("GetConversationalAutomationResponse.RequestId")); getConversationalAutomationResponse.setAccessDeniedDetail(_ctx.stringValue("GetConversationalAutomationResponse.AccessDeniedDetail")); getConversationalAutomationResponse.setMessage(_ctx.stringValue("GetConversationalAutomationResponse.Message")); getConversationalAutomationResponse.setCode(_ctx.stringValue("GetConversationalAutomationResponse.Code")); getConversationalAutomationResponse.setSuccess(_ctx.booleanValue("GetConversationalAutomationResponse.Success")); Data data = new Data(); data.setPhoneNumber(_ctx.stringValue("GetConversationalAutomationResponse.Data.PhoneNumber")); data.setEnableWelcomeMessage(_ctx.booleanValue("GetConversationalAutomationResponse.Data.EnableWelcomeMessage")); List<String> prompts = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("GetConversationalAutomationResponse.Data.Prompts.Length"); i++) { prompts.add(_ctx.stringValue("GetConversationalAutomationResponse.Data.Prompts["+ i +"]")); } data.setPrompts(prompts); List<CommandsItem> commands = new ArrayList<CommandsItem>(); for (int i = 0; i < _ctx.lengthValue("GetConversationalAutomationResponse.Data.Commands.Length"); i++) { CommandsItem commandsItem = new CommandsItem(); commandsItem.setCommandDescription(_ctx.stringValue("GetConversationalAutomationResponse.Data.Commands["+ i +"].CommandDescription")); commandsItem.setCommandName(_ctx.stringValue("GetConversationalAutomationResponse.Data.Commands["+ i +"].CommandName")); commands.add(commandsItem); } data.setCommands(commands); getConversationalAutomationResponse.setData(data); return getConversationalAutomationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetFlowJSONAssestResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetFlowJSONAssestResponse; import com.aliyuncs.cams.model.v20200606.GetFlowJSONAssestResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetFlowJSONAssestResponseUnmarshaller { public static GetFlowJSONAssestResponse unmarshall(GetFlowJSONAssestResponse getFlowJSONAssestResponse, UnmarshallerContext _ctx) { getFlowJSONAssestResponse.setRequestId(_ctx.stringValue("GetFlowJSONAssestResponse.RequestId")); getFlowJSONAssestResponse.setCode(_ctx.stringValue("GetFlowJSONAssestResponse.Code")); getFlowJSONAssestResponse.setMessage(_ctx.stringValue("GetFlowJSONAssestResponse.Message")); Data data = new Data(); data.setFlowId(_ctx.stringValue("GetFlowJSONAssestResponse.Data.FlowId")); data.setFilePath(_ctx.stringValue("GetFlowJSONAssestResponse.Data.FilePath")); getFlowJSONAssestResponse.setData(data); return getFlowJSONAssestResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetFlowPreviewUrlResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetFlowPreviewUrlResponse; import com.aliyuncs.cams.model.v20200606.GetFlowPreviewUrlResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetFlowPreviewUrlResponseUnmarshaller { public static GetFlowPreviewUrlResponse unmarshall(GetFlowPreviewUrlResponse getFlowPreviewUrlResponse, UnmarshallerContext _ctx) { getFlowPreviewUrlResponse.setRequestId(_ctx.stringValue("GetFlowPreviewUrlResponse.RequestId")); getFlowPreviewUrlResponse.setCode(_ctx.stringValue("GetFlowPreviewUrlResponse.Code")); getFlowPreviewUrlResponse.setMessage(_ctx.stringValue("GetFlowPreviewUrlResponse.Message")); Data data = new Data(); data.setFlowId(_ctx.stringValue("GetFlowPreviewUrlResponse.Data.FlowId")); data.setPreviewUrl(_ctx.stringValue("GetFlowPreviewUrlResponse.Data.PreviewUrl")); data.setPreviewUrlExpires(_ctx.longValue("GetFlowPreviewUrlResponse.Data.PreviewUrlExpires")); getFlowPreviewUrlResponse.setData(data); return getFlowPreviewUrlResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetFlowResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.GetFlowResponse; import com.aliyuncs.cams.model.v20200606.GetFlowResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetFlowResponseUnmarshaller { public static GetFlowResponse unmarshall(GetFlowResponse getFlowResponse, UnmarshallerContext _ctx) { getFlowResponse.setRequestId(_ctx.stringValue("GetFlowResponse.RequestId")); getFlowResponse.setCode(_ctx.stringValue("GetFlowResponse.Code")); getFlowResponse.setMessage(_ctx.stringValue("GetFlowResponse.Message")); Data data = new Data(); data.setStatus(_ctx.stringValue("GetFlowResponse.Data.Status")); data.setFlowId(_ctx.stringValue("GetFlowResponse.Data.FlowId")); data.setFlowName(_ctx.stringValue("GetFlowResponse.Data.FlowName")); data.setJSONVersion(_ctx.stringValue("GetFlowResponse.Data.JSONVersion")); data.setDataApiVersion(_ctx.stringValue("GetFlowResponse.Data.DataApiVersion")); data.setPreviewUrl(_ctx.stringValue("GetFlowResponse.Data.PreviewUrl")); data.setPreviewUrlExpires(_ctx.longValue("GetFlowResponse.Data.PreviewUrlExpires")); List<String> categories = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("GetFlowResponse.Data.Categories.Length"); i++) { categories.add(_ctx.stringValue("GetFlowResponse.Data.Categories["+ i +"]")); } data.setCategories(categories); getFlowResponse.setData(data); return getFlowResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetMigrationVerifyCodeResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetMigrationVerifyCodeResponse; import com.aliyuncs.cams.model.v20200606.GetMigrationVerifyCodeResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetMigrationVerifyCodeResponseUnmarshaller { public static GetMigrationVerifyCodeResponse unmarshall(GetMigrationVerifyCodeResponse getMigrationVerifyCodeResponse, UnmarshallerContext _ctx) { getMigrationVerifyCodeResponse.setRequestId(_ctx.stringValue("GetMigrationVerifyCodeResponse.RequestId")); getMigrationVerifyCodeResponse.setCode(_ctx.stringValue("GetMigrationVerifyCodeResponse.Code")); getMigrationVerifyCodeResponse.setMessage(_ctx.stringValue("GetMigrationVerifyCodeResponse.Message")); getMigrationVerifyCodeResponse.setAccessDeniedDetail(_ctx.stringValue("GetMigrationVerifyCodeResponse.AccessDeniedDetail")); Data data = new Data(); data.setPhoneNumber(_ctx.stringValue("GetMigrationVerifyCodeResponse.Data.PhoneNumber")); data.setId(_ctx.stringValue("GetMigrationVerifyCodeResponse.Data.Id")); getMigrationVerifyCodeResponse.setData(data); return getMigrationVerifyCodeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetPermissionByCodeResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetPermissionByCodeResponse; import com.aliyuncs.transform.UnmarshallerContext; public class GetPermissionByCodeResponseUnmarshaller { public static GetPermissionByCodeResponse unmarshall(GetPermissionByCodeResponse getPermissionByCodeResponse, UnmarshallerContext _ctx) { getPermissionByCodeResponse.setRequestId(_ctx.stringValue("GetPermissionByCodeResponse.RequestId")); getPermissionByCodeResponse.setCode(_ctx.stringValue("GetPermissionByCodeResponse.Code")); getPermissionByCodeResponse.setMessage(_ctx.stringValue("GetPermissionByCodeResponse.Message")); return getPermissionByCodeResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetPhoneEncryptionPublicKeyResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetPhoneEncryptionPublicKeyResponse; import com.aliyuncs.cams.model.v20200606.GetPhoneEncryptionPublicKeyResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetPhoneEncryptionPublicKeyResponseUnmarshaller { public static GetPhoneEncryptionPublicKeyResponse unmarshall(GetPhoneEncryptionPublicKeyResponse getPhoneEncryptionPublicKeyResponse, UnmarshallerContext _ctx) { getPhoneEncryptionPublicKeyResponse.setRequestId(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.RequestId")); getPhoneEncryptionPublicKeyResponse.setCode(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.Code")); getPhoneEncryptionPublicKeyResponse.setMessage(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.Message")); Data data = new Data(); data.setPhoneNumber(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.Data.PhoneNumber")); data.setEncryptionPublicKey(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.Data.EncryptionPublicKey")); data.setEncryptionPublicKeyStatus(_ctx.stringValue("GetPhoneEncryptionPublicKeyResponse.Data.EncryptionPublicKeyStatus")); getPhoneEncryptionPublicKeyResponse.setData(data); return getPhoneEncryptionPublicKeyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetPhoneNumberVerificationStatusResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetPhoneNumberVerificationStatusResponse; import com.aliyuncs.cams.model.v20200606.GetPhoneNumberVerificationStatusResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetPhoneNumberVerificationStatusResponseUnmarshaller { public static GetPhoneNumberVerificationStatusResponse unmarshall(GetPhoneNumberVerificationStatusResponse getPhoneNumberVerificationStatusResponse, UnmarshallerContext _ctx) { getPhoneNumberVerificationStatusResponse.setRequestId(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.RequestId")); getPhoneNumberVerificationStatusResponse.setCode(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.Code")); getPhoneNumberVerificationStatusResponse.setMessage(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.Message")); Data data = new Data(); data.setPhoneNumber(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.Data.PhoneNumber")); data.setId(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.Data.Id")); data.setCodeVerificationStatus(_ctx.stringValue("GetPhoneNumberVerificationStatusResponse.Data.CodeVerificationStatus")); getPhoneNumberVerificationStatusResponse.setData(data); return getPhoneNumberVerificationStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetPreValidatePhoneIdResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetPreValidatePhoneIdResponse; import com.aliyuncs.cams.model.v20200606.GetPreValidatePhoneIdResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class GetPreValidatePhoneIdResponseUnmarshaller { public static GetPreValidatePhoneIdResponse unmarshall(GetPreValidatePhoneIdResponse getPreValidatePhoneIdResponse, UnmarshallerContext _ctx) { getPreValidatePhoneIdResponse.setRequestId(_ctx.stringValue("GetPreValidatePhoneIdResponse.RequestId")); getPreValidatePhoneIdResponse.setCode(_ctx.stringValue("GetPreValidatePhoneIdResponse.Code")); getPreValidatePhoneIdResponse.setMessage(_ctx.stringValue("GetPreValidatePhoneIdResponse.Message")); Data data = new Data(); data.setPhoneNumberId(_ctx.stringValue("GetPreValidatePhoneIdResponse.Data.PhoneNumberId")); data.setPhoneNumber(_ctx.stringValue("GetPreValidatePhoneIdResponse.Data.PhoneNumber")); getPreValidatePhoneIdResponse.setData(data); return getPreValidatePhoneIdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetWhatsappConnectionCatalogResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.GetWhatsappConnectionCatalogResponse; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class GetWhatsappConnectionCatalogResponseUnmarshaller { public static GetWhatsappConnectionCatalogResponse unmarshall(GetWhatsappConnectionCatalogResponse getWhatsappConnectionCatalogResponse, UnmarshallerContext _ctx) { getWhatsappConnectionCatalogResponse.setRequestId(_ctx.stringValue("GetWhatsappConnectionCatalogResponse.RequestId")); getWhatsappConnectionCatalogResponse.setAccessDeniedDetail(_ctx.stringValue("GetWhatsappConnectionCatalogResponse.AccessDeniedDetail")); getWhatsappConnectionCatalogResponse.setMessage(_ctx.stringValue("GetWhatsappConnectionCatalogResponse.Message")); getWhatsappConnectionCatalogResponse.setModel(_ctx.mapValue("GetWhatsappConnectionCatalogResponse.Model")); getWhatsappConnectionCatalogResponse.setCode(_ctx.stringValue("GetWhatsappConnectionCatalogResponse.Code")); getWhatsappConnectionCatalogResponse.setSuccess(_ctx.booleanValue("GetWhatsappConnectionCatalogResponse.Success")); return getWhatsappConnectionCatalogResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/GetWhatsappHealthStatusResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.GetWhatsappHealthStatusResponse; import com.aliyuncs.cams.model.v20200606.GetWhatsappHealthStatusResponse.Data; import com.aliyuncs.cams.model.v20200606.GetWhatsappHealthStatusResponse.Data.EntitiesItem; import com.aliyuncs.cams.model.v20200606.GetWhatsappHealthStatusResponse.Data.EntitiesItem.ErrorsItem; import com.aliyuncs.transform.UnmarshallerContext; public class GetWhatsappHealthStatusResponseUnmarshaller { public static GetWhatsappHealthStatusResponse unmarshall(GetWhatsappHealthStatusResponse getWhatsappHealthStatusResponse, UnmarshallerContext _ctx) { getWhatsappHealthStatusResponse.setRequestId(_ctx.stringValue("GetWhatsappHealthStatusResponse.RequestId")); getWhatsappHealthStatusResponse.setAccessDeniedDetail(_ctx.stringValue("GetWhatsappHealthStatusResponse.AccessDeniedDetail")); getWhatsappHealthStatusResponse.setMessage(_ctx.stringValue("GetWhatsappHealthStatusResponse.Message")); getWhatsappHealthStatusResponse.setCode(_ctx.stringValue("GetWhatsappHealthStatusResponse.Code")); getWhatsappHealthStatusResponse.setSuccess(_ctx.booleanValue("GetWhatsappHealthStatusResponse.Success")); Data data = new Data(); data.setCanSendMessage(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.CanSendMessage")); List<EntitiesItem> entities = new ArrayList<EntitiesItem>(); for (int i = 0; i < _ctx.lengthValue("GetWhatsappHealthStatusResponse.Data.Entities.Length"); i++) { EntitiesItem entitiesItem = new EntitiesItem(); entitiesItem.setEntityType(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].EntityType")); entitiesItem.setTemplateCode(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].TemplateCode")); entitiesItem.setLanguage(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].Language")); entitiesItem.setCanSendMessage(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].CanSendMessage")); entitiesItem.setPhoneNumber(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].PhoneNumber")); entitiesItem.setWabaId(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].WabaId")); entitiesItem.setBusinessId(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].BusinessId")); List<ErrorsItem> errors = new ArrayList<ErrorsItem>(); for (int j = 0; j < _ctx.lengthValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].Errors.Length"); j++) { ErrorsItem errorsItem = new ErrorsItem(); errorsItem.setErrorDescription(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].Errors["+ j +"].ErrorDescription")); errorsItem.setPossibleSolution(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].Errors["+ j +"].PossibleSolution")); errorsItem.setErrorCode(_ctx.stringValue("GetWhatsappHealthStatusResponse.Data.Entities["+ i +"].Errors["+ j +"].ErrorCode")); errors.add(errorsItem); } entitiesItem.setErrors(errors); entities.add(entitiesItem); } data.setEntities(entities); getWhatsappHealthStatusResponse.setData(data); return getWhatsappHealthStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/IsvGetAppIdResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.IsvGetAppIdResponse; import com.aliyuncs.transform.UnmarshallerContext; public class IsvGetAppIdResponseUnmarshaller { public static IsvGetAppIdResponse unmarshall(IsvGetAppIdResponse isvGetAppIdResponse, UnmarshallerContext _ctx) { isvGetAppIdResponse.setRequestId(_ctx.stringValue("IsvGetAppIdResponse.RequestId")); isvGetAppIdResponse.setCode(_ctx.stringValue("IsvGetAppIdResponse.Code")); isvGetAppIdResponse.setMessage(_ctx.stringValue("IsvGetAppIdResponse.Message")); isvGetAppIdResponse.setAppId(_ctx.stringValue("IsvGetAppIdResponse.AppId")); isvGetAppIdResponse.setAccessDeniedDetail(_ctx.stringValue("IsvGetAppIdResponse.AccessDeniedDetail")); isvGetAppIdResponse.setConfigId(_ctx.stringValue("IsvGetAppIdResponse.ConfigId")); return isvGetAppIdResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ListChatappTemplateResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ListChatappTemplateResponse; import com.aliyuncs.cams.model.v20200606.ListChatappTemplateResponse.Template; import com.aliyuncs.transform.UnmarshallerContext; public class ListChatappTemplateResponseUnmarshaller { public static ListChatappTemplateResponse unmarshall(ListChatappTemplateResponse listChatappTemplateResponse, UnmarshallerContext _ctx) { listChatappTemplateResponse.setRequestId(_ctx.stringValue("ListChatappTemplateResponse.RequestId")); listChatappTemplateResponse.setCode(_ctx.stringValue("ListChatappTemplateResponse.Code")); listChatappTemplateResponse.setMessage(_ctx.stringValue("ListChatappTemplateResponse.Message")); listChatappTemplateResponse.setTotal(_ctx.integerValue("ListChatappTemplateResponse.Total")); listChatappTemplateResponse.setAccessDeniedDetail(_ctx.stringValue("ListChatappTemplateResponse.AccessDeniedDetail")); List<Template> listTemplate = new ArrayList<Template>(); for (int i = 0; i < _ctx.lengthValue("ListChatappTemplateResponse.ListTemplate.Length"); i++) { Template template = new Template(); template.setTemplateName(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].TemplateName")); template.setTemplateCode(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].TemplateCode")); template.setAuditStatus(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].AuditStatus")); template.setLanguage(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].Language")); template.setCategory(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].Category")); template.setTemplateType(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].TemplateType")); template.setReason(_ctx.stringValue("ListChatappTemplateResponse.ListTemplate["+ i +"].Reason")); template.setLastUpdateTime(_ctx.longValue("ListChatappTemplateResponse.ListTemplate["+ i +"].LastUpdateTime")); listTemplate.add(template); } listChatappTemplateResponse.setListTemplate(listTemplate); return listChatappTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ListFlowResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ListFlowResponse; import com.aliyuncs.cams.model.v20200606.ListFlowResponse.返回结果; import com.aliyuncs.transform.UnmarshallerContext; public class ListFlowResponseUnmarshaller { public static ListFlowResponse unmarshall(ListFlowResponse listFlowResponse, UnmarshallerContext _ctx) { listFlowResponse.setRequestId(_ctx.stringValue("ListFlowResponse.RequestId")); listFlowResponse.setCode(_ctx.stringValue("ListFlowResponse.Code")); listFlowResponse.setMessage(_ctx.stringValue("ListFlowResponse.Message")); List<返回结果> data = new ArrayList<返回结果>(); for (int i = 0; i < _ctx.lengthValue("ListFlowResponse.Data.Length"); i++) { 返回结果 返回结果 = new 返回结果(); 返回结果.setFlowId(_ctx.stringValue("ListFlowResponse.Data["+ i +"].FlowId")); 返回结果.setFlowName(_ctx.stringValue("ListFlowResponse.Data["+ i +"].FlowName")); List<String> categories = new ArrayList<String>(); for (int j = 0; j < _ctx.lengthValue("ListFlowResponse.Data["+ i +"].Categories.Length"); j++) { categories.add(_ctx.stringValue("ListFlowResponse.Data["+ i +"].Categories["+ j +"]")); } 返回结果.setCategories(categories); data.add(返回结果); } listFlowResponse.setData(data); return listFlowResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ListPhoneMessageQrdlResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ListPhoneMessageQrdlResponse; import com.aliyuncs.cams.model.v20200606.ListPhoneMessageQrdlResponse.列表; import com.aliyuncs.transform.UnmarshallerContext; public class ListPhoneMessageQrdlResponseUnmarshaller { public static ListPhoneMessageQrdlResponse unmarshall(ListPhoneMessageQrdlResponse listPhoneMessageQrdlResponse, UnmarshallerContext _ctx) { listPhoneMessageQrdlResponse.setRequestId(_ctx.stringValue("ListPhoneMessageQrdlResponse.RequestId")); listPhoneMessageQrdlResponse.setCode(_ctx.stringValue("ListPhoneMessageQrdlResponse.Code")); listPhoneMessageQrdlResponse.setMessage(_ctx.stringValue("ListPhoneMessageQrdlResponse.Message")); List<列表> data = new ArrayList<列表>(); for (int i = 0; i < _ctx.lengthValue("ListPhoneMessageQrdlResponse.Data.Length"); i++) { 列表 列表 = new 列表(); 列表.setPhoneNumber(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].PhoneNumber")); 列表.setQrdlCode(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].QrdlCode")); 列表.setGenerateQrImage(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].GenerateQrImage")); 列表.setPrefilledMessage(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].PrefilledMessage")); 列表.setDeepLinkUrl(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].DeepLinkUrl")); 列表.setQrImageUrl(_ctx.stringValue("ListPhoneMessageQrdlResponse.Data["+ i +"].QrImageUrl")); data.add(列表); } listPhoneMessageQrdlResponse.setData(data); return listPhoneMessageQrdlResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ListProductCatalogResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ListProductCatalogResponse; import com.aliyuncs.cams.model.v20200606.ListProductCatalogResponse.Model; import com.aliyuncs.cams.model.v20200606.ListProductCatalogResponse.Model.Paging; import com.aliyuncs.cams.model.v20200606.ListProductCatalogResponse.Model.Paging.Cursors; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class ListProductCatalogResponseUnmarshaller { public static ListProductCatalogResponse unmarshall(ListProductCatalogResponse listProductCatalogResponse, UnmarshallerContext _ctx) { listProductCatalogResponse.setRequestId(_ctx.stringValue("ListProductCatalogResponse.RequestId")); listProductCatalogResponse.setAccessDeniedDetail(_ctx.stringValue("ListProductCatalogResponse.AccessDeniedDetail")); listProductCatalogResponse.setMessage(_ctx.stringValue("ListProductCatalogResponse.Message")); listProductCatalogResponse.setCode(_ctx.stringValue("ListProductCatalogResponse.Code")); listProductCatalogResponse.setSuccess(_ctx.booleanValue("ListProductCatalogResponse.Success")); Model model = new Model(); List<Map<Object, Object>> data = _ctx.listMapValue("ListProductCatalogResponse.Model.Data"); model.setData(data); Paging paging = new Paging(); Cursors cursors = new Cursors(); cursors.setBefore(_ctx.stringValue("ListProductCatalogResponse.Model.Paging.Cursors.Before")); cursors.setAfter(_ctx.stringValue("ListProductCatalogResponse.Model.Paging.Cursors.After")); paging.setCursors(cursors); model.setPaging(paging); listProductCatalogResponse.setModel(model); return listProductCatalogResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ListProductResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ListProductResponse; import com.aliyuncs.cams.model.v20200606.ListProductResponse.Model; import com.aliyuncs.cams.model.v20200606.ListProductResponse.Model.Paging; import com.aliyuncs.cams.model.v20200606.ListProductResponse.Model.Paging.Cursors; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class ListProductResponseUnmarshaller { public static ListProductResponse unmarshall(ListProductResponse listProductResponse, UnmarshallerContext _ctx) { listProductResponse.setRequestId(_ctx.stringValue("ListProductResponse.RequestId")); listProductResponse.setAccessDeniedDetail(_ctx.stringValue("ListProductResponse.AccessDeniedDetail")); listProductResponse.setMessage(_ctx.stringValue("ListProductResponse.Message")); listProductResponse.setCode(_ctx.stringValue("ListProductResponse.Code")); listProductResponse.setSuccess(_ctx.booleanValue("ListProductResponse.Success")); Model model = new Model(); List<Map<Object, Object>> data = _ctx.listMapValue("ListProductResponse.Model.Data"); model.setData(data); Paging paging = new Paging(); Cursors cursors = new Cursors(); cursors.setBefore(_ctx.stringValue("ListProductResponse.Model.Paging.Cursors.Before")); cursors.setAfter(_ctx.stringValue("ListProductResponse.Model.Paging.Cursors.After")); paging.setCursors(cursors); model.setPaging(paging); listProductResponse.setModel(model); return listProductResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ModifyChatappTemplateResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.ModifyChatappTemplateResponse; import com.aliyuncs.cams.model.v20200606.ModifyChatappTemplateResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class ModifyChatappTemplateResponseUnmarshaller { public static ModifyChatappTemplateResponse unmarshall(ModifyChatappTemplateResponse modifyChatappTemplateResponse, UnmarshallerContext _ctx) { modifyChatappTemplateResponse.setRequestId(_ctx.stringValue("ModifyChatappTemplateResponse.RequestId")); modifyChatappTemplateResponse.setCode(_ctx.stringValue("ModifyChatappTemplateResponse.Code")); modifyChatappTemplateResponse.setMessage(_ctx.stringValue("ModifyChatappTemplateResponse.Message")); modifyChatappTemplateResponse.setAccessDeniedDetail(_ctx.stringValue("ModifyChatappTemplateResponse.AccessDeniedDetail")); Data data = new Data(); data.setTemplateCode(_ctx.stringValue("ModifyChatappTemplateResponse.Data.TemplateCode")); data.setTemplateName(_ctx.stringValue("ModifyChatappTemplateResponse.Data.TemplateName")); modifyChatappTemplateResponse.setData(data); return modifyChatappTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ModifyFlowResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.ModifyFlowResponse; import com.aliyuncs.cams.model.v20200606.ModifyFlowResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class ModifyFlowResponseUnmarshaller { public static ModifyFlowResponse unmarshall(ModifyFlowResponse modifyFlowResponse, UnmarshallerContext _ctx) { modifyFlowResponse.setRequestId(_ctx.stringValue("ModifyFlowResponse.RequestId")); modifyFlowResponse.setCode(_ctx.stringValue("ModifyFlowResponse.Code")); modifyFlowResponse.setMessage(_ctx.stringValue("ModifyFlowResponse.Message")); Data data = new Data(); data.setFlowId(_ctx.stringValue("ModifyFlowResponse.Data.FlowId")); data.setFlowName(_ctx.stringValue("ModifyFlowResponse.Data.FlowName")); List<String> categories = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("ModifyFlowResponse.Data.Categories.Length"); i++) { categories.add(_ctx.stringValue("ModifyFlowResponse.Data.Categories["+ i +"]")); } data.setCategories(categories); modifyFlowResponse.setData(data); return modifyFlowResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/ModifyPhoneBusinessProfileResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.ModifyPhoneBusinessProfileResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ModifyPhoneBusinessProfileResponseUnmarshaller { public static ModifyPhoneBusinessProfileResponse unmarshall(ModifyPhoneBusinessProfileResponse modifyPhoneBusinessProfileResponse, UnmarshallerContext _ctx) { modifyPhoneBusinessProfileResponse.setRequestId(_ctx.stringValue("ModifyPhoneBusinessProfileResponse.RequestId")); modifyPhoneBusinessProfileResponse.setAccessDeniedDetail(_ctx.stringValue("ModifyPhoneBusinessProfileResponse.AccessDeniedDetail")); modifyPhoneBusinessProfileResponse.setMessage(_ctx.stringValue("ModifyPhoneBusinessProfileResponse.Message")); modifyPhoneBusinessProfileResponse.setCode(_ctx.stringValue("ModifyPhoneBusinessProfileResponse.Code")); modifyPhoneBusinessProfileResponse.setSuccess(_ctx.booleanValue("ModifyPhoneBusinessProfileResponse.Success")); return modifyPhoneBusinessProfileResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/PublishFlowResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.PublishFlowResponse; import com.aliyuncs.transform.UnmarshallerContext; public class PublishFlowResponseUnmarshaller { public static PublishFlowResponse unmarshall(PublishFlowResponse publishFlowResponse, UnmarshallerContext _ctx) { publishFlowResponse.setRequestId(_ctx.stringValue("PublishFlowResponse.RequestId")); publishFlowResponse.setCode(_ctx.stringValue("PublishFlowResponse.Code")); publishFlowResponse.setMessage(_ctx.stringValue("PublishFlowResponse.Message")); return publishFlowResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/QueryChatappBindWabaResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.QueryChatappBindWabaResponse; import com.aliyuncs.cams.model.v20200606.QueryChatappBindWabaResponse.Data; import java.util.Map; import com.aliyuncs.transform.UnmarshallerContext; public class QueryChatappBindWabaResponseUnmarshaller { public static QueryChatappBindWabaResponse unmarshall(QueryChatappBindWabaResponse queryChatappBindWabaResponse, UnmarshallerContext _ctx) { queryChatappBindWabaResponse.setRequestId(_ctx.stringValue("QueryChatappBindWabaResponse.RequestId")); queryChatappBindWabaResponse.setAccessDeniedDetail(_ctx.stringValue("QueryChatappBindWabaResponse.AccessDeniedDetail")); queryChatappBindWabaResponse.setMessage(_ctx.stringValue("QueryChatappBindWabaResponse.Message")); queryChatappBindWabaResponse.setCode(_ctx.stringValue("QueryChatappBindWabaResponse.Code")); queryChatappBindWabaResponse.setSuccess(_ctx.booleanValue("QueryChatappBindWabaResponse.Success")); Data data = new Data(); data.setAuthInternationalRateEligibility(_ctx.mapValue("QueryChatappBindWabaResponse.Data.AuthInternationalRateEligibility")); data.setBusinessName(_ctx.stringValue("QueryChatappBindWabaResponse.Data.BusinessName")); data.setCurrency(_ctx.stringValue("QueryChatappBindWabaResponse.Data.Currency")); data.setId(_ctx.stringValue("QueryChatappBindWabaResponse.Data.Id")); data.setAccountReviewStatus(_ctx.stringValue("QueryChatappBindWabaResponse.Data.AccountReviewStatus")); data.setMessageTemplateNamespace(_ctx.stringValue("QueryChatappBindWabaResponse.Data.MessageTemplateNamespace")); data.setBusinessId(_ctx.stringValue("QueryChatappBindWabaResponse.Data.BusinessId")); data.setName(_ctx.stringValue("QueryChatappBindWabaResponse.Data.Name")); data.setPrimaryBusinessLocation(_ctx.stringValue("QueryChatappBindWabaResponse.Data.PrimaryBusinessLocation")); queryChatappBindWabaResponse.setData(data); return queryChatappBindWabaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/QueryChatappPhoneNumbersResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.QueryChatappPhoneNumbersResponse; import com.aliyuncs.cams.model.v20200606.QueryChatappPhoneNumbersResponse.PhoneNumbersItem; import com.aliyuncs.transform.UnmarshallerContext; public class QueryChatappPhoneNumbersResponseUnmarshaller { public static QueryChatappPhoneNumbersResponse unmarshall(QueryChatappPhoneNumbersResponse queryChatappPhoneNumbersResponse, UnmarshallerContext _ctx) { queryChatappPhoneNumbersResponse.setRequestId(_ctx.stringValue("QueryChatappPhoneNumbersResponse.RequestId")); queryChatappPhoneNumbersResponse.setCode(_ctx.stringValue("QueryChatappPhoneNumbersResponse.Code")); queryChatappPhoneNumbersResponse.setMessage(_ctx.stringValue("QueryChatappPhoneNumbersResponse.Message")); queryChatappPhoneNumbersResponse.setAccessDeniedDetail(_ctx.stringValue("QueryChatappPhoneNumbersResponse.AccessDeniedDetail")); List<PhoneNumbersItem> phoneNumbers = new ArrayList<PhoneNumbersItem>(); for (int i = 0; i < _ctx.lengthValue("QueryChatappPhoneNumbersResponse.PhoneNumbers.Length"); i++) { PhoneNumbersItem phoneNumbersItem = new PhoneNumbersItem(); phoneNumbersItem.setUpQueue(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].UpQueue")); phoneNumbersItem.setPhoneNumber(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].PhoneNumber")); phoneNumbersItem.setStatusQueue(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].StatusQueue")); phoneNumbersItem.setVerifiedName(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].VerifiedName")); phoneNumbersItem.setStatusCallbackUrl(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].StatusCallbackUrl")); phoneNumbersItem.setUpCallbackUrl(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].UpCallbackUrl")); phoneNumbersItem.setQualityRating(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].QualityRating")); phoneNumbersItem.setStatus(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].Status")); phoneNumbersItem.setCodeVerificationStatus(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].CodeVerificationStatus")); phoneNumbersItem.setNameStatus(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].NameStatus")); phoneNumbersItem.setMessagingLimitTier(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].MessagingLimitTier")); phoneNumbersItem.setNewNameStatus(_ctx.stringValue("QueryChatappPhoneNumbersResponse.PhoneNumbers["+ i +"].NewNameStatus")); phoneNumbers.add(phoneNumbersItem); } queryChatappPhoneNumbersResponse.setPhoneNumbers(phoneNumbers); return queryChatappPhoneNumbersResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/QueryPhoneBusinessProfileResponseUnmarshaller.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.cams.transform.v20200606; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cams.model.v20200606.QueryPhoneBusinessProfileResponse; import com.aliyuncs.cams.model.v20200606.QueryPhoneBusinessProfileResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class QueryPhoneBusinessProfileResponseUnmarshaller { public static QueryPhoneBusinessProfileResponse unmarshall(QueryPhoneBusinessProfileResponse queryPhoneBusinessProfileResponse, UnmarshallerContext _ctx) { queryPhoneBusinessProfileResponse.setRequestId(_ctx.stringValue("QueryPhoneBusinessProfileResponse.RequestId")); queryPhoneBusinessProfileResponse.setAccessDeniedDetail(_ctx.stringValue("QueryPhoneBusinessProfileResponse.AccessDeniedDetail")); queryPhoneBusinessProfileResponse.setMessage(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Message")); queryPhoneBusinessProfileResponse.setCode(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Code")); queryPhoneBusinessProfileResponse.setSuccess(_ctx.booleanValue("QueryPhoneBusinessProfileResponse.Success")); Data data = new Data(); data.setVertical(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.Vertical")); data.setDescription(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.Description")); data.setEmail(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.Email")); data.setAddress(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.Address")); data.setProfilePictureUrl(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.ProfilePictureUrl")); data.setAbout(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.About")); List<String> websites = new ArrayList<String>(); for (int i = 0; i < _ctx.lengthValue("QueryPhoneBusinessProfileResponse.Data.Websites.Length"); i++) { websites.add(_ctx.stringValue("QueryPhoneBusinessProfileResponse.Data.Websites["+ i +"]")); } data.setWebsites(websites); queryPhoneBusinessProfileResponse.setData(data); return queryPhoneBusinessProfileResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/QueryWabaBusinessInfoResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.QueryWabaBusinessInfoResponse; import com.aliyuncs.cams.model.v20200606.QueryWabaBusinessInfoResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class QueryWabaBusinessInfoResponseUnmarshaller { public static QueryWabaBusinessInfoResponse unmarshall(QueryWabaBusinessInfoResponse queryWabaBusinessInfoResponse, UnmarshallerContext _ctx) { queryWabaBusinessInfoResponse.setRequestId(_ctx.stringValue("QueryWabaBusinessInfoResponse.RequestId")); queryWabaBusinessInfoResponse.setAccessDeniedDetail(_ctx.stringValue("QueryWabaBusinessInfoResponse.AccessDeniedDetail")); queryWabaBusinessInfoResponse.setMessage(_ctx.stringValue("QueryWabaBusinessInfoResponse.Message")); queryWabaBusinessInfoResponse.setCode(_ctx.stringValue("QueryWabaBusinessInfoResponse.Code")); queryWabaBusinessInfoResponse.setSuccess(_ctx.booleanValue("QueryWabaBusinessInfoResponse.Success")); Data data = new Data(); data.setVertical(_ctx.stringValue("QueryWabaBusinessInfoResponse.Data.Vertical")); data.setVerificationStatus(_ctx.stringValue("QueryWabaBusinessInfoResponse.Data.VerificationStatus")); data.setBusinessName(_ctx.stringValue("QueryWabaBusinessInfoResponse.Data.BusinessName")); data.setBusinessId(_ctx.stringValue("QueryWabaBusinessInfoResponse.Data.BusinessId")); queryWabaBusinessInfoResponse.setData(data); return queryWabaBusinessInfoResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/SendChatappMassMessageResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.SendChatappMassMessageResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SendChatappMassMessageResponseUnmarshaller { public static SendChatappMassMessageResponse unmarshall(SendChatappMassMessageResponse sendChatappMassMessageResponse, UnmarshallerContext _ctx) { sendChatappMassMessageResponse.setRequestId(_ctx.stringValue("SendChatappMassMessageResponse.RequestId")); sendChatappMassMessageResponse.setCode(_ctx.stringValue("SendChatappMassMessageResponse.Code")); sendChatappMassMessageResponse.setMessage(_ctx.stringValue("SendChatappMassMessageResponse.Message")); sendChatappMassMessageResponse.setGroupMessageId(_ctx.stringValue("SendChatappMassMessageResponse.GroupMessageId")); sendChatappMassMessageResponse.setAccessDeniedDetail(_ctx.stringValue("SendChatappMassMessageResponse.AccessDeniedDetail")); return sendChatappMassMessageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/SendChatappMessageResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.SendChatappMessageResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SendChatappMessageResponseUnmarshaller { public static SendChatappMessageResponse unmarshall(SendChatappMessageResponse sendChatappMessageResponse, UnmarshallerContext _ctx) { sendChatappMessageResponse.setRequestId(_ctx.stringValue("SendChatappMessageResponse.RequestId")); sendChatappMessageResponse.setCode(_ctx.stringValue("SendChatappMessageResponse.Code")); sendChatappMessageResponse.setMessage(_ctx.stringValue("SendChatappMessageResponse.Message")); sendChatappMessageResponse.setMessageId(_ctx.stringValue("SendChatappMessageResponse.MessageId")); return sendChatappMessageResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/SubmitIsvCustomerTermsResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.SubmitIsvCustomerTermsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SubmitIsvCustomerTermsResponseUnmarshaller { public static SubmitIsvCustomerTermsResponse unmarshall(SubmitIsvCustomerTermsResponse submitIsvCustomerTermsResponse, UnmarshallerContext _ctx) { submitIsvCustomerTermsResponse.setRequestId(_ctx.stringValue("SubmitIsvCustomerTermsResponse.RequestId")); submitIsvCustomerTermsResponse.setCode(_ctx.stringValue("SubmitIsvCustomerTermsResponse.Code")); submitIsvCustomerTermsResponse.setMessage(_ctx.stringValue("SubmitIsvCustomerTermsResponse.Message")); submitIsvCustomerTermsResponse.setAccessDeniedDetail(_ctx.stringValue("SubmitIsvCustomerTermsResponse.AccessDeniedDetail")); return submitIsvCustomerTermsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdateAccountWebhookResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdateAccountWebhookResponse; import com.aliyuncs.transform.UnmarshallerContext; public class UpdateAccountWebhookResponseUnmarshaller { public static UpdateAccountWebhookResponse unmarshall(UpdateAccountWebhookResponse updateAccountWebhookResponse, UnmarshallerContext _ctx) { updateAccountWebhookResponse.setRequestId(_ctx.stringValue("UpdateAccountWebhookResponse.RequestId")); updateAccountWebhookResponse.setCode(_ctx.stringValue("UpdateAccountWebhookResponse.Code")); updateAccountWebhookResponse.setMessage(_ctx.stringValue("UpdateAccountWebhookResponse.Message")); updateAccountWebhookResponse.setAccessDeniedDetail(_ctx.stringValue("UpdateAccountWebhookResponse.AccessDeniedDetail")); return updateAccountWebhookResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdateCommerceSettingResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdateCommerceSettingResponse; import com.aliyuncs.transform.UnmarshallerContext; public class UpdateCommerceSettingResponseUnmarshaller { public static UpdateCommerceSettingResponse unmarshall(UpdateCommerceSettingResponse updateCommerceSettingResponse, UnmarshallerContext _ctx) { updateCommerceSettingResponse.setRequestId(_ctx.stringValue("UpdateCommerceSettingResponse.RequestId")); updateCommerceSettingResponse.setAccessDeniedDetail(_ctx.stringValue("UpdateCommerceSettingResponse.AccessDeniedDetail")); updateCommerceSettingResponse.setMessage(_ctx.stringValue("UpdateCommerceSettingResponse.Message")); updateCommerceSettingResponse.setCode(_ctx.stringValue("UpdateCommerceSettingResponse.Code")); updateCommerceSettingResponse.setSuccess(_ctx.booleanValue("UpdateCommerceSettingResponse.Success")); return updateCommerceSettingResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdateConversationalAutomationResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdateConversationalAutomationResponse; import com.aliyuncs.transform.UnmarshallerContext; public class UpdateConversationalAutomationResponseUnmarshaller { public static UpdateConversationalAutomationResponse unmarshall(UpdateConversationalAutomationResponse updateConversationalAutomationResponse, UnmarshallerContext _ctx) { updateConversationalAutomationResponse.setRequestId(_ctx.stringValue("UpdateConversationalAutomationResponse.RequestId")); updateConversationalAutomationResponse.setAccessDeniedDetail(_ctx.stringValue("UpdateConversationalAutomationResponse.AccessDeniedDetail")); updateConversationalAutomationResponse.setMessage(_ctx.stringValue("UpdateConversationalAutomationResponse.Message")); updateConversationalAutomationResponse.setCode(_ctx.stringValue("UpdateConversationalAutomationResponse.Code")); updateConversationalAutomationResponse.setSuccess(_ctx.booleanValue("UpdateConversationalAutomationResponse.Success")); return updateConversationalAutomationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdateFlowJSONAssetResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdateFlowJSONAssetResponse; import com.aliyuncs.cams.model.v20200606.UpdateFlowJSONAssetResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class UpdateFlowJSONAssetResponseUnmarshaller { public static UpdateFlowJSONAssetResponse unmarshall(UpdateFlowJSONAssetResponse updateFlowJSONAssetResponse, UnmarshallerContext _ctx) { updateFlowJSONAssetResponse.setRequestId(_ctx.stringValue("UpdateFlowJSONAssetResponse.RequestId")); updateFlowJSONAssetResponse.setCode(_ctx.stringValue("UpdateFlowJSONAssetResponse.Code")); updateFlowJSONAssetResponse.setMessage(_ctx.stringValue("UpdateFlowJSONAssetResponse.Message")); Data data = new Data(); data.setFlowId(_ctx.stringValue("UpdateFlowJSONAssetResponse.Data.FlowId")); updateFlowJSONAssetResponse.setData(data); return updateFlowJSONAssetResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdatePhoneEncryptionPublicKeyResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdatePhoneEncryptionPublicKeyResponse; import com.aliyuncs.transform.UnmarshallerContext; public class UpdatePhoneEncryptionPublicKeyResponseUnmarshaller { public static UpdatePhoneEncryptionPublicKeyResponse unmarshall(UpdatePhoneEncryptionPublicKeyResponse updatePhoneEncryptionPublicKeyResponse, UnmarshallerContext _ctx) { updatePhoneEncryptionPublicKeyResponse.setRequestId(_ctx.stringValue("UpdatePhoneEncryptionPublicKeyResponse.RequestId")); updatePhoneEncryptionPublicKeyResponse.setCode(_ctx.stringValue("UpdatePhoneEncryptionPublicKeyResponse.Code")); updatePhoneEncryptionPublicKeyResponse.setMessage(_ctx.stringValue("UpdatePhoneEncryptionPublicKeyResponse.Message")); return updatePhoneEncryptionPublicKeyResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdatePhoneMessageQrdlResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdatePhoneMessageQrdlResponse; import com.aliyuncs.cams.model.v20200606.UpdatePhoneMessageQrdlResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class UpdatePhoneMessageQrdlResponseUnmarshaller { public static UpdatePhoneMessageQrdlResponse unmarshall(UpdatePhoneMessageQrdlResponse updatePhoneMessageQrdlResponse, UnmarshallerContext _ctx) { updatePhoneMessageQrdlResponse.setRequestId(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.RequestId")); updatePhoneMessageQrdlResponse.setCode(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Code")); updatePhoneMessageQrdlResponse.setMessage(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Message")); Data data = new Data(); data.setPhoneNumber(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.PhoneNumber")); data.setQrdlCode(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.QrdlCode")); data.setGenerateQrImage(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.GenerateQrImage")); data.setPrefilledMessage(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.PrefilledMessage")); data.setDeepLinkUrl(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.DeepLinkUrl")); data.setQrImageUrl(_ctx.stringValue("UpdatePhoneMessageQrdlResponse.Data.QrImageUrl")); updatePhoneMessageQrdlResponse.setData(data); return updatePhoneMessageQrdlResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform
java-sources/com/aliyun/aliyun-java-sdk-cams/1.0.15/com/aliyuncs/cams/transform/v20200606/UpdatePhoneWebhookResponseUnmarshaller.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.cams.transform.v20200606; import com.aliyuncs.cams.model.v20200606.UpdatePhoneWebhookResponse; import com.aliyuncs.transform.UnmarshallerContext; public class UpdatePhoneWebhookResponseUnmarshaller { public static UpdatePhoneWebhookResponse unmarshall(UpdatePhoneWebhookResponse updatePhoneWebhookResponse, UnmarshallerContext _ctx) { updatePhoneWebhookResponse.setRequestId(_ctx.stringValue("UpdatePhoneWebhookResponse.RequestId")); updatePhoneWebhookResponse.setCode(_ctx.stringValue("UpdatePhoneWebhookResponse.Code")); updatePhoneWebhookResponse.setMessage(_ctx.stringValue("UpdatePhoneWebhookResponse.Message")); updatePhoneWebhookResponse.setAccessDeniedDetail(_ctx.stringValue("UpdatePhoneWebhookResponse.AccessDeniedDetail")); return updatePhoneWebhookResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/model
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/model/v20181009/SayHelloRequest.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.canary_tip.model.v20181009; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class SayHelloRequest extends RpcAcsRequest<SayHelloResponse> { public SayHelloRequest() { super("canary-tip", "2018-10-09", "SayHello"); setMethod(MethodType.POST); } private String name; public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putBodyParameter("Name", name); } } @Override public Class<SayHelloResponse> getResponseClass() { return SayHelloResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/model
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/model/v20181009/SayHelloResponse.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.canary_tip.model.v20181009; import com.aliyuncs.AcsResponse; import com.aliyuncs.canary_tip.transform.v20181009.SayHelloResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SayHelloResponse extends AcsResponse { private String requestId; private String msg; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } @Override public SayHelloResponse getInstance(UnmarshallerContext context) { return SayHelloResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/transform
java-sources/com/aliyun/aliyun-java-sdk-canary-tip/1.0.4/com/aliyuncs/canary_tip/transform/v20181009/SayHelloResponseUnmarshaller.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.canary_tip.transform.v20181009; import com.aliyuncs.canary_tip.model.v20181009.SayHelloResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SayHelloResponseUnmarshaller { public static SayHelloResponse unmarshall(SayHelloResponse sayHelloResponse, UnmarshallerContext context) { sayHelloResponse.setRequestId(context.stringValue("SayHelloResponse.RequestId")); sayHelloResponse.setMsg(context.stringValue("SayHelloResponse.Msg")); return sayHelloResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model/v20230305/VerifyCaptchaRequest.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.captcha.model.v20230305; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class VerifyCaptchaRequest extends RpcAcsRequest<VerifyCaptchaResponse> { private String captchaVerifyParam; public VerifyCaptchaRequest() { super("captcha", "2023-03-05", "VerifyCaptcha"); setMethod(MethodType.POST); } public String getCaptchaVerifyParam() { return this.captchaVerifyParam; } public void setCaptchaVerifyParam(String captchaVerifyParam) { this.captchaVerifyParam = captchaVerifyParam; if(captchaVerifyParam != null){ putQueryParameter("CaptchaVerifyParam", captchaVerifyParam); } } @Override public Class<VerifyCaptchaResponse> getResponseClass() { return VerifyCaptchaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model/v20230305/VerifyCaptchaResponse.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.captcha.model.v20230305; import com.aliyuncs.AcsResponse; import com.aliyuncs.captcha.transform.v20230305.VerifyCaptchaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VerifyCaptchaResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Result result; 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 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 Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean verifyResult; public Boolean getVerifyResult() { return this.verifyResult; } public void setVerifyResult(Boolean verifyResult) { this.verifyResult = verifyResult; } } @Override public VerifyCaptchaResponse getInstance(UnmarshallerContext context) { return VerifyCaptchaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model/v20230305/VerifyIntelligentCaptchaRequest.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.captcha.model.v20230305; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class VerifyIntelligentCaptchaRequest extends RpcAcsRequest<VerifyIntelligentCaptchaResponse> { private String captchaVerifyParam; private String sceneId; public VerifyIntelligentCaptchaRequest() { super("captcha", "2023-03-05", "VerifyIntelligentCaptcha"); setMethod(MethodType.POST); } public String getCaptchaVerifyParam() { return this.captchaVerifyParam; } public void setCaptchaVerifyParam(String captchaVerifyParam) { this.captchaVerifyParam = captchaVerifyParam; if(captchaVerifyParam != null){ putBodyParameter("CaptchaVerifyParam", captchaVerifyParam); } } public String getSceneId() { return this.sceneId; } public void setSceneId(String sceneId) { this.sceneId = sceneId; if(sceneId != null){ putBodyParameter("SceneId", sceneId); } } @Override public Class<VerifyIntelligentCaptchaResponse> getResponseClass() { return VerifyIntelligentCaptchaResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/model/v20230305/VerifyIntelligentCaptchaResponse.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.captcha.model.v20230305; import com.aliyuncs.AcsResponse; import com.aliyuncs.captcha.transform.v20230305.VerifyIntelligentCaptchaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class VerifyIntelligentCaptchaResponse extends AcsResponse { private String requestId; private Boolean success; private String code; private String message; private Result result; 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 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 Result getResult() { return this.result; } public void setResult(Result result) { this.result = result; } public static class Result { private Boolean verifyResult; private String verifyCode; public Boolean getVerifyResult() { return this.verifyResult; } public void setVerifyResult(Boolean verifyResult) { this.verifyResult = verifyResult; } public String getVerifyCode() { return this.verifyCode; } public void setVerifyCode(String verifyCode) { this.verifyCode = verifyCode; } } @Override public VerifyIntelligentCaptchaResponse getInstance(UnmarshallerContext context) { return VerifyIntelligentCaptchaResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/transform
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/transform/v20230305/VerifyCaptchaResponseUnmarshaller.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.captcha.transform.v20230305; import com.aliyuncs.captcha.model.v20230305.VerifyCaptchaResponse; import com.aliyuncs.captcha.model.v20230305.VerifyCaptchaResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class VerifyCaptchaResponseUnmarshaller { public static VerifyCaptchaResponse unmarshall(VerifyCaptchaResponse verifyCaptchaResponse, UnmarshallerContext _ctx) { verifyCaptchaResponse.setRequestId(_ctx.stringValue("VerifyCaptchaResponse.RequestId")); verifyCaptchaResponse.setSuccess(_ctx.booleanValue("VerifyCaptchaResponse.Success")); verifyCaptchaResponse.setCode(_ctx.stringValue("VerifyCaptchaResponse.Code")); verifyCaptchaResponse.setMessage(_ctx.stringValue("VerifyCaptchaResponse.Message")); Result result = new Result(); result.setVerifyResult(_ctx.booleanValue("VerifyCaptchaResponse.Result.VerifyResult")); verifyCaptchaResponse.setResult(result); return verifyCaptchaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/transform
java-sources/com/aliyun/aliyun-java-sdk-captcha/1.0.0/com/aliyuncs/captcha/transform/v20230305/VerifyIntelligentCaptchaResponseUnmarshaller.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.captcha.transform.v20230305; import com.aliyuncs.captcha.model.v20230305.VerifyIntelligentCaptchaResponse; import com.aliyuncs.captcha.model.v20230305.VerifyIntelligentCaptchaResponse.Result; import com.aliyuncs.transform.UnmarshallerContext; public class VerifyIntelligentCaptchaResponseUnmarshaller { public static VerifyIntelligentCaptchaResponse unmarshall(VerifyIntelligentCaptchaResponse verifyIntelligentCaptchaResponse, UnmarshallerContext _ctx) { verifyIntelligentCaptchaResponse.setRequestId(_ctx.stringValue("VerifyIntelligentCaptchaResponse.RequestId")); verifyIntelligentCaptchaResponse.setSuccess(_ctx.booleanValue("VerifyIntelligentCaptchaResponse.Success")); verifyIntelligentCaptchaResponse.setCode(_ctx.stringValue("VerifyIntelligentCaptchaResponse.Code")); verifyIntelligentCaptchaResponse.setMessage(_ctx.stringValue("VerifyIntelligentCaptchaResponse.Message")); Result result = new Result(); result.setVerifyResult(_ctx.booleanValue("VerifyIntelligentCaptchaResponse.Result.VerifyResult")); result.setVerifyCode(_ctx.stringValue("VerifyIntelligentCaptchaResponse.Result.VerifyCode")); verifyIntelligentCaptchaResponse.setResult(result); return verifyIntelligentCaptchaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/CreateDVOrderAuditRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateDVOrderAuditRequest extends RpcAcsRequest<CreateDVOrderAuditResponse> { private String city; private String sourceIp; private String province; private String lang; private String email; private String mobile; private String instanceId; private String domain; private String domainVerifyType; private String username; public CreateDVOrderAuditRequest() { super("cas", "2018-07-13", "CreateDVOrderAudit", "cas"); setMethod(MethodType.POST); } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; if(city != null){ putQueryParameter("City", city); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public String getProvince() { return this.province; } public void setProvince(String province) { this.province = province; if(province != null){ putQueryParameter("Province", province); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public String getMobile() { return this.mobile; } public void setMobile(String mobile) { this.mobile = mobile; if(mobile != null){ putQueryParameter("Mobile", mobile); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; if(domain != null){ putQueryParameter("Domain", domain); } } public String getDomainVerifyType() { return this.domainVerifyType; } public void setDomainVerifyType(String domainVerifyType) { this.domainVerifyType = domainVerifyType; if(domainVerifyType != null){ putQueryParameter("DomainVerifyType", domainVerifyType); } } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; if(username != null){ putQueryParameter("Username", username); } } @Override public Class<CreateDVOrderAuditResponse> getResponseClass() { return CreateDVOrderAuditResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/CreateDVOrderAuditResponse.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.cas.model.v20180713; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.CreateDVOrderAuditResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDVOrderAuditResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateDVOrderAuditResponse getInstance(UnmarshallerContext context) { return CreateDVOrderAuditResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/CreateUserCertificateRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateUserCertificateRequest extends RpcAcsRequest<CreateUserCertificateResponse> { private String cert; private String sourceIp; private String name; private String lang; private String key; public CreateUserCertificateRequest() { super("cas", "2018-07-13", "CreateUserCertificate", "cas"); setMethod(MethodType.POST); } public String getCert() { return this.cert; } public void setCert(String cert) { this.cert = cert; if(cert != null){ putQueryParameter("Cert", cert); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } 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); } } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; if(key != null){ putQueryParameter("Key", key); } } @Override public Class<CreateUserCertificateResponse> getResponseClass() { return CreateUserCertificateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/CreateUserCertificateResponse.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.cas.model.v20180713; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.CreateUserCertificateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateUserCertificateResponse extends AcsResponse { private String requestId; private Long certId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCertId() { return this.certId; } public void setCertId(Long certId) { this.certId = certId; } @Override public CreateUserCertificateResponse getInstance(UnmarshallerContext context) { return CreateUserCertificateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DeleteUserCertificateRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteUserCertificateRequest extends RpcAcsRequest<DeleteUserCertificateResponse> { private Long certId; private String sourceIp; private String lang; public DeleteUserCertificateRequest() { super("cas", "2018-07-13", "DeleteUserCertificate", "cas"); setMethod(MethodType.POST); } public Long getCertId() { return this.certId; } public void setCertId(Long certId) { this.certId = certId; if(certId != null){ putQueryParameter("CertId", certId.toString()); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DeleteUserCertificateResponse> getResponseClass() { return DeleteUserCertificateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DeleteUserCertificateResponse.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.cas.model.v20180713; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.DeleteUserCertificateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteUserCertificateResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteUserCertificateResponse getInstance(UnmarshallerContext context) { return DeleteUserCertificateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeDVOrderResultRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeDVOrderResultRequest extends RpcAcsRequest<DescribeDVOrderResultResponse> { private String instanceId; private String sourceIp; private String lang; public DescribeDVOrderResultRequest() { super("cas", "2018-07-13", "DescribeDVOrderResult", "cas"); setMethod(MethodType.POST); } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDVOrderResultResponse> getResponseClass() { return DescribeDVOrderResultResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeDVOrderResultResponse.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.cas.model.v20180713; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.DescribeDVOrderResultResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDVOrderResultResponse extends AcsResponse { private String requestId; private String orderStatus; private String certificate; private String privateKey; private String checkName; private String checkValue; private String checkType; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getOrderStatus() { return this.orderStatus; } public void setOrderStatus(String orderStatus) { this.orderStatus = orderStatus; } public String getCertificate() { return this.certificate; } public void setCertificate(String certificate) { this.certificate = certificate; } public String getPrivateKey() { return this.privateKey; } public void setPrivateKey(String privateKey) { this.privateKey = privateKey; } public String getCheckName() { return this.checkName; } public void setCheckName(String checkName) { this.checkName = checkName; } public String getCheckValue() { return this.checkValue; } public void setCheckValue(String checkValue) { this.checkValue = checkValue; } public String getCheckType() { return this.checkType; } public void setCheckType(String checkType) { this.checkType = checkType; } @Override public DescribeDVOrderResultResponse getInstance(UnmarshallerContext context) { return DescribeDVOrderResultResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeOrderInstanceListRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeOrderInstanceListRequest extends RpcAcsRequest<DescribeOrderInstanceListResponse> { private String sourceIp; private Integer startIndex; private String lang; public DescribeOrderInstanceListRequest() { super("cas", "2018-07-13", "DescribeOrderInstanceList", "cas"); setMethod(MethodType.POST); } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public Integer getStartIndex() { return this.startIndex; } public void setStartIndex(Integer startIndex) { this.startIndex = startIndex; if(startIndex != null){ putQueryParameter("StartIndex", startIndex.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeOrderInstanceListResponse> getResponseClass() { return DescribeOrderInstanceListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeOrderInstanceListResponse.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.cas.model.v20180713; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.DescribeOrderInstanceListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeOrderInstanceListResponse extends AcsResponse { private String requestId; private Integer totalCount; private List<Order> orderList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<Order> getOrderList() { return this.orderList; } public void setOrderList(List<Order> orderList) { this.orderList = orderList; } public static class Order { private Long id; private String instanceId; private String source; private String status; private String certType; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getCertType() { return this.certType; } public void setCertType(String certType) { this.certType = certType; } } @Override public DescribeOrderInstanceListResponse getInstance(UnmarshallerContext context) { return DescribeOrderInstanceListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeUserCertificateDetailRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeUserCertificateDetailRequest extends RpcAcsRequest<DescribeUserCertificateDetailResponse> { private Long certId; private String sourceIp; private String lang; public DescribeUserCertificateDetailRequest() { super("cas", "2018-07-13", "DescribeUserCertificateDetail", "cas"); setMethod(MethodType.POST); } public Long getCertId() { return this.certId; } public void setCertId(Long certId) { this.certId = certId; if(certId != null){ putQueryParameter("CertId", certId.toString()); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeUserCertificateDetailResponse> getResponseClass() { return DescribeUserCertificateDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeUserCertificateDetailResponse.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.cas.model.v20180713; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.DescribeUserCertificateDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserCertificateDetailResponse extends AcsResponse { private String requestId; private Long id; private String name; private String common; private String fingerprint; private String issuer; private String orgName; private String province; private String city; private String country; private String startDate; private String endDate; private String sans; private Boolean expired; private Boolean buyInAliyun; private String cert; private String key; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getCommon() { return this.common; } public void setCommon(String common) { this.common = common; } public String getFingerprint() { return this.fingerprint; } public void setFingerprint(String fingerprint) { this.fingerprint = fingerprint; } public String getIssuer() { return this.issuer; } public void setIssuer(String issuer) { this.issuer = issuer; } public String getOrgName() { return this.orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public String getProvince() { return this.province; } public void setProvince(String province) { this.province = province; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public String getSans() { return this.sans; } public void setSans(String sans) { this.sans = sans; } public Boolean getExpired() { return this.expired; } public void setExpired(Boolean expired) { this.expired = expired; } public Boolean getBuyInAliyun() { return this.buyInAliyun; } public void setBuyInAliyun(Boolean buyInAliyun) { this.buyInAliyun = buyInAliyun; } public String getCert() { return this.cert; } public void setCert(String cert) { this.cert = cert; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } @Override public DescribeUserCertificateDetailResponse getInstance(UnmarshallerContext context) { return DescribeUserCertificateDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeUserCertificateListRequest.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.cas.model.v20180713; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeUserCertificateListRequest extends RpcAcsRequest<DescribeUserCertificateListResponse> { private Integer showSize; private Integer currentPage; private String sourceIp; private String lang; public DescribeUserCertificateListRequest() { super("cas", "2018-07-13", "DescribeUserCertificateList", "cas"); setMethod(MethodType.POST); } public Integer getShowSize() { return this.showSize; } public void setShowSize(Integer showSize) { this.showSize = showSize; if(showSize != null){ putQueryParameter("ShowSize", showSize.toString()); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; if(sourceIp != null){ putQueryParameter("SourceIp", sourceIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeUserCertificateListResponse> getResponseClass() { return DescribeUserCertificateListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/model/v20180713/DescribeUserCertificateListResponse.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.cas.model.v20180713; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cas.transform.v20180713.DescribeUserCertificateListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeUserCertificateListResponse extends AcsResponse { private String requestId; private Integer totalCount; private Integer showSize; private Integer currentPage; private List<Certificate> certificateList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Integer getShowSize() { return this.showSize; } public void setShowSize(Integer showSize) { this.showSize = showSize; } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; } public List<Certificate> getCertificateList() { return this.certificateList; } public void setCertificateList(List<Certificate> certificateList) { this.certificateList = certificateList; } public static class Certificate { private Long id; private String name; private String common; private String fingerprint; private String issuer; private String orgName; private String province; private String city; private String country; private String startDate; private String endDate; private String sans; private Boolean expired; private Boolean buyInAliyun; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getCommon() { return this.common; } public void setCommon(String common) { this.common = common; } public String getFingerprint() { return this.fingerprint; } public void setFingerprint(String fingerprint) { this.fingerprint = fingerprint; } public String getIssuer() { return this.issuer; } public void setIssuer(String issuer) { this.issuer = issuer; } public String getOrgName() { return this.orgName; } public void setOrgName(String orgName) { this.orgName = orgName; } public String getProvince() { return this.province; } public void setProvince(String province) { this.province = province; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public String getSans() { return this.sans; } public void setSans(String sans) { this.sans = sans; } public Boolean getExpired() { return this.expired; } public void setExpired(Boolean expired) { this.expired = expired; } public Boolean getBuyInAliyun() { return this.buyInAliyun; } public void setBuyInAliyun(Boolean buyInAliyun) { this.buyInAliyun = buyInAliyun; } } @Override public DescribeUserCertificateListResponse getInstance(UnmarshallerContext context) { return DescribeUserCertificateListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/CreateDVOrderAuditResponseUnmarshaller.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.cas.transform.v20180713; import com.aliyuncs.cas.model.v20180713.CreateDVOrderAuditResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateDVOrderAuditResponseUnmarshaller { public static CreateDVOrderAuditResponse unmarshall(CreateDVOrderAuditResponse createDVOrderAuditResponse, UnmarshallerContext _ctx) { createDVOrderAuditResponse.setRequestId(_ctx.stringValue("CreateDVOrderAuditResponse.RequestId")); return createDVOrderAuditResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/CreateUserCertificateResponseUnmarshaller.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.cas.transform.v20180713; import com.aliyuncs.cas.model.v20180713.CreateUserCertificateResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateUserCertificateResponseUnmarshaller { public static CreateUserCertificateResponse unmarshall(CreateUserCertificateResponse createUserCertificateResponse, UnmarshallerContext _ctx) { createUserCertificateResponse.setRequestId(_ctx.stringValue("CreateUserCertificateResponse.RequestId")); createUserCertificateResponse.setCertId(_ctx.longValue("CreateUserCertificateResponse.CertId")); return createUserCertificateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/DeleteUserCertificateResponseUnmarshaller.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.cas.transform.v20180713; import com.aliyuncs.cas.model.v20180713.DeleteUserCertificateResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteUserCertificateResponseUnmarshaller { public static DeleteUserCertificateResponse unmarshall(DeleteUserCertificateResponse deleteUserCertificateResponse, UnmarshallerContext _ctx) { deleteUserCertificateResponse.setRequestId(_ctx.stringValue("DeleteUserCertificateResponse.RequestId")); return deleteUserCertificateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/DescribeDVOrderResultResponseUnmarshaller.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.cas.transform.v20180713; import com.aliyuncs.cas.model.v20180713.DescribeDVOrderResultResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeDVOrderResultResponseUnmarshaller { public static DescribeDVOrderResultResponse unmarshall(DescribeDVOrderResultResponse describeDVOrderResultResponse, UnmarshallerContext _ctx) { describeDVOrderResultResponse.setRequestId(_ctx.stringValue("DescribeDVOrderResultResponse.RequestId")); describeDVOrderResultResponse.setOrderStatus(_ctx.stringValue("DescribeDVOrderResultResponse.OrderStatus")); describeDVOrderResultResponse.setCertificate(_ctx.stringValue("DescribeDVOrderResultResponse.Certificate")); describeDVOrderResultResponse.setPrivateKey(_ctx.stringValue("DescribeDVOrderResultResponse.PrivateKey")); describeDVOrderResultResponse.setCheckName(_ctx.stringValue("DescribeDVOrderResultResponse.CheckName")); describeDVOrderResultResponse.setCheckValue(_ctx.stringValue("DescribeDVOrderResultResponse.CheckValue")); describeDVOrderResultResponse.setCheckType(_ctx.stringValue("DescribeDVOrderResultResponse.CheckType")); return describeDVOrderResultResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/DescribeOrderInstanceListResponseUnmarshaller.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.cas.transform.v20180713; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cas.model.v20180713.DescribeOrderInstanceListResponse; import com.aliyuncs.cas.model.v20180713.DescribeOrderInstanceListResponse.Order; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeOrderInstanceListResponseUnmarshaller { public static DescribeOrderInstanceListResponse unmarshall(DescribeOrderInstanceListResponse describeOrderInstanceListResponse, UnmarshallerContext _ctx) { describeOrderInstanceListResponse.setRequestId(_ctx.stringValue("DescribeOrderInstanceListResponse.RequestId")); describeOrderInstanceListResponse.setTotalCount(_ctx.integerValue("DescribeOrderInstanceListResponse.TotalCount")); List<Order> orderList = new ArrayList<Order>(); for (int i = 0; i < _ctx.lengthValue("DescribeOrderInstanceListResponse.OrderList.Length"); i++) { Order order = new Order(); order.setId(_ctx.longValue("DescribeOrderInstanceListResponse.OrderList["+ i +"].Id")); order.setInstanceId(_ctx.stringValue("DescribeOrderInstanceListResponse.OrderList["+ i +"].InstanceId")); order.setSource(_ctx.stringValue("DescribeOrderInstanceListResponse.OrderList["+ i +"].Source")); order.setStatus(_ctx.stringValue("DescribeOrderInstanceListResponse.OrderList["+ i +"].Status")); order.setCertType(_ctx.stringValue("DescribeOrderInstanceListResponse.OrderList["+ i +"].CertType")); orderList.add(order); } describeOrderInstanceListResponse.setOrderList(orderList); return describeOrderInstanceListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/DescribeUserCertificateDetailResponseUnmarshaller.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.cas.transform.v20180713; import com.aliyuncs.cas.model.v20180713.DescribeUserCertificateDetailResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeUserCertificateDetailResponseUnmarshaller { public static DescribeUserCertificateDetailResponse unmarshall(DescribeUserCertificateDetailResponse describeUserCertificateDetailResponse, UnmarshallerContext _ctx) { describeUserCertificateDetailResponse.setRequestId(_ctx.stringValue("DescribeUserCertificateDetailResponse.RequestId")); describeUserCertificateDetailResponse.setId(_ctx.longValue("DescribeUserCertificateDetailResponse.Id")); describeUserCertificateDetailResponse.setName(_ctx.stringValue("DescribeUserCertificateDetailResponse.Name")); describeUserCertificateDetailResponse.setCommon(_ctx.stringValue("DescribeUserCertificateDetailResponse.Common")); describeUserCertificateDetailResponse.setFingerprint(_ctx.stringValue("DescribeUserCertificateDetailResponse.Fingerprint")); describeUserCertificateDetailResponse.setIssuer(_ctx.stringValue("DescribeUserCertificateDetailResponse.Issuer")); describeUserCertificateDetailResponse.setOrgName(_ctx.stringValue("DescribeUserCertificateDetailResponse.OrgName")); describeUserCertificateDetailResponse.setProvince(_ctx.stringValue("DescribeUserCertificateDetailResponse.Province")); describeUserCertificateDetailResponse.setCity(_ctx.stringValue("DescribeUserCertificateDetailResponse.City")); describeUserCertificateDetailResponse.setCountry(_ctx.stringValue("DescribeUserCertificateDetailResponse.Country")); describeUserCertificateDetailResponse.setStartDate(_ctx.stringValue("DescribeUserCertificateDetailResponse.StartDate")); describeUserCertificateDetailResponse.setEndDate(_ctx.stringValue("DescribeUserCertificateDetailResponse.EndDate")); describeUserCertificateDetailResponse.setSans(_ctx.stringValue("DescribeUserCertificateDetailResponse.Sans")); describeUserCertificateDetailResponse.setExpired(_ctx.booleanValue("DescribeUserCertificateDetailResponse.Expired")); describeUserCertificateDetailResponse.setBuyInAliyun(_ctx.booleanValue("DescribeUserCertificateDetailResponse.BuyInAliyun")); describeUserCertificateDetailResponse.setCert(_ctx.stringValue("DescribeUserCertificateDetailResponse.Cert")); describeUserCertificateDetailResponse.setKey(_ctx.stringValue("DescribeUserCertificateDetailResponse.Key")); return describeUserCertificateDetailResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform
java-sources/com/aliyun/aliyun-java-sdk-cas/20180713_0114/com/aliyuncs/cas/transform/v20180713/DescribeUserCertificateListResponseUnmarshaller.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.cas.transform.v20180713; import java.util.ArrayList; import java.util.List; import com.aliyuncs.cas.model.v20180713.DescribeUserCertificateListResponse; import com.aliyuncs.cas.model.v20180713.DescribeUserCertificateListResponse.Certificate; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeUserCertificateListResponseUnmarshaller { public static DescribeUserCertificateListResponse unmarshall(DescribeUserCertificateListResponse describeUserCertificateListResponse, UnmarshallerContext _ctx) { describeUserCertificateListResponse.setRequestId(_ctx.stringValue("DescribeUserCertificateListResponse.RequestId")); describeUserCertificateListResponse.setTotalCount(_ctx.integerValue("DescribeUserCertificateListResponse.TotalCount")); describeUserCertificateListResponse.setShowSize(_ctx.integerValue("DescribeUserCertificateListResponse.ShowSize")); describeUserCertificateListResponse.setCurrentPage(_ctx.integerValue("DescribeUserCertificateListResponse.CurrentPage")); List<Certificate> certificateList = new ArrayList<Certificate>(); for (int i = 0; i < _ctx.lengthValue("DescribeUserCertificateListResponse.CertificateList.Length"); i++) { Certificate certificate = new Certificate(); certificate.setId(_ctx.longValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].id")); certificate.setName(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].name")); certificate.setCommon(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].common")); certificate.setFingerprint(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].fingerprint")); certificate.setIssuer(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].issuer")); certificate.setOrgName(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].orgName")); certificate.setProvince(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].province")); certificate.setCity(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].city")); certificate.setCountry(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].country")); certificate.setStartDate(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].startDate")); certificate.setEndDate(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].endDate")); certificate.setSans(_ctx.stringValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].sans")); certificate.setExpired(_ctx.booleanValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].expired")); certificate.setBuyInAliyun(_ctx.booleanValue("DescribeUserCertificateListResponse.CertificateList["+ i +"].buyInAliyun")); certificateList.add(certificate); } describeUserCertificateListResponse.setCertificateList(certificateList); return describeUserCertificateListResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/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.cassandra; 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-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/AllocatePublicContactPointsRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class AllocatePublicContactPointsRequest extends RpcAcsRequest<AllocatePublicContactPointsResponse> { private String clientToken; private String dataCenterId; private String clusterId; public AllocatePublicContactPointsRequest() { super("Cassandra", "2019-01-01", "AllocatePublicContactPoints", "Cassandra"); 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 getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<AllocatePublicContactPointsResponse> getResponseClass() { return AllocatePublicContactPointsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/AllocatePublicContactPointsResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.AllocatePublicContactPointsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AllocatePublicContactPointsResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public AllocatePublicContactPointsResponse getInstance(UnmarshallerContext context) { return AllocatePublicContactPointsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateBackupPlanRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class CreateBackupPlanRequest extends RpcAcsRequest<CreateBackupPlanResponse> { private String clientToken; private Integer retentionPeriod; private String dataCenterId; private Boolean active; private String clusterId; private String backupTime; private String backupPeriod; public CreateBackupPlanRequest() { super("Cassandra", "2019-01-01", "CreateBackupPlan", "Cassandra"); 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 getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public Integer getRetentionPeriod() { return this.retentionPeriod; } public void setRetentionPeriod(Integer retentionPeriod) { this.retentionPeriod = retentionPeriod; if(retentionPeriod != null){ putQueryParameter("RetentionPeriod", retentionPeriod.toString()); } } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public Boolean getActive() { return this.active; } public void setActive(Boolean active) { this.active = active; if(active != null){ putQueryParameter("Active", active.toString()); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getBackupTime() { return this.backupTime; } public void setBackupTime(String backupTime) { this.backupTime = backupTime; if(backupTime != null){ putQueryParameter("BackupTime", backupTime); } } public String getBackupPeriod() { return this.backupPeriod; } public void setBackupPeriod(String backupPeriod) { this.backupPeriod = backupPeriod; if(backupPeriod != null){ putQueryParameter("BackupPeriod", backupPeriod); } } @Override public Class<CreateBackupPlanResponse> getResponseClass() { return CreateBackupPlanResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateBackupPlanResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.CreateBackupPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateBackupPlanResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateBackupPlanResponse getInstance(UnmarshallerContext context) { return CreateBackupPlanResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateClusterRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class CreateClusterRequest extends RpcAcsRequest<CreateClusterResponse> { private String clientToken; private String clusterName; private String resourceGroupId; private String password; private String instanceType; private Integer autoRenewPeriod; private Integer period; private String majorVersion; private Integer diskSize; private String diskType; private String vswitchId; private String periodUnit; private Boolean autoRenew; private String dataCenterName; private Integer nodeCount; private String vpcId; private String zoneId; private String payType; public CreateClusterRequest() { super("Cassandra", "2019-01-01", "CreateCluster", "Cassandra"); 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 getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; if(clusterName != null){ putQueryParameter("ClusterName", clusterName); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; if(instanceType != null){ putQueryParameter("InstanceType", instanceType); } } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; if(autoRenewPeriod != null){ putQueryParameter("AutoRenewPeriod", autoRenewPeriod.toString()); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public String getMajorVersion() { return this.majorVersion; } public void setMajorVersion(String majorVersion) { this.majorVersion = majorVersion; if(majorVersion != null){ putQueryParameter("MajorVersion", majorVersion); } } public Integer getDiskSize() { return this.diskSize; } public void setDiskSize(Integer diskSize) { this.diskSize = diskSize; if(diskSize != null){ putQueryParameter("DiskSize", diskSize.toString()); } } public String getDiskType() { return this.diskType; } public void setDiskType(String diskType) { this.diskType = diskType; if(diskType != null){ putQueryParameter("DiskType", diskType); } } public String getVswitchId() { return this.vswitchId; } public void setVswitchId(String vswitchId) { this.vswitchId = vswitchId; if(vswitchId != null){ putQueryParameter("VswitchId", vswitchId); } } public String getPeriodUnit() { return this.periodUnit; } public void setPeriodUnit(String periodUnit) { this.periodUnit = periodUnit; if(periodUnit != null){ putQueryParameter("PeriodUnit", periodUnit); } } public Boolean getAutoRenew() { return this.autoRenew; } public void setAutoRenew(Boolean autoRenew) { this.autoRenew = autoRenew; if(autoRenew != null){ putQueryParameter("AutoRenew", autoRenew.toString()); } } public String getDataCenterName() { return this.dataCenterName; } public void setDataCenterName(String dataCenterName) { this.dataCenterName = dataCenterName; if(dataCenterName != null){ putQueryParameter("DataCenterName", dataCenterName); } } public Integer getNodeCount() { return this.nodeCount; } public void setNodeCount(Integer nodeCount) { this.nodeCount = nodeCount; if(nodeCount != null){ putQueryParameter("NodeCount", nodeCount.toString()); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; if(zoneId != null){ putQueryParameter("ZoneId", zoneId); } } public String getPayType() { return this.payType; } public void setPayType(String payType) { this.payType = payType; if(payType != null){ putQueryParameter("PayType", payType); } } @Override public Class<CreateClusterResponse> getResponseClass() { return CreateClusterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateClusterResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.CreateClusterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateClusterResponse extends AcsResponse { private String requestId; private String clusterId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } @Override public CreateClusterResponse getInstance(UnmarshallerContext context) { return CreateClusterResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateDataCenterRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class CreateDataCenterRequest extends RpcAcsRequest<CreateDataCenterResponse> { private String clientToken; private String instanceType; private Integer autoRenewPeriod; private Integer period; private Integer diskSize; private String clusterId; private String diskType; private String vswitchId; private String periodUnit; private Boolean autoRenew; private String dataCenterName; private Integer nodeCount; private String vpcId; private String zoneId; private String payType; public CreateDataCenterRequest() { super("Cassandra", "2019-01-01", "CreateDataCenter", "Cassandra"); 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 getClientToken() { return this.clientToken; } public void setClientToken(String clientToken) { this.clientToken = clientToken; if(clientToken != null){ putQueryParameter("ClientToken", clientToken); } } public String getInstanceType() { return this.instanceType; } public void setInstanceType(String instanceType) { this.instanceType = instanceType; if(instanceType != null){ putQueryParameter("InstanceType", instanceType); } } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; if(autoRenewPeriod != null){ putQueryParameter("AutoRenewPeriod", autoRenewPeriod.toString()); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public Integer getDiskSize() { return this.diskSize; } public void setDiskSize(Integer diskSize) { this.diskSize = diskSize; if(diskSize != null){ putQueryParameter("DiskSize", diskSize.toString()); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getDiskType() { return this.diskType; } public void setDiskType(String diskType) { this.diskType = diskType; if(diskType != null){ putQueryParameter("DiskType", diskType); } } public String getVswitchId() { return this.vswitchId; } public void setVswitchId(String vswitchId) { this.vswitchId = vswitchId; if(vswitchId != null){ putQueryParameter("VswitchId", vswitchId); } } public String getPeriodUnit() { return this.periodUnit; } public void setPeriodUnit(String periodUnit) { this.periodUnit = periodUnit; if(periodUnit != null){ putQueryParameter("PeriodUnit", periodUnit); } } public Boolean getAutoRenew() { return this.autoRenew; } public void setAutoRenew(Boolean autoRenew) { this.autoRenew = autoRenew; if(autoRenew != null){ putQueryParameter("AutoRenew", autoRenew.toString()); } } public String getDataCenterName() { return this.dataCenterName; } public void setDataCenterName(String dataCenterName) { this.dataCenterName = dataCenterName; if(dataCenterName != null){ putQueryParameter("DataCenterName", dataCenterName); } } public Integer getNodeCount() { return this.nodeCount; } public void setNodeCount(Integer nodeCount) { this.nodeCount = nodeCount; if(nodeCount != null){ putQueryParameter("NodeCount", nodeCount.toString()); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; if(zoneId != null){ putQueryParameter("ZoneId", zoneId); } } public String getPayType() { return this.payType; } public void setPayType(String payType) { this.payType = payType; if(payType != null){ putQueryParameter("PayType", payType); } } @Override public Class<CreateDataCenterResponse> getResponseClass() { return CreateDataCenterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/CreateDataCenterResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.CreateDataCenterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDataCenterResponse extends AcsResponse { private String requestId; private String dataCenterId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } @Override public CreateDataCenterResponse getInstance(UnmarshallerContext context) { return CreateDataCenterResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteBackupPlanRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DeleteBackupPlanRequest extends RpcAcsRequest<DeleteBackupPlanResponse> { private String dataCenterId; private String clusterId; public DeleteBackupPlanRequest() { super("Cassandra", "2019-01-01", "DeleteBackupPlan", "Cassandra"); 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 getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DeleteBackupPlanResponse> getResponseClass() { return DeleteBackupPlanResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteBackupPlanResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DeleteBackupPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteBackupPlanResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteBackupPlanResponse getInstance(UnmarshallerContext context) { return DeleteBackupPlanResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteClusterRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DeleteClusterRequest extends RpcAcsRequest<DeleteClusterResponse> { private String clusterId; public DeleteClusterRequest() { super("Cassandra", "2019-01-01", "DeleteCluster", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DeleteClusterResponse> getResponseClass() { return DeleteClusterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteClusterResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DeleteClusterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteClusterResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteClusterResponse getInstance(UnmarshallerContext context) { return DeleteClusterResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteDataCenterRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DeleteDataCenterRequest extends RpcAcsRequest<DeleteDataCenterResponse> { private String dataCenterId; private String clusterId; public DeleteDataCenterRequest() { super("Cassandra", "2019-01-01", "DeleteDataCenter", "Cassandra"); 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 getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DeleteDataCenterResponse> getResponseClass() { return DeleteDataCenterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteDataCenterResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DeleteDataCenterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteDataCenterResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteDataCenterResponse getInstance(UnmarshallerContext context) { return DeleteDataCenterResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteNodeToolExecutionHistoryRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DeleteNodeToolExecutionHistoryRequest extends RpcAcsRequest<DeleteNodeToolExecutionHistoryResponse> { private String dataCenterId; private String clusterId; private String jobId; public DeleteNodeToolExecutionHistoryRequest() { super("Cassandra", "2019-01-01", "DeleteNodeToolExecutionHistory", "Cassandra"); 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 getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; if(jobId != null){ putQueryParameter("JobId", jobId); } } @Override public Class<DeleteNodeToolExecutionHistoryResponse> getResponseClass() { return DeleteNodeToolExecutionHistoryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DeleteNodeToolExecutionHistoryResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DeleteNodeToolExecutionHistoryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteNodeToolExecutionHistoryResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteNodeToolExecutionHistoryResponse getInstance(UnmarshallerContext context) { return DeleteNodeToolExecutionHistoryResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeAccountsRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeAccountsRequest extends RpcAcsRequest<DescribeAccountsResponse> { private String clusterId; public DescribeAccountsRequest() { super("Cassandra", "2019-01-01", "DescribeAccounts", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeAccountsResponse> getResponseClass() { return DescribeAccountsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeAccountsResponse.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.cassandra.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeAccountsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeAccountsResponse extends AcsResponse { private String requestId; private List<Account> accounts; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Account> getAccounts() { return this.accounts; } public void setAccounts(List<Account> accounts) { this.accounts = accounts; } public static class Account { private String name; public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public DescribeAccountsResponse getInstance(UnmarshallerContext context) { return DescribeAccountsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupPlanRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeBackupPlanRequest extends RpcAcsRequest<DescribeBackupPlanResponse> { private String dataCenterId; private String clusterId; public DescribeBackupPlanRequest() { super("Cassandra", "2019-01-01", "DescribeBackupPlan", "Cassandra"); 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 getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeBackupPlanResponse> getResponseClass() { return DescribeBackupPlanResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupPlanResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeBackupPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBackupPlanResponse extends AcsResponse { private String requestId; private BackupPlan backupPlan; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public BackupPlan getBackupPlan() { return this.backupPlan; } public void setBackupPlan(BackupPlan backupPlan) { this.backupPlan = backupPlan; } public static class BackupPlan { private String clusterId; private String dataCenterId; private String createdTime; private String backupTime; private String backupPeriod; private Integer retentionPeriod; private Boolean active; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getBackupTime() { return this.backupTime; } public void setBackupTime(String backupTime) { this.backupTime = backupTime; } public String getBackupPeriod() { return this.backupPeriod; } public void setBackupPeriod(String backupPeriod) { this.backupPeriod = backupPeriod; } public Integer getRetentionPeriod() { return this.retentionPeriod; } public void setRetentionPeriod(Integer retentionPeriod) { this.retentionPeriod = retentionPeriod; } public Boolean getActive() { return this.active; } public void setActive(Boolean active) { this.active = active; } } @Override public DescribeBackupPlanResponse getInstance(UnmarshallerContext context) { return DescribeBackupPlanResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupPlansRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeBackupPlansRequest extends RpcAcsRequest<DescribeBackupPlansResponse> { private String clusterId; public DescribeBackupPlansRequest() { super("Cassandra", "2019-01-01", "DescribeBackupPlans", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeBackupPlansResponse> getResponseClass() { return DescribeBackupPlansResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupPlansResponse.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.cassandra.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeBackupPlansResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBackupPlansResponse extends AcsResponse { private String requestId; private List<BackupPlan> backupPlans; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<BackupPlan> getBackupPlans() { return this.backupPlans; } public void setBackupPlans(List<BackupPlan> backupPlans) { this.backupPlans = backupPlans; } public static class BackupPlan { private String clusterId; private String dataCenterId; private String createdTime; private String backupTime; private String backupPeriod; private Integer retentionPeriod; private Boolean active; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getBackupTime() { return this.backupTime; } public void setBackupTime(String backupTime) { this.backupTime = backupTime; } public String getBackupPeriod() { return this.backupPeriod; } public void setBackupPeriod(String backupPeriod) { this.backupPeriod = backupPeriod; } public Integer getRetentionPeriod() { return this.retentionPeriod; } public void setRetentionPeriod(Integer retentionPeriod) { this.retentionPeriod = retentionPeriod; } public Boolean getActive() { return this.active; } public void setActive(Boolean active) { this.active = active; } } @Override public DescribeBackupPlansResponse getInstance(UnmarshallerContext context) { return DescribeBackupPlansResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeBackupRequest extends RpcAcsRequest<DescribeBackupResponse> { private String backupType; private String backupId; private String dataCenterId; private String clusterId; public DescribeBackupRequest() { super("Cassandra", "2019-01-01", "DescribeBackup", "Cassandra"); 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 getBackupType() { return this.backupType; } public void setBackupType(String backupType) { this.backupType = backupType; if(backupType != null){ putQueryParameter("BackupType", backupType); } } public String getBackupId() { return this.backupId; } public void setBackupId(String backupId) { this.backupId = backupId; if(backupId != null){ putQueryParameter("BackupId", backupId); } } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeBackupResponse> getResponseClass() { return DescribeBackupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeBackupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBackupResponse extends AcsResponse { private String requestId; private Backup backup; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Backup getBackup() { return this.backup; } public void setBackup(Backup backup) { this.backup = backup; } public static class Backup { private String clusterId; private String dataCenterId; private String backupId; private String backupType; private String status; private String startTime; private String endTime; private Long size; private String details; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } public String getBackupId() { return this.backupId; } public void setBackupId(String backupId) { this.backupId = backupId; } public String getBackupType() { return this.backupType; } public void setBackupType(String backupType) { this.backupType = backupType; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } public String getDetails() { return this.details; } public void setDetails(String details) { this.details = details; } } @Override public DescribeBackupResponse getInstance(UnmarshallerContext context) { return DescribeBackupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupsRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeBackupsRequest extends RpcAcsRequest<DescribeBackupsResponse> { private String dataCenterId; private String clusterId; private String backupType; public DescribeBackupsRequest() { super("Cassandra", "2019-01-01", "DescribeBackups", "Cassandra"); 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 getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; if(dataCenterId != null){ putQueryParameter("DataCenterId", dataCenterId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getBackupType() { return this.backupType; } public void setBackupType(String backupType) { this.backupType = backupType; if(backupType != null){ putQueryParameter("BackupType", backupType); } } @Override public Class<DescribeBackupsResponse> getResponseClass() { return DescribeBackupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeBackupsResponse.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.cassandra.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeBackupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBackupsResponse extends AcsResponse { private String requestId; private List<Backup> backups; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Backup> getBackups() { return this.backups; } public void setBackups(List<Backup> backups) { this.backups = backups; } public static class Backup { private String clusterId; private String dataCenterId; private String backupId; private String backupType; private String status; private String startTime; private String endTime; private Long size; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } public String getBackupId() { return this.backupId; } public void setBackupId(String backupId) { this.backupId = backupId; } public String getBackupType() { return this.backupType; } public void setBackupType(String backupType) { this.backupType = backupType; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public Long getSize() { return this.size; } public void setSize(Long size) { this.size = size; } } @Override public DescribeBackupsResponse getInstance(UnmarshallerContext context) { return DescribeBackupsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterDashboardRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeClusterDashboardRequest extends RpcAcsRequest<DescribeClusterDashboardResponse> { private String clusterId; public DescribeClusterDashboardRequest() { super("Cassandra", "2019-01-01", "DescribeClusterDashboard", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeClusterDashboardResponse> getResponseClass() { return DescribeClusterDashboardResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterDashboardResponse.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.cassandra.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeClusterDashboardResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeClusterDashboardResponse extends AcsResponse { private String requestId; private Dashboard dashboard; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Dashboard getDashboard() { return this.dashboard; } public void setDashboard(Dashboard dashboard) { this.dashboard = dashboard; } public static class Dashboard { private String clusterId; private List<DataCenter> dataCenters; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public List<DataCenter> getDataCenters() { return this.dataCenters; } public void setDataCenters(List<DataCenter> dataCenters) { this.dataCenters = dataCenters; } public static class DataCenter { private String dataCenterId; private List<Node> nodes; public String getDataCenterId() { return this.dataCenterId; } public void setDataCenterId(String dataCenterId) { this.dataCenterId = dataCenterId; } public List<Node> getNodes() { return this.nodes; } public void setNodes(List<Node> nodes) { this.nodes = nodes; } public static class Node { private String address; private String status; private String load; public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getLoad() { return this.load; } public void setLoad(String load) { this.load = load; } } } } @Override public DescribeClusterDashboardResponse getInstance(UnmarshallerContext context) { return DescribeClusterDashboardResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeClusterRequest extends RpcAcsRequest<DescribeClusterResponse> { private String clusterId; public DescribeClusterRequest() { super("Cassandra", "2019-01-01", "DescribeCluster", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeClusterResponse> getResponseClass() { return DescribeClusterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterResponse.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.cassandra.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeClusterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeClusterResponse extends AcsResponse { private String requestId; private Cluster cluster; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Cluster getCluster() { return this.cluster; } public void setCluster(Cluster cluster) { this.cluster = cluster; } public static class Cluster { private String clusterId; private String clusterName; private String status; private String payType; private String createdTime; private String expireTime; private String majorVersion; private String minorVersion; private Integer dataCenterCount; private Boolean isLatestVersion; private String maintainStartTime; private String maintainEndTime; private String lockMode; private Boolean autoRenewal; private Integer autoRenewPeriod; private String resourceGroupId; private List<Tag> tags; public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getPayType() { return this.payType; } public void setPayType(String payType) { this.payType = payType; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public String getMajorVersion() { return this.majorVersion; } public void setMajorVersion(String majorVersion) { this.majorVersion = majorVersion; } public String getMinorVersion() { return this.minorVersion; } public void setMinorVersion(String minorVersion) { this.minorVersion = minorVersion; } public Integer getDataCenterCount() { return this.dataCenterCount; } public void setDataCenterCount(Integer dataCenterCount) { this.dataCenterCount = dataCenterCount; } public Boolean getIsLatestVersion() { return this.isLatestVersion; } public void setIsLatestVersion(Boolean isLatestVersion) { this.isLatestVersion = isLatestVersion; } public String getMaintainStartTime() { return this.maintainStartTime; } public void setMaintainStartTime(String maintainStartTime) { this.maintainStartTime = maintainStartTime; } public String getMaintainEndTime() { return this.maintainEndTime; } public void setMaintainEndTime(String maintainEndTime) { this.maintainEndTime = maintainEndTime; } public String getLockMode() { return this.lockMode; } public void setLockMode(String lockMode) { this.lockMode = lockMode; } public Boolean getAutoRenewal() { return this.autoRenewal; } public void setAutoRenewal(Boolean autoRenewal) { this.autoRenewal = autoRenewal; } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public static class Tag { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public DescribeClusterResponse getInstance(UnmarshallerContext context) { return DescribeClusterResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterStatusRequest.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.cassandra.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.cassandra.Endpoint; /** * @author auto create * @version */ public class DescribeClusterStatusRequest extends RpcAcsRequest<DescribeClusterStatusResponse> { private String clusterId; public DescribeClusterStatusRequest() { super("Cassandra", "2019-01-01", "DescribeClusterStatus", "Cassandra"); 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 getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DescribeClusterStatusResponse> getResponseClass() { return DescribeClusterStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model
java-sources/com/aliyun/aliyun-java-sdk-cassandra/1.0.7/com/aliyuncs/cassandra/model/v20190101/DescribeClusterStatusResponse.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.cassandra.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cassandra.transform.v20190101.DescribeClusterStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeClusterStatusResponse extends AcsResponse { private String requestId; private String status; private String createdTime; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getCreatedTime() { return this.createdTime; } public void setCreatedTime(String createdTime) { this.createdTime = createdTime; } @Override public DescribeClusterStatusResponse getInstance(UnmarshallerContext context) { return DescribeClusterStatusResponseUnmarshaller.unmarshall(this, context); } }