@pulumi/newrelic 5.66.0 → 5.66.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.
- package/fleetConfiguration.d.ts +17 -2
- package/fleetConfiguration.js +7 -2
- package/fleetConfiguration.js.map +1 -1
- package/fleetDeployment.d.ts +5 -5
- package/fleetDeployment.js +0 -3
- package/fleetDeployment.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +1 -1
package/fleetConfiguration.d.ts
CHANGED
|
@@ -60,11 +60,14 @@ import * as outputs from "./types/output";
|
|
|
60
60
|
*
|
|
61
61
|
* ## Import
|
|
62
62
|
*
|
|
63
|
-
* Fleet configurations can be imported using
|
|
63
|
+
* Fleet configurations can be imported using a composite ID of `<configuration_guid>:<managed_entity_type>`:
|
|
64
64
|
*
|
|
65
65
|
* ```sh
|
|
66
|
-
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid
|
|
66
|
+
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid>:HOST
|
|
67
|
+
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid>:KUBERNETESCLUSTER
|
|
67
68
|
* ```
|
|
69
|
+
*
|
|
70
|
+
* The `managedEntityType` portion is required because the New Relic API does not return it via the entity lookup query (a GraphQL schema constraint). All other attributes — `name`, `agentType`, `operatingSystem`, `organizationId` — are resolved automatically from the API.
|
|
68
71
|
*/
|
|
69
72
|
export declare class FleetConfiguration extends pulumi.CustomResource {
|
|
70
73
|
/**
|
|
@@ -106,6 +109,10 @@ export declare class FleetConfiguration extends pulumi.CustomResource {
|
|
|
106
109
|
* The name of the configuration.
|
|
107
110
|
*/
|
|
108
111
|
readonly name: pulumi.Output<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The operating system this configuration targets. Valid values: `LINUX`, `WINDOWS`. Applicable to `HOST` configurations only — must not be set when `managedEntityType` is `KUBERNETESCLUSTER`. **Cannot be changed after creation.**
|
|
114
|
+
*/
|
|
115
|
+
readonly operatingSystem: pulumi.Output<string | undefined>;
|
|
109
116
|
/**
|
|
110
117
|
* The organization ID. Auto-fetched from the account when not provided. **Cannot be changed after creation.**
|
|
111
118
|
*/
|
|
@@ -155,6 +162,10 @@ export interface FleetConfigurationState {
|
|
|
155
162
|
* The name of the configuration.
|
|
156
163
|
*/
|
|
157
164
|
name?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* The operating system this configuration targets. Valid values: `LINUX`, `WINDOWS`. Applicable to `HOST` configurations only — must not be set when `managedEntityType` is `KUBERNETESCLUSTER`. **Cannot be changed after creation.**
|
|
167
|
+
*/
|
|
168
|
+
operatingSystem?: pulumi.Input<string>;
|
|
158
169
|
/**
|
|
159
170
|
* The organization ID. Auto-fetched from the account when not provided. **Cannot be changed after creation.**
|
|
160
171
|
*/
|
|
@@ -184,6 +195,10 @@ export interface FleetConfigurationArgs {
|
|
|
184
195
|
* The name of the configuration.
|
|
185
196
|
*/
|
|
186
197
|
name?: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* The operating system this configuration targets. Valid values: `LINUX`, `WINDOWS`. Applicable to `HOST` configurations only — must not be set when `managedEntityType` is `KUBERNETESCLUSTER`. **Cannot be changed after creation.**
|
|
200
|
+
*/
|
|
201
|
+
operatingSystem?: pulumi.Input<string>;
|
|
187
202
|
/**
|
|
188
203
|
* The organization ID. Auto-fetched from the account when not provided. **Cannot be changed after creation.**
|
|
189
204
|
*/
|
package/fleetConfiguration.js
CHANGED
|
@@ -64,11 +64,14 @@ const utilities = require("./utilities");
|
|
|
64
64
|
*
|
|
65
65
|
* ## Import
|
|
66
66
|
*
|
|
67
|
-
* Fleet configurations can be imported using
|
|
67
|
+
* Fleet configurations can be imported using a composite ID of `<configuration_guid>:<managed_entity_type>`:
|
|
68
68
|
*
|
|
69
69
|
* ```sh
|
|
70
|
-
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid
|
|
70
|
+
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid>:HOST
|
|
71
|
+
* $ pulumi import newrelic:index/fleetConfiguration:FleetConfiguration infra <configuration_guid>:KUBERNETESCLUSTER
|
|
71
72
|
* ```
|
|
73
|
+
*
|
|
74
|
+
* The `managedEntityType` portion is required because the New Relic API does not return it via the entity lookup query (a GraphQL schema constraint). All other attributes — `name`, `agentType`, `operatingSystem`, `organizationId` — are resolved automatically from the API.
|
|
72
75
|
*/
|
|
73
76
|
class FleetConfiguration extends pulumi.CustomResource {
|
|
74
77
|
/**
|
|
@@ -104,6 +107,7 @@ class FleetConfiguration extends pulumi.CustomResource {
|
|
|
104
107
|
resourceInputs["latestVersionNumber"] = state?.latestVersionNumber;
|
|
105
108
|
resourceInputs["managedEntityType"] = state?.managedEntityType;
|
|
106
109
|
resourceInputs["name"] = state?.name;
|
|
110
|
+
resourceInputs["operatingSystem"] = state?.operatingSystem;
|
|
107
111
|
resourceInputs["organizationId"] = state?.organizationId;
|
|
108
112
|
resourceInputs["totalVersions"] = state?.totalVersions;
|
|
109
113
|
resourceInputs["versions"] = state?.versions;
|
|
@@ -122,6 +126,7 @@ class FleetConfiguration extends pulumi.CustomResource {
|
|
|
122
126
|
resourceInputs["agentType"] = args?.agentType;
|
|
123
127
|
resourceInputs["managedEntityType"] = args?.managedEntityType;
|
|
124
128
|
resourceInputs["name"] = args?.name;
|
|
129
|
+
resourceInputs["operatingSystem"] = args?.operatingSystem;
|
|
125
130
|
resourceInputs["organizationId"] = args?.organizationId;
|
|
126
131
|
resourceInputs["versions"] = args?.versions;
|
|
127
132
|
resourceInputs["configurationId"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fleetConfiguration.js","sourceRoot":"","sources":["../fleetConfiguration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"fleetConfiguration.js","sourceRoot":"","sources":["../fleetConfiguration.ts"],"names":[],"mappings":"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"}
|
package/fleetDeployment.d.ts
CHANGED
|
@@ -123,9 +123,9 @@ export declare class FleetDeployment extends pulumi.CustomResource {
|
|
|
123
123
|
*/
|
|
124
124
|
static isInstance(obj: any): obj is FleetDeployment;
|
|
125
125
|
/**
|
|
126
|
-
* One or more agent blocks. At least one is required. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
126
|
+
* One or more agent blocks. At least one is required when creating a deployment. On update, the list may be set to empty (`agent = []`) to uninstall all agent assignments from the deployment. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
127
127
|
*/
|
|
128
|
-
readonly agents: pulumi.Output<outputs.FleetDeploymentAgent[]>;
|
|
128
|
+
readonly agents: pulumi.Output<outputs.FleetDeploymentAgent[] | undefined>;
|
|
129
129
|
/**
|
|
130
130
|
* The entity GUID of the deployment.
|
|
131
131
|
*/
|
|
@@ -168,7 +168,7 @@ export declare class FleetDeployment extends pulumi.CustomResource {
|
|
|
168
168
|
*/
|
|
169
169
|
export interface FleetDeploymentState {
|
|
170
170
|
/**
|
|
171
|
-
* One or more agent blocks. At least one is required. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
171
|
+
* One or more agent blocks. At least one is required when creating a deployment. On update, the list may be set to empty (`agent = []`) to uninstall all agent assignments from the deployment. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
172
172
|
*/
|
|
173
173
|
agents?: pulumi.Input<pulumi.Input<inputs.FleetDeploymentAgent>[]>;
|
|
174
174
|
/**
|
|
@@ -205,9 +205,9 @@ export interface FleetDeploymentState {
|
|
|
205
205
|
*/
|
|
206
206
|
export interface FleetDeploymentArgs {
|
|
207
207
|
/**
|
|
208
|
-
* One or more agent blocks. At least one is required. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
208
|
+
* One or more agent blocks. At least one is required when creating a deployment. On update, the list may be set to empty (`agent = []`) to uninstall all agent assignments from the deployment. Each `agentType` may appear at most once per deployment. See Nested `agent` blocks below.
|
|
209
209
|
*/
|
|
210
|
-
agents
|
|
210
|
+
agents?: pulumi.Input<pulumi.Input<inputs.FleetDeploymentAgent>[]>;
|
|
211
211
|
/**
|
|
212
212
|
* A description of the deployment.
|
|
213
213
|
*/
|
package/fleetDeployment.js
CHANGED
|
@@ -149,9 +149,6 @@ class FleetDeployment extends pulumi.CustomResource {
|
|
|
149
149
|
}
|
|
150
150
|
else {
|
|
151
151
|
const args = argsOrState;
|
|
152
|
-
if (args?.agents === undefined && !opts.urn) {
|
|
153
|
-
throw new Error("Missing required property 'agents'");
|
|
154
|
-
}
|
|
155
152
|
if (args?.fleetId === undefined && !opts.urn) {
|
|
156
153
|
throw new Error("Missing required property 'fleetId'");
|
|
157
154
|
}
|
package/fleetDeployment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fleetDeployment.js","sourceRoot":"","sources":["../fleetDeployment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwGG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IA2CD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"fleetDeployment.js","sourceRoot":"","sources":["../fleetDeployment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwGG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;IA2CD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACnD,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;;AAlGL,0CAmGC;AArFG,gBAAgB;AACO,4BAAY,GAAG,gDAAgD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/newrelic",
|
|
3
|
-
"version": "5.66.
|
|
3
|
+
"version": "5.66.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.66.
|
|
26
|
+
"version": "5.66.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -213,7 +213,7 @@ export interface FleetDeploymentAgent {
|
|
|
213
213
|
/**
|
|
214
214
|
* A configuration version entity GUID (from `newrelic.FleetConfiguration`) to associate with this agent in the deployment.
|
|
215
215
|
*/
|
|
216
|
-
configurationVersionId
|
|
216
|
+
configurationVersionId: pulumi.Input<string>;
|
|
217
217
|
/**
|
|
218
218
|
* The agent version string to deploy (e.g. `"1.58.0"`).
|
|
219
219
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -212,7 +212,7 @@ export interface FleetDeploymentAgent {
|
|
|
212
212
|
/**
|
|
213
213
|
* A configuration version entity GUID (from `newrelic.FleetConfiguration`) to associate with this agent in the deployment.
|
|
214
214
|
*/
|
|
215
|
-
configurationVersionId
|
|
215
|
+
configurationVersionId: string;
|
|
216
216
|
/**
|
|
217
217
|
* The agent version string to deploy (e.g. `"1.58.0"`).
|
|
218
218
|
*/
|