com.tencentcloudapi.cam.v20190116.models.DescribeOIDCConfigResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-cam Show documentation
Show all versions of tencentcloud-sdk-java-cam Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-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.
*/
package com.tencentcloudapi.cam.v20190116.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeOIDCConfigResponse extends AbstractModel{
/**
* 身份提供商类型 11角色身份提供商
*/
@SerializedName("ProviderType")
@Expose
private Long ProviderType;
/**
* 身份提供商URL
*/
@SerializedName("IdentityUrl")
@Expose
private String IdentityUrl;
/**
* 签名公钥
*/
@SerializedName("IdentityKey")
@Expose
private String IdentityKey;
/**
* 客户端id
*/
@SerializedName("ClientId")
@Expose
private String [] ClientId;
/**
* 状态:0:未设置,11:已开启,2:已禁用
*/
@SerializedName("Status")
@Expose
private Long Status;
/**
* 描述
*/
@SerializedName("Description")
@Expose
private String Description;
/**
* 名称
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
@SerializedName("RequestId")
@Expose
private String RequestId;
/**
* Get 身份提供商类型 11角色身份提供商
* @return ProviderType 身份提供商类型 11角色身份提供商
*/
public Long getProviderType() {
return this.ProviderType;
}
/**
* Set 身份提供商类型 11角色身份提供商
* @param ProviderType 身份提供商类型 11角色身份提供商
*/
public void setProviderType(Long ProviderType) {
this.ProviderType = ProviderType;
}
/**
* Get 身份提供商URL
* @return IdentityUrl 身份提供商URL
*/
public String getIdentityUrl() {
return this.IdentityUrl;
}
/**
* Set 身份提供商URL
* @param IdentityUrl 身份提供商URL
*/
public void setIdentityUrl(String IdentityUrl) {
this.IdentityUrl = IdentityUrl;
}
/**
* Get 签名公钥
* @return IdentityKey 签名公钥
*/
public String getIdentityKey() {
return this.IdentityKey;
}
/**
* Set 签名公钥
* @param IdentityKey 签名公钥
*/
public void setIdentityKey(String IdentityKey) {
this.IdentityKey = IdentityKey;
}
/**
* Get 客户端id
* @return ClientId 客户端id
*/
public String [] getClientId() {
return this.ClientId;
}
/**
* Set 客户端id
* @param ClientId 客户端id
*/
public void setClientId(String [] ClientId) {
this.ClientId = ClientId;
}
/**
* Get 状态:0:未设置,11:已开启,2:已禁用
* @return Status 状态:0:未设置,11:已开启,2:已禁用
*/
public Long getStatus() {
return this.Status;
}
/**
* Set 状态:0:未设置,11:已开启,2:已禁用
* @param Status 状态:0:未设置,11:已开启,2:已禁用
*/
public void setStatus(Long Status) {
this.Status = Status;
}
/**
* Get 描述
* @return Description 描述
*/
public String getDescription() {
return this.Description;
}
/**
* Set 描述
* @param Description 描述
*/
public void setDescription(String Description) {
this.Description = Description;
}
/**
* Get 名称
* @return Name 名称
*/
public String getName() {
return this.Name;
}
/**
* Set 名称
* @param Name 名称
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public String getRequestId() {
return this.RequestId;
}
/**
* Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
* @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
*/
public void setRequestId(String RequestId) {
this.RequestId = RequestId;
}
public DescribeOIDCConfigResponse() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public DescribeOIDCConfigResponse(DescribeOIDCConfigResponse source) {
if (source.ProviderType != null) {
this.ProviderType = new Long(source.ProviderType);
}
if (source.IdentityUrl != null) {
this.IdentityUrl = new String(source.IdentityUrl);
}
if (source.IdentityKey != null) {
this.IdentityKey = new String(source.IdentityKey);
}
if (source.ClientId != null) {
this.ClientId = new String[source.ClientId.length];
for (int i = 0; i < source.ClientId.length; i++) {
this.ClientId[i] = new String(source.ClientId[i]);
}
}
if (source.Status != null) {
this.Status = new Long(source.Status);
}
if (source.Description != null) {
this.Description = new String(source.Description);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.RequestId != null) {
this.RequestId = new String(source.RequestId);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ProviderType", this.ProviderType);
this.setParamSimple(map, prefix + "IdentityUrl", this.IdentityUrl);
this.setParamSimple(map, prefix + "IdentityKey", this.IdentityKey);
this.setParamArraySimple(map, prefix + "ClientId.", this.ClientId);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "Description", this.Description);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy