@pulumi/wavefront 1.2.0-alpha.1648240805 → 1.2.0-alpha.1648659923

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.
Files changed (51) hide show
  1. package/alert.d.ts +21 -21
  2. package/alertTarget.d.ts +9 -9
  3. package/cloudIntegrationAppDynamics.d.ts +56 -56
  4. package/cloudIntegrationAppDynamics.js +2 -2
  5. package/cloudIntegrationAwsExternalId.d.ts +2 -2
  6. package/cloudIntegrationAwsExternalId.js +2 -2
  7. package/cloudIntegrationAzure.d.ts +32 -32
  8. package/cloudIntegrationAzure.js +2 -2
  9. package/cloudIntegrationAzureActivityLog.d.ts +29 -29
  10. package/cloudIntegrationAzureActivityLog.js +2 -2
  11. package/cloudIntegrationCloudTrail.d.ts +31 -31
  12. package/cloudIntegrationCloudTrail.js +1 -1
  13. package/cloudIntegrationCloudWatch.d.ts +51 -51
  14. package/cloudIntegrationCloudWatch.js +3 -3
  15. package/cloudIntegrationEc2.d.ts +38 -23
  16. package/cloudIntegrationEc2.js +2 -2
  17. package/cloudIntegrationEc2.js.map +1 -1
  18. package/cloudIntegrationGcp.d.ts +30 -30
  19. package/cloudIntegrationGcp.js +3 -3
  20. package/cloudIntegrationGcpBilling.d.ts +26 -26
  21. package/cloudIntegrationGcpBilling.js +2 -2
  22. package/cloudIntegrationNewRelic.d.ts +29 -29
  23. package/cloudIntegrationNewRelic.js +2 -2
  24. package/cloudIntegrationTesla.d.ts +23 -23
  25. package/cloudIntegrationTesla.js +2 -2
  26. package/dashboard.d.ts +34 -34
  27. package/dashboard.js +1 -1
  28. package/dashboardJson.d.ts +4 -4
  29. package/dashboardJson.js +1 -1
  30. package/derivedMetric.d.ts +13 -13
  31. package/derivedMetric.js +1 -1
  32. package/externalLink.d.ts +22 -13
  33. package/externalLink.js +1 -1
  34. package/externalLink.js.map +1 -1
  35. package/getDefaultUserGroup.d.ts +1 -1
  36. package/ingestionPolicy.d.ts +7 -7
  37. package/ingestionPolicy.js +1 -1
  38. package/maintenanceWindow.d.ts +54 -21
  39. package/maintenanceWindow.js.map +1 -1
  40. package/package.json +2 -2
  41. package/package.json.dev +2 -2
  42. package/role.d.ts +12 -12
  43. package/role.js +3 -3
  44. package/serviceAccount.d.ts +19 -19
  45. package/serviceAccount.js +1 -1
  46. package/types/input.d.ts +86 -86
  47. package/types/output.d.ts +86 -86
  48. package/user.d.ts +11 -11
  49. package/user.js +2 -2
  50. package/userGroup.d.ts +7 -7
  51. package/userGroup.js +1 -1
