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.
- pulumi_wavefront/__init__.py +1 -0
- pulumi_wavefront/_inputs.py +501 -500
- pulumi_wavefront/alert.py +239 -238
- pulumi_wavefront/alert_target.py +148 -147
- pulumi_wavefront/cloud_integration_app_dynamics.py +239 -238
- pulumi_wavefront/cloud_integration_aws_external_id.py +1 -0
- pulumi_wavefront/cloud_integration_azure.py +155 -154
- pulumi_wavefront/cloud_integration_azure_activity_log.py +127 -126
- pulumi_wavefront/cloud_integration_cloud_trail.py +155 -154
- pulumi_wavefront/cloud_integration_cloud_watch.py +169 -168
- pulumi_wavefront/cloud_integration_ec2.py +113 -112
- pulumi_wavefront/cloud_integration_gcp.py +127 -126
- pulumi_wavefront/cloud_integration_gcp_billing.py +113 -112
- pulumi_wavefront/cloud_integration_new_relic.py +113 -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 +127 -126
- pulumi_wavefront/dashboard_json.py +15 -14
- pulumi_wavefront/derived_metric.py +71 -70
- pulumi_wavefront/event.py +67 -66
- pulumi_wavefront/external_link.py +99 -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 +79 -78
- pulumi_wavefront/maintenance_window.py +127 -126
- pulumi_wavefront/metrics_policy.py +22 -21
- pulumi_wavefront/outputs.py +1205 -1204
- pulumi_wavefront/provider.py +19 -18
- pulumi_wavefront/pulumi-plugin.json +1 -1
- pulumi_wavefront/role.py +57 -56
- pulumi_wavefront/service_account.py +85 -84
- pulumi_wavefront/user.py +57 -56
- pulumi_wavefront/user_group.py +29 -28
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744267399.dist-info}/METADATA +1 -1
- pulumi_wavefront-3.2.0a1744267399.dist-info/RECORD +58 -0
- pulumi_wavefront-3.2.0a1743576067.dist-info/RECORD +0 -58
- {pulumi_wavefront-3.2.0a1743576067.dist-info → pulumi_wavefront-3.2.0a1744267399.dist-info}/WHEEL +0 -0
- {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
|
@@ -66,7 +67,7 @@ class GetExternalLinkResult:
|
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter(name="createdEpochMillis")
|
69
|
-
def created_epoch_millis(self) -> int:
|
70
|
+
def created_epoch_millis(self) -> builtins.int:
|
70
71
|
"""
|
71
72
|
The timestamp in epoch milliseconds indicating when the external link is created.
|
72
73
|
"""
|
@@ -74,7 +75,7 @@ class GetExternalLinkResult:
|
|
74
75
|
|
75
76
|
@property
|
76
77
|
@pulumi.getter(name="creatorId")
|
77
|
-
def creator_id(self) -> str:
|
78
|
+
def creator_id(self) -> builtins.str:
|
78
79
|
"""
|
79
80
|
The ID of the user who created the external link.
|
80
81
|
"""
|
@@ -82,7 +83,7 @@ class GetExternalLinkResult:
|
|
82
83
|
|
83
84
|
@property
|
84
85
|
@pulumi.getter
|
85
|
-
def description(self) -> str:
|
86
|
+
def description(self) -> builtins.str:
|
86
87
|
"""
|
87
88
|
Human-readable description of this link.
|
88
89
|
"""
|
@@ -90,7 +91,7 @@ class GetExternalLinkResult:
|
|
90
91
|
|
91
92
|
@property
|
92
93
|
@pulumi.getter
|
93
|
-
def id(self) -> str:
|
94
|
+
def id(self) -> builtins.str:
|
94
95
|
"""
|
95
96
|
The ID of the external link.
|
96
97
|
"""
|
@@ -98,7 +99,7 @@ class GetExternalLinkResult:
|
|
98
99
|
|
99
100
|
@property
|
100
101
|
@pulumi.getter(name="isLogIntegration")
|
101
|
-
def is_log_integration(self) -> bool:
|
102
|
+
def is_log_integration(self) -> builtins.bool:
|
102
103
|
"""
|
103
104
|
Whether this is a "Log Integration" subType of external link.
|
104
105
|
"""
|
@@ -106,7 +107,7 @@ class GetExternalLinkResult:
|
|
106
107
|
|
107
108
|
@property
|
108
109
|
@pulumi.getter(name="metricFilterRegex")
|
109
|
-
def metric_filter_regex(self) -> str:
|
110
|
+
def metric_filter_regex(self) -> builtins.str:
|
110
111
|
"""
|
111
112
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the metric name of the highlighted series must match this regular expression in order for the link to be displayed.
|
112
113
|
"""
|
@@ -114,7 +115,7 @@ class GetExternalLinkResult:
|
|
114
115
|
|
115
116
|
@property
|
116
117
|
@pulumi.getter
|
117
|
-
def name(self) -> str:
|
118
|
+
def name(self) -> builtins.str:
|
118
119
|
"""
|
119
120
|
The name of the external link.
|
120
121
|
"""
|
@@ -122,7 +123,7 @@ class GetExternalLinkResult:
|
|
122
123
|
|
123
124
|
@property
|
124
125
|
@pulumi.getter(name="pointTagFilterRegexes")
|
125
|
-
def point_tag_filter_regexes(self) -> Mapping[str, str]:
|
126
|
+
def point_tag_filter_regexes(self) -> Mapping[str, builtins.str]:
|
126
127
|
"""
|
127
128
|
(Optional) Controls whether a link is displayed in the context menu of a highlighted
|
128
129
|
series. This is a map from string to regular expression. The highlighted series must contain point tags whose
|
@@ -133,7 +134,7 @@ class GetExternalLinkResult:
|
|
133
134
|
|
134
135
|
@property
|
135
136
|
@pulumi.getter(name="sourceFilterRegex")
|
136
|
-
def source_filter_regex(self) -> str:
|
137
|
+
def source_filter_regex(self) -> builtins.str:
|
137
138
|
"""
|
138
139
|
Controls whether a link is displayed in the context menu of a highlighted series. If present, the source name of the highlighted series must match this regular expression in order for the link to be displayed.
|
139
140
|
"""
|
@@ -141,7 +142,7 @@ class GetExternalLinkResult:
|
|
141
142
|
|
142
143
|
@property
|
143
144
|
@pulumi.getter
|
144
|
-
def template(self) -> str:
|
145
|
+
def template(self) -> builtins.str:
|
145
146
|
"""
|
146
147
|
The mustache template for the link. The template must expand to a full URL, including scheme, origin, etc.
|
147
148
|
"""
|
@@ -149,7 +150,7 @@ class GetExternalLinkResult:
|
|
149
150
|
|
150
151
|
@property
|
151
152
|
@pulumi.getter(name="updatedEpochMillis")
|
152
|
-
def updated_epoch_millis(self) -> int:
|
153
|
+
def updated_epoch_millis(self) -> builtins.int:
|
153
154
|
"""
|
154
155
|
The timestamp in epoch milliseconds indicating when the external link is updated.
|
155
156
|
"""
|
@@ -157,7 +158,7 @@ class GetExternalLinkResult:
|
|
157
158
|
|
158
159
|
@property
|
159
160
|
@pulumi.getter(name="updaterId")
|
160
|
-
def updater_id(self) -> str:
|
161
|
+
def updater_id(self) -> builtins.str:
|
161
162
|
"""
|
162
163
|
The ID of the user who updated the external link.
|
163
164
|
"""
|
@@ -184,7 +185,7 @@ class AwaitableGetExternalLinkResult(GetExternalLinkResult):
|
|
184
185
|
updater_id=self.updater_id)
|
185
186
|
|
186
187
|
|
187
|
-
def get_external_link(id: Optional[str] = None,
|
188
|
+
def get_external_link(id: Optional[builtins.str] = None,
|
188
189
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalLinkResult:
|
189
190
|
"""
|
190
191
|
Use this data source to get information about a Wavefront external link by its ID.
|
@@ -200,7 +201,7 @@ def get_external_link(id: Optional[str] = None,
|
|
200
201
|
```
|
201
202
|
|
202
203
|
|
203
|
-
:param str id: The ID of the external link.
|
204
|
+
:param builtins.str id: The ID of the external link.
|
204
205
|
"""
|
205
206
|
__args__ = dict()
|
206
207
|
__args__['id'] = id
|
@@ -220,7 +221,7 @@ def get_external_link(id: Optional[str] = None,
|
|
220
221
|
template=pulumi.get(__ret__, 'template'),
|
221
222
|
updated_epoch_millis=pulumi.get(__ret__, 'updated_epoch_millis'),
|
222
223
|
updater_id=pulumi.get(__ret__, 'updater_id'))
|
223
|
-
def get_external_link_output(id: Optional[pulumi.Input[str]] = None,
|
224
|
+
def get_external_link_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
224
225
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalLinkResult]:
|
225
226
|
"""
|
226
227
|
Use this data source to get information about a Wavefront external link by its ID.
|
@@ -236,7 +237,7 @@ def get_external_link_output(id: Optional[pulumi.Input[str]] = None,
|
|
236
237
|
```
|
237
238
|
|
238
239
|
|
239
|
-
:param str id: The ID of the external link.
|
240
|
+
:param builtins.str id: The ID of the external link.
|
240
241
|
"""
|
241
242
|
__args__ = dict()
|
242
243
|
__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 GetExternalLinksResult:
|
|
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 GetExternalLinksResult:
|
|
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 AwaitableGetExternalLinksResult(GetExternalLinksResult):
|
|
80
81
|
offset=self.offset)
|
81
82
|
|
82
83
|
|
83
|
-
def get_external_links(limit: Optional[int] = None,
|
84
|
-
offset: Optional[int] = None,
|
84
|
+
def get_external_links(limit: Optional[builtins.int] = None,
|
85
|
+
offset: Optional[builtins.int] = None,
|
85
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalLinksResult:
|
86
87
|
"""
|
87
88
|
Use this data source to get information about all Wavefront external links.
|
@@ -98,8 +99,8 @@ def get_external_links(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_external_links(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_external_links_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
-
offset: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
+
def get_external_links_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[GetExternalLinksResult]:
|
118
119
|
"""
|
119
120
|
Use this data source to get information about all Wavefront external links.
|
@@ -130,8 +131,8 @@ def get_external_links_output(limit: Optional[pulumi.Input[Optional[int]]] = Non
|
|
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
|
@@ -84,7 +85,7 @@ class GetMaintenanceWindowResult:
|
|
84
85
|
|
85
86
|
@property
|
86
87
|
@pulumi.getter(name="createdEpochMillis")
|
87
|
-
def created_epoch_millis(self) -> int:
|
88
|
+
def created_epoch_millis(self) -> builtins.int:
|
88
89
|
"""
|
89
90
|
The timestamp in epoch milliseconds indicating when the maintenance window is created.
|
90
91
|
"""
|
@@ -92,7 +93,7 @@ class GetMaintenanceWindowResult:
|
|
92
93
|
|
93
94
|
@property
|
94
95
|
@pulumi.getter(name="creatorId")
|
95
|
-
def creator_id(self) -> str:
|
96
|
+
def creator_id(self) -> builtins.str:
|
96
97
|
"""
|
97
98
|
The ID of the user who created the maintenance window.
|
98
99
|
"""
|
@@ -100,7 +101,7 @@ class GetMaintenanceWindowResult:
|
|
100
101
|
|
101
102
|
@property
|
102
103
|
@pulumi.getter(name="customerId")
|
103
|
-
def customer_id(self) -> str:
|
104
|
+
def customer_id(self) -> builtins.str:
|
104
105
|
"""
|
105
106
|
The ID of the customer in Wavefront.
|
106
107
|
"""
|
@@ -108,7 +109,7 @@ class GetMaintenanceWindowResult:
|
|
108
109
|
|
109
110
|
@property
|
110
111
|
@pulumi.getter(name="endTimeInSeconds")
|
111
|
-
def end_time_in_seconds(self) -> int:
|
112
|
+
def end_time_in_seconds(self) -> builtins.int:
|
112
113
|
"""
|
113
114
|
The end time in seconds after 1 Jan 1970 GMT.
|
114
115
|
"""
|
@@ -116,7 +117,7 @@ class GetMaintenanceWindowResult:
|
|
116
117
|
|
117
118
|
@property
|
118
119
|
@pulumi.getter(name="eventName")
|
119
|
-
def event_name(self) -> str:
|
120
|
+
def event_name(self) -> builtins.str:
|
120
121
|
"""
|
121
122
|
The event name of the maintenance window.
|
122
123
|
"""
|
@@ -124,7 +125,7 @@ class GetMaintenanceWindowResult:
|
|
124
125
|
|
125
126
|
@property
|
126
127
|
@pulumi.getter(name="hostTagGroupHostNamesGroupAnded")
|
127
|
-
def host_tag_group_host_names_group_anded(self) -> bool:
|
128
|
+
def host_tag_group_host_names_group_anded(self) -> builtins.bool:
|
128
129
|
"""
|
129
130
|
If set to `true`, the source or host must be in `relevant_host_names` and must have tags matching the specification formed by `relevant_host_tags` and `relevant_host_tags_anded` in for this maintenance window to apply.
|
130
131
|
If set to false, the source or host must either be in `relevant_host_names` or match `relevant_host_tags` and `relevant_host_tags_anded`. Default value is `false`.
|
@@ -133,7 +134,7 @@ class GetMaintenanceWindowResult:
|
|
133
134
|
|
134
135
|
@property
|
135
136
|
@pulumi.getter
|
136
|
-
def id(self) -> str:
|
137
|
+
def id(self) -> builtins.str:
|
137
138
|
"""
|
138
139
|
The ID of the maintenance window.
|
139
140
|
"""
|
@@ -141,7 +142,7 @@ class GetMaintenanceWindowResult:
|
|
141
142
|
|
142
143
|
@property
|
143
144
|
@pulumi.getter
|
144
|
-
def reason(self) -> str:
|
145
|
+
def reason(self) -> builtins.str:
|
145
146
|
"""
|
146
147
|
The reason for the maintenance window.
|
147
148
|
"""
|
@@ -149,7 +150,7 @@ class GetMaintenanceWindowResult:
|
|
149
150
|
|
150
151
|
@property
|
151
152
|
@pulumi.getter(name="relevantCustomerTags")
|
152
|
-
def relevant_customer_tags(self) -> Sequence[str]:
|
153
|
+
def relevant_customer_tags(self) -> Sequence[builtins.str]:
|
153
154
|
"""
|
154
155
|
The list of alert tags whose matching alerts will be put into maintenance because
|
155
156
|
of this maintenance window. At least one of `relevant_customer_tags`, `relevant_host_tags`, or `relevant_host_names`
|
@@ -159,7 +160,7 @@ class GetMaintenanceWindowResult:
|
|
159
160
|
|
160
161
|
@property
|
161
162
|
@pulumi.getter(name="relevantHostNames")
|
162
|
-
def relevant_host_names(self) -> Sequence[str]:
|
163
|
+
def relevant_host_names(self) -> Sequence[builtins.str]:
|
163
164
|
"""
|
164
165
|
The list of source or host names that will be put into maintenance because of this
|
165
166
|
maintenance window. At least one of `relevant_customer_tags`, `relevant_host_tags`, or `relevant_host_names`
|
@@ -169,7 +170,7 @@ class GetMaintenanceWindowResult:
|
|
169
170
|
|
170
171
|
@property
|
171
172
|
@pulumi.getter(name="relevantHostTags")
|
172
|
-
def relevant_host_tags(self) -> Sequence[str]:
|
173
|
+
def relevant_host_tags(self) -> Sequence[builtins.str]:
|
173
174
|
"""
|
174
175
|
The list of source or host tags whose matching sources or hosts will be put into maintenance
|
175
176
|
because of this maintenance window. At least one of `relevant_customer_tags`, `relevant_host_tags`, or
|
@@ -179,7 +180,7 @@ class GetMaintenanceWindowResult:
|
|
179
180
|
|
180
181
|
@property
|
181
182
|
@pulumi.getter(name="relevantHostTagsAnded")
|
182
|
-
def relevant_host_tags_anded(self) -> bool:
|
183
|
+
def relevant_host_tags_anded(self) -> builtins.bool:
|
183
184
|
"""
|
184
185
|
Whether to AND source or host tags listed in `relevant_host_tags`.
|
185
186
|
If set to `true`, the source or host must contain all tags for the maintenance window to apply. If set to `false`,
|
@@ -189,7 +190,7 @@ class GetMaintenanceWindowResult:
|
|
189
190
|
|
190
191
|
@property
|
191
192
|
@pulumi.getter(name="runningState")
|
192
|
-
def running_state(self) -> str:
|
193
|
+
def running_state(self) -> builtins.str:
|
193
194
|
"""
|
194
195
|
The running state of the maintenance window.
|
195
196
|
"""
|
@@ -197,12 +198,12 @@ class GetMaintenanceWindowResult:
|
|
197
198
|
|
198
199
|
@property
|
199
200
|
@pulumi.getter(name="sortAttr")
|
200
|
-
def sort_attr(self) -> int:
|
201
|
+
def sort_attr(self) -> builtins.int:
|
201
202
|
return pulumi.get(self, "sort_attr")
|
202
203
|
|
203
204
|
@property
|
204
205
|
@pulumi.getter(name="startTimeInSeconds")
|
205
|
-
def start_time_in_seconds(self) -> int:
|
206
|
+
def start_time_in_seconds(self) -> builtins.int:
|
206
207
|
"""
|
207
208
|
The start time in seconds after 1 Jan 1970 GMT.
|
208
209
|
"""
|
@@ -210,7 +211,7 @@ class GetMaintenanceWindowResult:
|
|
210
211
|
|
211
212
|
@property
|
212
213
|
@pulumi.getter
|
213
|
-
def title(self) -> str:
|
214
|
+
def title(self) -> builtins.str:
|
214
215
|
"""
|
215
216
|
The title of the maintenance window.
|
216
217
|
"""
|
@@ -218,7 +219,7 @@ class GetMaintenanceWindowResult:
|
|
218
219
|
|
219
220
|
@property
|
220
221
|
@pulumi.getter(name="updatedEpochMillis")
|
221
|
-
def updated_epoch_millis(self) -> int:
|
222
|
+
def updated_epoch_millis(self) -> builtins.int:
|
222
223
|
"""
|
223
224
|
The timestamp in epoch milliseconds indicating when the maintenance window is updated.
|
224
225
|
"""
|
@@ -226,7 +227,7 @@ class GetMaintenanceWindowResult:
|
|
226
227
|
|
227
228
|
@property
|
228
229
|
@pulumi.getter(name="updaterId")
|
229
|
-
def updater_id(self) -> str:
|
230
|
+
def updater_id(self) -> builtins.str:
|
230
231
|
"""
|
231
232
|
The ID of the user who updated the maintenance window.
|
232
233
|
"""
|
@@ -259,7 +260,7 @@ class AwaitableGetMaintenanceWindowResult(GetMaintenanceWindowResult):
|
|
259
260
|
updater_id=self.updater_id)
|
260
261
|
|
261
262
|
|
262
|
-
def get_maintenance_window(id: Optional[str] = None,
|
263
|
+
def get_maintenance_window(id: Optional[builtins.str] = None,
|
263
264
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowResult:
|
264
265
|
"""
|
265
266
|
Use this data source to get information about a Wavefront maintenance window by its ID.
|
@@ -275,7 +276,7 @@ def get_maintenance_window(id: Optional[str] = None,
|
|
275
276
|
```
|
276
277
|
|
277
278
|
|
278
|
-
:param str id: The ID of the maintenance window.
|
279
|
+
:param builtins.str id: The ID of the maintenance window.
|
279
280
|
"""
|
280
281
|
__args__ = dict()
|
281
282
|
__args__['id'] = id
|
@@ -301,7 +302,7 @@ def get_maintenance_window(id: Optional[str] = None,
|
|
301
302
|
title=pulumi.get(__ret__, 'title'),
|
302
303
|
updated_epoch_millis=pulumi.get(__ret__, 'updated_epoch_millis'),
|
303
304
|
updater_id=pulumi.get(__ret__, 'updater_id'))
|
304
|
-
def get_maintenance_window_output(id: Optional[pulumi.Input[str]] = None,
|
305
|
+
def get_maintenance_window_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
305
306
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowResult]:
|
306
307
|
"""
|
307
308
|
Use this data source to get information about a Wavefront maintenance window by its ID.
|
@@ -317,7 +318,7 @@ def get_maintenance_window_output(id: Optional[pulumi.Input[str]] = None,
|
|
317
318
|
```
|
318
319
|
|
319
320
|
|
320
|
-
:param str id: The ID of the maintenance window.
|
321
|
+
:param builtins.str id: The ID of the maintenance window.
|
321
322
|
"""
|
322
323
|
__args__ = dict()
|
323
324
|
__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
|
@@ -43,7 +44,7 @@ class GetMaintenanceWindowAllResult:
|
|
43
44
|
|
44
45
|
@property
|
45
46
|
@pulumi.getter
|
46
|
-
def id(self) -> str:
|
47
|
+
def id(self) -> builtins.str:
|
47
48
|
"""
|
48
49
|
The provider-assigned unique ID for this managed resource.
|
49
50
|
"""
|
@@ -51,7 +52,7 @@ class GetMaintenanceWindowAllResult:
|
|
51
52
|
|
52
53
|
@property
|
53
54
|
@pulumi.getter
|
54
|
-
def limit(self) -> Optional[int]:
|
55
|
+
def limit(self) -> Optional[builtins.int]:
|
55
56
|
return pulumi.get(self, "limit")
|
56
57
|
|
57
58
|
@property
|
@@ -61,7 +62,7 @@ class GetMaintenanceWindowAllResult:
|
|
61
62
|
|
62
63
|
@property
|
63
64
|
@pulumi.getter
|
64
|
-
def offset(self) -> Optional[int]:
|
65
|
+
def offset(self) -> Optional[builtins.int]:
|
65
66
|
return pulumi.get(self, "offset")
|
66
67
|
|
67
68
|
|
@@ -77,8 +78,8 @@ class AwaitableGetMaintenanceWindowAllResult(GetMaintenanceWindowAllResult):
|
|
77
78
|
offset=self.offset)
|
78
79
|
|
79
80
|
|
80
|
-
def get_maintenance_window_all(limit: Optional[int] = None,
|
81
|
-
offset: Optional[int] = None,
|
81
|
+
def get_maintenance_window_all(limit: Optional[builtins.int] = None,
|
82
|
+
offset: Optional[builtins.int] = None,
|
82
83
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowAllResult:
|
83
84
|
"""
|
84
85
|
Use this data source to access information about an existing resource.
|
@@ -94,8 +95,8 @@ def get_maintenance_window_all(limit: Optional[int] = None,
|
|
94
95
|
limit=pulumi.get(__ret__, 'limit'),
|
95
96
|
maintenance_windows=pulumi.get(__ret__, 'maintenance_windows'),
|
96
97
|
offset=pulumi.get(__ret__, 'offset'))
|
97
|
-
def get_maintenance_window_all_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
98
|
-
offset: Optional[pulumi.Input[Optional[int]]] = None,
|
98
|
+
def get_maintenance_window_all_output(limit: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
99
|
+
offset: Optional[pulumi.Input[Optional[builtins.int]]] = None,
|
99
100
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowAllResult]:
|
100
101
|
"""
|
101
102
|
Use this data source to access information about an existing resource.
|
@@ -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
|
@@ -46,12 +47,12 @@ class GetMetricsPolicyResult:
|
|
46
47
|
|
47
48
|
@property
|
48
49
|
@pulumi.getter
|
49
|
-
def customer(self) -> str:
|
50
|
+
def customer(self) -> builtins.str:
|
50
51
|
return pulumi.get(self, "customer")
|
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
|
"""
|
@@ -64,12 +65,12 @@ class GetMetricsPolicyResult:
|
|
64
65
|
|
65
66
|
@property
|
66
67
|
@pulumi.getter(name="updatedEpochMillis")
|
67
|
-
def updated_epoch_millis(self) -> int:
|
68
|
+
def updated_epoch_millis(self) -> builtins.int:
|
68
69
|
return pulumi.get(self, "updated_epoch_millis")
|
69
70
|
|
70
71
|
@property
|
71
72
|
@pulumi.getter(name="updaterId")
|
72
|
-
def updater_id(self) -> str:
|
73
|
+
def updater_id(self) -> builtins.str:
|
73
74
|
return pulumi.get(self, "updater_id")
|
74
75
|
|
75
76
|
|
pulumi_wavefront/get_role.py
CHANGED
@@ -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
|
@@ -42,7 +43,7 @@ class GetRoleResult:
|
|
42
43
|
|
43
44
|
@property
|
44
45
|
@pulumi.getter
|
45
|
-
def description(self) -> str:
|
46
|
+
def description(self) -> builtins.str:
|
46
47
|
"""
|
47
48
|
Human-readable description of the role.
|
48
49
|
"""
|
@@ -50,7 +51,7 @@ class GetRoleResult:
|
|
50
51
|
|
51
52
|
@property
|
52
53
|
@pulumi.getter
|
53
|
-
def id(self) -> str:
|
54
|
+
def id(self) -> builtins.str:
|
54
55
|
"""
|
55
56
|
The ID of the role in Wavefront.
|
56
57
|
"""
|
@@ -58,7 +59,7 @@ class GetRoleResult:
|
|
58
59
|
|
59
60
|
@property
|
60
61
|
@pulumi.getter
|
61
|
-
def name(self) -> str:
|
62
|
+
def name(self) -> builtins.str:
|
62
63
|
"""
|
63
64
|
The name of the role in Wavefront.
|
64
65
|
"""
|
@@ -66,7 +67,7 @@ class GetRoleResult:
|
|
66
67
|
|
67
68
|
@property
|
68
69
|
@pulumi.getter
|
69
|
-
def permissions(self) -> Sequence[str]:
|
70
|
+
def permissions(self) -> Sequence[builtins.str]:
|
70
71
|
"""
|
71
72
|
The list of permissions associated with role.
|
72
73
|
"""
|
@@ -85,7 +86,7 @@ class AwaitableGetRoleResult(GetRoleResult):
|
|
85
86
|
permissions=self.permissions)
|
86
87
|
|
87
88
|
|
88
|
-
def get_role(id: Optional[str] = None,
|
89
|
+
def get_role(id: Optional[builtins.str] = None,
|
89
90
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRoleResult:
|
90
91
|
"""
|
91
92
|
Use this data source to get information about a Wavefront role by its ID.
|
@@ -101,7 +102,7 @@ def get_role(id: Optional[str] = None,
|
|
101
102
|
```
|
102
103
|
|
103
104
|
|
104
|
-
:param str id: The ID associated with the role data to be fetched.
|
105
|
+
:param builtins.str id: The ID associated with the role data to be fetched.
|
105
106
|
"""
|
106
107
|
__args__ = dict()
|
107
108
|
__args__['id'] = id
|
@@ -113,7 +114,7 @@ def get_role(id: Optional[str] = None,
|
|
113
114
|
id=pulumi.get(__ret__, 'id'),
|
114
115
|
name=pulumi.get(__ret__, 'name'),
|
115
116
|
permissions=pulumi.get(__ret__, 'permissions'))
|
116
|
-
def get_role_output(id: Optional[pulumi.Input[str]] = None,
|
117
|
+
def get_role_output(id: Optional[pulumi.Input[builtins.str]] = None,
|
117
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRoleResult]:
|
118
119
|
"""
|
119
120
|
Use this data source to get information about a Wavefront role by its ID.
|
@@ -129,7 +130,7 @@ def get_role_output(id: Optional[pulumi.Input[str]] = None,
|
|
129
130
|
```
|
130
131
|
|
131
132
|
|
132
|
-
:param str id: The ID associated with the role data to be fetched.
|
133
|
+
:param builtins.str id: The ID associated with the role data to be fetched.
|
133
134
|
"""
|
134
135
|
__args__ = dict()
|
135
136
|
__args__['id'] = id
|
pulumi_wavefront/get_roles.py
CHANGED
@@ -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
|
@@ -43,7 +44,7 @@ class GetRolesResult:
|
|
43
44
|
|
44
45
|
@property
|
45
46
|
@pulumi.getter
|
46
|
-
def id(self) -> str:
|
47
|
+
def id(self) -> builtins.str:
|
47
48
|
"""
|
48
49
|
The provider-assigned unique ID for this managed resource.
|
49
50
|
"""
|
@@ -51,12 +52,12 @@ class GetRolesResult:
|
|
51
52
|
|
52
53
|
@property
|
53
54
|
@pulumi.getter
|
54
|
-
def limit(self) -> Optional[int]:
|
55
|
+
def limit(self) -> Optional[builtins.int]:
|
55
56
|
return pulumi.get(self, "limit")
|
56
57
|
|
57
58
|
@property
|
58
59
|
@pulumi.getter
|
59
|
-
def offset(self) -> Optional[int]:
|
60
|
+
def offset(self) -> Optional[builtins.int]:
|
60
61
|
return pulumi.get(self, "offset")
|
61
62
|
|
62
63
|
@property
|
@@ -80,8 +81,8 @@ class AwaitableGetRolesResult(GetRolesResult):
|
|
80
81
|
roles=self.roles)
|
81
82
|
|
82
83
|
|
83
|
-
def get_roles(limit: Optional[int] = None,
|
84
|
-
offset: Optional[int] = None,
|
84
|
+
def get_roles(limit: Optional[builtins.int] = None,
|
85
|
+
offset: Optional[builtins.int] = None,
|
85
86
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRolesResult:
|
86
87
|
"""
|
87
88
|
Use this data source to get all Roles in Wavefront.
|
@@ -98,8 +99,8 @@ def get_roles(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_roles(limit: Optional[int] = None,
|
|
112
113
|
limit=pulumi.get(__ret__, 'limit'),
|
113
114
|
offset=pulumi.get(__ret__, 'offset'),
|
114
115
|
roles=pulumi.get(__ret__, 'roles'))
|
115
|
-
def get_roles_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
-
offset: Optional[pulumi.Input[Optional[int]]] = None,
|
116
|
+
def get_roles_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[GetRolesResult]:
|
118
119
|
"""
|
119
120
|
Use this data source to get all Roles in Wavefront.
|
@@ -130,8 +131,8 @@ def get_roles_output(limit: Optional[pulumi.Input[Optional[int]]] = None,
|
|
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
|