You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/gcp_integration/src/v2/models/GCPSTSServiceAccountAttributes.ts
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ export class GCPSTSServiceAccountAttributes {
35
35
* When enabled, Datadog will activate the Cloud Security Monitoring product for this service account. Note: This requires resource_collection_enabled to be set to true.
36
36
*/
37
37
"isCspmEnabled"?: boolean;
38
+
/**
39
+
* When enabled, Datadog collects metrics where location is explicitly stated as "global" or where location information cannot be deduced from GCP labels.
40
+
*/
41
+
"isGlobalLocationEnabled"?: boolean;
38
42
/**
39
43
* When enabled, Datadog applies the `X-Goog-User-Project` header, attributing Google Cloud billing and quota usage to the project being monitored rather than the default service account project.
40
44
*/
@@ -55,6 +59,10 @@ export class GCPSTSServiceAccountAttributes {
* Configurations for GCP location filtering, such as region, multi-region, or zone. Only monitored resources that match the specified regions are imported into Datadog. By default, Datadog collects from all locations.
64
+
*/
65
+
"regionFilterConfigs"?: Array<string>;
58
66
/**
59
67
* When enabled, Datadog scans for all resources in your GCP environment.
60
68
*/
@@ -98,6 +106,10 @@ export class GCPSTSServiceAccountAttributes {
98
106
baseName: "is_cspm_enabled",
99
107
type: "boolean",
100
108
},
109
+
isGlobalLocationEnabled: {
110
+
baseName: "is_global_location_enabled",
111
+
type: "boolean",
112
+
},
101
113
isPerProjectQuotaEnabled: {
102
114
baseName: "is_per_project_quota_enabled",
103
115
type: "boolean",
@@ -118,6 +130,10 @@ export class GCPSTSServiceAccountAttributes {
0 commit comments