Skip to content

Commit f37ddbe

Browse files
authored
Merge pull request #30 from cloudgraphdev/alpha
beta release
2 parents 2369694 + 9675cbe commit f37ddbe

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [0.37.2-alpha.2](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.2-alpha.1...0.37.2-alpha.2) (2023-03-08)
2+
3+
4+
### Bug Fixes
5+
6+
* **services:** fix for autoscaling policy ([61bb7e2](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/61bb7e29e04d81fe29020c7185a4beebb4327f61))
7+
8+
## [0.37.2-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.1...0.37.2-alpha.1) (2023-03-08)
9+
10+
11+
### Bug Fixes
12+
13+
* **services:** update dataproc policy/workflow template id field to use name and be unique ([45ab59f](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/45ab59ff1e287e3449c45d7fae9b3f08418f7240))
14+
15+
## [0.37.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.0...0.37.1) (2023-02-13)
16+
17+
18+
### Bug Fixes
19+
20+
* **services:** update vm instance tags to be networkTags ([9d1856e](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/9d1856ec8847b5bb15d4c8a6987b3c7d1a448d3e))
21+
122
## [0.37.1-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.0...0.37.1-beta.1) (2023-02-13)
223

324

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudgraph/cg-provider-gcp",
3-
"version": "0.37.1-beta.1",
3+
"version": "0.37.2-alpha.2",
44
"description": "CloudGraph provider plugin for GCP used to fetch GCP cloud data.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",

src/services/dataprocAutoscalingPolicy/data.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ export default async ({
3030
/**
3131
* Get all the Dataproc Autoscaling Policies
3232
*/
33-
3433
try {
3534
const dataprocClient = new AutoscalingPolicyServiceClient({
3635
...config,

src/services/dataprocAutoscalingPolicy/format.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default ({
1212
region: string
1313
}): GcpDataprocAutoscalingPolicy => {
1414
const {
15-
id,
1615
projectId,
1716
name,
1817
basicAlgorithm = {},
@@ -22,7 +21,7 @@ export default ({
2221
} = service
2322

2423
return {
25-
id,
24+
id: name,
2625
projectId,
2726
region,
2827
name,

src/services/dataprocWorkflowTemplate/format.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ export default ({
244244
region: string
245245
}): GcpDataprocWorkflowTemplate => {
246246
const {
247-
id,
248247
name,
249248
projectId,
250249
version,
@@ -258,7 +257,7 @@ export default ({
258257
} = service
259258

260259
return {
261-
id,
260+
id: name,
262261
projectId,
263262
region,
264263
name,

0 commit comments

Comments
 (0)