pulumi-wavefront 3.2.0a1743576067__py3-none-any.whl → 3.2.0a1744267399__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.
Files changed (57) hide show
  1. pulumi_wavefront/__init__.py +1 -0
  2. pulumi_wavefront/_inputs.py +501 -500
  3. pulumi_wavefront/alert.py +239 -238
  4. pulumi_wavefront/alert_target.py +148 -147
  5. pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
  6. pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
  7. pulumi_wavefront/cloud_integration_azure.py +155 -154
  8. pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
  9. pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
  10. pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
  11. pulumi_wavefront/cloud_integration_ec2.py +113 -112
  12. pulumi_wavefront/cloud_integration_gcp.py +127 -126
  13. pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
  14. pulumi_wavefront/cloud_integration_new_relic.py +113 -112
  15. pulumi_wavefront/config/__init__.py +1 -0
  16. pulumi_wavefront/config/__init__.pyi +1 -0
  17. pulumi_wavefront/config/vars.py +1 -0
  18. pulumi_wavefront/dashboard.py +127 -126
  19. pulumi_wavefront/dashboard_json.py +15 -14
  20. pulumi_wavefront/derived_metric.py +71 -70
  21. pulumi_wavefront/event.py +67 -66
  22. pulumi_wavefront/external_link.py +99 -98
  23. pulumi_wavefront/get_alert.py +31 -30
  24. pulumi_wavefront/get_alerts.py +12 -11
  25. pulumi_wavefront/get_dashboard.py +38 -37
  26. pulumi_wavefront/get_dashboards.py +12 -11
  27. pulumi_wavefront/get_default_user_group.py +3 -2
  28. pulumi_wavefront/get_derived_metric.py +29 -28
  29. pulumi_wavefront/get_derived_metrics.py +12 -11
  30. pulumi_wavefront/get_event.py +15 -14
  31. pulumi_wavefront/get_events.py +22 -21
  32. pulumi_wavefront/get_external_link.py +17 -16
  33. pulumi_wavefront/get_external_links.py +12 -11
  34. pulumi_wavefront/get_maintenance_window.py +23 -22
  35. pulumi_wavefront/get_maintenance_window_all.py +8 -7
  36. pulumi_wavefront/get_metrics_policy.py +5 -4
  37. pulumi_wavefront/get_role.py +9 -8
  38. pulumi_wavefront/get_roles.py +12 -11
  39. pulumi_wavefront/get_user.py +11 -10
  40. pulumi_wavefront/get_user_group.py +10 -9
  41. pulumi_wavefront/get_user_groups.py +12 -11
  42. pulumi_wavefront/get_users.py +2 -1
  43. pulumi_wavefront/ingestion_policy.py +79 -78
  44. pulumi_wavefront/maintenance_window.py +127 -126
  45. pulumi_wavefront/metrics_policy.py +22 -21
  46. pulumi_wavefront/outputs.py +1205 -1204
  47. pulumi_wavefront/provider.py +19 -18
  48. pulumi_wavefront/pulumi-plugin.json +1 -1
  49. pulumi_wavefront/role.py +57 -56
  50. pulumi_wavefront/service_account.py +85 -84
  51. pulumi_wavefront/user.py +57 -56
  52. pulumi_wavefront/user_group.py +29 -28
  53. {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744267399.dist-info}/METADATA +1 -1
  54. pulumi_wavefront-3.2.0a1744267399.dist-info/RECORD +58 -0
  55. pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
  56. {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744267399.dist-info}/WHEEL +0 -0
  57. {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744267399.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
@@ -102,7 +103,7 @@ class GetDerivedMetricResult:
102
103
 
103
104
  @property
104
105
  @pulumi.getter(name="additionalInformation")
105
- def additional_information(self) -> str:
106
+ def additional_information(self) -> builtins.str:
106
107
  """
107
108
  User-supplied additional explanatory information about the derived metric.
108
109
  """
@@ -110,7 +111,7 @@ class GetDerivedMetricResult:
110
111
 
111
112
  @property
112
113
  @pulumi.getter(name="createUserId")
113
- def create_user_id(self) -> str:
114
+ def create_user_id(self) -> builtins.str:
114
115
  """
115
116
  The ID of the user who created the derived metric.
116
117
  """
@@ -118,7 +119,7 @@ class GetDerivedMetricResult:
118
119
 
119
120
  @property
120
121
  @pulumi.getter(name="createdEpochMillis")
121
- def created_epoch_millis(self) -> int:
122
+ def created_epoch_millis(self) -> builtins.int:
122
123
  """
123
124
  The timestamp in epoch milliseconds indicating when the derived metric is created.
124
125
  """
@@ -126,7 +127,7 @@ class GetDerivedMetricResult:
126
127
 
127
128
  @property
128
129
  @pulumi.getter
129
- def deleted(self) -> bool:
130
+ def deleted(self) -> builtins.bool:
130
131
  """
131
132
  A Boolean flag indicating whether the derived metric is deleted or not.
132
133
  """
@@ -134,7 +135,7 @@ class GetDerivedMetricResult:
134
135
 
135
136
  @property
136
137
  @pulumi.getter(name="hostsUseds")
137
- def hosts_useds(self) -> Sequence[str]:
138
+ def hosts_useds(self) -> Sequence[builtins.str]:
138
139
  """
139
140
  A list of hosts used in the derived metric.
140
141
  """
@@ -142,7 +143,7 @@ class GetDerivedMetricResult:
142
143
 
143
144
  @property
144
145
  @pulumi.getter
145
- def id(self) -> str:
146
+ def id(self) -> builtins.str:
146
147
  """
147
148
  The ID of the derived metric in Wavefront.
148
149
  """
@@ -150,7 +151,7 @@ class GetDerivedMetricResult:
150
151
 
151
152
  @property
152
153
  @pulumi.getter(name="inTrash")
153
- def in_trash(self) -> bool:
154
+ def in_trash(self) -> builtins.bool:
154
155
  """
155
156
  A Boolean variable indicating trash status.
156
157
  """
@@ -158,7 +159,7 @@ class GetDerivedMetricResult:
158
159
 
159
160
  @property
160
161
  @pulumi.getter(name="includeObsoleteMetrics")
161
- def include_obsolete_metrics(self) -> bool:
162
+ def include_obsolete_metrics(self) -> builtins.bool:
162
163
  """
163
164
  A Boolean flag indicating whether to include obsolete metrics or not.
164
165
  """
@@ -166,7 +167,7 @@ class GetDerivedMetricResult:
166
167
 
167
168
  @property
168
169
  @pulumi.getter(name="lastErrorMessage")
169
- def last_error_message(self) -> str:
170
+ def last_error_message(self) -> builtins.str:
170
171
  """
171
172
  Last error message occurred.
172
173
  """
@@ -174,7 +175,7 @@ class GetDerivedMetricResult:
174
175
 
175
176
  @property
176
177
  @pulumi.getter(name="lastFailedTime")
177
- def last_failed_time(self) -> int:
178
+ def last_failed_time(self) -> builtins.int:
178
179
  """
179
180
  Timestamp of the last failed derived metric.
180
181
  """
@@ -182,7 +183,7 @@ class GetDerivedMetricResult:
182
183
 
183
184
  @property
184
185
  @pulumi.getter(name="lastProcessedMillis")
185
- def last_processed_millis(self) -> int:
186
+ def last_processed_millis(self) -> builtins.int:
186
187
  """
187
188
  The last processed timestamp.
188
189
  """
@@ -190,7 +191,7 @@ class GetDerivedMetricResult:
190
191
 
191
192
  @property
192
193
  @pulumi.getter(name="lastQueryTime")
193
- def last_query_time(self) -> int:
194
+ def last_query_time(self) -> builtins.int:
194
195
  """
195
196
  The timestamp indicating the last time the query was executed.
196
197
  """
@@ -198,7 +199,7 @@ class GetDerivedMetricResult:
198
199
 
199
200
  @property
200
201
  @pulumi.getter(name="metricsUseds")
201
- def metrics_useds(self) -> Sequence[str]:
202
+ def metrics_useds(self) -> Sequence[builtins.str]:
202
203
  """
203
204
  A list of metrics used in the derived metric.
204
205
  """
@@ -206,7 +207,7 @@ class GetDerivedMetricResult:
206
207
 
207
208
  @property
208
209
  @pulumi.getter
209
- def minutes(self) -> int:
210
+ def minutes(self) -> builtins.int:
210
211
  """
211
212
  How frequently the query generating the derived metric is run.
212
213
  """
@@ -214,7 +215,7 @@ class GetDerivedMetricResult:
214
215
 
215
216
  @property
216
217
  @pulumi.getter
217
- def name(self) -> str:
218
+ def name(self) -> builtins.str:
218
219
  """
219
220
  The name of the derived metric in Wavefront.
220
221
  """
@@ -222,7 +223,7 @@ class GetDerivedMetricResult:
222
223
 
223
224
  @property
224
225
  @pulumi.getter(name="pointsScannedAtLastQuery")
225
- def points_scanned_at_last_query(self) -> int:
226
+ def points_scanned_at_last_query(self) -> builtins.int:
226
227
  """
227
228
  The number of points scanned when last query was executed.
228
229
  """
@@ -230,7 +231,7 @@ class GetDerivedMetricResult:
230
231
 
231
232
  @property
232
233
  @pulumi.getter(name="processRateMinutes")
233
- def process_rate_minutes(self) -> int:
234
+ def process_rate_minutes(self) -> builtins.int:
234
235
  """
235
236
  The specified query is executed every `process_rate_minutes` minutes.
236
237
  """
@@ -238,7 +239,7 @@ class GetDerivedMetricResult:
238
239
 
239
240
  @property
240
241
  @pulumi.getter
241
- def query(self) -> str:
242
+ def query(self) -> builtins.str:
242
243
  """
243
244
  A Wavefront query that is evaluated at regular intervals (default is 1 minute).
244
245
  """
@@ -246,7 +247,7 @@ class GetDerivedMetricResult:
246
247
 
247
248
  @property
248
249
  @pulumi.getter(name="queryFailing")
249
- def query_failing(self) -> bool:
250
+ def query_failing(self) -> builtins.bool:
250
251
  """
251
252
  A Boolean variable indicating whether query is failing for the derived metric.
252
253
  """
@@ -254,7 +255,7 @@ class GetDerivedMetricResult:
254
255
 
255
256
  @property
256
257
  @pulumi.getter(name="queryQbEnabled")
257
- def query_qb_enabled(self) -> bool:
258
+ def query_qb_enabled(self) -> builtins.bool:
258
259
  """
259
260
  A Boolean flag for enabling `query_qb`
260
261
  """
@@ -262,7 +263,7 @@ class GetDerivedMetricResult:
262
263
 
263
264
  @property
264
265
  @pulumi.getter
265
- def statuses(self) -> Sequence[str]:
266
+ def statuses(self) -> Sequence[builtins.str]:
266
267
  """
267
268
  The status of the derived metric.
268
269
  """
@@ -270,7 +271,7 @@ class GetDerivedMetricResult:
270
271
 
271
272
  @property
272
273
  @pulumi.getter
273
- def tags(self) -> Sequence[str]:
274
+ def tags(self) -> Sequence[builtins.str]:
274
275
  """
275
276
  A set of tags assigned to the derived metric.
276
277
  """
@@ -278,7 +279,7 @@ class GetDerivedMetricResult:
278
279
 
279
280
  @property
280
281
  @pulumi.getter(name="updateUserId")
281
- def update_user_id(self) -> str:
282
+ def update_user_id(self) -> builtins.str:
282
283
  """
283
284
  The ID of the user who updated the derived metric.
284
285
  """
@@ -286,7 +287,7 @@ class GetDerivedMetricResult:
286
287
 
287
288
  @property
288
289
  @pulumi.getter(name="updatedEpochMillis")
289
- def updated_epoch_millis(self) -> int:
290
+ def updated_epoch_millis(self) -> builtins.int:
290
291
  """
291
292
  The timestamp in epoch milliseconds indicating when the derived metric is updated.
292
293
  """
@@ -325,7 +326,7 @@ class AwaitableGetDerivedMetricResult(GetDerivedMetricResult):
325
326
  updated_epoch_millis=self.updated_epoch_millis)