package/alert.d.ts CHANGED
@@ -48,12 +48,12 @@ export declare class Alert extends pulumi.CustomResource {
48
48
  static isInstance(obj: any): obj is Alert;
49
49
  /**
50
50
  * User-supplied additional explanatory information for this alert.
51
- * Useful for linking runbooks, migrations...etc
51
+ * Useful for linking runbooks, migrations, etc.
52
52
  */
53
53
  readonly additionalInformation: pulumi.Output<string | undefined>;
54
54
  /**
55
55
  * The type of alert in Wavefront. Either `CLASSIC` (default)
56
- * or `THRESHOLD`
56
+ * or `THRESHOLD`.
57
57
  */
58
58
  readonly alertType: pulumi.Output<string | undefined>;
59
59
  /**
@@ -65,8 +65,8 @@ export declare class Alert extends pulumi.CustomResource {
65
65
  */
66
66
  readonly canViews: pulumi.Output<string[] | undefined>;
67
67
  /**
68
- * A Wavefront query that is evaluated at regular intervals (default 1m).
69
- * The alert fires and notifications are triggered when data series matching this query evaluates
68
+ * A Wavefront query that is evaluated at regular intervals (default is 1 minute).
69
+ * The alert fires and notifications are triggered when a data series matching this query evaluates
70
70
  * to a non-zero value for a set number of consecutive minutes.
71
71
  */
72
72
  readonly condition: pulumi.Output<string | undefined>;
@@ -94,12 +94,12 @@ export declare class Alert extends pulumi.CustomResource {
94
94
  readonly name: pulumi.Output<string>;
95
95
  /**
96
96
  * How often to re-trigger a continually failing alert.
97
- * If absent or <= 0, no re-triggering occur.
97
+ * If absent or <= 0, no re-triggering occurs.
98
98
  */
99
99
  readonly notificationResendFrequencyMinutes: pulumi.Output<number | undefined>;
100
100
  /**
101
101
  * The number of consecutive minutes that a firing series matching the condition
102
- * query must evaluate to "false" (zero value) before the alert resolves. When unset, this default sto
102
+ * query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
103
103
  * the same value as `minutes`.
104
104
  */
105
105
  readonly resolveAfterMinutes: pulumi.Output<number | undefined>;
@@ -113,7 +113,7 @@ export declare class Alert extends pulumi.CustomResource {
113
113
  readonly tags: pulumi.Output<string[]>;
114
114
  /**
115
115
  * A comma-separated list of the email address or integration endpoint
116
- * (such as PagerDuty or web hook) to notify when the alert status changes. Multiple target types can be in the list.
116
+ * (such as PagerDuty or webhook) to notify when the alert status changes. Multiple target types can be in the list.
117
117
  * Alert target format: ({email}|pd:{pd_key}|target:{alert-target-id}).
118
118
  */
119
119
  readonly target: pulumi.Output<string | undefined>;
@@ -138,12 +138,12 @@ export declare class Alert extends pulumi.CustomResource {
138
138
  export interface AlertState {
139
139
  /**
140
140
  * User-supplied additional explanatory information for this alert.
141
- * Useful for linking runbooks, migrations...etc
141
+ * Useful for linking runbooks, migrations, etc.
142
142
  */
143
143
  additionalInformation?: pulumi.Input<string>;
144
144
  /**
145
145
  * The type of alert in Wavefront. Either `CLASSIC` (default)
146
- * or `THRESHOLD`
146
+ * or `THRESHOLD`.
147
147
  */
148
148
  alertType?: pulumi.Input<string>;
149
149
  /**
@@ -155,8 +155,8 @@ export interface AlertState {
155
155
  */
156
156
  canViews?: pulumi.Input<pulumi.Input<string>[]>;
157
157
  /**
158
- * A Wavefront query that is evaluated at regular intervals (default 1m).
159
- * The alert fires and notifications are triggered when data series matching this query evaluates
158
+ * A Wavefront query that is evaluated at regular intervals (default is 1 minute).
159
+ * The alert fires and notifications are triggered when a data series matching this query evaluates
160
160
  * to a non-zero value for a set number of consecutive minutes.
161
161
  */
162
162
  condition?: pulumi.Input<string>;
@@ -184,12 +184,12 @@ export interface AlertState {
184
184
  name?: pulumi.Input<string>;
185
185
  /**
186
186
  * How often to re-trigger a continually failing alert.
187
- * If absent or <= 0, no re-triggering occur.
187
+ * If absent or <= 0, no re-triggering occurs.
188
188
  */
189
189
  notificationResendFrequencyMinutes?: pulumi.Input<number>;
190
190
  /**
191
191
  * The number of consecutive minutes that a firing series matching the condition
192
- * query must evaluate to "false" (zero value) before the alert resolves. When unset, this default sto
192
+ * query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
193
193
  * the same value as `minutes`.
194
194
  */
195
195
  resolveAfterMinutes?: pulumi.Input<number>;
@@ -203,7 +203,7 @@ export interface AlertState {
203
203
  tags?: pulumi.Input<pulumi.Input<string>[]>;
204
204
  /**
205
205
  * A comma-separated list of the email address or integration endpoint
206
- * (such as PagerDuty or web hook) to notify when the alert status changes. Multiple target types can be in the list.
206
+ * (such as PagerDuty or webhook) to notify when the alert status changes. Multiple target types can be in the list.
207
207
  * Alert target format: ({email}|pd:{pd_key}|target:{alert-target-id}).
208
208
  */
209
209
  target?: pulumi.Input<string>;
@@ -220,12 +220,12 @@ export interface AlertState {
220
220
  export interface AlertArgs {
221
221
  /**
222
222
  * User-supplied additional explanatory information for this alert.
223
- * Useful for linking runbooks, migrations...etc
223
+ * Useful for linking runbooks, migrations, etc.
224
224
  */
225
225
  additionalInformation?: pulumi.Input<string>;
226
226
  /**
227
227
  * The type of alert in Wavefront. Either `CLASSIC` (default)
228
- * or `THRESHOLD`
228
+ * or `THRESHOLD`.
229
229
  */
230
230
  alertType?: pulumi.Input<string>;
231
231
  /**
@@ -237,8 +237,8 @@ export interface AlertArgs {
237
237
  */
238
238
  canViews?: pulumi.Input<pulumi.Input<string>[]>;
239
239
  /**
240
- * A Wavefront query that is evaluated at regular intervals (default 1m).
241
- * The alert fires and notifications are triggered when data series matching this query evaluates
240
+ * A Wavefront query that is evaluated at regular intervals (default is 1 minute).
241
+ * The alert fires and notifications are triggered when a data series matching this query evaluates
242
242
  * to a non-zero value for a set number of consecutive minutes.
243
243
  */
244
244
  condition?: pulumi.Input<string>;
@@ -266,12 +266,12 @@ export interface AlertArgs {
266
266
  name?: pulumi.Input<string>;
267
267
  /**
268
268
  * How often to re-trigger a continually failing alert.
269
- * If absent or <= 0, no re-triggering occur.
269
+ * If absent or <= 0, no re-triggering occurs.
270
270
  */
271
271
  notificationResendFrequencyMinutes?: pulumi.Input<number>;
272
272
  /**
273
273
  * The number of consecutive minutes that a firing series matching the condition
274
- * query must evaluate to "false" (zero value) before the alert resolves. When unset, this default sto
274
+ * query must evaluate to "false" (zero value) before the alert resolves. When unset, this defaults to
275
275
  * the same value as `minutes`.
276
276
  */
277
277
  resolveAfterMinutes?: pulumi.Input<number>;
@@ -285,7 +285,7 @@ export interface AlertArgs {
285
285
  tags: pulumi.Input<pulumi.Input<string>[]>;
286
286
  /**
287
287
  * A comma-separated list of the email address or integration endpoint
288
- * (such as PagerDuty or web hook) to notify when the alert status changes. Multiple target types can be in the list.
288
+ * (such as PagerDuty or webhook) to notify when the alert status changes. Multiple target types can be in the list.
289
289
  * Alert target format: ({email}|pd:{pd_key}|target:{alert-target-id}).
290
290
  */
291
291
  target?: pulumi.Input<string>;
package/alertTarget.d.ts CHANGED
@@ -107,7 +107,7 @@ export declare class AlertTarget extends pulumi.CustomResource {
107
107
  */
108
108
  readonly contentType: pulumi.Output<string | undefined>;
109
109
  /**
110
- * A `string->string` map specifying the custome HTTP header key/value pairs that will be
110
+ * A `string->string` map specifying the custom HTTP header key/value pairs that will be
111
111
  * sent in the requests with a method of `WEBHOOK`.
112
112
  */
113
113
  readonly customHeaders: pulumi.Output<{
@@ -130,7 +130,7 @@ export declare class AlertTarget extends pulumi.CustomResource {
130
130
  */
131
131
  readonly method: pulumi.Output<string | undefined>;
132
132
  /**
133
- * The name of the alert target as it is displayed in wavefront
133
+ * The name of the alert target as it is displayed in Wavefront.
134
134
  */
135
135
  readonly name: pulumi.Output<string>;
136
136
  /**
@@ -144,7 +144,7 @@ export declare class AlertTarget extends pulumi.CustomResource {
144
144
  readonly routes: pulumi.Output<outputs.AlertTargetRoute[] | undefined>;
145
145
  readonly targetId: pulumi.Output<string>;
146
146
  /**
147
- * A mustache template that will form the body of the POST request, email and summary of the PagerDuty.
147
+ * A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
148
148
  */
149
149
  readonly template: pulumi.Output<string>;
150
150
  /**
@@ -170,7 +170,7 @@ export interface AlertTargetState {
170
170
  */
171
171
  contentType?: pulumi.Input<string>;
172
172
  /**
173
- * A `string->string` map specifying the custome HTTP header key/value pairs that will be
173
+ * A `string->string` map specifying the custom HTTP header key/value pairs that will be
174
174
  * sent in the requests with a method of `WEBHOOK`.
175
175
  */
176
176
  customHeaders?: pulumi.Input<{
@@ -193,7 +193,7 @@ export interface AlertTargetState {
193
193
  */
194
194
  method?: pulumi.Input<string>;
195
195
  /**
196
- * The name of the alert target as it is displayed in wavefront
196
+ * The name of the alert target as it is displayed in Wavefront.
197
197
  */
198
198
  name?: pulumi.Input<string>;
199
199
  /**
@@ -207,7 +207,7 @@ export interface AlertTargetState {
207
207
  routes?: pulumi.Input<pulumi.Input<inputs.AlertTargetRoute>[]>;
208
208
  targetId?: pulumi.Input<string>;
209
209
  /**
210
- * A mustache template that will form the body of the POST request, email and summary of the PagerDuty.
210
+ * A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
211
211
  */
212
212
  template?: pulumi.Input<string>;
213
213
  /**
@@ -225,7 +225,7 @@ export interface AlertTargetArgs {
225
225
  */
226
226
  contentType?: pulumi.Input<string>;
227
227
  /**
228
- * A `string->string` map specifying the custome HTTP header key/value pairs that will be
228
+ * A `string->string` map specifying the custom HTTP header key/value pairs that will be
229
229
  * sent in the requests with a method of `WEBHOOK`.
230
230
  */
231
231
  customHeaders?: pulumi.Input<{
@@ -248,7 +248,7 @@ export interface AlertTargetArgs {
248
248
  */
249
249
  method?: pulumi.Input<string>;
250
250
  /**
251
- * The name of the alert target as it is displayed in wavefront
251
+ * The name of the alert target as it is displayed in Wavefront.
252
252
  */
253
253
  name?: pulumi.Input<string>;
254
254
  /**
@@ -261,7 +261,7 @@ export interface AlertTargetArgs {
261
261
  */
262
262
  routes?: pulumi.Input<pulumi.Input<inputs.AlertTargetRoute>[]>;
263
263
  /**
264
- * A mustache template that will form the body of the POST request, email and summary of the PagerDuty.
264
+ * A mustache template that will form the body of the POST request, email, and summary of the PagerDuty.
265
265
  */
266
266
  template: pulumi.Input<string>;
267
267
  /**
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * Provides a Wavefront Cloud Integration for App Dynamics. This allows app dynamics cloud integrations to be created,
3
+ * Provides a Wavefront Cloud Integration for AppDynamics. This allows AppDynamics cloud integrations to be created,
4
4
  * updated, and deleted.
5
5
  *
6
6
  * ## Example Usage
@@ -18,7 +18,7 @@ import * as pulumi from "@pulumi/pulumi";
18
18
  *
19
19
  * ## Import
20
20
  *
21
- * App Dynamic Cloud Integrations can be imported using the `id`, e.g.
21
+ * AppDynamic Cloud Integrations can be imported by using the `id`, e.g.
22
22
  *
23
23
  * ```sh
24
24
  * $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
@@ -41,75 +41,75 @@ export declare class CloudIntegrationAppDynamics extends pulumi.CustomResource {
41
41
  */
42
42
  static isInstance(obj: any): obj is CloudIntegrationAppDynamics;
43
43
  /**
44
- * A list of point tag key-values to add to every point ingested using this integration
44
+ * A list of point tag key-values to add to every point ingested using this integration.
45
45
  */
46
46
  readonly additionalTags: pulumi.Output<{
47
47
  [key: string]: string;
48
48
  } | undefined>;
49
49
  /**
50
- * List of regular expressions that a application name must match (case-insensitively)
51
- * in order to be ingested
50
+ * List of regular expressions that an application name must match (case-insensitively)
51
+ * in order to be ingested.
52
52
  */
53
53
  readonly appFilterRegexes: pulumi.Output<string[] | undefined>;
54
54
  /**
55
- * Name of the SaaS controller
55
+ * Name of the SaaS controller.
56
56
  */
57
57
  readonly controllerName: pulumi.Output<string>;
58
58
  /**
59
- * Boolean flag to control Application Infrastructure metric injection
59
+ * Boolean flag to control Application Infrastructure metric ingestion.
60
60
  */
61
61
  readonly enableAppInfraMetrics: pulumi.Output<boolean | undefined>;
62
62
  /**
63
- * Boolean flag to control Backend metric injection
63
+ * Boolean flag to control Backend metric ingestion.
64
64
  */
65
65
  readonly enableBackendMetrics: pulumi.Output<boolean | undefined>;
66
66
  /**
67
- * Boolean flag to control Business Transaction metric injection
67
+ * Boolean flag to control Business Transaction metric ingestion.
68
68
  */
69
69
  readonly enableBusinessTrxMetrics: pulumi.Output<boolean | undefined>;
70
70
  /**
71
- * Boolean flag to control Error metric injection
71
+ * Boolean flag to control Error metric ingestion.
72
72
  */
73
73
  readonly enableErrorMetrics: pulumi.Output<boolean | undefined>;
74
74
  /**
75
- * Boolean flag to control Individual Node metric injection
75
+ * Boolean flag to control Individual Node metric ingestion.
76
76
  */
77
77
  readonly enableIndividualNodeMetrics: pulumi.Output<boolean | undefined>;
78
78
  /**
79
- * Boolean flag to control Overall Performance metric injection
79
+ * Boolean flag to control Overall Performance metric ingestion.
80
80
  */
81
81
  readonly enableOverallPerfMetrics: pulumi.Output<boolean | undefined>;
82
82
  /**
83
83
  * Set this to `false` to get separate results for all values within the time range,
84
- * by default it is `true`
84
+ * by default it is `true`.
85
85
  */
86
86
  readonly enableRollup: pulumi.Output<boolean | undefined>;
87
87
  /**
88
- * Boolean flag to control Service End point metric injection
88
+ * Boolean flag to control Service End point metric ingestion.
89
89
  */
90
90
  readonly enableServiceEndpointMetrics: pulumi.Output<boolean | undefined>;
91
91
  /**
92
- * Password for AppDynamics user
92
+ * Password for AppDynamics user.
93
93
  */
94
94
  readonly encryptedPassword: pulumi.Output<string>;
95
95
  /**
96
- * Forces this resource to save, even if errors are present
96
+ * Forces this resource to save, even if errors are present.
97
97
  */
98
98
  readonly forceSave: pulumi.Output<boolean | undefined>;
99
99
  /**
100
- * The human-readable name of this integration
100
+ * The human-readable name of this integration.
101
101
  */
102
102
  readonly name: pulumi.Output<string>;
103
103
  /**
104
- * A value denoting which cloud service this service integrates with
104
+ * A value denoting which cloud service this service integrates with.
105
105
  */
106
106
  readonly service: pulumi.Output<string>;
107
107
  /**
108
- * How often, in minutes, to refresh the service
108
+ * How often, in minutes, to refresh the service.
109
109
  */
110
110
  readonly serviceRefreshRateInMinutes: pulumi.Output<number | undefined>;
111
111
  /**
112
- * Username is a combination of userName and the account name
112
+ * Username is a combination of userName and the account name.
113
113
  */
114
114
  readonly userName: pulumi.Output<string>;
115
115
  /**
@@ -126,75 +126,75 @@ export declare class CloudIntegrationAppDynamics extends pulumi.CustomResource {
126
126
  */
127
127
  export interface CloudIntegrationAppDynamicsState {
128
128
  /**
129
- * A list of point tag key-values to add to every point ingested using this integration
129
+ * A list of point tag key-values to add to every point ingested using this integration.
130
130
  */
131
131
  additionalTags?: pulumi.Input<{
132
132
  [key: string]: pulumi.Input<string>;
133
133
  }>;
134
134
  /**
135
- * List of regular expressions that a application name must match (case-insensitively)
136
- * in order to be ingested
135
+ * List of regular expressions that an application name must match (case-insensitively)
136
+ * in order to be ingested.
137
137
  */
138
138
  appFilterRegexes?: pulumi.Input<pulumi.Input<string>[]>;
139
139
  /**
140
- * Name of the SaaS controller
140
+ * Name of the SaaS controller.
141
141
  */
142
142
  controllerName?: pulumi.Input<string>;
143
143
  /**
144
- * Boolean flag to control Application Infrastructure metric injection
144
+ * Boolean flag to control Application Infrastructure metric ingestion.
145
145
  */
146
146
  enableAppInfraMetrics?: pulumi.Input<boolean>;
147
147
  /**
148
- * Boolean flag to control Backend metric injection
148
+ * Boolean flag to control Backend metric ingestion.
149
149
  */
150
150
  enableBackendMetrics?: pulumi.Input<boolean>;
151
151
  /**
152
- * Boolean flag to control Business Transaction metric injection
152
+ * Boolean flag to control Business Transaction metric ingestion.
153
153
  */
154
154
  enableBusinessTrxMetrics?: pulumi.Input<boolean>;
155
155
  /**
156
- * Boolean flag to control Error metric injection
156
+ * Boolean flag to control Error metric ingestion.
157
157
  */
158
158
  enableErrorMetrics?: pulumi.Input<boolean>;
159
159
  /**
160
- * Boolean flag to control Individual Node metric injection
160
+ * Boolean flag to control Individual Node metric ingestion.
161
161
  */
162
162
  enableIndividualNodeMetrics?: pulumi.Input<boolean>;
163
163
  /**
164
- * Boolean flag to control Overall Performance metric injection
164
+ * Boolean flag to control Overall Performance metric ingestion.
165
165
  */
166
166
  enableOverallPerfMetrics?: pulumi.Input<boolean>;
167
167
  /**
168
168
  * Set this to `false` to get separate results for all values within the time range,
169
- * by default it is `true`
169
+ * by default it is `true`.
170
170
  */
171
171
  enableRollup?: pulumi.Input<boolean>;
172
172
  /**
173
- * Boolean flag to control Service End point metric injection
173
+ * Boolean flag to control Service End point metric ingestion.
174
174
  */
175
175
  enableServiceEndpointMetrics?: pulumi.Input<boolean>;
176
176
  /**
177
- * Password for AppDynamics user
177
+ * Password for AppDynamics user.
178
178
  */
179
179
  encryptedPassword?: pulumi.Input<string>;
180
180
  /**
181
- * Forces this resource to save, even if errors are present
181
+ * Forces this resource to save, even if errors are present.
182
182
  */
183
183
  forceSave?: pulumi.Input<boolean>;
184
184
  /**
185
- * The human-readable name of this integration
185
+ * The human-readable name of this integration.
186
186
  */
187
187
  name?: pulumi.Input<string>;
188
188
  /**
189
- * A value denoting which cloud service this service integrates with
189
+ * A value denoting which cloud service this service integrates with.
190
190
  */
191
191
  service?: pulumi.Input<string>;
192
192
  /**
193
- * How often, in minutes, to refresh the service
193
+ * How often, in minutes, to refresh the service.
194
194
  */
195
195
  serviceRefreshRateInMinutes?: pulumi.Input<number>;
196
196
  /**
197
- * Username is a combination of userName and the account name
197
+ * Username is a combination of userName and the account name.
198
198
  */
199
199
  userName?: pulumi.Input<string>;
200
200
  }
@@ -203,75 +203,75 @@ export interface CloudIntegrationAppDynamicsState {
203
203
  */
204
204
  export interface CloudIntegrationAppDynamicsArgs {
205
205
  /**
206
- * A list of point tag key-values to add to every point ingested using this integration
206
+ * A list of point tag key-values to add to every point ingested using this integration.
207
207
  */
208
208
  additionalTags?: pulumi.Input<{
209
209
  [key: string]: pulumi.Input<string>;
210
210
  }>;
211
211
  /**
212
- * List of regular expressions that a application name must match (case-insensitively)
213
- * in order to be ingested
212
+ * List of regular expressions that an application name must match (case-insensitively)
213
+ * in order to be ingested.
214
214
  */
215
215
  appFilterRegexes?: pulumi.Input<pulumi.Input<string>[]>;
216
216
  /**
217
- * Name of the SaaS controller
217
+ * Name of the SaaS controller.
218
218
  */
219
219
  controllerName: pulumi.Input<string>;
220
220
  /**
221
- * Boolean flag to control Application Infrastructure metric injection
221
+ * Boolean flag to control Application Infrastructure metric ingestion.
222
222
  */
223
223
  enableAppInfraMetrics?: pulumi.Input<boolean>;
224
224
  /**
225
- * Boolean flag to control Backend metric injection
225
+ * Boolean flag to control Backend metric ingestion.
226
226
  */
227
227
  enableBackendMetrics?: pulumi.Input<boolean>;
228
228
  /**
229
- * Boolean flag to control Business Transaction metric injection
229
+ * Boolean flag to control Business Transaction metric ingestion.
230
230
  */
231
231
  enableBusinessTrxMetrics?: pulumi.Input<boolean>;
232
232
  /**
233
- * Boolean flag to control Error metric injection
233
+ * Boolean flag to control Error metric ingestion.
234
234
  */
235
235
  enableErrorMetrics?: pulumi.Input<boolean>;
236
236
  /**
237
- * Boolean flag to control Individual Node metric injection
237
+ * Boolean flag to control Individual Node metric ingestion.
238
238
  */
239
239
  enableIndividualNodeMetrics?: pulumi.Input<boolean>;
240
240
  /**
241
- * Boolean flag to control Overall Performance metric injection
241
+ * Boolean flag to control Overall Performance metric ingestion.
242
242
  */
243
243
  enableOverallPerfMetrics?: pulumi.Input<boolean>;
244
244
  /**
245
245
  * Set this to `false` to get separate results for all values within the time range,
246
- * by default it is `true`
246
+ * by default it is `true`.
247
247
  */
248
248
  enableRollup?: pulumi.Input<boolean>;
249
249
  /**
250
- * Boolean flag to control Service End point metric injection
250
+ * Boolean flag to control Service End point metric ingestion.
251
251
  */
252
252
  enableServiceEndpointMetrics?: pulumi.Input<boolean>;
253
253
  /**
254
- * Password for AppDynamics user
254
+ * Password for AppDynamics user.
255
255
  */
256
256
  encryptedPassword: pulumi.Input<string>;
257
257
  /**
258
- * Forces this resource to save, even if errors are present
258
+ * Forces this resource to save, even if errors are present.
259
259
  */
260
260
  forceSave?: pulumi.Input<boolean>;
261
261
  /**
262
- * The human-readable name of this integration
262
+ * The human-readable name of this integration.
263
263
  */
264
264
  name?: pulumi.Input<string>;
265
265
  /**
266
- * A value denoting which cloud service this service integrates with
266
+ * A value denoting which cloud service this service integrates with.
267
267
  */
268
268
  service: pulumi.Input<string>;
269
269
  /**
270
- * How often, in minutes, to refresh the service
270
+ * How often, in minutes, to refresh the service.
271
271
  */
272
272
  serviceRefreshRateInMinutes?: pulumi.Input<number>;
273
273
  /**
274
- * Username is a combination of userName and the account name
274
+ * Username is a combination of userName and the account name.
275
275
  */
276
276
  userName: pulumi.Input<string>;
277
277
  }
@@ -6,7 +6,7 @@ exports.CloudIntegrationAppDynamics = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Provides a Wavefront Cloud Integration for App Dynamics. This allows app dynamics cloud integrations to be created,
9
+ * Provides a Wavefront Cloud Integration for AppDynamics. This allows AppDynamics cloud integrations to be created,
10
10
  * updated, and deleted.
11
11
  *
12
12
  * ## Example Usage
@@ -24,7 +24,7 @@ const utilities = require("./utilities");
24
24
  *
25
25
  * ## Import
26
26
  *
27
- * App Dynamic Cloud Integrations can be imported using the `id`, e.g.
27
+ * AppDynamic Cloud Integrations can be imported by using the `id`, e.g.
28
28
  *
29
29
  * ```sh
30
30
  * $ pulumi import wavefront:index/cloudIntegrationAppDynamics:CloudIntegrationAppDynamics app_dynamics a411c16b-3cf7-4f03-bf11-8ca05aab898d
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * Provides an External ID for use in AWS IAM Roles. This allows External IDs to be created and deleted.
3
+ * Provides an External ID for use in Amazon Web Services IAM Roles. This allows External IDs to be created and deleted.
4
4
  *
5
5
  * ## Example Usage
6
6
  *
@@ -13,7 +13,7 @@ import * as pulumi from "@pulumi/pulumi";
13
13
  *
14
14
  * ## Import
15
15
  *
16
- * External IDs can be imported using the `id`, e.g.
16
+ * External IDs can be imported by using the `id`, e.g.
17
17
  *
18
18
  * ```sh
19
19
  * $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k
@@ -6,7 +6,7 @@ exports.CloudIntegrationAwsExternalId = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Provides an External ID for use in AWS IAM Roles. This allows External IDs to be created and deleted.
9
+ * Provides an External ID for use in Amazon Web Services IAM Roles. This allows External IDs to be created and deleted.
10
10
  *
11
11
  * ## Example Usage
12
12
  *
@@ -19,7 +19,7 @@ const utilities = require("./utilities");
19
19
  *
20
20
  * ## Import
21
21
  *
22
- * External IDs can be imported using the `id`, e.g.
22
+ * External IDs can be imported by using the `id`, e.g.
23
23
  *
24
24
  * ```sh
25
25
  * $ pulumi import wavefront:index/cloudIntegrationAwsExternalId:CloudIntegrationAwsExternalId external_id uGJdkH3k