@pulumi/newrelic 5.75.0 → 5.75.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,9 +67,6 @@ import * as outputs from "../types/output";
67
67
  * istio: {
68
68
  * metricsPollingInterval: 300,
69
69
  * },
70
- * kubernetes: {
71
- * metricsPollingInterval: 300,
72
- * },
73
70
  * memCache: {
74
71
  * metricsPollingInterval: 300,
75
72
  * },
@@ -112,6 +109,9 @@ import * as outputs from "../types/output";
112
109
  * dataProc: {
113
110
  * metricsPollingInterval: 60,
114
111
  * },
112
+ * kubernetes: {
113
+ * metricsPollingInterval: 60,
114
+ * },
115
115
  * loadBalancing: {
116
116
  * metricsPollingInterval: 60,
117
117
  * },
@@ -94,9 +94,6 @@ const utilities = __importStar(require("../utilities"));
94
94
  * istio: {
95
95
  * metricsPollingInterval: 300,
96
96
  * },
97
- * kubernetes: {
98
- * metricsPollingInterval: 300,
99
- * },
100
97
  * memCache: {
101
98
  * metricsPollingInterval: 300,
102
99
  * },
@@ -139,6 +136,9 @@ const utilities = __importStar(require("../utilities"));
139
136
  * dataProc: {
140
137
  * metricsPollingInterval: 60,
141
138
  * },
139
+ * kubernetes: {
140
+ * metricsPollingInterval: 60,
141
+ * },
142
142
  * loadBalancing: {
143
143
  * metricsPollingInterval: 60,
144
144
  * },
@@ -31,7 +31,7 @@ import * as pulumi from "@pulumi/pulumi";
31
31
  *
32
32
  * ### GCP Dimensional Metrics (keyless / WIF) linking
33
33
  *
34
- * To link a GCP project for **GCP Dimensional Metrics** using keyless authentication via Workload Identity Federation (WIF) instead of a service-account key, set `useWorkloadIdentityFederation = true` and provide `audience` and `serviceAccountEmail`. When enabled, the resource authenticates via WIF and links the project under the Dimensional Metrics (`gcpV2`) provider. Use this linked account with the `newrelic.cloud.GcpDmIntegrations` resource.
34
+ * To link a GCP project for **GCP Dimensional Metrics** using keyless authentication via Workload Identity Federation (WIF) instead of a service-account key, set `useWorkloadIdentityFederation = true` and provide `audience` and `serviceAccountEmail`. When enabled, the resource authenticates via WIF and links the project as a Dimensional Metrics account. Use this linked account with the `newrelic.cloud.GcpDmIntegrations` resource.
35
35
  *
36
36
  * ```typescript
37
37
  * import * as pulumi from "@pulumi/pulumi";
@@ -60,7 +60,7 @@ const utilities = __importStar(require("../utilities"));
60
60
  *
61
61
  * ### GCP Dimensional Metrics (keyless / WIF) linking
62
62
  *
63
- * To link a GCP project for **GCP Dimensional Metrics** using keyless authentication via Workload Identity Federation (WIF) instead of a service-account key, set `useWorkloadIdentityFederation = true` and provide `audience` and `serviceAccountEmail`. When enabled, the resource authenticates via WIF and links the project under the Dimensional Metrics (`gcpV2`) provider. Use this linked account with the `newrelic.cloud.GcpDmIntegrations` resource.
63
+ * To link a GCP project for **GCP Dimensional Metrics** using keyless authentication via Workload Identity Federation (WIF) instead of a service-account key, set `useWorkloadIdentityFederation = true` and provide `audience` and `serviceAccountEmail`. When enabled, the resource authenticates via WIF and links the project as a Dimensional Metrics account. Use this linked account with the `newrelic.cloud.GcpDmIntegrations` resource.
64
64
  *
65
65
  * ```typescript
66
66
  * import * as pulumi from "@pulumi/pulumi";
@@ -18,7 +18,7 @@ import * as pulumi from "@pulumi/pulumi";
18
18
  *
19
19
  * ### GCP Dimensional Metrics account lookup
20
20
  *
21
- * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. These accounts are stored internally under the `gcpV2` provider slug, and this flag tells the data source to look them up there instead of under the legacy `gcp` provider.
21
+ * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. This flag tells the data source to match only Dimensional Metrics linked accounts, distinguishing them from legacy GCP integration accounts of the same name.
22
22
  *
23
23
  * ```typescript
24
24
  * import * as pulumi from "@pulumi/pulumi";
@@ -46,7 +46,7 @@ export interface GetCloudAccountArgs {
46
46
  */
47
47
  cloudProvider: string;
48
48
  /**
49
- * Set to `true` to look up a GCP **Dimensional Metrics** (keyless / Workload Identity Federation) linked account, which is stored internally under the `gcpV2` provider slug. Can only be used when `cloudProvider` is `"gcp"`. Defaults to `false`.
49
+ * Set to `true` to look up a GCP **Dimensional Metrics** (keyless / Workload Identity Federation) linked account, as opposed to a legacy GCP integration account of the same name. Can only be used when `cloudProvider` is `"gcp"`. Defaults to `false`.
50
50
  */
51
51
  isDimensionalMetrics?: boolean;
52
52
  /**
@@ -86,7 +86,7 @@ export interface GetCloudAccountResult {
86
86
  *
87
87
  * ### GCP Dimensional Metrics account lookup
88
88
  *
89
- * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. These accounts are stored internally under the `gcpV2` provider slug, and this flag tells the data source to look them up there instead of under the legacy `gcp` provider.
89
+ * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. This flag tells the data source to match only Dimensional Metrics linked accounts, distinguishing them from legacy GCP integration accounts of the same name.
90
90
  *
91
91
  * ```typescript
92
92
  * import * as pulumi from "@pulumi/pulumi";
@@ -114,7 +114,7 @@ export interface GetCloudAccountOutputArgs {
114
114
  */
115
115
  cloudProvider: pulumi.Input<string>;
116
116
  /**
117
- * Set to `true` to look up a GCP **Dimensional Metrics** (keyless / Workload Identity Federation) linked account, which is stored internally under the `gcpV2` provider slug. Can only be used when `cloudProvider` is `"gcp"`. Defaults to `false`.
117
+ * Set to `true` to look up a GCP **Dimensional Metrics** (keyless / Workload Identity Federation) linked account, as opposed to a legacy GCP integration account of the same name. Can only be used when `cloudProvider` is `"gcp"`. Defaults to `false`.
118
118
  */
119
119
  isDimensionalMetrics?: pulumi.Input<boolean | undefined>;
120
120
  /**
@@ -47,7 +47,7 @@ const utilities = __importStar(require("./utilities"));
47
47
  *
48
48
  * ### GCP Dimensional Metrics account lookup
49
49
  *
50
- * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. These accounts are stored internally under the `gcpV2` provider slug, and this flag tells the data source to look them up there instead of under the legacy `gcp` provider.
50
+ * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. This flag tells the data source to match only Dimensional Metrics linked accounts, distinguishing them from legacy GCP integration accounts of the same name.
51
51
  *
52
52
  * ```typescript
53
53
  * import * as pulumi from "@pulumi/pulumi";
@@ -90,7 +90,7 @@ exports.getCloudAccount = getCloudAccount;
90
90
  *
91
91
  * ### GCP Dimensional Metrics account lookup
92
92
  *
93
- * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. These accounts are stored internally under the `gcpV2` provider slug, and this flag tells the data source to look them up there instead of under the legacy `gcp` provider.
93
+ * To look up a GCP account linked for **GCP Dimensional Metrics** (keyless / Workload Identity Federation), set `cloudProvider = "gcp"` and `isDimensionalMetrics = true`. This flag tells the data source to match only Dimensional Metrics linked accounts, distinguishing them from legacy GCP integration accounts of the same name.
94
94
  *
95
95
  * ```typescript
96
96
  * import * as pulumi from "@pulumi/pulumi";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/newrelic",
3
- "version": "5.75.0",
3
+ "version": "5.75.1",
4
4
  "description": "A Pulumi package for creating and managing New Relic resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "newrelic",
26
- "version": "5.75.0"
26
+ "version": "5.75.1"
27
27
  }
28
28
  }