326
327
 
327
328
 
328
- def get_derived_metric(id: Optional[str] = None,
329
+ def get_derived_metric(id: Optional[builtins.str] = None,
329
330
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDerivedMetricResult:
330
331
  """
331
332
  Use this data source to get information about a certain Wavefront derived metric by its ID.
@@ -341,7 +342,7 @@ def get_derived_metric(id: Optional[str] = None,
341
342
  ```
342
343
 
343
344
 
344
- :param str id: The ID associated with the derived metric data to be fetched.
345
+ :param builtins.str id: The ID associated with the derived metric data to be fetched.
345
346
  """
346
347
  __args__ = dict()
347
348
  __args__['id'] = id
@@ -373,7 +374,7 @@ def get_derived_metric(id: Optional[str] = None,
373
374
  tags=pulumi.get(__ret__, 'tags'),
374
375
  update_user_id=pulumi.get(__ret__, 'update_user_id'),
375
376
  updated_epoch_millis=pulumi.get(__ret__, 'updated_epoch_millis'))
376
- def get_derived_metric_output(id: Optional[pulumi.Input[str]] = None,
377
+ def get_derived_metric_output(id: Optional[pulumi.Input[builtins.str]] = None,
377
378
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDerivedMetricResult]:
378
379
  """
379
380
  Use this data source to get information about a certain Wavefront derived metric by its ID.
@@ -389,7 +390,7 @@ def get_derived_metric_output(id: Optional[pulumi.Input[str]] = None,
389
390
  ```
390
391
 
391
392
 
392
- :param str id: The ID associated with the derived metric data to be fetched.
393
+ :param builtins.str id: The ID associated with the derived metric data to be fetched.
393
394
  """
394
395
  __args__ = dict()
395
396
  __args__['id'] = id
@@ -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
@@ -51,7 +52,7 @@ class GetDerivedMetricsResult:
51
52
 
52
53
  @property
53
54
  @pulumi.getter
54
- def id(self) -> str:
55
+ def id(self) -> builtins.str:
55
56
  """
56
57
  The provider-assigned unique ID for this managed resource.
57
58
  """
@@ -59,12 +60,12 @@ class GetDerivedMetricsResult:
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def limit(self) -> Optional[int]:
63
+ def limit(self) -> Optional[builtins.int]:
63
64
  return pulumi.get(self, "limit")
64
65
 
65
66
  @property
66
67
  @pulumi.getter
67
- def offset(self) -> Optional[int]:
68
+ def offset(self) -> Optional[builtins.int]:
68
69
  return pulumi.get(self, "offset")
69
70
 
70
71
 
@@ -80,8 +81,8 @@ class AwaitableGetDerivedMetricsResult(GetDerivedMetricsResult):
80
81
  offset=self.offset)
81
82
 
82
83
 
83
- def get_derived_metrics(limit: Optional[int] = None,
84
- offset: Optional[int] = None,
84
+ def get_derived_metrics(limit: Optional[builtins.int] = None,
85
+ offset: Optional[builtins.int] = None,
85
86
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDerivedMetricsResult:
86
87
  """
87
88
  Use this data source to get information about all Wavefront derived metrics.
@@ -98,8 +99,8 @@ def get_derived_metrics(limit: Optional[int] = None,
98
99
  ```
99
100
 
100
101
 
101
- :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
102
- :param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
102
+ :param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
103
+ :param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
103
104
  """
104
105
  __args__ = dict()
105
106
  __args__['limit'] = limit
@@ -112,8 +113,8 @@ def get_derived_metrics(limit: Optional[int] = None,
112
113
  id=pulumi.get(__ret__, 'id'),
113
114
  limit=pulumi.get(__ret__, 'limit'),
114
115
  offset=pulumi.get(__ret__, 'offset'))
115
- def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
116
- offset: Optional[pulumi.Input[Optional[int]]] = None,
116
+ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[builtins.int]]] = None,
117
+ offset: Optional[pulumi.Input[Optional[builtins.int]]] = None,
117
118
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDerivedMetricsResult]:
118
119
  """
119
120
  Use this data source to get information about all Wavefront derived metrics.
@@ -130,8 +131,8 @@ def get_derived_metrics_output(limit: Optional[pulumi.Input[Optional[int]]] = No
130
131
  ```
131
132
 
132
133
 
133
- :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
134
- :param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
134
+ :param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
135
+ :param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
135
136
  """
136
137
  __args__ = dict()
137
138
  __args__['limit'] = limit
@@ -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
@@ -60,7 +61,7 @@ class GetEventResult:
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def annotations(self) -> Mapping[str, str]:
64
+ def annotations(self) -> Mapping[str, builtins.str]:
64
65
  """
65
66
  Annotations associated with the event.
66
67
  """
@@ -68,7 +69,7 @@ class GetEventResult:
68
69
 
69
70
  @property
70
71
  @pulumi.getter
71
- def details(self) -> str:
72
+ def details(self) -> builtins.str:
72
73
  """
73
74
  The description of the event.
74
75
  """
@@ -76,12 +77,12 @@ class GetEventResult:
76
77
 
77
78
  @property
78
79
  @pulumi.getter(name="endtimeKey")
79
- def endtime_key(self) -> int:
80
+ def endtime_key(self) -> builtins.int:
80
81
  return pulumi.get(self, "endtime_key")
81
82
 
82
83
  @property
83
84
  @pulumi.getter
84
- def id(self) -> str:
85
+ def id(self) -> builtins.str:
85
86
  """
86
87
  The ID of the event in Wavefront.
87
88
  """
@@ -89,7 +90,7 @@ class GetEventResult:
89
90
 
90
91
  @property
91
92
  @pulumi.getter(name="isEphemeral")
92
- def is_ephemeral(self) -> bool:
93
+ def is_ephemeral(self) -> builtins.bool:
93
94
  """
94
95
  A Boolean flag. If set to `true`, creates a point-in-time event (i.e. with no duration).
95
96
  """
@@ -97,7 +98,7 @@ class GetEventResult:
97
98
 
98
99
  @property
99
100
  @pulumi.getter
100
- def name(self) -> str:
101
+ def name(self) -> builtins.str:
101
102
  """
102
103
  The name of the event in Wavefront.
103
104
  """
@@ -105,7 +106,7 @@ class GetEventResult:
105
106
 
106
107
  @property
107
108
  @pulumi.getter
108
- def severity(self) -> str:
109
+ def severity(self) -> builtins.str:
109
110
  """
110
111
  The severity category of the event.
111
112
  """
@@ -113,7 +114,7 @@ class GetEventResult:
113
114
 
114
115
  @property
115
116
  @pulumi.getter(name="startTime")
116
- def start_time(self) -> int:
117
+ def start_time(self) -> builtins.int:
117
118
  """
118
119
  The start time of the event in epoch milliseconds.
119
120
  """
@@ -121,7 +122,7 @@ class GetEventResult:
121
122
 
122
123
  @property
123
124
  @pulumi.getter
124
- def tags(self) -> Sequence[str]:
125
+ def tags(self) -> Sequence[builtins.str]:
125
126
  """
126
127
  A set of tags assigned to the event.
127
128
  """
@@ -129,7 +130,7 @@ class GetEventResult:
129
130
 
130
131
  @property
131
132
  @pulumi.getter
132
- def type(self) -> str:
133
+ def type(self) -> builtins.str:
133
134
  """
134
135
  The type of the event.
135
136
  """
@@ -154,7 +155,7 @@ class AwaitableGetEventResult(GetEventResult):
154
155
  type=self.type)
