@google-cloud/dms 2.2.2 → 3.0.0

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.
@@ -104,6 +104,101 @@
104
104
  "timeout_millis": 60000,
105
105
  "retry_codes_name": "non_idempotent",
106
106
  "retry_params_name": "default"
107
+ },
108
+ "CreatePrivateConnection": {
109
+ "timeout_millis": 60000,
110
+ "retry_codes_name": "non_idempotent",
111
+ "retry_params_name": "default"
112
+ },
113
+ "GetPrivateConnection": {
114
+ "timeout_millis": 60000,
115
+ "retry_codes_name": "non_idempotent",
116
+ "retry_params_name": "default"
117
+ },
118
+ "ListPrivateConnections": {
119
+ "timeout_millis": 60000,
120
+ "retry_codes_name": "non_idempotent",
121
+ "retry_params_name": "default"
122
+ },
123
+ "DeletePrivateConnection": {
124
+ "timeout_millis": 60000,
125
+ "retry_codes_name": "non_idempotent",
126
+ "retry_params_name": "default"
127
+ },
128
+ "GetConversionWorkspace": {
129
+ "timeout_millis": 60000,
130
+ "retry_codes_name": "non_idempotent",
131
+ "retry_params_name": "default"
132
+ },
133
+ "ListConversionWorkspaces": {
134
+ "timeout_millis": 60000,
135
+ "retry_codes_name": "non_idempotent",
136
+ "retry_params_name": "default"
137
+ },
138
+ "CreateConversionWorkspace": {
139
+ "timeout_millis": 60000,
140
+ "retry_codes_name": "non_idempotent",
141
+ "retry_params_name": "default"
142
+ },
143
+ "UpdateConversionWorkspace": {
144
+ "timeout_millis": 60000,
145
+ "retry_codes_name": "non_idempotent",
146
+ "retry_params_name": "default"
147
+ },
148
+ "DeleteConversionWorkspace": {
149
+ "timeout_millis": 60000,
150
+ "retry_codes_name": "non_idempotent",
151
+ "retry_params_name": "default"
152
+ },
153
+ "SeedConversionWorkspace": {
154
+ "timeout_millis": 60000,
155
+ "retry_codes_name": "non_idempotent",
156
+ "retry_params_name": "default"
157
+ },
158
+ "ImportMappingRules": {
159
+ "timeout_millis": 60000,
160
+ "retry_codes_name": "non_idempotent",
161
+ "retry_params_name": "default"
162
+ },
163
+ "ConvertConversionWorkspace": {
164
+ "timeout_millis": 60000,
165
+ "retry_codes_name": "non_idempotent",
166
+ "retry_params_name": "default"
167
+ },
168
+ "CommitConversionWorkspace": {
169
+ "timeout_millis": 60000,
170
+ "retry_codes_name": "non_idempotent",
171
+ "retry_params_name": "default"
172
+ },
173
+ "RollbackConversionWorkspace": {
174
+ "timeout_millis": 60000,
175
+ "retry_codes_name": "non_idempotent",
176
+ "retry_params_name": "default"
177
+ },
178
+ "ApplyConversionWorkspace": {
179
+ "timeout_millis": 60000,
180
+ "retry_codes_name": "non_idempotent",
181
+ "retry_params_name": "default"
182
+ },
183
+ "DescribeDatabaseEntities": {
184
+ "timeout_millis": 60000,
185
+ "retry_codes_name": "non_idempotent",
186
+ "retry_params_name": "default"
187
+ },
188
+ "SearchBackgroundJobs": {
189
+ "timeout_millis": 60000,
190
+ "retry_codes_name": "non_idempotent",
191
+ "retry_params_name": "default"
192
+ },
193
+ "DescribeConversionWorkspaceRevisions": {
194
+ "timeout_millis": 60000,
195
+ "retry_codes_name": "non_idempotent",
196
+ "retry_params_name": "default"
197
+ },
198
+ "FetchStaticIps": {
199
+ "timeout_millis": 60000,
200
+ "retry_codes_name": "non_idempotent",
201
+ "retry_params_name": "default"
107
202
  }
108
203
  }
109
204
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@google-cloud/dms",
3
3
  "description": "Cloud Database Migration API client for Node.js",
4
- "version": "2.2.2",
4
+ "version": "3.0.0",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Google LLC",
7
7
  "engines": {
8
- "node": ">=12.0.0"
8
+ "node": ">=14.0.0"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
@@ -30,44 +30,41 @@
30
30
  "Cloud Database Migration API"
31
31
  ],
32
32
  "scripts": {
33
- "samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
34
- "samples-test-suite": "cd samples/ && npm link ../ && npm test && cd ../",
35
33
  "clean": "gts clean",
36
- "compile": "tsc -p . && cp -r protos build/ && minifyProtoJson",
34
+ "compile": "tsc -p . && cp -r protos build/",
37
35
  "compile-protos": "compileProtos src",
38
36
  "docs": "jsdoc -c .jsdoc.js",
37
+ "predocs-test": "npm run docs",
39
38
  "docs-test": "linkinator docs",
40
39
  "fix": "gts fix",
41
40
  "lint": "gts check",
42
- "predocs-test": "npm run docs",
43
41
  "prepare": "npm run compile-protos && npm run compile",
44
- "system-test": "npm run compile && c8 mocha build/system-test",
45
- "test": "c8 mocha build/test",
46
- "prelint": "cd samples; npm link ../; npm install",
47
- "precompile": "gts clean"
42
+ "prelint": "cd samples; npm link ../; npm i",
43
+ "postpack": "minifyProtoJson",
44
+ "samples-test": "cd samples/ && npm link ../ && npm i && npm test",
45
+ "system-test": "c8 mocha build/system-test",
46
+ "test": "c8 mocha build/test"
48
47
  },
49
48
  "dependencies": {
50
- "google-gax": "^3.5.8"
49
+ "google-gax": "^4.0.3"
51
50
  },
52
51
  "devDependencies": {
53
52
  "@types/mocha": "^9.0.0",
54
- "@types/node": "^18.0.0",
53
+ "@types/node": "^20.4.5",
55
54
  "@types/sinon": "^10.0.0",
56
- "c8": "^7.1.0",
55
+ "c8": "^8.0.1",
57
56
  "codecov": "^3.6.5",
58
- "gts": "^3.1.0",
57
+ "gapic-tools": "^0.1.8",
58
+ "gts": "^5.0.0",
59
59
  "jsdoc": "^4.0.0",
60
60
  "jsdoc-fresh": "^2.0.0",
61
61
  "jsdoc-region-tag": "^2.0.0",
62
- "linkinator": "^4.0.0",
62
+ "linkinator": "4.1.2",
63
+ "long": "^5.2.3",
63
64
  "mocha": "^9.2.2",
64
- "null-loader": "^4.0.0",
65
65
  "pack-n-play": "^1.0.0-2",
66
66
  "sinon": "^15.0.0",
67
- "ts-loader": "^9.0.0",
68
- "typescript": "^4.6.4",
69
- "webpack": "^5.0.0",
70
- "webpack-cli": "^5.0.0"
67
+ "typescript": "^5.1.6"
71
68
  },
72
69
  "homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-cloud-clouddms"
73
70
  }