1 Star 0 Fork 6

aigouzz/tencentcloud-sdk-nodejs

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cynosdb.v20190107.test.js 41.17 KB
一键复制 编辑 原始数据 按行查看 历史
tencentcloud 提交于 2024-12-19 04:12 +08:00 . release 4.0.995
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571
const expect = require("chai").expect
const tencentcloud = require("../../tencentcloud-sdk-nodejs")
const client = new tencentcloud.cynosdb.v20190107.Client({
credential: {
secretId: process.env.secretId,
secretKey: process.env.secretKey,
},
region: "ap-shanghai",
profile: {
signMethod: "TC3-HMAC-SHA256",
httpProfile: {
reqMethod: "POST",
reqTimeout: 30,
endpoint: "cvm.ap-shanghai.tencentcloudapi.com",
},
},
})
describe("cynosdb.v20190107.test.js", function () {
it("cynosdb.v20190107.ResumeServerless", async function () {
try {
const data = await client.ResumeServerless({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.UpgradeProxyVersion", async function () {
try {
const data = await client.UpgradeProxyVersion({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBackupConfig", async function () {
try {
const data = await client.DescribeBackupConfig({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyBinlogConfig", async function () {
try {
const data = await client.ModifyBinlogConfig({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateProxyEndPoint", async function () {
try {
const data = await client.CreateProxyEndPoint({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyResourcePackageClusters", async function () {
try {
const data = await client.ModifyResourcePackageClusters({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateAuditRuleTemplate", async function () {
try {
const data = await client.CreateAuditRuleTemplate({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.GrantAccountPrivileges", async function () {
try {
const data = await client.GrantAccountPrivileges({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterParamLogs", async function () {
try {
const data = await client.DescribeClusterParamLogs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyMaintainPeriodConfig", async function () {
try {
const data = await client.ModifyMaintainPeriodConfig({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CopyClusterPasswordComplexity", async function () {
try {
const data = await client.CopyClusterPasswordComplexity({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CloseAuditService", async function () {
try {
const data = await client.CloseAuditService({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeSupportProxyVersion", async function () {
try {
const data = await client.DescribeSupportProxyVersion({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateAuditLogFile", async function () {
try {
const data = await client.CreateAuditLogFile({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RenewClusters", async function () {
try {
const data = await client.RenewClusters({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CloseProxyEndPoint", async function () {
try {
const data = await client.CloseProxyEndPoint({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CloseProxy", async function () {
try {
const data = await client.CloseProxy({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeProxySpecs", async function () {
try {
const data = await client.DescribeProxySpecs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.InquirePriceModify", async function () {
try {
const data = await client.InquirePriceModify({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SwitchProxyVpc", async function () {
try {
const data = await client.SwitchProxyVpc({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterDetail", async function () {
try {
const data = await client.DescribeClusterDetail({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeTasks", async function () {
try {
const data = await client.DescribeTasks({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceSpecs", async function () {
try {
const data = await client.DescribeInstanceSpecs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBinlogDownloadUrl", async function () {
try {
const data = await client.DescribeBinlogDownloadUrl({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeResourcesByDealName", async function () {
try {
const data = await client.DescribeResourcesByDealName({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterStorage", async function () {
try {
const data = await client.ModifyClusterStorage({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ActivateInstance", async function () {
try {
const data = await client.ActivateInstance({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeProxyNodes", async function () {
try {
const data = await client.DescribeProxyNodes({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DisassociateSecurityGroups", async function () {
try {
const data = await client.DisassociateSecurityGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterTransparentEncryptInfo", async function () {
try {
const data = await client.DescribeClusterTransparentEncryptInfo({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ExportInstanceSlowQueries", async function () {
try {
const data = await client.ExportInstanceSlowQueries({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteCLSDelivery", async function () {
try {
const data = await client.DeleteCLSDelivery({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeChangedParamsAfterUpgrade", async function () {
try {
const data = await client.DescribeChangedParamsAfterUpgrade({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAccountPrivileges", async function () {
try {
const data = await client.DescribeAccountPrivileges({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CloseClusterPasswordComplexity", async function () {
try {
const data = await client.CloseClusterPasswordComplexity({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RollBackCluster", async function () {
try {
const data = await client.RollBackCluster({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBinlogSaveDays", async function () {
try {
const data = await client.DescribeBinlogSaveDays({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SearchClusterTables", async function () {
try {
const data = await client.SearchClusterTables({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterInstanceGrps", async function () {
try {
const data = await client.DescribeClusterInstanceGrps({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeIsolatedInstances", async function () {
try {
const data = await client.DescribeIsolatedInstances({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceErrorLogs", async function () {
try {
const data = await client.DescribeInstanceErrorLogs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterName", async function () {
try {
const data = await client.ModifyClusterName({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyProxyRwSplit", async function () {
try {
const data = await client.ModifyProxyRwSplit({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyVipVport", async function () {
try {
const data = await client.ModifyVipVport({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteAuditRuleTemplates", async function () {
try {
const data = await client.DeleteAuditRuleTemplates({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyProxyDesc", async function () {
try {
const data = await client.ModifyProxyDesc({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateParamTemplate", async function () {
try {
const data = await client.CreateParamTemplate({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterSlaveZone", async function () {
try {
const data = await client.ModifyClusterSlaveZone({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAccountParams", async function () {
try {
const data = await client.ModifyAccountParams({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterPasswordComplexity", async function () {
try {
const data = await client.ModifyClusterPasswordComplexity({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateBackup", async function () {
try {
const data = await client.CreateBackup({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OfflineInstance", async function () {
try {
const data = await client.OfflineInstance({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.IsolateCluster", async function () {
try {
const data = await client.IsolateCluster({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstancesWithinSameCluster", async function () {
try {
const data = await client.DescribeInstancesWithinSameCluster({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RestartInstance", async function () {
try {
const data = await client.RestartInstance({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.UpgradeProxy", async function () {
try {
const data = await client.UpgradeProxy({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusters", async function () {
try {
const data = await client.DescribeClusters({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CloseWan", async function () {
try {
const data = await client.CloseWan({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeProjectSecurityGroups", async function () {
try {
const data = await client.DescribeProjectSecurityGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterDatabase", async function () {
try {
const data = await client.ModifyClusterDatabase({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAuditRuleTemplates", async function () {
try {
const data = await client.ModifyAuditRuleTemplates({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyParamTemplate", async function () {
try {
const data = await client.ModifyParamTemplate({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyResourcePackagesDeductionPriority", async function () {
try {
const data = await client.ModifyResourcePackagesDeductionPriority({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceParams", async function () {
try {
const data = await client.DescribeInstanceParams({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceSlowQueries", async function () {
try {
const data = await client.DescribeInstanceSlowQueries({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterDatabases", async function () {
try {
const data = await client.DescribeClusterDatabases({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyClusterParam", async function () {
try {
const data = await client.ModifyClusterParam({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateClusters", async function () {
try {
const data = await client.CreateClusters({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateAccounts", async function () {
try {
const data = await client.CreateAccounts({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RollbackToNewCluster", async function () {
try {
const data = await client.RollbackToNewCluster({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateResourcePackage", async function () {
try {
const data = await client.CreateResourcePackage({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAuditLogFiles", async function () {
try {
const data = await client.DescribeAuditLogFiles({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteClusterDatabase", async function () {
try {
const data = await client.DeleteClusterDatabase({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SwitchClusterZone", async function () {
try {
const data = await client.SwitchClusterZone({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SearchClusterDatabases", async function () {
try {
const data = await client.SearchClusterDatabases({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.AddInstances", async function () {
try {
const data = await client.AddInstances({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyInstanceUpgradeLimitDays", async function () {
try {
const data = await client.ModifyInstanceUpgradeLimitDays({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteAccounts", async function () {
try {
const data = await client.DeleteAccounts({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RevokeAccountPrivileges", async function () {
try {
const data = await client.RevokeAccountPrivileges({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenClusterReadOnlyInstanceGroupAccess", async function () {
try {
const data = await client.OpenClusterReadOnlyInstanceGroupAccess({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenClusterTransparentEncrypt", async function () {
try {
const data = await client.OpenClusterTransparentEncrypt({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeParamTemplates", async function () {
try {
const data = await client.DescribeParamTemplates({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteBackup", async function () {
try {
const data = await client.DeleteBackup({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeServerlessStrategy", async function () {
try {
const data = await client.DescribeServerlessStrategy({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.PauseServerless", async function () {
try {
const data = await client.PauseServerless({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAccountHost", async function () {
try {
const data = await client.ModifyAccountHost({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ResetAccountPassword", async function () {
try {
const data = await client.ResetAccountPassword({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceDetail", async function () {
try {
const data = await client.DescribeInstanceDetail({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAuditInstanceList", async function () {
try {
const data = await client.DescribeAuditInstanceList({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeRollbackTimeRange", async function () {
try {
const data = await client.DescribeRollbackTimeRange({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeFlow", async function () {
try {
const data = await client.DescribeFlow({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyInstanceParam", async function () {
try {
const data = await client.ModifyInstanceParam({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstanceCLSLogDelivery", async function () {
try {
const data = await client.DescribeInstanceCLSLogDelivery({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.BindClusterResourcePackages", async function () {
try {
const data = await client.BindClusterResourcePackages({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeServerlessInstanceSpecs", async function () {
try {
const data = await client.DescribeServerlessInstanceSpecs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAuditLogs", async function () {
try {
const data = await client.DescribeAuditLogs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.UnbindClusterResourcePackages", async function () {
try {
const data = await client.UnbindClusterResourcePackages({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeProxies", async function () {
try {
const data = await client.DescribeProxies({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenWan", async function () {
try {
const data = await client.OpenWan({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.InquirePriceCreate", async function () {
try {
const data = await client.InquirePriceCreate({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.AssociateSecurityGroups", async function () {
try {
const data = await client.AssociateSecurityGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBinlogConfig", async function () {
try {
const data = await client.DescribeBinlogConfig({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeResourcePackageSaleSpec", async function () {
try {
const data = await client.DescribeResourcePackageSaleSpec({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAccountPrivileges", async function () {
try {
const data = await client.ModifyAccountPrivileges({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAuditRuleWithInstanceIds", async function () {
try {
const data = await client.DescribeAuditRuleWithInstanceIds({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ExportInstanceErrorLogs", async function () {
try {
const data = await client.ExportInstanceErrorLogs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.AddClusterSlaveZone", async function () {
try {
const data = await client.AddClusterSlaveZone({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyBackupName", async function () {
try {
const data = await client.ModifyBackupName({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAccounts", async function () {
try {
const data = await client.DescribeAccounts({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SetRenewFlag", async function () {
try {
const data = await client.SetRenewFlag({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.InquirePriceRenew", async function () {
try {
const data = await client.InquirePriceRenew({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.StartCLSDelivery", async function () {
try {
const data = await client.StartCLSDelivery({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ReloadBalanceProxyNode", async function () {
try {
const data = await client.ReloadBalanceProxyNode({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OfflineCluster", async function () {
try {
const data = await client.OfflineCluster({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterDatabaseTables", async function () {
try {
const data = await client.DescribeClusterDatabaseTables({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.StopCLSDelivery", async function () {
try {
const data = await client.StopCLSDelivery({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBackupList", async function () {
try {
const data = await client.DescribeBackupList({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAccountDescription", async function () {
try {
const data = await client.ModifyAccountDescription({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyServerlessStrategy", async function () {
try {
const data = await client.ModifyServerlessStrategy({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateClusterDatabase", async function () {
try {
const data = await client.CreateClusterDatabase({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenAuditService", async function () {
try {
const data = await client.OpenAuditService({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteAuditLogFile", async function () {
try {
const data = await client.DeleteAuditLogFile({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAuditRuleTemplates", async function () {
try {
const data = await client.DescribeAuditRuleTemplates({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeResourcePackageDetail", async function () {
try {
const data = await client.DescribeResourcePackageDetail({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyBackupConfig", async function () {
try {
const data = await client.ModifyBackupConfig({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeInstances", async function () {
try {
const data = await client.DescribeInstances({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.UpgradeClusterVersion", async function () {
try {
const data = await client.UpgradeClusterVersion({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeResourcePackageList", async function () {
try {
const data = await client.DescribeResourcePackageList({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterParams", async function () {
try {
const data = await client.DescribeClusterParams({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RefundResourcePackage", async function () {
try {
const data = await client.RefundResourcePackage({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyInstanceName", async function () {
try {
const data = await client.ModifyInstanceName({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeMaintainPeriod", async function () {
try {
const data = await client.DescribeMaintainPeriod({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ExportResourcePackageDeductDetails", async function () {
try {
const data = await client.ExportResourcePackageDeductDetails({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterDetailDatabases", async function () {
try {
const data = await client.DescribeClusterDetailDatabases({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyAuditService", async function () {
try {
const data = await client.ModifyAuditService({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeZones", async function () {
try {
const data = await client.DescribeZones({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBackupDownloadUrl", async function () {
try {
const data = await client.DescribeBackupDownloadUrl({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.SwitchClusterVpc", async function () {
try {
const data = await client.SwitchClusterVpc({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateProxy", async function () {
try {
const data = await client.CreateProxy({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyDBInstanceSecurityGroups", async function () {
try {
const data = await client.ModifyDBInstanceSecurityGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.CreateCLSDelivery", async function () {
try {
const data = await client.CreateCLSDelivery({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyBinlogSaveDays", async function () {
try {
const data = await client.ModifyBinlogSaveDays({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeAccountAllGrantPrivileges", async function () {
try {
const data = await client.DescribeAccountAllGrantPrivileges({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenReadOnlyInstanceExclusiveAccess", async function () {
try {
const data = await client.OpenReadOnlyInstanceExclusiveAccess({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterPasswordComplexity", async function () {
try {
const data = await client.DescribeClusterPasswordComplexity({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DeleteParamTemplate", async function () {
try {
const data = await client.DeleteParamTemplate({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.UpgradeInstance", async function () {
try {
const data = await client.UpgradeInstance({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeBinlogs", async function () {
try {
const data = await client.DescribeBinlogs({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeClusterInstanceGroups", async function () {
try {
const data = await client.DescribeClusterInstanceGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeDBSecurityGroups", async function () {
try {
const data = await client.DescribeDBSecurityGroups({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.OpenClusterPasswordComplexity", async function () {
try {
const data = await client.OpenClusterPasswordComplexity({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.ModifyResourcePackageName", async function () {
try {
const data = await client.ModifyResourcePackageName({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.RemoveClusterSlaveZone", async function () {
try {
const data = await client.RemoveClusterSlaveZone({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.DescribeParamTemplateDetail", async function () {
try {
const data = await client.DescribeParamTemplateDetail({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
it("cynosdb.v20190107.IsolateInstance", async function () {
try {
const data = await client.IsolateInstance({})
expect(data).to.be.ok
} catch(error) {
expect(error.requestId).to.be.ok
expect(error.code).to.be.ok
}
})
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aigouzz/tencentcloud-sdk-nodejs.git
git@gitee.com:aigouzz/tencentcloud-sdk-nodejs.git
aigouzz
tencentcloud-sdk-nodejs
tencentcloud-sdk-nodejs
master

搜索帮助