tencentcloud-sdk-cloudapp 3.0.963 → 3.0.964
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/v20220530/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbf5b2ba39e196cb7a9596e9428875dffcfae1c8
|
4
|
+
data.tar.gz: 40c0c4e587fa504e6cf0f0692234598165874735
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3da513233180da03745e96c75aae1fa4ecbcfd46e4db115031df0400ee324cfb2164fcdf6b3f32eb39bde07795de7c0f502cffc95eb9a23797baa00291b41bc
|
7
|
+
data.tar.gz: 911ebd93af5bf3b2d8652b2ac6473b44b533953fcadf6af7a119617f707d1dda7e578c803482011dd98a74434e8966bcac7d5c3c32935ab6abf5d4f7916fae6c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.964
|
data/lib/v20220530/models.rb
CHANGED
@@ -53,10 +53,12 @@ module TencentCloud
|
|
53
53
|
# @type ExpirationDate: String
|
54
54
|
# @param LifeSpanUnit: 授权时长单位,枚举值有Y年/M月/D日三种
|
55
55
|
# @type LifeSpanUnit: String
|
56
|
+
# @param LicenseType: 授权的类型:Standard正式版/Development开发版/Trial体验版
|
57
|
+
# @type LicenseType: String
|
56
58
|
|
57
|
-
attr_accessor :LicenseId, :LicenseMode, :LicenseStatus, :ProviderId, :SoftwarePackageId, :SoftwarePackageVersion, :AuthorizedUserUin, :AuthorizedCloudappId, :AuthorizedCloudappRoleId, :AuthorizedSpecification, :BillingMode, :LifeSpan, :IssueDate, :ActivationDate, :ExpirationDate, :LifeSpanUnit
|
59
|
+
attr_accessor :LicenseId, :LicenseMode, :LicenseStatus, :ProviderId, :SoftwarePackageId, :SoftwarePackageVersion, :AuthorizedUserUin, :AuthorizedCloudappId, :AuthorizedCloudappRoleId, :AuthorizedSpecification, :BillingMode, :LifeSpan, :IssueDate, :ActivationDate, :ExpirationDate, :LifeSpanUnit, :LicenseType
|
58
60
|
|
59
|
-
def initialize(licenseid=nil, licensemode=nil, licensestatus=nil, providerid=nil, softwarepackageid=nil, softwarepackageversion=nil, authorizeduseruin=nil, authorizedcloudappid=nil, authorizedcloudapproleid=nil, authorizedspecification=nil, billingmode=nil, lifespan=nil, issuedate=nil, activationdate=nil, expirationdate=nil, lifespanunit=nil)
|
61
|
+
def initialize(licenseid=nil, licensemode=nil, licensestatus=nil, providerid=nil, softwarepackageid=nil, softwarepackageversion=nil, authorizeduseruin=nil, authorizedcloudappid=nil, authorizedcloudapproleid=nil, authorizedspecification=nil, billingmode=nil, lifespan=nil, issuedate=nil, activationdate=nil, expirationdate=nil, lifespanunit=nil, licensetype=nil)
|
60
62
|
@LicenseId = licenseid
|
61
63
|
@LicenseMode = licensemode
|
62
64
|
@LicenseStatus = licensestatus
|
@@ -73,6 +75,7 @@ module TencentCloud
|
|
73
75
|
@ActivationDate = activationdate
|
74
76
|
@ExpirationDate = expirationdate
|
75
77
|
@LifeSpanUnit = lifespanunit
|
78
|
+
@LicenseType = licensetype
|
76
79
|
end
|
77
80
|
|
78
81
|
def deserialize(params)
|
@@ -99,6 +102,7 @@ module TencentCloud
|
|
99
102
|
@ActivationDate = params['ActivationDate']
|
100
103
|
@ExpirationDate = params['ExpirationDate']
|
101
104
|
@LifeSpanUnit = params['LifeSpanUnit']
|
105
|
+
@LicenseType = params['LicenseType']
|
102
106
|
end
|
103
107
|
end
|
104
108
|
|