pulumi-wavefront 3.1.8a1741099290__py3-none-any.whl → 3.1.9__py3-none-any.whl
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.
- pulumi_wavefront/__init__.py +1 -0
- pulumi_wavefront/_inputs.py +501 -500
- pulumi_wavefront/alert.py +242 -238
- pulumi_wavefront/alert_target.py +151 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +242 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +4 -0
- pulumi_wavefront/cloud_integration_azure.py +158 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +130 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +158 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +172 -168
- pulumi_wavefront/cloud_integration_ec2.py +116 -112
- pulumi_wavefront/cloud_integration_gcp.py +130 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +116 -112
- pulumi_wavefront/cloud_integration_new_relic.py +116 -112
- pulumi_wavefront/config/__init__.py +1 -0
- pulumi_wavefront/config/__init__.pyi +1 -0
- pulumi_wavefront/config/vars.py +1 -0
- pulumi_wavefront/dashboard.py +130 -126
- pulumi_wavefront/dashboard_json.py +18 -14
- pulumi_wavefront/derived_metric.py +74 -70
- pulumi_wavefront/event.py +70 -66
- pulumi_wavefront/external_link.py +102 -98
- pulumi_wavefront/get_alert.py +31 -30
- pulumi_wavefront/get_alerts.py +12 -11
- pulumi_wavefront/get_dashboard.py +38 -37
- pulumi_wavefront/get_dashboards.py +12 -11
- pulumi_wavefront/get_default_user_group.py +3 -2
- pulumi_wavefront/get_derived_metric.py +29 -28
- pulumi_wavefront/get_derived_metrics.py +12 -11
- pulumi_wavefront/get_event.py +15 -14
- pulumi_wavefront/get_events.py +22 -21
- pulumi_wavefront/get_external_link.py +17 -16
- pulumi_wavefront/get_external_links.py +12 -11
- pulumi_wavefront/get_maintenance_window.py +23 -22
- pulumi_wavefront/get_maintenance_window_all.py +8 -7
- pulumi_wavefront/get_metrics_policy.py +5 -4
- pulumi_wavefront/get_role.py +9 -8
- pulumi_wavefront/get_roles.py +12 -11
- pulumi_wavefront/get_user.py +11 -10
- pulumi_wavefront/get_user_group.py +10 -9
- pulumi_wavefront/get_user_groups.py +12 -11
- pulumi_wavefront/get_users.py +2 -1
- pulumi_wavefront/ingestion_policy.py +82 -78
- pulumi_wavefront/maintenance_window.py +130 -126
- pulumi_wavefront/metrics_policy.py +25 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +22 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +60 -56
- pulumi_wavefront/service_account.py +88 -84
- pulumi_wavefront/user.py +60 -56
- pulumi_wavefront/user_group.py +32 -28
- {pulumi_wavefront-3.1.8a1741099290.dist-info → pulumi_wavefront-3.1.9.dist-info}/METADATA +2 -2
- pulumi_wavefront-3.1.9.dist-info/RECORD +58 -0
- {pulumi_wavefront-3.1.8a1741099290.dist-info → pulumi_wavefront-3.1.9.dist-info}/WHEEL +1 -1
- pulumi_wavefront-3.1.8a1741099290.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.1.8a1741099290.dist-info → pulumi_wavefront-3.1.9.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
4
|
|
5
|
+
import builtins
|
5
6
|
import copy
|
6
7
|
import warnings
|
7
8
|
import sys
|
@@ -19,35 +20,35 @@ __all__ = ['CloudIntegrationCloudWatchArgs', 'CloudIntegrationCloudWatch']
|
|
19
20
|
@pulumi.input_type
|
20
21
|
class CloudIntegrationCloudWatchArgs:
|
21
22
|
def __init__(__self__, *,
|
22
|
-
external_id: pulumi.Input[str],
|
23
|
-
role_arn: pulumi.Input[str],
|
24
|
-
service: pulumi.Input[str],
|
25
|
-
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
26
|
-
force_save: Optional[pulumi.Input[bool]] = None,
|
27
|
-
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
29
|
-
name: Optional[pulumi.Input[str]] = None,
|
30
|
-
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
31
|
-
point_tag_filter_regex: Optional[pulumi.Input[str]] = None,
|
32
|
-
service_refresh_rate_in_minutes: Optional[pulumi.Input[int]] = None,
|
33
|
-
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
23
|
+
external_id: pulumi.Input[builtins.str],
|
24
|
+
role_arn: pulumi.Input[builtins.str],
|
25
|
+
service: pulumi.Input[builtins.str],
|
26
|
+
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
27
|
+
force_save: Optional[pulumi.Input[builtins.bool]] = None,
|
28
|
+
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
29
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
30
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
31
|
+
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
32
|
+
point_tag_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
33
|
+
service_refresh_rate_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
|
34
|
+
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
34
35
|
"""
|
35
36
|
The set of arguments for constructing a CloudIntegrationCloudWatch resource.
|
36
|
-
:param pulumi.Input[str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
37
|
-
:param pulumi.Input[str] role_arn: The external ID corresponding to the Role ARN.
|
38
|
-
:param pulumi.Input[str] service: A value denoting which cloud service this service integrates with.
|
39
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
40
|
-
:param pulumi.Input[bool] force_save: Forces this resource to save, even if errors are present.
|
41
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
37
|
+
:param pulumi.Input[builtins.str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
38
|
+
:param pulumi.Input[builtins.str] role_arn: The external ID corresponding to the Role ARN.
|
39
|
+
:param pulumi.Input[builtins.str] service: A value denoting which cloud service this service integrates with.
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
41
|
+
:param pulumi.Input[builtins.bool] force_save: Forces this resource to save, even if errors are present.
|
42
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
42
43
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
43
44
|
Multiple entries are OR'ed.
|
44
|
-
:param pulumi.Input[str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
45
|
-
:param pulumi.Input[str] name: The human-readable name of this integration.
|
46
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
47
|
-
:param pulumi.Input[str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
45
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
46
|
+
:param pulumi.Input[builtins.str] name: The human-readable name of this integration.
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
48
|
+
:param pulumi.Input[builtins.str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
48
49
|
in order to be ingested.
|
49
|
-
:param pulumi.Input[int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
50
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
50
|
+
:param pulumi.Input[builtins.int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
51
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
51
52
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
52
53
|
Multiple entries are OR'ed.
|
53
54
|
"""
|
@@ -75,67 +76,67 @@ class CloudIntegrationCloudWatchArgs:
|
|
75
76
|
|
76
77
|
@property
|
77
78
|
@pulumi.getter(name="externalId")
|
78
|
-
def external_id(self) -> pulumi.Input[str]:
|
79
|
+
def external_id(self) -> pulumi.Input[builtins.str]:
|
79
80
|
"""
|
80
81
|
The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
81
82
|
"""
|
82
83
|
return pulumi.get(self, "external_id")
|
83
84
|
|
84
85
|
@external_id.setter
|
85
|
-
def external_id(self, value: pulumi.Input[str]):
|
86
|
+
def external_id(self, value: pulumi.Input[builtins.str]):
|
86
87
|
pulumi.set(self, "external_id", value)
|
87
88
|
|
88
89
|
@property
|
89
90
|
@pulumi.getter(name="roleArn")
|
90
|
-
def role_arn(self) -> pulumi.Input[str]:
|
91
|
+
def role_arn(self) -> pulumi.Input[builtins.str]:
|
91
92
|
"""
|
92
93
|
The external ID corresponding to the Role ARN.
|
93
94
|
"""
|
94
95
|
return pulumi.get(self, "role_arn")
|
95
96
|
|
96
97
|
@role_arn.setter
|
97
|
-
def role_arn(self, value: pulumi.Input[str]):
|
98
|
+
def role_arn(self, value: pulumi.Input[builtins.str]):
|
98
99
|
pulumi.set(self, "role_arn", value)
|
99
100
|
|
100
101
|
@property
|
101
102
|
@pulumi.getter
|
102
|
-
def service(self) -> pulumi.Input[str]:
|
103
|
+
def service(self) -> pulumi.Input[builtins.str]:
|
103
104
|
"""
|
104
105
|
A value denoting which cloud service this service integrates with.
|
105
106
|
"""
|
106
107
|
return pulumi.get(self, "service")
|
107
108
|
|
108
109
|
@service.setter
|
109
|
-
def service(self, value: pulumi.Input[str]):
|
110
|
+
def service(self, value: pulumi.Input[builtins.str]):
|
110
111
|
pulumi.set(self, "service", value)
|
111
112
|
|
112
113
|
@property
|
113
114
|
@pulumi.getter(name="additionalTags")
|
114
|
-
def additional_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
115
|
+
def additional_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
115
116
|
"""
|
116
117
|
A list of point tag key-values to add to every point ingested using this integration.
|
117
118
|
"""
|
118
119
|
return pulumi.get(self, "additional_tags")
|
119
120
|
|
120
121
|
@additional_tags.setter
|
121
|
-
def additional_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
122
|
+
def additional_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
122
123
|
pulumi.set(self, "additional_tags", value)
|
123
124
|
|
124
125
|
@property
|
125
126
|
@pulumi.getter(name="forceSave")
|
126
|
-
def force_save(self) -> Optional[pulumi.Input[bool]]:
|
127
|
+
def force_save(self) -> Optional[pulumi.Input[builtins.bool]]:
|
127
128
|
"""
|
128
129
|
Forces this resource to save, even if errors are present.
|
129
130
|
"""
|
130
131
|
return pulumi.get(self, "force_save")
|
131
132
|
|
132
133
|
@force_save.setter
|
133
|
-
def force_save(self, value: Optional[pulumi.Input[bool]]):
|
134
|
+
def force_save(self, value: Optional[pulumi.Input[builtins.bool]]):
|
134
135
|
pulumi.set(self, "force_save", value)
|
135
136
|
|
136
137
|
@property
|
137
138
|
@pulumi.getter(name="instanceSelectionTags")
|
138
|
-
def instance_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
139
|
+
def instance_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
139
140
|
"""
|
140
141
|
A string->string map allow list of instance tag-value pairs (in AWS).
|
141
142
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
@@ -144,48 +145,48 @@ class CloudIntegrationCloudWatchArgs:
|
|
144
145
|
return pulumi.get(self, "instance_selection_tags")
|
145
146
|
|
146
147
|
@instance_selection_tags.setter
|
147
|
-
def instance_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
148
|
+
def instance_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
148
149
|
pulumi.set(self, "instance_selection_tags", value)
|
149
150
|
|
150
151
|
@property
|
151
152
|
@pulumi.getter(name="metricFilterRegex")
|
152
|
-
def metric_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
153
|
+
def metric_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
153
154
|
"""
|
154
155
|
A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
155
156
|
"""
|
156
157
|
return pulumi.get(self, "metric_filter_regex")
|
157
158
|
|
158
159
|
@metric_filter_regex.setter
|
159
|
-
def metric_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
160
|
+
def metric_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
160
161
|
pulumi.set(self, "metric_filter_regex", value)
|
161
162
|
|
162
163
|
@property
|
163
164
|
@pulumi.getter
|
164
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
165
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
165
166
|
"""
|
166
167
|
The human-readable name of this integration.
|
167
168
|
"""
|
168
169
|
return pulumi.get(self, "name")
|
169
170
|
|
170
171
|
@name.setter
|
171
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
172
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
172
173
|
pulumi.set(self, "name", value)
|
173
174
|
|
174
175
|
@property
|
175
176
|
@pulumi.getter
|
176
|
-
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
177
|
+
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
177
178
|
"""
|
178
179
|
A list of namespaces that limit what we query from CloudWatch.
|
179
180
|
"""
|
180
181
|
return pulumi.get(self, "namespaces")
|
181
182
|
|
182
183
|
@namespaces.setter
|
183
|
-
def namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
184
|
+
def namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
184
185
|
pulumi.set(self, "namespaces", value)
|
185
186
|
|
186
187
|
@property
|
187
188
|
@pulumi.getter(name="pointTagFilterRegex")
|
188
|
-
def point_tag_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
189
|
+
def point_tag_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
189
190
|
"""
|
190
191
|
A regular expression that AWS tag key name must match (case-insensitively)
|
191
192
|
in order to be ingested.
|
@@ -193,24 +194,24 @@ class CloudIntegrationCloudWatchArgs:
|
|
193
194
|
return pulumi.get(self, "point_tag_filter_regex")
|
194
195
|
|
195
196
|
@point_tag_filter_regex.setter
|
196
|
-
def point_tag_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
197
|
+
def point_tag_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
197
198
|
pulumi.set(self, "point_tag_filter_regex", value)
|
198
199
|
|
199
200
|
@property
|
200
201
|
@pulumi.getter(name="serviceRefreshRateInMinutes")
|
201
|
-
def service_refresh_rate_in_minutes(self) -> Optional[pulumi.Input[int]]:
|
202
|
+
def service_refresh_rate_in_minutes(self) -> Optional[pulumi.Input[builtins.int]]:
|
202
203
|
"""
|
203
204
|
How often, in minutes, to refresh the service.
|
204
205
|
"""
|
205
206
|
return pulumi.get(self, "service_refresh_rate_in_minutes")
|
206
207
|
|
207
208
|
@service_refresh_rate_in_minutes.setter
|
208
|
-
def service_refresh_rate_in_minutes(self, value: Optional[pulumi.Input[int]]):
|
209
|
+
def service_refresh_rate_in_minutes(self, value: Optional[pulumi.Input[builtins.int]]):
|
209
210
|
pulumi.set(self, "service_refresh_rate_in_minutes", value)
|
210
211
|
|
211
212
|
@property
|
212
213
|
@pulumi.getter(name="volumeSelectionTags")
|
213
|
-
def volume_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
214
|
+
def volume_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
214
215
|
"""
|
215
216
|
A string->string map of allow list of volume tag-value pairs (in AWS).
|
216
217
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
@@ -219,42 +220,42 @@ class CloudIntegrationCloudWatchArgs:
|
|
219
220
|
return pulumi.get(self, "volume_selection_tags")
|
220
221
|
|
221
222
|
@volume_selection_tags.setter
|
222
|
-
def volume_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
223
|
+
def volume_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
223
224
|
pulumi.set(self, "volume_selection_tags", value)
|
224
225
|
|
225
226
|
|
226
227
|
@pulumi.input_type
|
227
228
|
class _CloudIntegrationCloudWatchState:
|
228
229
|
def __init__(__self__, *,
|
229
|
-
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
230
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
231
|
-
force_save: Optional[pulumi.Input[bool]] = None,
|
232
|
-
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
233
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
234
|
-
name: Optional[pulumi.Input[str]] = None,
|
235
|
-
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
236
|
-
point_tag_filter_regex: Optional[pulumi.Input[str]] = None,
|
237
|
-
role_arn: Optional[pulumi.Input[str]] = None,
|
238
|
-
service: Optional[pulumi.Input[str]] = None,
|
239
|
-
service_refresh_rate_in_minutes: Optional[pulumi.Input[int]] = None,
|
240
|
-
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
230
|
+
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
231
|
+
external_id: Optional[pulumi.Input[builtins.str]] = None,
|
232
|
+
force_save: Optional[pulumi.Input[builtins.bool]] = None,
|
233
|
+
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
234
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
237
|
+
point_tag_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
238
|
+
role_arn: Optional[pulumi.Input[builtins.str]] = None,
|
239
|
+
service: Optional[pulumi.Input[builtins.str]] = None,
|
240
|
+
service_refresh_rate_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
|
241
|
+
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
241
242
|
"""
|
242
243
|
Input properties used for looking up and filtering CloudIntegrationCloudWatch resources.
|
243
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
244
|
-
:param pulumi.Input[str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
245
|
-
:param pulumi.Input[bool] force_save: Forces this resource to save, even if errors are present.
|
246
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
244
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
245
|
+
:param pulumi.Input[builtins.str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
246
|
+
:param pulumi.Input[builtins.bool] force_save: Forces this resource to save, even if errors are present.
|
247
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
247
248
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
248
249
|
Multiple entries are OR'ed.
|
249
|
-
:param pulumi.Input[str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
250
|
-
:param pulumi.Input[str] name: The human-readable name of this integration.
|
251
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
252
|
-
:param pulumi.Input[str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
250
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
251
|
+
:param pulumi.Input[builtins.str] name: The human-readable name of this integration.
|
252
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
253
|
+
:param pulumi.Input[builtins.str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
253
254
|
in order to be ingested.
|
254
|
-
:param pulumi.Input[str] role_arn: The external ID corresponding to the Role ARN.
|
255
|
-
:param pulumi.Input[str] service: A value denoting which cloud service this service integrates with.
|
256
|
-
:param pulumi.Input[int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
257
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
255
|
+
:param pulumi.Input[builtins.str] role_arn: The external ID corresponding to the Role ARN.
|
256
|
+
:param pulumi.Input[builtins.str] service: A value denoting which cloud service this service integrates with.
|
257
|
+
:param pulumi.Input[builtins.int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
258
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
258
259
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
259
260
|
Multiple entries are OR'ed.
|
260
261
|
"""
|
@@ -285,43 +286,43 @@ class _CloudIntegrationCloudWatchState:
|
|
285
286
|
|
286
287
|
@property
|
287
288
|
@pulumi.getter(name="additionalTags")
|
288
|
-
def additional_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
289
|
+
def additional_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
289
290
|
"""
|
290
291
|
A list of point tag key-values to add to every point ingested using this integration.
|
291
292
|
"""
|
292
293
|
return pulumi.get(self, "additional_tags")
|
293
294
|
|
294
295
|
@additional_tags.setter
|
295
|
-
def additional_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
296
|
+
def additional_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
296
297
|
pulumi.set(self, "additional_tags", value)
|
297
298
|
|
298
299
|
@property
|
299
300
|
@pulumi.getter(name="externalId")
|
300
|
-
def external_id(self) -> Optional[pulumi.Input[str]]:
|
301
|
+
def external_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
301
302
|
"""
|
302
303
|
The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
303
304
|
"""
|
304
305
|
return pulumi.get(self, "external_id")
|
305
306
|
|
306
307
|
@external_id.setter
|
307
|
-
def external_id(self, value: Optional[pulumi.Input[str]]):
|
308
|
+
def external_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
308
309
|
pulumi.set(self, "external_id", value)
|
309
310
|
|
310
311
|
@property
|
311
312
|
@pulumi.getter(name="forceSave")
|
312
|
-
def force_save(self) -> Optional[pulumi.Input[bool]]:
|
313
|
+
def force_save(self) -> Optional[pulumi.Input[builtins.bool]]:
|
313
314
|
"""
|
314
315
|
Forces this resource to save, even if errors are present.
|
315
316
|
"""
|
316
317
|
return pulumi.get(self, "force_save")
|
317
318
|
|
318
319
|
@force_save.setter
|
319
|
-
def force_save(self, value: Optional[pulumi.Input[bool]]):
|
320
|
+
def force_save(self, value: Optional[pulumi.Input[builtins.bool]]):
|
320
321
|
pulumi.set(self, "force_save", value)
|
321
322
|
|
322
323
|
@property
|
323
324
|
@pulumi.getter(name="instanceSelectionTags")
|
324
|
-
def instance_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
325
|
+
def instance_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
325
326
|
"""
|
326
327
|
A string->string map allow list of instance tag-value pairs (in AWS).
|
327
328
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
@@ -330,48 +331,48 @@ class _CloudIntegrationCloudWatchState:
|
|
330
331
|
return pulumi.get(self, "instance_selection_tags")
|
331
332
|
|
332
333
|
@instance_selection_tags.setter
|
333
|
-
def instance_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
334
|
+
def instance_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
334
335
|
pulumi.set(self, "instance_selection_tags", value)
|
335
336
|
|
336
337
|
@property
|
337
338
|
@pulumi.getter(name="metricFilterRegex")
|
338
|
-
def metric_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
339
|
+
def metric_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
339
340
|
"""
|
340
341
|
A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
341
342
|
"""
|
342
343
|
return pulumi.get(self, "metric_filter_regex")
|
343
344
|
|
344
345
|
@metric_filter_regex.setter
|
345
|
-
def metric_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
346
|
+
def metric_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
346
347
|
pulumi.set(self, "metric_filter_regex", value)
|
347
348
|
|
348
349
|
@property
|
349
350
|
@pulumi.getter
|
350
|
-
def name(self) -> Optional[pulumi.Input[str]]:
|
351
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
351
352
|
"""
|
352
353
|
The human-readable name of this integration.
|
353
354
|
"""
|
354
355
|
return pulumi.get(self, "name")
|
355
356
|
|
356
357
|
@name.setter
|
357
|
-
def name(self, value: Optional[pulumi.Input[str]]):
|
358
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
358
359
|
pulumi.set(self, "name", value)
|
359
360
|
|
360
361
|
@property
|
361
362
|
@pulumi.getter
|
362
|
-
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
363
|
+
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
363
364
|
"""
|
364
365
|
A list of namespaces that limit what we query from CloudWatch.
|
365
366
|
"""
|
366
367
|
return pulumi.get(self, "namespaces")
|
367
368
|
|
368
369
|
@namespaces.setter
|
369
|
-
def namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
370
|
+
def namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
370
371
|
pulumi.set(self, "namespaces", value)
|
371
372
|
|
372
373
|
@property
|
373
374
|
@pulumi.getter(name="pointTagFilterRegex")
|
374
|
-
def point_tag_filter_regex(self) -> Optional[pulumi.Input[str]]:
|
375
|
+
def point_tag_filter_regex(self) -> Optional[pulumi.Input[builtins.str]]:
|
375
376
|
"""
|
376
377
|
A regular expression that AWS tag key name must match (case-insensitively)
|
377
378
|
in order to be ingested.
|
@@ -379,48 +380,48 @@ class _CloudIntegrationCloudWatchState:
|
|
379
380
|
return pulumi.get(self, "point_tag_filter_regex")
|
380
381
|
|
381
382
|
@point_tag_filter_regex.setter
|
382
|
-
def point_tag_filter_regex(self, value: Optional[pulumi.Input[str]]):
|
383
|
+
def point_tag_filter_regex(self, value: Optional[pulumi.Input[builtins.str]]):
|
383
384
|
pulumi.set(self, "point_tag_filter_regex", value)
|
384
385
|
|
385
386
|
@property
|
386
387
|
@pulumi.getter(name="roleArn")
|
387
|
-
def role_arn(self) -> Optional[pulumi.Input[str]]:
|
388
|
+
def role_arn(self) -> Optional[pulumi.Input[builtins.str]]:
|
388
389
|
"""
|
389
390
|
The external ID corresponding to the Role ARN.
|
390
391
|
"""
|
391
392
|
return pulumi.get(self, "role_arn")
|
392
393
|
|
393
394
|
@role_arn.setter
|
394
|
-
def role_arn(self, value: Optional[pulumi.Input[str]]):
|
395
|
+
def role_arn(self, value: Optional[pulumi.Input[builtins.str]]):
|
395
396
|
pulumi.set(self, "role_arn", value)
|
396
397
|
|
397
398
|
@property
|
398
399
|
@pulumi.getter
|
399
|
-
def service(self) -> Optional[pulumi.Input[str]]:
|
400
|
+
def service(self) -> Optional[pulumi.Input[builtins.str]]:
|
400
401
|
"""
|
401
402
|
A value denoting which cloud service this service integrates with.
|
402
403
|
"""
|
403
404
|
return pulumi.get(self, "service")
|
404
405
|
|
405
406
|
@service.setter
|
406
|
-
def service(self, value: Optional[pulumi.Input[str]]):
|
407
|
+
def service(self, value: Optional[pulumi.Input[builtins.str]]):
|
407
408
|
pulumi.set(self, "service", value)
|
408
409
|
|
409
410
|
@property
|
410
411
|
@pulumi.getter(name="serviceRefreshRateInMinutes")
|
411
|
-
def service_refresh_rate_in_minutes(self) -> Optional[pulumi.Input[int]]:
|
412
|
+
def service_refresh_rate_in_minutes(self) -> Optional[pulumi.Input[builtins.int]]:
|
412
413
|
"""
|
413
414
|
How often, in minutes, to refresh the service.
|
414
415
|
"""
|
415
416
|
return pulumi.get(self, "service_refresh_rate_in_minutes")
|
416
417
|
|
417
418
|
@service_refresh_rate_in_minutes.setter
|
418
|
-
def service_refresh_rate_in_minutes(self, value: Optional[pulumi.Input[int]]):
|
419
|
+
def service_refresh_rate_in_minutes(self, value: Optional[pulumi.Input[builtins.int]]):
|
419
420
|
pulumi.set(self, "service_refresh_rate_in_minutes", value)
|
420
421
|
|
421
422
|
@property
|
422
423
|
@pulumi.getter(name="volumeSelectionTags")
|
423
|
-
def volume_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
424
|
+
def volume_selection_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
424
425
|
"""
|
425
426
|
A string->string map of allow list of volume tag-value pairs (in AWS).
|
426
427
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
@@ -429,27 +430,30 @@ class _CloudIntegrationCloudWatchState:
|
|
429
430
|
return pulumi.get(self, "volume_selection_tags")
|
430
431
|
|
431
432
|
@volume_selection_tags.setter
|
432
|
-
def volume_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
433
|
+
def volume_selection_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
433
434
|
pulumi.set(self, "volume_selection_tags", value)
|
434
435
|
|
435
436
|
|
436
437
|
class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
438
|
+
|
439
|
+
pulumi_type = "wavefront:index/cloudIntegrationCloudWatch:CloudIntegrationCloudWatch"
|
440
|
+
|
437
441
|
@overload
|
438
442
|
def __init__(__self__,
|
439
443
|
resource_name: str,
|
440
444
|
opts: Optional[pulumi.ResourceOptions] = None,
|
441
|
-
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
442
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
443
|
-
force_save: Optional[pulumi.Input[bool]] = None,
|
444
|
-
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
445
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
446
|
-
name: Optional[pulumi.Input[str]] = None,
|
447
|
-
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
448
|
-
point_tag_filter_regex: Optional[pulumi.Input[str]] = None,
|
449
|
-
role_arn: Optional[pulumi.Input[str]] = None,
|
450
|
-
service: Optional[pulumi.Input[str]] = None,
|
451
|
-
service_refresh_rate_in_minutes: Optional[pulumi.Input[int]] = None,
|
452
|
-
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
445
|
+
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
446
|
+
external_id: Optional[pulumi.Input[builtins.str]] = None,
|
447
|
+
force_save: Optional[pulumi.Input[builtins.bool]] = None,
|
448
|
+
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
449
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
450
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
451
|
+
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
452
|
+
point_tag_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
453
|
+
role_arn: Optional[pulumi.Input[builtins.str]] = None,
|
454
|
+
service: Optional[pulumi.Input[builtins.str]] = None,
|
455
|
+
service_refresh_rate_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
|
456
|
+
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
453
457
|
__props__=None):
|
454
458
|
"""
|
455
459
|
Provides a Wavefront Cloud Integration for CloudWatch. This allows CloudWatch cloud integrations to be created,
|
@@ -479,21 +483,21 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
479
483
|
|
480
484
|
:param str resource_name: The name of the resource.
|
481
485
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
482
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
483
|
-
:param pulumi.Input[str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
484
|
-
:param pulumi.Input[bool] force_save: Forces this resource to save, even if errors are present.
|
485
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
486
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
487
|
+
:param pulumi.Input[builtins.str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
488
|
+
:param pulumi.Input[builtins.bool] force_save: Forces this resource to save, even if errors are present.
|
489
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
486
490
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
487
491
|
Multiple entries are OR'ed.
|
488
|
-
:param pulumi.Input[str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
489
|
-
:param pulumi.Input[str] name: The human-readable name of this integration.
|
490
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
491
|
-
:param pulumi.Input[str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
492
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
493
|
+
:param pulumi.Input[builtins.str] name: The human-readable name of this integration.
|
494
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
495
|
+
:param pulumi.Input[builtins.str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
492
496
|
in order to be ingested.
|
493
|
-
:param pulumi.Input[str] role_arn: The external ID corresponding to the Role ARN.
|
494
|
-
:param pulumi.Input[str] service: A value denoting which cloud service this service integrates with.
|
495
|
-
:param pulumi.Input[int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
496
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
497
|
+
:param pulumi.Input[builtins.str] role_arn: The external ID corresponding to the Role ARN.
|
498
|
+
:param pulumi.Input[builtins.str] service: A value denoting which cloud service this service integrates with.
|
499
|
+
:param pulumi.Input[builtins.int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
500
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
497
501
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
498
502
|
Multiple entries are OR'ed.
|
499
503
|
"""
|
@@ -544,18 +548,18 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
544
548
|
def _internal_init(__self__,
|
545
549
|
resource_name: str,
|
546
550
|
opts: Optional[pulumi.ResourceOptions] = None,
|
547
|
-
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
548
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
549
|
-
force_save: Optional[pulumi.Input[bool]] = None,
|
550
|
-
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
551
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
552
|
-
name: Optional[pulumi.Input[str]] = None,
|
553
|
-
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
554
|
-
point_tag_filter_regex: Optional[pulumi.Input[str]] = None,
|
555
|
-
role_arn: Optional[pulumi.Input[str]] = None,
|
556
|
-
service: Optional[pulumi.Input[str]] = None,
|
557
|
-
service_refresh_rate_in_minutes: Optional[pulumi.Input[int]] = None,
|
558
|
-
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
551
|
+
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
552
|
+
external_id: Optional[pulumi.Input[builtins.str]] = None,
|
553
|
+
force_save: Optional[pulumi.Input[builtins.bool]] = None,
|
554
|
+
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
555
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
556
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
557
|
+
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
558
|
+
point_tag_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
559
|
+
role_arn: Optional[pulumi.Input[builtins.str]] = None,
|
560
|
+
service: Optional[pulumi.Input[builtins.str]] = None,
|
561
|
+
service_refresh_rate_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
|
562
|
+
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
559
563
|
__props__=None):
|
560
564
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
561
565
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -593,18 +597,18 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
593
597
|
def get(resource_name: str,
|
594
598
|
id: pulumi.Input[str],
|
595
599
|
opts: Optional[pulumi.ResourceOptions] = None,
|
596
|
-
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
597
|
-
external_id: Optional[pulumi.Input[str]] = None,
|
598
|
-
force_save: Optional[pulumi.Input[bool]] = None,
|
599
|
-
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
600
|
-
metric_filter_regex: Optional[pulumi.Input[str]] = None,
|
601
|
-
name: Optional[pulumi.Input[str]] = None,
|
602
|
-
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
603
|
-
point_tag_filter_regex: Optional[pulumi.Input[str]] = None,
|
604
|
-
role_arn: Optional[pulumi.Input[str]] = None,
|
605
|
-
service: Optional[pulumi.Input[str]] = None,
|
606
|
-
service_refresh_rate_in_minutes: Optional[pulumi.Input[int]] = None,
|
607
|
-
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'CloudIntegrationCloudWatch':
|
600
|
+
additional_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
601
|
+
external_id: Optional[pulumi.Input[builtins.str]] = None,
|
602
|
+
force_save: Optional[pulumi.Input[builtins.bool]] = None,
|
603
|
+
instance_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
604
|
+
metric_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
605
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
606
|
+
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
607
|
+
point_tag_filter_regex: Optional[pulumi.Input[builtins.str]] = None,
|
608
|
+
role_arn: Optional[pulumi.Input[builtins.str]] = None,
|
609
|
+
service: Optional[pulumi.Input[builtins.str]] = None,
|
610
|
+
service_refresh_rate_in_minutes: Optional[pulumi.Input[builtins.int]] = None,
|
611
|
+
volume_selection_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None) -> 'CloudIntegrationCloudWatch':
|
608
612
|
"""
|
609
613
|
Get an existing CloudIntegrationCloudWatch resource's state with the given name, id, and optional extra
|
610
614
|
properties used to qualify the lookup.
|
@@ -612,21 +616,21 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
612
616
|
:param str resource_name: The unique name of the resulting resource.
|
613
617
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
614
618
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
615
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
616
|
-
:param pulumi.Input[str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
617
|
-
:param pulumi.Input[bool] force_save: Forces this resource to save, even if errors are present.
|
618
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
619
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] additional_tags: A list of point tag key-values to add to every point ingested using this integration.
|
620
|
+
:param pulumi.Input[builtins.str] external_id: The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
621
|
+
:param pulumi.Input[builtins.bool] force_save: Forces this resource to save, even if errors are present.
|
622
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] instance_selection_tags: A string->string map allow list of instance tag-value pairs (in AWS).
|
619
623
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
620
624
|
Multiple entries are OR'ed.
|
621
|
-
:param pulumi.Input[str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
622
|
-
:param pulumi.Input[str] name: The human-readable name of this integration.
|
623
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
624
|
-
:param pulumi.Input[str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
625
|
+
:param pulumi.Input[builtins.str] metric_filter_regex: A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
626
|
+
:param pulumi.Input[builtins.str] name: The human-readable name of this integration.
|
627
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] namespaces: A list of namespaces that limit what we query from CloudWatch.
|
628
|
+
:param pulumi.Input[builtins.str] point_tag_filter_regex: A regular expression that AWS tag key name must match (case-insensitively)
|
625
629
|
in order to be ingested.
|
626
|
-
:param pulumi.Input[str] role_arn: The external ID corresponding to the Role ARN.
|
627
|
-
:param pulumi.Input[str] service: A value denoting which cloud service this service integrates with.
|
628
|
-
:param pulumi.Input[int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
629
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
630
|
+
:param pulumi.Input[builtins.str] role_arn: The external ID corresponding to the Role ARN.
|
631
|
+
:param pulumi.Input[builtins.str] service: A value denoting which cloud service this service integrates with.
|
632
|
+
:param pulumi.Input[builtins.int] service_refresh_rate_in_minutes: How often, in minutes, to refresh the service.
|
633
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] volume_selection_tags: A string->string map of allow list of volume tag-value pairs (in AWS).
|
630
634
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|
631
635
|
Multiple entries are OR'ed.
|
632
636
|
"""
|
@@ -650,7 +654,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
650
654
|
|
651
655
|
@property
|
652
656
|
@pulumi.getter(name="additionalTags")
|
653
|
-
def additional_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
657
|
+
def additional_tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
654
658
|
"""
|
655
659
|
A list of point tag key-values to add to every point ingested using this integration.
|
656
660
|
"""
|
@@ -658,7 +662,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
658
662
|
|
659
663
|
@property
|
660
664
|
@pulumi.getter(name="externalId")
|
661
|
-
def external_id(self) -> pulumi.Output[str]:
|
665
|
+
def external_id(self) -> pulumi.Output[builtins.str]:
|
662
666
|
"""
|
663
667
|
The Role ARN that the customer has created in AWS IAM to allow access to Wavefront.
|
664
668
|
"""
|
@@ -666,7 +670,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
666
670
|
|
667
671
|
@property
|
668
672
|
@pulumi.getter(name="forceSave")
|
669
|
-
def force_save(self) -> pulumi.Output[Optional[bool]]:
|
673
|
+
def force_save(self) -> pulumi.Output[Optional[builtins.bool]]:
|
670
674
|
"""
|
671
675
|
Forces this resource to save, even if errors are present.
|
672
676
|
"""
|
@@ -674,7 +678,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
674
678
|
|
675
679
|
@property
|
676
680
|
@pulumi.getter(name="instanceSelectionTags")
|
677
|
-
def instance_selection_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
681
|
+
def instance_selection_tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
678
682
|
"""
|
679
683
|
A string->string map allow list of instance tag-value pairs (in AWS).
|
680
684
|
If the instance's AWS tags match this allow list, CloudWatch data about this instance is ingested.
|
@@ -684,7 +688,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
684
688
|
|
685
689
|
@property
|
686
690
|
@pulumi.getter(name="metricFilterRegex")
|
687
|
-
def metric_filter_regex(self) -> pulumi.Output[Optional[str]]:
|
691
|
+
def metric_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
|
688
692
|
"""
|
689
693
|
A regular expression that a CloudWatch metric name must match (case-insensitively) in order to be ingested.
|
690
694
|
"""
|
@@ -692,7 +696,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
692
696
|
|
693
697
|
@property
|
694
698
|
@pulumi.getter
|
695
|
-
def name(self) -> pulumi.Output[str]:
|
699
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
696
700
|
"""
|
697
701
|
The human-readable name of this integration.
|
698
702
|
"""
|
@@ -700,7 +704,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
700
704
|
|
701
705
|
@property
|
702
706
|
@pulumi.getter
|
703
|
-
def namespaces(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
707
|
+
def namespaces(self) -> pulumi.Output[Optional[Sequence[builtins.str]]]:
|
704
708
|
"""
|
705
709
|
A list of namespaces that limit what we query from CloudWatch.
|
706
710
|
"""
|
@@ -708,7 +712,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
708
712
|
|
709
713
|
@property
|
710
714
|
@pulumi.getter(name="pointTagFilterRegex")
|
711
|
-
def point_tag_filter_regex(self) -> pulumi.Output[Optional[str]]:
|
715
|
+
def point_tag_filter_regex(self) -> pulumi.Output[Optional[builtins.str]]:
|
712
716
|
"""
|
713
717
|
A regular expression that AWS tag key name must match (case-insensitively)
|
714
718
|
in order to be ingested.
|
@@ -717,7 +721,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
717
721
|
|
718
722
|
@property
|
719
723
|
@pulumi.getter(name="roleArn")
|
720
|
-
def role_arn(self) -> pulumi.Output[str]:
|
724
|
+
def role_arn(self) -> pulumi.Output[builtins.str]:
|
721
725
|
"""
|
722
726
|
The external ID corresponding to the Role ARN.
|
723
727
|
"""
|
@@ -725,7 +729,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
725
729
|
|
726
730
|
@property
|
727
731
|
@pulumi.getter
|
728
|
-
def service(self) -> pulumi.Output[str]:
|
732
|
+
def service(self) -> pulumi.Output[builtins.str]:
|
729
733
|
"""
|
730
734
|
A value denoting which cloud service this service integrates with.
|
731
735
|
"""
|
@@ -733,7 +737,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
733
737
|
|
734
738
|
@property
|
735
739
|
@pulumi.getter(name="serviceRefreshRateInMinutes")
|
736
|
-
def service_refresh_rate_in_minutes(self) -> pulumi.Output[Optional[int]]:
|
740
|
+
def service_refresh_rate_in_minutes(self) -> pulumi.Output[Optional[builtins.int]]:
|
737
741
|
"""
|
738
742
|
How often, in minutes, to refresh the service.
|
739
743
|
"""
|
@@ -741,7 +745,7 @@ class CloudIntegrationCloudWatch(pulumi.CustomResource):
|
|
741
745
|
|
742
746
|
@property
|
743
747
|
@pulumi.getter(name="volumeSelectionTags")
|
744
|
-
def volume_selection_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
748
|
+
def volume_selection_tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
745
749
|
"""
|
746
750
|
A string->string map of allow list of volume tag-value pairs (in AWS).
|
747
751
|
If the volume's AWS tags match this allow list, CloudWatch data about this volume is ingested.
|