Files
g.hnyhua.cn/TencentCloud/Ckafka/V20190819/Models/Acl.cs
2026-02-07 15:48:27 +08:00

81 lines
3.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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.Ckafka.V20190819.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class Acl : AbstractModel
{
/// <summary>
/// Acl资源类型0:UNKNOWN1:ANY2:TOPIC3:GROUP4:CLUSTER5:TRANSACTIONAL_ID当前只有TOPIC
/// </summary>
[JsonProperty("ResourceType")]
public long? ResourceType{ get; set; }
/// <summary>
/// 资源名称和resourceType相关如当resourceType为TOPIC时则该字段表示topic名称当resourceType为GROUP时该字段表示group名称
/// </summary>
[JsonProperty("ResourceName")]
public string ResourceName{ get; set; }
/// <summary>
/// 用户列表默认为User:*表示任何user都可以访问当前用户只能是用户列表中包含的用户
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Principal")]
public string Principal{ get; set; }
/// <summary>
/// 默认为*表示任何host都可以访问当前ckafka不支持host为*但是后面开源kafka的产品化会直接支持
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("Host")]
public string Host{ get; set; }
/// <summary>
/// Acl操作方式(0:UNKNOWN1:ANY2:ALL3:READ4:WRITE5:CREATE6:DELETE7:ALTER8:DESCRIBE9:CLUSTER_ACTION10:DESCRIBE_CONFIGS11:ALTER_CONFIGS12:IDEMPOTEN_WRITE)
/// </summary>
[JsonProperty("Operation")]
public long? Operation{ get; set; }
/// <summary>
/// 权限类型(0:UNKNOWN1:ANY2:DENY3:ALLOW)
/// </summary>
[JsonProperty("PermissionType")]
public long? PermissionType{ 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 + "ResourceType", this.ResourceType);
this.SetParamSimple(map, prefix + "ResourceName", this.ResourceName);
this.SetParamSimple(map, prefix + "Principal", this.Principal);
this.SetParamSimple(map, prefix + "Host", this.Host);
this.SetParamSimple(map, prefix + "Operation", this.Operation);
this.SetParamSimple(map, prefix + "PermissionType", this.PermissionType);
}
}
}