File tree Expand file tree Collapse file tree 5 files changed +24
-6
lines changed
dataprocAutoscalingPolicy Expand file tree Collapse file tree 5 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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/" ,
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments