Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'GCP-Enhancement-Milestone2-dev' into GCP-Enhancement-Mi…
Browse files Browse the repository at this point in the history
…lestone-04-Cloud-Monitoring
  • Loading branch information
sarthak-metron authored Apr 25, 2024
2 parents 4e79c7f + f4b73ea commit 32d40c1
Show file tree
Hide file tree
Showing 140 changed files with 1,544 additions and 625 deletions.
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,51 @@
# v3.3.3 (Tue Apr 09 2024)

#### 🐛 Bug Fix

- INT-10621: add error logger [#647](https://github.com/JupiterOne/graph-google-cloud/pull/647) ([@gastonyelmini](https://github.com/gastonyelmini))

#### Authors: 1

- Gaston Yelmini ([@gastonyelmini](https://github.com/gastonyelmini))

---

# v3.3.2 (Tue Apr 02 2024)

#### 🐛 Bug Fix

- INT-10621: update error handling logic [#646](https://github.com/JupiterOne/graph-google-cloud/pull/646) ([@gastonyelmini](https://github.com/gastonyelmini))

#### Authors: 1

- Gaston Yelmini ([@gastonyelmini](https://github.com/gastonyelmini))

---

# v3.3.1 (Thu Mar 28 2024)

#### 🐛 Bug Fix

- INT-10621: expose PermissionErrorHandlingOptions to iterateApi [#645](https://github.com/JupiterOne/graph-google-cloud/pull/645) ([@gastonyelmini](https://github.com/gastonyelmini))

#### Authors: 1

- Gaston Yelmini ([@gastonyelmini](https://github.com/gastonyelmini))

---

# v3.3.0 (Thu Mar 28 2024)

#### 🚀 Enhancement

- INT-10621: improve GCP Authorization errors handling [#644](https://github.com/JupiterOne/graph-google-cloud/pull/644) ([@gastonyelmini](https://github.com/gastonyelmini))

#### Authors: 1

- Gaston Yelmini ([@gastonyelmini](https://github.com/gastonyelmini))

---

# v3.2.14 (Mon Feb 26 2024)

#### 🐛 Bug Fix
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupiterone/graph-google-cloud",
"version": "3.2.14",
"version": "3.3.3",
"description": "A graph conversion tool for https://cloud.google.com/",
"repository": {
"type": "git",
Expand Down
13 changes: 13 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
import { PermissionErrorHandlingOptions } from './types';

/**
* ANY_RESOURCE is used to describe any Google Cloud resource.
* This includes all assets both ingested and not ingested with this integration
*/
export const ANY_RESOURCE = 'resource';

export const DEFAULT_FETCH_AUTHORIZATION_HANDLING_OPTIONS: PermissionErrorHandlingOptions =
{
throwMissingAuthPermissionError: false,
publishMissingPermissionWarnEvent: true,
};

export const DEFAULT_FETCH_BASIC_API_CALL_AUTHORIZATION_HANDLING_OPTIONS = {
throwMissingAuthPermissionError: true,
publishMissingPermissionWarnEvent: false,
};
Loading

0 comments on commit 32d40c1

Please sign in to comment.