Skip to content

Commit 4afb07a

Browse files
authored
Merge pull request #32 from cloudgraphdev/beta
Release 0.37.2
2 parents 621ca2a + 5047264 commit 4afb07a

File tree

5 files changed

+25
-6
lines changed

5 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [0.37.2-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.1...0.37.2-beta.1) (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+
* **services:** update dataproc policy/workflow template id field to use name and be unique ([45ab59f](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/45ab59ff1e287e3449c45d7fae9b3f08418f7240))
8+
9+
## [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)
10+
11+
12+
### Bug Fixes
13+
14+
* **services:** fix for autoscaling policy ([61bb7e2](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/61bb7e29e04d81fe29020c7185a4beebb4327f61))
15+
16+
## [0.37.2-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.1...0.37.2-alpha.1) (2023-03-08)
17+
18+
19+
### Bug Fixes
20+
21+
* **services:** update dataproc policy/workflow template id field to use name and be unique ([45ab59f](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/45ab59ff1e287e3449c45d7fae9b3f08418f7240))
22+
123
## [0.37.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.0...0.37.1) (2023-02-13)
224

325

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",
3+
"version": "0.37.2-beta.1",
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)