/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ namespace TencentCloud.Scf.V20180416.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class PublishVersionResponse : AbstractModel { /// /// 函数的版本 /// [JsonProperty("FunctionVersion")] public string FunctionVersion{ get; set; } /// /// 代码大小 /// [JsonProperty("CodeSize")] public long? CodeSize{ get; set; } /// /// 最大可用内存 /// [JsonProperty("MemorySize")] public long? MemorySize{ get; set; } /// /// 函数的描述 /// [JsonProperty("Description")] public string Description{ get; set; } /// /// 函数的入口 /// [JsonProperty("Handler")] public string Handler{ get; set; } /// /// 函数的超时时间 /// [JsonProperty("Timeout")] public long? Timeout{ get; set; } /// /// 函数的运行环境 /// [JsonProperty("Runtime")] public string Runtime{ get; set; } /// /// 函数的命名空间 /// [JsonProperty("Namespace")] public string Namespace{ get; set; } /// /// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 /// [JsonProperty("RequestId")] public string RequestId{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "FunctionVersion", this.FunctionVersion); this.SetParamSimple(map, prefix + "CodeSize", this.CodeSize); this.SetParamSimple(map, prefix + "MemorySize", this.MemorySize); this.SetParamSimple(map, prefix + "Description", this.Description); this.SetParamSimple(map, prefix + "Handler", this.Handler); this.SetParamSimple(map, prefix + "Timeout", this.Timeout); this.SetParamSimple(map, prefix + "Runtime", this.Runtime); this.SetParamSimple(map, prefix + "Namespace", this.Namespace); this.SetParamSimple(map, prefix + "RequestId", this.RequestId); } } }