tencentcloud-sdk-sqlserver 1.0.315 → 1.0.316

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180328/models.rb +23 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6b15fd0d60faf13225019ca709b0b2d6f3bd40f5
4
- data.tar.gz: 78b5f4f4bc3b33049fe1843af81cfa0e227d5967
3
+ metadata.gz: 178491b12f249f94ab2ac01e948a398fa9fc5579
4
+ data.tar.gz: 7a9acc4498cd41862f674066355cebc02f2b85c5
5
5
  SHA512:
6
- metadata.gz: c767784bf79d6eaa3f5cedd192898bce0de61f4dc8bfbe1fba5fb3230c669ad2fe5544f746e2c1d1f61a77cd189b411f95748d189139603626d9f76f0f095431
7
- data.tar.gz: 042f34b0f432b10088619b3c0db2365315afe382c4e7dc8e93bdae4916f59cff0aeac54140922b8bf3723672ce74394e98dcaca3bed800170d4bea64f4a3474c
6
+ metadata.gz: 58965da2f12700ae8a745d9b74dba9b2c7f4f1eed9194f453891ea6a306a0c30f9a34c80e52ece6e2d76606c9edd9e775f1575093b155e82566af30e0cb15d72
7
+ data.tar.gz: b22ebeca98006261d95778a59ed0500cd27723d151d7f8e6d9490d186e5bd7ab7a571559bf546049e8ef6df85a82f58d4fbf4ba38fa1b7110bb38cf050b99c1d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.315
1
+ 1.0.316
@@ -29,15 +29,18 @@ module TencentCloud
29
29
  # @type Remark: String
30
30
  # @param IsAdmin: 是否为管理员账户,默认为否
31
31
  # @type IsAdmin: Boolean
32
+ # @param Authentication: win-windows鉴权,sql-sqlserver鉴权,不填模式兼容接口sqlserver鉴权
33
+ # @type Authentication: String
32
34
 
33
- attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin
35
+ attr_accessor :UserName, :Password, :DBPrivileges, :Remark, :IsAdmin, :Authentication
34
36
 
35
- def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil)
37
+ def initialize(username=nil, password=nil, dbprivileges=nil, remark=nil, isadmin=nil, authentication=nil)
36
38
  @UserName = username
37
39
  @Password = password
38
40
  @DBPrivileges = dbprivileges
39
41
  @Remark = remark
40
42
  @IsAdmin = isadmin
43
+ @Authentication = authentication
41
44
  end
42
45
 
43
46
  def deserialize(params)
@@ -53,6 +56,7 @@ module TencentCloud
53
56
  end
54
57
  @Remark = params['Remark']
55
58
  @IsAdmin = params['IsAdmin']
59
+ @Authentication = params['Authentication']
56
60
  end
57
61
  end
58
62
 
@@ -76,10 +80,14 @@ module TencentCloud
76
80
  # @type Dbs: Array
77
81
  # @param IsAdmin: 是否为管理员账户
78
82
  # @type IsAdmin: Boolean
83
+ # @param Authentication: win-windows鉴权,sql-sqlserver鉴权
84
+ # @type Authentication: String
85
+ # @param Host: win-windows鉴权账户需要host
86
+ # @type Host: String
79
87
 
80
- attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin
88
+ attr_accessor :Name, :Remark, :CreateTime, :Status, :UpdateTime, :PassTime, :InternalStatus, :Dbs, :IsAdmin, :Authentication, :Host
81
89
 
82
- def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil)
90
+ def initialize(name=nil, remark=nil, createtime=nil, status=nil, updatetime=nil, passtime=nil, internalstatus=nil, dbs=nil, isadmin=nil, authentication=nil, host=nil)
83
91
  @Name = name
84
92
  @Remark = remark
85
93
  @CreateTime = createtime
@@ -89,6 +97,8 @@ module TencentCloud
89
97
  @InternalStatus = internalstatus
90
98
  @Dbs = dbs
91
99
  @IsAdmin = isadmin
100
+ @Authentication = authentication
101
+ @Host = host
92
102
  end
93
103
 
94
104
  def deserialize(params)
@@ -108,6 +118,8 @@ module TencentCloud
108
118
  end
109
119
  end
110
120
  @IsAdmin = params['IsAdmin']
121
+ @Authentication = params['Authentication']
122
+ @Host = params['Host']
111
123
  end
112
124
  end
113
125
 
@@ -3135,6 +3147,7 @@ module TencentCloud
3135
3147
  # @param Amount: 数据库数量
3136
3148
  # @type Amount: Integer
3137
3149
  # @param MigrateDBSet: 数据库名称数组
3150
+ # 注意:此字段可能返回 null,表示取不到有效值。
3138
3151
  # @type MigrateDBSet: Array
3139
3152
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3140
3153
  # @type RequestId: String
@@ -7077,10 +7090,12 @@ module TencentCloud
7077
7090
  # @type HAType: String
7078
7091
  # @param MultiZones: 修改实例是否为跨可用区容灾,SameZones-修改为同可用区 MultiZones-修改为夸可用区
7079
7092
  # @type MultiZones: String
7093
+ # @param WaitSwitch: 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
7094
+ # @type WaitSwitch: Integer
7080
7095
 
7081
- attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones
7096
+ attr_accessor :InstanceId, :Memory, :Storage, :AutoVoucher, :VoucherIds, :Cpu, :DBVersion, :HAType, :MultiZones, :WaitSwitch
7082
7097
 
7083
- def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil)
7098
+ def initialize(instanceid=nil, memory=nil, storage=nil, autovoucher=nil, voucherids=nil, cpu=nil, dbversion=nil, hatype=nil, multizones=nil, waitswitch=nil)
7084
7099
  @InstanceId = instanceid
7085
7100
  @Memory = memory
7086
7101
  @Storage = storage
@@ -7090,6 +7105,7 @@ module TencentCloud
7090
7105
  @DBVersion = dbversion
7091
7106
  @HAType = hatype
7092
7107
  @MultiZones = multizones
7108
+ @WaitSwitch = waitswitch
7093
7109
  end
7094
7110
 
7095
7111
  def deserialize(params)
@@ -7102,6 +7118,7 @@ module TencentCloud
7102
7118
  @DBVersion = params['DBVersion']
7103
7119
  @HAType = params['HAType']
7104
7120
  @MultiZones = params['MultiZones']
7121
+ @WaitSwitch = params['WaitSwitch']
7105
7122
  end
7106
7123
  end
7107
7124
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-sqlserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.315
4
+ version: 1.0.316
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud