pulumi-azure-native 3.1.0a1744014979__py3-none-any.whl → 3.1.0a1744041749__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.

Potentially problematic release.


This version of pulumi-azure-native might be problematic. Click here for more details.

@@ -3221,6 +3221,9 @@ _utilities.register(
3221
3221
  "azure-native:monitor:ActionGroup": "ActionGroup",
3222
3222
  "azure-native:monitor:AutoscaleSetting": "AutoscaleSetting",
3223
3223
  "azure-native:monitor:AzureMonitorWorkspace": "AzureMonitorWorkspace",
3224
+ "azure-native:monitor:DataCollectionEndpoint": "DataCollectionEndpoint",
3225
+ "azure-native:monitor:DataCollectionRule": "DataCollectionRule",
3226
+ "azure-native:monitor:DataCollectionRuleAssociation": "DataCollectionRuleAssociation",
3224
3227
  "azure-native:monitor:DiagnosticSetting": "DiagnosticSetting",
3225
3228
  "azure-native:monitor:ManagementGroupDiagnosticSetting": "ManagementGroupDiagnosticSetting",
3226
3229
  "azure-native:monitor:PipelineGroup": "PipelineGroup",
@@ -9,10 +9,16 @@ from ._enums import *
9
9
  from .action_group import *
10
10
  from .autoscale_setting import *
11
11
  from .azure_monitor_workspace import *
12
+ from .data_collection_endpoint import *
13
+ from .data_collection_rule import *
14
+ from .data_collection_rule_association import *
12
15
  from .diagnostic_setting import *
13
16
  from .get_action_group import *
14
17
  from .get_autoscale_setting import *
15
18
  from .get_azure_monitor_workspace import *
19
+ from .get_data_collection_endpoint import *
20
+ from .get_data_collection_rule import *
21
+ from .get_data_collection_rule_association import *
16
22
  from .get_diagnostic_setting import *
17
23
  from .get_management_group_diagnostic_setting import *
18
24
  from .get_pipeline_group import *
@@ -17,6 +17,20 @@ __all__ = [
17
17
  'IncidentManagementService',
18
18
  'JsonMapperElement',
19
19
  'Kind',
20
+ 'KnownColumnDefinitionType',
21
+ 'KnownDataCollectionEndpointResourceKind',
22
+ 'KnownDataCollectionRuleResourceKind',
23
+ 'KnownDataFlowStreams',
24
+ 'KnownExtensionDataSourceStreams',
25
+ 'KnownLogFileTextSettingsRecordStartTimestampFormat',
26
+ 'KnownLogFilesDataSourceFormat',
27
+ 'KnownPerfCounterDataSourceStreams',
28
+ 'KnownPrometheusForwarderDataSourceStreams',
29
+ 'KnownPublicNetworkAccessOptions',
30
+ 'KnownSyslogDataSourceFacilityNames',
31
+ 'KnownSyslogDataSourceLogLevels',
32
+ 'KnownSyslogDataSourceStreams',
33
+ 'KnownWindowsEventLogDataSourceStreams',
20
34
  'ManagedServiceIdentityType',
21
35
  'MetricStatisticType',
22
36
  'OperationType',
@@ -162,6 +176,142 @@ class Kind(str, Enum):
162
176
  LOG_TO_METRIC = "LogToMetric"
163
177
 
164
178
 
179
+ class KnownColumnDefinitionType(str, Enum):
180
+ """
181
+ The type of the column data.
182
+ """
183
+ STRING = "string"
184
+ INT = "int"
185
+ LONG = "long"
186
+ REAL = "real"
187
+ BOOLEAN = "boolean"
188
+ DATETIME = "datetime"
189
+ DYNAMIC = "dynamic"
190
+
191
+
192
+ class KnownDataCollectionEndpointResourceKind(str, Enum):
193
+ """
194
+ The kind of the resource.
195
+ """
196
+ LINUX = "Linux"
197
+ WINDOWS = "Windows"
198
+
199
+
200
+ class KnownDataCollectionRuleResourceKind(str, Enum):
201
+ """
202
+ The kind of the resource.
203
+ """
204
+ LINUX = "Linux"
205
+ WINDOWS = "Windows"
206
+
207
+
208
+ class KnownDataFlowStreams(str, Enum):
209
+ MICROSOFT_EVENT = "Microsoft-Event"
210
+ MICROSOFT_INSIGHTS_METRICS = "Microsoft-InsightsMetrics"
211
+ MICROSOFT_PERF = "Microsoft-Perf"
212
+ MICROSOFT_SYSLOG = "Microsoft-Syslog"
213
+ MICROSOFT_WINDOWS_EVENT = "Microsoft-WindowsEvent"
214
+
215
+
216
+ class KnownExtensionDataSourceStreams(str, Enum):
217
+ MICROSOFT_EVENT = "Microsoft-Event"
218
+ MICROSOFT_INSIGHTS_METRICS = "Microsoft-InsightsMetrics"
219
+ MICROSOFT_PERF = "Microsoft-Perf"
220
+ MICROSOFT_SYSLOG = "Microsoft-Syslog"
221
+ MICROSOFT_WINDOWS_EVENT = "Microsoft-WindowsEvent"
222
+
223
+
224
+ class KnownLogFileTextSettingsRecordStartTimestampFormat(str, Enum):
225
+ """
226
+ One of the supported timestamp formats
227
+ """
228
+ IS_O_8601 = "ISO 8601"
229
+ YYY_Y_M_M_D_D_H_H_M_M_SS = "YYYY-MM-DD HH:MM:SS"
230
+ M_D_YYY_Y_H_H_M_M_S_S_A_M_PM = "M/D/YYYY HH:MM:SS AM/PM"
231
+ MON_D_D_YYY_Y_H_H_M_M_SS = "Mon DD, YYYY HH:MM:SS"
232
+ YY_M_MDD_H_H_MM_SS = "yyMMdd HH:mm:ss"
233
+ DD_M_MYY_H_H_MM_SS = "ddMMyy HH:mm:ss"
234
+ MM_M_D_HH_MM_SS = "MMM d hh:mm:ss"
235
+ DD_MM_M_YYYY_H_H_MM_SS_ZZZ = "dd/MMM/yyyy:HH:mm:ss zzz"
236
+ YYYY_M_M_DD_TH_H_MM_SS_K = "yyyy-MM-ddTHH:mm:ssK"
237
+
238
+
239
+ class KnownLogFilesDataSourceFormat(str, Enum):
240
+ """
241
+ The data format of the log files
242
+ """
243
+ TEXT = "text"
244
+
245
+
246
+ class KnownPerfCounterDataSourceStreams(str, Enum):
247
+ MICROSOFT_PERF = "Microsoft-Perf"
248
+ MICROSOFT_INSIGHTS_METRICS = "Microsoft-InsightsMetrics"
249
+
250
+
251
+ class KnownPrometheusForwarderDataSourceStreams(str, Enum):
252
+ MICROSOFT_PROMETHEUS_METRICS = "Microsoft-PrometheusMetrics"
253
+
254
+
255
+ class KnownPublicNetworkAccessOptions(str, Enum):
256
+ """
257
+ The configuration to set whether network access from public internet to the endpoints are allowed.
258
+ """
259
+ ENABLED = "Enabled"
260
+ DISABLED = "Disabled"
261
+ SECURED_BY_PERIMETER = "SecuredByPerimeter"
262
+
263
+
264
+ class KnownSyslogDataSourceFacilityNames(str, Enum):
265
+ ALERT = "alert"
266
+ AUDIT = "audit"
267
+ AUTH = "auth"
268
+ AUTHPRIV = "authpriv"
269
+ CLOCK = "clock"
270
+ CRON = "cron"
271
+ DAEMON = "daemon"
272
+ FTP = "ftp"
273
+ KERN = "kern"
274
+ LPR = "lpr"
275
+ MAIL = "mail"
276
+ MARK = "mark"
277
+ NEWS = "news"
278
+ NOPRI = "nopri"
279
+ NTP = "ntp"
280
+ SYSLOG = "syslog"
281
+ USER = "user"
282
+ UUCP = "uucp"
283
+ LOCAL0 = "local0"
284
+ LOCAL1 = "local1"
285
+ LOCAL2 = "local2"
286
+ LOCAL3 = "local3"
287
+ LOCAL4 = "local4"
288
+ LOCAL5 = "local5"
289
+ LOCAL6 = "local6"
290
+ LOCAL7 = "local7"
291
+ ASTERISK = "*"
292
+
293
+
294
+ class KnownSyslogDataSourceLogLevels(str, Enum):
295
+ DEBUG = "Debug"
296
+ INFO = "Info"
297
+ NOTICE = "Notice"
298
+ WARNING = "Warning"
299
+ ERROR = "Error"
300
+ CRITICAL = "Critical"
301
+ ALERT = "Alert"
302
+ EMERGENCY = "Emergency"
303
+ ASTERISK = "*"
304
+
305
+
306
+ class KnownSyslogDataSourceStreams(str, Enum):
307
+ MICROSOFT_SYSLOG = "Microsoft-Syslog"
308
+
309
+
310
+ class KnownWindowsEventLogDataSourceStreams(str, Enum):
311
+ MICROSOFT_WINDOWS_EVENT = "Microsoft-WindowsEvent"
312
+ MICROSOFT_EVENT = "Microsoft-Event"
313
+
314
+
165
315
  class ManagedServiceIdentityType(str, Enum):
166
316
  """
167
317
  Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).