155
156
 
156
157
 
157
- def get_event(id: Optional[str] = None,
158
+ def get_event(id: Optional[builtins.str] = None,
158
159
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEventResult:
159
160
  """
160
161
  Use this data source to get information about a certain Wavefront event.
@@ -170,7 +171,7 @@ def get_event(id: Optional[str] = None,
170
171
  ```
171
172
 
172
173
 
173
- :param str id: The ID associated with the event data to be fetched.
174
+ :param builtins.str id: The ID associated with the event data to be fetched.
174
175
  """
175
176
  __args__ = dict()
176
177
  __args__['id'] = id
@@ -188,7 +189,7 @@ def get_event(id: Optional[str] = None,
188
189
  start_time=pulumi.get(__ret__, 'start_time'),
189
190
  tags=pulumi.get(__ret__, 'tags'),
190
191
  type=pulumi.get(__ret__, 'type'))
191
- def get_event_output(id: Optional[pulumi.Input[str]] = None,
192
+ def get_event_output(id: Optional[pulumi.Input[builtins.str]] = None,
192
193
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEventResult]:
193
194
  """
194
195
  Use this data source to get information about a certain Wavefront event.
@@ -204,7 +205,7 @@ def get_event_output(id: Optional[pulumi.Input[str]] = None,
204
205
  ```
205
206
 
206
207
 
207
- :param str id: The ID associated with the event data to be fetched.
208
+ :param builtins.str id: The ID associated with the event data to be fetched.
208
209
  """
209
210
  __args__ = dict()
210
211
  __args__['id'] = id
@@ -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
@@ -49,7 +50,7 @@ class GetEventsResult:
49
50
 
50
51
  @property
51
52
  @pulumi.getter(name="earliestStartTimeEpochMillis")
52
- def earliest_start_time_epoch_millis(self) -> int:
53
+ def earliest_start_time_epoch_millis(self) -> builtins.int:
53
54
  """
54
55
  Earliest start time in epoch milliseconds.
55
56
  """
@@ -65,7 +66,7 @@ class GetEventsResult:
65
66
 
66
67
  @property
67
68
  @pulumi.getter
68
- def id(self) -> str:
69
+ def id(self) -> builtins.str:
69
70
  """
70
71
  The provider-assigned unique ID for this managed resource.
71
72
  """
@@ -73,7 +74,7 @@ class GetEventsResult:
73
74
 
74
75
  @property
75
76
  @pulumi.getter(name="latestStartTimeEpochMillis")
76
- def latest_start_time_epoch_millis(self) -> int:
77
+ def latest_start_time_epoch_millis(self) -> builtins.int:
77
78
  """
78
79
  Latest start time in epoch milliseconds.
79
80
  """
@@ -81,12 +82,12 @@ class GetEventsResult:
81
82
 
82
83
  @property
83
84
  @pulumi.getter
84
- def limit(self) -> Optional[int]:
85
+ def limit(self) -> Optional[builtins.int]:
85
86
  return pulumi.get(self, "limit")
86
87
 
87
88
  @property
88
89
  @pulumi.getter
89
- def offset(self) -> Optional[int]:
90
+ def offset(self) -> Optional[builtins.int]:
90
91
  return pulumi.get(self, "offset")
91
92
 
92
93
 
@@ -104,10 +105,10 @@ class AwaitableGetEventsResult(GetEventsResult):
104
105
  offset=self.offset)
105
106
 
106
107
 
107
- def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
108
- latest_start_time_epoch_millis: Optional[int] = None,
109
- limit: Optional[int] = None,
110
- offset: Optional[int] = None,
108
+ def get_events(earliest_start_time_epoch_millis: Optional[builtins.int] = None,
109
+ latest_start_time_epoch_millis: Optional[builtins.int] = None,
110
+ limit: Optional[builtins.int] = None,
111
+ offset: Optional[builtins.int] = None,
111
112
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEventsResult:
112
113
  """
113
114
  Use this data source to get information about all Wavefront events.
@@ -126,10 +127,10 @@ def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
126
127
  ```
127
128
 
128
129
 
129
- :param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
130
- :param int latest_start_time_epoch_millis: The latest start time in epoch milliseconds.
131
- :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
132
- :param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
130
+ :param builtins.int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
131
+ :param builtins.int latest_start_time_epoch_millis: The latest start time in epoch milliseconds.
132
+ :param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
133
+ :param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
133
134
  """
134
135
  __args__ = dict()
135
136
  __args__['earliestStartTimeEpochMillis'] = earliest_start_time_epoch_millis
@@ -146,10 +147,10 @@ def get_events(earliest_start_time_epoch_millis: Optional[int] = None,
146
147
  latest_start_time_epoch_millis=pulumi.get(__ret__, 'latest_start_time_epoch_millis'),
147
148
  limit=pulumi.get(__ret__, 'limit'),
148
149
  offset=pulumi.get(__ret__, 'offset'))
149
- def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[int]] = None,
150
- latest_start_time_epoch_millis: Optional[pulumi.Input[int]] = None,
151
- limit: Optional[pulumi.Input[Optional[int]]] = None,
152
- offset: Optional[pulumi.Input[Optional[int]]] = None,
150
+ def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[builtins.int]] = None,
151
+ latest_start_time_epoch_millis: Optional[pulumi.Input[builtins.int]] = None,
152
+ limit: Optional[pulumi.Input[Optional[builtins.int]]] = None,
153
+ offset: Optional[pulumi.Input[Optional[builtins.int]]] = None,
153
154
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEventsResult]:
154
155
  """
155
156
  Use this data source to get information about all Wavefront events.
@@ -168,10 +169,10 @@ def get_events_output(earliest_start_time_epoch_millis: Optional[pulumi.Input[in
168
169
  ```
169
170
 
170
171
 
171
- :param int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
172
- :param int latest_start_time_epoch_millis: The latest start time in epoch milliseconds.
173
- :param int limit: Limit is the maximum number of results to be returned. Defaults to 100.
174
- :param int offset: Offset is the offset from the first result to be returned. Defaults to 0.
172
+ :param builtins.int earliest_start_time_epoch_millis: The earliest start time in epoch milliseconds.
173
+ :param builtins.int latest_start_time_epoch_millis: The latest start time in epoch milliseconds.
174
+ :param builtins.int limit: Limit is the maximum number of results to be returned. Defaults to 100.
175
+ :param builtins.int offset: Offset is the offset from the first result to be returned. Defaults to 0.
175
176
  """
176
177
  __args__ = dict()
177
178
  __args__['earliestStartTimeEpochMillis'] = earliest_start_time_epoch_millis