tencentcloud-sdk-vpc 3.0.576 → 3.0.578

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ea5408d2c075f6a0b80f52a00636d8537ae1f4c
4
- data.tar.gz: 24244d983dff93564f25efe53306825eaed25a5a
3
+ metadata.gz: e94b27515204fe33b4869b1091e66c28f609a6cb
4
+ data.tar.gz: 4d7ecdf61343c0f9714e091e2f6884c2c32a170b
5
5
  SHA512:
6
- metadata.gz: da05206aec140b787445e1838dad47137550e1ef7926b744e9fbb85f9e0b97a424935a43870339883dec84437ac534c12cd413518de5d35a63e9adfc0db5ea03
7
- data.tar.gz: cf9cf492ec2a5c6c68ce6acc6302d8c04b188320053429da9e9a986990ae3b5f38e315c9b9dbaedc40fd416fbfc069189c02dbee292ca97633d426a434a8e22d
6
+ metadata.gz: 038f87e6e454295fef69057bea20a058594cda3f11613b9393ca00b4ce34b074beb455e0f9e8eb303e6d4e8b75ac7265586802a7b318c4edb46e77a8d24f3a60
7
+ data.tar.gz: bb2f618bec676012447c37779844f15b39addd9b849ef73cada4cdd8e8079d4616286d75af348e642f4bc8219b92aed8b3e54aa5d69360021c856f17685463f0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.576
1
+ 3.0.578
@@ -4708,7 +4708,7 @@ module TencentCloud
4708
4708
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4709
4709
  end
4710
4710
 
4711
- # 查询SSL-VPN-CLIENT 列表
4711
+ # 本接口(DescribeVpnGatewaySslClients)用于查询SSL-VPN-CLIENT 列表。
4712
4712
 
4713
4713
  # @param request: Request instance for DescribeVpnGatewaySslClients.
4714
4714
  # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeVpnGatewaySslClientsRequest`
@@ -4732,7 +4732,7 @@ module TencentCloud
4732
4732
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4733
4733
  end
4734
4734
 
4735
- # 查询SSL-VPN SERVER 列表信息
4735
+ # 本接口(DescribeVpnGatewaySslServers)用于查询SSL-VPN SERVER 列表信息。
4736
4736
 
4737
4737
  # @param request: Request instance for DescribeVpnGatewaySslServers.
4738
4738
  # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeVpnGatewaySslServersRequest`
@@ -72,15 +72,19 @@ module TencentCloud
72
72
  # @type UserGroupIds: Array
73
73
  # @param UpdateTime: 更新时间
74
74
  # @type UpdateTime: String
75
+ # @param Remark: Remark
76
+ # 注意:此字段可能返回 null,表示取不到有效值。
77
+ # @type Remark: String
75
78
 
76
- attr_accessor :TargetCidr, :VpnGatewayIdSslAccessPolicyId, :ForAllClient, :UserGroupIds, :UpdateTime
79
+ attr_accessor :TargetCidr, :VpnGatewayIdSslAccessPolicyId, :ForAllClient, :UserGroupIds, :UpdateTime, :Remark
77
80
 
78
- def initialize(targetcidr=nil, vpngatewayidsslaccesspolicyid=nil, forallclient=nil, usergroupids=nil, updatetime=nil)
81
+ def initialize(targetcidr=nil, vpngatewayidsslaccesspolicyid=nil, forallclient=nil, usergroupids=nil, updatetime=nil, remark=nil)
79
82
  @TargetCidr = targetcidr
80
83
  @VpnGatewayIdSslAccessPolicyId = vpngatewayidsslaccesspolicyid
81
84
  @ForAllClient = forallclient
82
85
  @UserGroupIds = usergroupids
83
86
  @UpdateTime = updatetime
87
+ @Remark = remark
84
88
  end
85
89
 
86
90
  def deserialize(params)
@@ -89,6 +93,7 @@ module TencentCloud
89
93
  @ForAllClient = params['ForAllClient']
90
94
  @UserGroupIds = params['UserGroupIds']
91
95
  @UpdateTime = params['UpdateTime']
96
+ @Remark = params['Remark']
92
97
  end
93
98
  end
94
99
 
@@ -11573,15 +11578,16 @@ module TencentCloud
11573
11578
  # @param Filters: 过滤条件,参数不支持同时指定SslVpnClientIds和Filters。
11574
11579
  # <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
11575
11580
  # <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
11576
- # <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
11577
- # <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpngwSslClient-123456。</li>
11581
+ # <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpns-1j2w6xpx。</li>
11582
+ # <li>ssl-vpn-client-id - String - (过滤条件)SSL-VPN-CLIENT实例ID形如:vpnc-3rlxp4nd。</li>
11578
11583
  # <li>ssl-vpn-client-name - String - (过滤条件)SSL-VPN-CLIENT实例名称。</li>
11579
11584
  # @type Filters: Array
11580
- # @param Offset: 偏移量
11585
+ # @param Offset: 偏移量,默认值0。
11581
11586
  # @type Offset: Integer
11582
- # @param Limit: 请求对象个数
11587
+ # @param Limit: 请求对象个数,默认值20。
11583
11588
  # @type Limit: Integer
11584
- # @param SslVpnClientIds: SSL-VPN-CLIENT实例ID。形如:vpngwSslClient-f49l6u0z。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
11589
+ # @param SslVpnClientIds: SSL-VPN-CLIENT实例ID。形如:
11590
+ # vpns-1jww3xpx。每次请求的实例的上限为100。参数不支持同时指定SslVpnClientIds和Filters。
11585
11591
  # @type SslVpnClientIds: Array
11586
11592
  # @param IsVpnPortal: VPN门户网站使用。默认是False。
11587
11593
  # @type IsVpnPortal: Boolean
@@ -11616,7 +11622,7 @@ module TencentCloud
11616
11622
  class DescribeVpnGatewaySslClientsResponse < TencentCloud::Common::AbstractModel
11617
11623
  # @param TotalCount: 符合条件的实例数量。
11618
11624
  # @type TotalCount: Integer
11619
- # @param SslVpnClientSet: 符合条件的实例个数。
11625
+ # @param SslVpnClientSet: SSL-VPN-CLIENT 实例列表。
11620
11626
  # @type SslVpnClientSet: Array
11621
11627
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
11622
11628
  # @type RequestId: String
@@ -11645,18 +11651,18 @@ module TencentCloud
11645
11651
 
11646
11652
  # DescribeVpnGatewaySslServers请求参数结构体
11647
11653
  class DescribeVpnGatewaySslServersRequest < TencentCloud::Common::AbstractModel
11648
- # @param Offset: 偏移量
11654
+ # @param Offset: 偏移量。
11649
11655
  # @type Offset: Integer
11650
- # @param Limit: 请求对象个数
11656
+ # @param Limit: 请求对象个数。
11651
11657
  # @type Limit: Integer
11652
11658
  # @param SslVpnServerIds: SSL-VPN-SERVER实例ID。形如:vpngwSslServer-12345678。每次请求的实例的上限为100。参数不支持同时指定SslVpnServerIds和Filters。
11653
11659
  # @type SslVpnServerIds: Array
11654
11660
  # @param Filters: 过滤条件,参数不支持同时指定SslVpnServerIds和Filters。
11655
- # <li>vpc-id - String - (过滤条件)VPC实例ID形如:vpc-f49l6u0z。</li>
11656
- # <li>vpn-gateway-id - String - (过滤条件)VPN实例ID形如:vpngw-5aluhh9t。</li>
11661
+ # <li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。</li>
11662
+ # <li>vpn-gateway-id - String - (过滤条件)VPN实例ID,形如:vpngw-5aluhh9t。</li>
11657
11663
  # <li>vpn-gateway-name - String - (过滤条件)VPN实例名称。</li>
11658
11664
  # <li>ssl-vpn-server-name - String - (过滤条件)SSL-VPN-SERVER实例名称。</li>
11659
- # <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID形如:vpngwSslServer-123456。</li>
11665
+ # <li>ssl-vpn-server-id - String - (过滤条件)SSL-VPN-SERVER实例ID,形如:vpns-xxx。</li>
11660
11666
  # @type Filters: Array
11661
11667
  # @param IsVpnPortal: vpn门户使用。 默认Flase
11662
11668
  # @type IsVpnPortal: Boolean
@@ -19559,24 +19565,24 @@ module TencentCloud
19559
19565
 
19560
19566
  # SSL-VPN-CLIENT 出参
19561
19567
  class SslVpnClient < TencentCloud::Common::AbstractModel
19562
- # @param VpcId: VPC实例ID
19568
+ # @param VpcId: VPC实例ID
19563
19569
  # @type VpcId: String
19564
- # @param SslVpnServerId: SSL-VPN-SERVER 实例ID
19570
+ # @param SslVpnServerId: SSL-VPN-SERVER 实例ID
19565
19571
  # @type SslVpnServerId: String
19566
- # @param CertStatus: 证书状态.
19572
+ # @param CertStatus: 证书状态。
19567
19573
  # 0:创建中
19568
19574
  # 1:正常
19569
19575
  # 2:已停用
19570
19576
  # 3.已过期
19571
19577
  # 4.创建出错
19572
19578
  # @type CertStatus: Integer
19573
- # @param SslVpnClientId: SSL-VPN-CLIENT 实例ID
19579
+ # @param SslVpnClientId: SSL-VPN-CLIENT 实例ID
19574
19580
  # @type SslVpnClientId: String
19575
- # @param CertBeginTime: 证书开始时间
19581
+ # @param CertBeginTime: 证书开始时间。
19576
19582
  # @type CertBeginTime: String
19577
- # @param CertEndTime: 证书到期时间
19583
+ # @param CertEndTime: 证书到期时间。
19578
19584
  # @type CertEndTime: String
19579
- # @param Name: CLIENT NAME
19585
+ # @param Name: CLIENT NAME
19580
19586
  # @type Name: String
19581
19587
  # @param State: 创建CLIENT 状态。
19582
19588
  # 0 创建中
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-vpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.576
4
+ version: 3.0.578
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-24 00:00:00.000000000 Z
11
+ date: 2023-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common