100 lines
3.2 KiB
C#
100 lines
3.2 KiB
C#
|
|
/*
|
|||
|
|
* 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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的版本
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("FunctionVersion")]
|
|||
|
|
public string FunctionVersion{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 代码大小
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("CodeSize")]
|
|||
|
|
public long? CodeSize{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 最大可用内存
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("MemorySize")]
|
|||
|
|
public long? MemorySize{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的描述
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Description")]
|
|||
|
|
public string Description{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的入口
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Handler")]
|
|||
|
|
public string Handler{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的超时时间
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Timeout")]
|
|||
|
|
public long? Timeout{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的运行环境
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Runtime")]
|
|||
|
|
public string Runtime{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 函数的命名空间
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("Namespace")]
|
|||
|
|
public string Namespace{ get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("RequestId")]
|
|||
|
|
public string RequestId{ get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// For internal usage only. DO NOT USE IT.
|
|||
|
|
/// </summary>
|
|||
|
|
internal override void ToMap(Dictionary<string, string> 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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|