tencentcloud-sdk-organization 3.0.1078 → 3.0.1088
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/tencentcloud-sdk-organization.rb +3 -3
- data/lib/v20210331/models.rb +10 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7088242f746acae94367c4067ebd2f301f91c3d8
|
4
|
+
data.tar.gz: 7cbcc514b7ba73a35dd0fb8411ca5f077dbbed67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d26c698ef8cb7fe3857682fec0797dd563d801538624684fb31ba44445143018cc4df4d62be33d372ee09bc75a21da492b0bf24b2b4bae6e1b5850dcce0991a
|
7
|
+
data.tar.gz: 37216b50da453177a9f15bd5213721f38e7c817814194f3ef90177e6ea7145be4836644d002837c1d4089147b569abb0fe52420106a463804d4b0a084861f20c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1088
|
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'tencentcloud-sdk-common'
|
4
4
|
|
5
|
-
require_relative 'v20210331/client'
|
6
|
-
require_relative 'v20210331/models'
|
7
|
-
|
8
5
|
require_relative 'v20181225/client'
|
9
6
|
require_relative 'v20181225/models'
|
10
7
|
|
8
|
+
require_relative 'v20210331/client'
|
9
|
+
require_relative 'v20210331/models'
|
10
|
+
|
11
11
|
module TencentCloud
|
12
12
|
module Organization
|
13
13
|
end
|
data/lib/v20210331/models.rb
CHANGED
@@ -6519,8 +6519,8 @@ module TencentCloud
|
|
6519
6519
|
|
6520
6520
|
attr_accessor :ProductResourceId, :ResourceGrantLast
|
6521
6521
|
extend Gem::Deprecate
|
6522
|
-
deprecate :ResourceGrantLast, :none, 2025,
|
6523
|
-
deprecate :ResourceGrantLast=, :none, 2025,
|
6522
|
+
deprecate :ResourceGrantLast, :none, 2025, 6
|
6523
|
+
deprecate :ResourceGrantLast=, :none, 2025, 6
|
6524
6524
|
|
6525
6525
|
def initialize(productresourceid=nil, resourcegrantlast=nil)
|
6526
6526
|
@ProductResourceId = productresourceid
|
@@ -7350,8 +7350,8 @@ module TencentCloud
|
|
7350
7350
|
|
7351
7351
|
attr_accessor :ResourceId, :ProductResourceId
|
7352
7352
|
extend Gem::Deprecate
|
7353
|
-
deprecate :ResourceId, :none, 2025,
|
7354
|
-
deprecate :ResourceId=, :none, 2025,
|
7353
|
+
deprecate :ResourceId, :none, 2025, 6
|
7354
|
+
deprecate :ResourceId=, :none, 2025, 6
|
7355
7355
|
|
7356
7356
|
def initialize(resourceid=nil, productresourceid=nil)
|
7357
7357
|
@ResourceId = resourceid
|
@@ -8345,10 +8345,12 @@ module TencentCloud
|
|
8345
8345
|
# @type UpdateTime: String
|
8346
8346
|
# @param IsSelected: 是否选中
|
8347
8347
|
# @type IsSelected: Boolean
|
8348
|
+
# @param Password: 用户密码
|
8349
|
+
# @type Password: String
|
8348
8350
|
|
8349
|
-
attr_accessor :UserName, :FirstName, :LastName, :DisplayName, :Description, :Email, :UserStatus, :UserType, :UserId, :CreateTime, :UpdateTime, :IsSelected
|
8351
|
+
attr_accessor :UserName, :FirstName, :LastName, :DisplayName, :Description, :Email, :UserStatus, :UserType, :UserId, :CreateTime, :UpdateTime, :IsSelected, :Password
|
8350
8352
|
|
8351
|
-
def initialize(username=nil, firstname=nil, lastname=nil, displayname=nil, description=nil, email=nil, userstatus=nil, usertype=nil, userid=nil, createtime=nil, updatetime=nil, isselected=nil)
|
8353
|
+
def initialize(username=nil, firstname=nil, lastname=nil, displayname=nil, description=nil, email=nil, userstatus=nil, usertype=nil, userid=nil, createtime=nil, updatetime=nil, isselected=nil, password=nil)
|
8352
8354
|
@UserName = username
|
8353
8355
|
@FirstName = firstname
|
8354
8356
|
@LastName = lastname
|
@@ -8361,6 +8363,7 @@ module TencentCloud
|
|
8361
8363
|
@CreateTime = createtime
|
8362
8364
|
@UpdateTime = updatetime
|
8363
8365
|
@IsSelected = isselected
|
8366
|
+
@Password = password
|
8364
8367
|
end
|
8365
8368
|
|
8366
8369
|
def deserialize(params)
|
@@ -8376,6 +8379,7 @@ module TencentCloud
|
|
8376
8379
|
@CreateTime = params['CreateTime']
|
8377
8380
|
@UpdateTime = params['UpdateTime']
|
8378
8381
|
@IsSelected = params['IsSelected']
|
8382
|
+
@Password = params['Password']
|
8379
8383
|
end
|
8380
8384
|
end
|
8381
8385
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-organization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1088
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,11 +33,11 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
+
- lib/tencentcloud-sdk-organization.rb
|
36
37
|
- lib/v20210331/client.rb
|
37
38
|
- lib/v20210331/models.rb
|
38
39
|
- lib/v20181225/client.rb
|
39
40
|
- lib/v20181225/models.rb
|
40
|
-
- lib/tencentcloud-sdk-organization.rb
|
41
41
|
- lib/VERSION
|
42
42
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
43
43
|
licenses:
|