Skip to content

Commit fb42ffe

Browse files
authored
Merge pull request #28 from cloudgraphdev/beta
Release: 0.37.1
2 parents a2cba72 + 2369694 commit fb42ffe

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [0.37.1-beta.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.0...0.37.1-beta.1) (2023-02-13)
2+
3+
4+
### Bug Fixes
5+
6+
* **services:** update vm instance tags to be networkTags ([9d1856e](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/9d1856ec8847b5bb15d4c8a6987b3c7d1a448d3e))
7+
8+
## [0.37.1-alpha.1](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.37.0...0.37.1-alpha.1) (2023-02-13)
9+
10+
11+
### Bug Fixes
12+
13+
* **services:** update vm instance tags to be networkTags ([9d1856e](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/commit/9d1856ec8847b5bb15d4c8a6987b3c7d1a448d3e))
14+
115
# [0.37.0](https://github.com/cloudgraphdev/cloudgraph-provider-gcp/compare/0.36.0...0.37.0) (2022-12-28)
216

317

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.0",
3+
"version": "0.37.1-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/vmInstance/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export default ({
220220
startRestricted,
221221
status: enumKeyToString(google.cloud.compute.v1.Instance.Status, status),
222222
statusMessage,
223-
tags: {
223+
networkTags: {
224224
fingerprint: tags?.fingerprint,
225225
items: tags?.items,
226226
},

src/services/vmInstance/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type gcpVmInstance implements gcpBaseResource @key(fields: "id") {
3333
startRestricted: Boolean @search
3434
status: String @search(by: [hash, regexp])
3535
statusMessage: String @search(by: [hash, regexp])
36-
tags: gcpComputeTags
36+
networkTags: gcpComputeTags
3737
zone: String @search(by: [hash, regexp])
3838
project: [gcpProject] @hasInverse(field: vmInstances)
3939
network: [gcpNetwork] @hasInverse(field: vmInstances)

src/types/generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2822,6 +2822,7 @@ export type GcpVmInstance = GcpBaseResource & {
28222822
minCpuPlatform?: Maybe<Scalars['String']>;
28232823
network?: Maybe<Array<Maybe<GcpNetwork>>>;
28242824
networkInterfaces?: Maybe<Array<Maybe<GcpComputeNetworkInterface>>>;
2825+
networkTags?: Maybe<GcpComputeTags>;
28252826
privateIpv6GoogleAccess?: Maybe<Scalars['String']>;
28262827
project?: Maybe<Array<Maybe<GcpProject>>>;
28272828
reservationAffinity?: Maybe<GcpReservationAffinity>;
@@ -2836,7 +2837,6 @@ export type GcpVmInstance = GcpBaseResource & {
28362837
status?: Maybe<Scalars['String']>;
28372838
statusMessage?: Maybe<Scalars['String']>;
28382839
subnet?: Maybe<Array<Maybe<GcpSubnet>>>;
2839-
tags?: Maybe<GcpComputeTags>;
28402840
zone?: Maybe<Scalars['String']>;
28412841
};
28422842

0 commit comments

Comments
 (0)