pulumi-azure-native 3.1.0a1744023970__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.

@@ -32,16 +32,40 @@ __all__ = [
32
32
  'AzureResourceManagerCommonTypesExtendedLocationResponse',
33
33
  'BatchProcessorResponse',
34
34
  'CacheConfigurationResponse',
35
+ 'ColumnDefinitionResponse',
35
36
  'ConcurrencyConfigurationResponse',
36
37
  'ConditionResponse',
37
38
  'ConditionResponseFailingPeriods',
39
+ 'DataCollectionEndpointResourceResponseIdentity',
40
+ 'DataCollectionEndpointResourceResponseSystemData',
41
+ 'DataCollectionEndpointResponseConfigurationAccess',
42
+ 'DataCollectionEndpointResponseFailoverConfiguration',
43
+ 'DataCollectionEndpointResponseLogsIngestion',
44
+ 'DataCollectionEndpointResponseMetadata',
45
+ 'DataCollectionEndpointResponseMetricsIngestion',
46
+ 'DataCollectionEndpointResponseNetworkAcls',
47
+ 'DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData',
48
+ 'DataCollectionRuleAssociationResponseMetadata',
49
+ 'DataCollectionRuleResourceResponseIdentity',
50
+ 'DataCollectionRuleResourceResponseSystemData',
51
+ 'DataCollectionRuleResponseDataSources',
52
+ 'DataCollectionRuleResponseDestinations',
53
+ 'DataCollectionRuleResponseMetadata',
54
+ 'DataFlowResponse',
55
+ 'DataImportSourcesResponseEventHub',
56
+ 'DataSourcesSpecResponseDataImports',
57
+ 'DestinationsSpecResponseAzureMonitorMetrics',
38
58
  'DiagnosticSettingsCategoryResourceResponse',
39
59
  'DimensionResponse',
40
60
  'EmailNotificationResponse',
41
61
  'EmailReceiverResponse',
62
+ 'EventHubDestinationResponse',
63
+ 'EventHubDirectDestinationResponse',
42
64
  'EventHubReceiverResponse',
43
65
  'ExporterResponse',
66
+ 'ExtensionDataSourceResponse',
44
67
  'IdentityResponse',
68
+ 'IisLogsDataSourceResponse',
45
69
  'IncidentReceiverResponse',
46
70
  'IncidentServiceConnectionResponse',
47
71
  'IngestionSettingsResponse',
@@ -49,6 +73,11 @@ __all__ = [
49
73
  'JsonArrayMapperResponse',
50
74
  'JsonMapperDestinationFieldResponse',
51
75
  'JsonMapperSourceFieldResponse',
76
+ 'LocationSpecResponse',
77
+ 'LogAnalyticsDestinationResponse',
78
+ 'LogFileSettingsResponseText',
79
+ 'LogFilesDataSourceResponse',
80
+ 'LogFilesDataSourceResponseSettings',
52
81
  'LogSettingsResponse',
53
82
  'LogicAppReceiverResponse',
54
83
  'ManagedServiceIdentityResponse',
@@ -56,17 +85,22 @@ __all__ = [
56
85
  'MetricSettingsResponse',
57
86
  'MetricTriggerResponse',
58
87
  'MetricsResponse',
88
+ 'MonitoringAccountDestinationResponse',
59
89
  'NetworkingConfigurationResponse',
60
90
  'NetworkingRouteResponse',
61
91
  'OtlpReceiverResponse',
92
+ 'PerfCounterDataSourceResponse',
62
93
  'PersistenceConfigurationsResponse',
63
94
  'PipelineGroupPropertiesResponse',
64
95
  'PipelineResponse',
96
+ 'PlatformTelemetryDataSourceResponse',
65
97
  'PredictiveAutoscalePolicyResponse',
66
98
  'PrivateEndpointConnectionResponse',
67
99
  'PrivateEndpointResponse',
100
+ 'PrivateLinkScopedResourceResponse',
68
101
  'PrivateLinkServiceConnectionStateResponse',
69
102
  'ProcessorResponse',
103
+ 'PrometheusForwarderDataSourceResponse',
70
104
  'ReceiverResponse',
71
105
  'RecordMapResponse',
72
106
  'RecurrenceResponse',
@@ -83,7 +117,11 @@ __all__ = [
83
117
  'ScopeMapResponse',
84
118
  'ServiceResponse',
85
119
  'SmsReceiverResponse',
120
+ 'StorageBlobDestinationResponse',
121
+ 'StorageTableDestinationResponse',
122
+ 'StreamDeclarationResponse',
86
123
  'SubscriptionLogSettingsResponse',
124
+ 'SyslogDataSourceResponse',
87
125
  'SyslogReceiverResponse',
88
126
  'SystemDataResponse',
89
127
  'TcpExporterResponse',
@@ -94,6 +132,8 @@ __all__ = [
94
132
  'VoiceReceiverResponse',
95
133
  'WebhookNotificationResponse',
96
134
  'WebhookReceiverResponse',
135
+ 'WindowsEventLogDataSourceResponse',
136
+ 'WindowsFirewallLogsDataSourceResponse',
97
137
  ]
98
138
 
99
139
  @pulumi.output_type
@@ -1163,6 +1203,41 @@ class CacheConfigurationResponse(dict):
1163
1203
  return pulumi.get(self, "retention_period")
1164
1204
 
1165
1205
 
1206
+ @pulumi.output_type
1207
+ class ColumnDefinitionResponse(dict):
1208
+ """
1209
+ Definition of custom data column.
1210
+ """
1211
+ def __init__(__self__, *,
1212
+ name: Optional[str] = None,
1213
+ type: Optional[str] = None):
1214
+ """
1215
+ Definition of custom data column.
1216
+ :param str name: The name of the column.
1217
+ :param str type: The type of the column data.
1218
+ """
1219
+ if name is not None:
1220
+ pulumi.set(__self__, "name", name)
1221
+ if type is not None:
1222
+ pulumi.set(__self__, "type", type)
1223
+
1224
+ @property
1225
+ @pulumi.getter
1226
+ def name(self) -> Optional[str]:
1227
+ """
1228
+ The name of the column.
1229
+ """
1230
+ return pulumi.get(self, "name")
1231
+
1232
+ @property
1233
+ @pulumi.getter
1234
+ def type(self) -> Optional[str]:
1235
+ """
1236
+ The type of the column data.
1237
+ """
1238
+ return pulumi.get(self, "type")
1239
+
1240
+
1166
1241
  @pulumi.output_type
1167
1242
  class ConcurrencyConfigurationResponse(dict):
1168
1243
  """
@@ -1326,143 +1401,1466 @@ class ConditionResponse(dict):
1326
1401
  """
1327
1402
  return pulumi.get(self, "criterion_type")
1328
1403
 
1329
- @property
1330
- @pulumi.getter
1331
- def dimensions(self) -> Optional[Sequence['outputs.DimensionResponse']]:
1404
+ @property
1405
+ @pulumi.getter
1406
+ def dimensions(self) -> Optional[Sequence['outputs.DimensionResponse']]:
1407
+ """
1408
+ List of Dimensions conditions
1409
+ """
1410
+ return pulumi.get(self, "dimensions")
1411
+
1412
+ @property
1413
+ @pulumi.getter(name="failingPeriods")
1414
+ def failing_periods(self) -> Optional['outputs.ConditionResponseFailingPeriods']:
1415
+ """
1416
+ The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
1417
+ """
1418
+ return pulumi.get(self, "failing_periods")
1419
+
1420
+ @property
1421
+ @pulumi.getter(name="ignoreDataBefore")
1422
+ def ignore_data_before(self) -> Optional[str]:
1423
+ """
1424
+ Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format). Relevant only for dynamic threshold rules of the kind LogAlert.
1425
+ """
1426
+ return pulumi.get(self, "ignore_data_before")
1427
+
1428
+ @property
1429
+ @pulumi.getter(name="metricMeasureColumn")
1430
+ def metric_measure_column(self) -> Optional[str]:
1431
+ """
1432
+ The column containing the metric measure number. Relevant only for rules of the kind LogAlert.
1433
+ """
1434
+ return pulumi.get(self, "metric_measure_column")
1435
+
1436
+ @property
1437
+ @pulumi.getter(name="metricName")
1438
+ def metric_name(self) -> Optional[str]:
1439
+ """
1440
+ The name of the metric to be sent. Relevant and required only for rules of the kind LogToMetric.
1441
+ """
1442
+ return pulumi.get(self, "metric_name")
1443
+
1444
+ @property
1445
+ @pulumi.getter
1446
+ def operator(self) -> Optional[str]:
1447
+ """
1448
+ The criteria operator. Relevant and required only for rules of the kind LogAlert.
1449
+ """
1450
+ return pulumi.get(self, "operator")
1451
+
1452
+ @property
1453
+ @pulumi.getter
1454
+ def query(self) -> Optional[str]:
1455
+ """
1456
+ Log query alert
1457
+ """
1458
+ return pulumi.get(self, "query")
1459
+
1460
+ @property
1461
+ @pulumi.getter(name="resourceIdColumn")
1462
+ def resource_id_column(self) -> Optional[str]:
1463
+ """
1464
+ The column containing the resource id. The content of the column must be a uri formatted as resource id. Relevant only for rules of the kind LogAlert.
1465
+ """
1466
+ return pulumi.get(self, "resource_id_column")
1467
+
1468
+ @property
1469
+ @pulumi.getter
1470
+ def threshold(self) -> Optional[float]:
1471
+ """
1472
+ the criteria threshold value that activates the alert. Relevant and required only for static threshold rules of the kind LogAlert.
1473
+ """
1474
+ return pulumi.get(self, "threshold")
1475
+
1476
+ @property
1477
+ @pulumi.getter(name="timeAggregation")
1478
+ def time_aggregation(self) -> Optional[str]:
1479
+ """
1480
+ Aggregation type. Relevant and required only for rules of the kind LogAlert.
1481
+ """
1482
+ return pulumi.get(self, "time_aggregation")
1483
+
1484
+
1485
+ @pulumi.output_type
1486
+ class ConditionResponseFailingPeriods(dict):
1487
+ """
1488
+ The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
1489
+ """
1490
+ @staticmethod
1491
+ def __key_warning(key: str):
1492
+ suggest = None
1493
+ if key == "minFailingPeriodsToAlert":
1494
+ suggest = "min_failing_periods_to_alert"
1495
+ elif key == "numberOfEvaluationPeriods":
1496
+ suggest = "number_of_evaluation_periods"
1497
+
1498
+ if suggest:
1499
+ pulumi.log.warn(f"Key '{key}' not found in ConditionResponseFailingPeriods. Access the value via the '{suggest}' property getter instead.")
1500
+
1501
+ def __getitem__(self, key: str) -> Any:
1502
+ ConditionResponseFailingPeriods.__key_warning(key)
1503
+ return super().__getitem__(key)
1504
+
1505
+ def get(self, key: str, default = None) -> Any:
1506
+ ConditionResponseFailingPeriods.__key_warning(key)
1507
+ return super().get(key, default)
1508
+
1509
+ def __init__(__self__, *,
1510
+ min_failing_periods_to_alert: Optional[float] = None,
1511
+ number_of_evaluation_periods: Optional[float] = None):
1512
+ """
1513
+ The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
1514
+ :param float min_failing_periods_to_alert: The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods. Default value is 1
1515
+ :param float number_of_evaluation_periods: The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points. Default value is 1
1516
+ """
1517
+ if min_failing_periods_to_alert is None:
1518
+ min_failing_periods_to_alert = 1
1519
+ if min_failing_periods_to_alert is not None:
1520
+ pulumi.set(__self__, "min_failing_periods_to_alert", min_failing_periods_to_alert)
1521
+ if number_of_evaluation_periods is None:
1522
+ number_of_evaluation_periods = 1
1523
+ if number_of_evaluation_periods is not None:
1524
+ pulumi.set(__self__, "number_of_evaluation_periods", number_of_evaluation_periods)
1525
+
1526
+ @property
1527
+ @pulumi.getter(name="minFailingPeriodsToAlert")
1528
+ def min_failing_periods_to_alert(self) -> Optional[float]:
1529
+ """
1530
+ The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods. Default value is 1
1531
+ """
1532
+ return pulumi.get(self, "min_failing_periods_to_alert")
1533
+
1534
+ @property
1535
+ @pulumi.getter(name="numberOfEvaluationPeriods")
1536
+ def number_of_evaluation_periods(self) -> Optional[float]:
1537
+ """
1538
+ The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points. Default value is 1
1539
+ """
1540
+ return pulumi.get(self, "number_of_evaluation_periods")
1541
+
1542
+
1543
+ @pulumi.output_type
1544
+ class DataCollectionEndpointResourceResponseIdentity(dict):
1545
+ """
1546
+ Managed service identity of the resource.
1547
+ """
1548
+ @staticmethod
1549
+ def __key_warning(key: str):
1550
+ suggest = None
1551
+ if key == "principalId":
1552
+ suggest = "principal_id"
1553
+ elif key == "tenantId":
1554
+ suggest = "tenant_id"
1555
+ elif key == "userAssignedIdentities":
1556
+ suggest = "user_assigned_identities"
1557
+
1558
+ if suggest:
1559
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
1560
+
1561
+ def __getitem__(self, key: str) -> Any:
1562
+ DataCollectionEndpointResourceResponseIdentity.__key_warning(key)
1563
+ return super().__getitem__(key)
1564
+
1565
+ def get(self, key: str, default = None) -> Any:
1566
+ DataCollectionEndpointResourceResponseIdentity.__key_warning(key)
1567
+ return super().get(key, default)
1568
+
1569
+ def __init__(__self__, *,
1570
+ principal_id: str,
1571
+ tenant_id: str,
1572
+ type: str,
1573
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
1574
+ """
1575
+ Managed service identity of the resource.
1576
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1577
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1578
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
1579
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1580
+ """
1581
+ pulumi.set(__self__, "principal_id", principal_id)
1582
+ pulumi.set(__self__, "tenant_id", tenant_id)
1583
+ pulumi.set(__self__, "type", type)
1584
+ if user_assigned_identities is not None:
1585
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
1586
+
1587
+ @property
1588
+ @pulumi.getter(name="principalId")
1589
+ def principal_id(self) -> str:
1590
+ """
1591
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
1592
+ """
1593
+ return pulumi.get(self, "principal_id")
1594
+
1595
+ @property
1596
+ @pulumi.getter(name="tenantId")
1597
+ def tenant_id(self) -> str:
1598
+ """
1599
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
1600
+ """
1601
+ return pulumi.get(self, "tenant_id")
1602
+
1603
+ @property
1604
+ @pulumi.getter
1605
+ def type(self) -> str:
1606
+ """
1607
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
1608
+ """
1609
+ return pulumi.get(self, "type")
1610
+
1611
+ @property
1612
+ @pulumi.getter(name="userAssignedIdentities")
1613
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
1614
+ """
1615
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
1616
+ """
1617
+ return pulumi.get(self, "user_assigned_identities")
1618
+
1619
+
1620
+ @pulumi.output_type
1621
+ class DataCollectionEndpointResourceResponseSystemData(dict):
1622
+ """
1623
+ Metadata pertaining to creation and last modification of the resource.
1624
+ """
1625
+ @staticmethod
1626
+ def __key_warning(key: str):
1627
+ suggest = None
1628
+ if key == "createdAt":
1629
+ suggest = "created_at"
1630
+ elif key == "createdBy":
1631
+ suggest = "created_by"
1632
+ elif key == "createdByType":
1633
+ suggest = "created_by_type"
1634
+ elif key == "lastModifiedAt":
1635
+ suggest = "last_modified_at"
1636
+ elif key == "lastModifiedBy":
1637
+ suggest = "last_modified_by"
1638
+ elif key == "lastModifiedByType":
1639
+ suggest = "last_modified_by_type"
1640
+
1641
+ if suggest:
1642
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
1643
+
1644
+ def __getitem__(self, key: str) -> Any:
1645
+ DataCollectionEndpointResourceResponseSystemData.__key_warning(key)
1646
+ return super().__getitem__(key)
1647
+
1648
+ def get(self, key: str, default = None) -> Any:
1649
+ DataCollectionEndpointResourceResponseSystemData.__key_warning(key)
1650
+ return super().get(key, default)
1651
+
1652
+ def __init__(__self__, *,
1653
+ created_at: Optional[str] = None,
1654
+ created_by: Optional[str] = None,
1655
+ created_by_type: Optional[str] = None,
1656
+ last_modified_at: Optional[str] = None,
1657
+ last_modified_by: Optional[str] = None,
1658
+ last_modified_by_type: Optional[str] = None):
1659
+ """
1660
+ Metadata pertaining to creation and last modification of the resource.
1661
+ :param str created_at: The timestamp of resource creation (UTC).
1662
+ :param str created_by: The identity that created the resource.
1663
+ :param str created_by_type: The type of identity that created the resource.
1664
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1665
+ :param str last_modified_by: The identity that last modified the resource.
1666
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1667
+ """
1668
+ if created_at is not None:
1669
+ pulumi.set(__self__, "created_at", created_at)
1670
+ if created_by is not None:
1671
+ pulumi.set(__self__, "created_by", created_by)
1672
+ if created_by_type is not None:
1673
+ pulumi.set(__self__, "created_by_type", created_by_type)
1674
+ if last_modified_at is not None:
1675
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1676
+ if last_modified_by is not None:
1677
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1678
+ if last_modified_by_type is not None:
1679
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
1680
+
1681
+ @property
1682
+ @pulumi.getter(name="createdAt")
1683
+ def created_at(self) -> Optional[str]:
1684
+ """
1685
+ The timestamp of resource creation (UTC).
1686
+ """
1687
+ return pulumi.get(self, "created_at")
1688
+
1689
+ @property
1690
+ @pulumi.getter(name="createdBy")
1691
+ def created_by(self) -> Optional[str]:
1692
+ """
1693
+ The identity that created the resource.
1694
+ """
1695
+ return pulumi.get(self, "created_by")
1696
+
1697
+ @property
1698
+ @pulumi.getter(name="createdByType")
1699
+ def created_by_type(self) -> Optional[str]:
1700
+ """
1701
+ The type of identity that created the resource.
1702
+ """
1703
+ return pulumi.get(self, "created_by_type")
1704
+
1705
+ @property
1706
+ @pulumi.getter(name="lastModifiedAt")
1707
+ def last_modified_at(self) -> Optional[str]:
1708
+ """
1709
+ The timestamp of resource last modification (UTC)
1710
+ """
1711
+ return pulumi.get(self, "last_modified_at")
1712
+
1713
+ @property
1714
+ @pulumi.getter(name="lastModifiedBy")
1715
+ def last_modified_by(self) -> Optional[str]:
1716
+ """
1717
+ The identity that last modified the resource.
1718
+ """
1719
+ return pulumi.get(self, "last_modified_by")
1720
+
1721
+ @property
1722
+ @pulumi.getter(name="lastModifiedByType")
1723
+ def last_modified_by_type(self) -> Optional[str]:
1724
+ """
1725
+ The type of identity that last modified the resource.
1726
+ """
1727
+ return pulumi.get(self, "last_modified_by_type")
1728
+
1729
+
1730
+ @pulumi.output_type
1731
+ class DataCollectionEndpointResponseConfigurationAccess(dict):
1732
+ """
1733
+ The endpoint used by clients to access their configuration.
1734
+ """
1735
+ def __init__(__self__, *,
1736
+ endpoint: str):
1737
+ """
1738
+ The endpoint used by clients to access their configuration.
1739
+ :param str endpoint: The endpoint. This property is READ-ONLY.
1740
+ """
1741
+ pulumi.set(__self__, "endpoint", endpoint)
1742
+
1743
+ @property
1744
+ @pulumi.getter
1745
+ def endpoint(self) -> str:
1746
+ """
1747
+ The endpoint. This property is READ-ONLY.
1748
+ """
1749
+ return pulumi.get(self, "endpoint")
1750
+
1751
+
1752
+ @pulumi.output_type
1753
+ class DataCollectionEndpointResponseFailoverConfiguration(dict):
1754
+ """
1755
+ Failover configuration on this endpoint. This property is READ-ONLY.
1756
+ """
1757
+ @staticmethod
1758
+ def __key_warning(key: str):
1759
+ suggest = None
1760
+ if key == "activeLocation":
1761
+ suggest = "active_location"
1762
+
1763
+ if suggest:
1764
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseFailoverConfiguration. Access the value via the '{suggest}' property getter instead.")
1765
+
1766
+ def __getitem__(self, key: str) -> Any:
1767
+ DataCollectionEndpointResponseFailoverConfiguration.__key_warning(key)
1768
+ return super().__getitem__(key)
1769
+
1770
+ def get(self, key: str, default = None) -> Any:
1771
+ DataCollectionEndpointResponseFailoverConfiguration.__key_warning(key)
1772
+ return super().get(key, default)
1773
+
1774
+ def __init__(__self__, *,
1775
+ active_location: Optional[str] = None,
1776
+ locations: Optional[Sequence['outputs.LocationSpecResponse']] = None):
1777
+ """
1778
+ Failover configuration on this endpoint. This property is READ-ONLY.
1779
+ :param str active_location: Active location where data flow will occur.
1780
+ :param Sequence['LocationSpecResponse'] locations: Locations that are configured for failover.
1781
+ """
1782
+ if active_location is not None:
1783
+ pulumi.set(__self__, "active_location", active_location)
1784
+ if locations is not None:
1785
+ pulumi.set(__self__, "locations", locations)
1786
+
1787
+ @property
1788
+ @pulumi.getter(name="activeLocation")
1789
+ def active_location(self) -> Optional[str]:
1790
+ """
1791
+ Active location where data flow will occur.
1792
+ """
1793
+ return pulumi.get(self, "active_location")
1794
+
1795
+ @property
1796
+ @pulumi.getter
1797
+ def locations(self) -> Optional[Sequence['outputs.LocationSpecResponse']]:
1798
+ """
1799
+ Locations that are configured for failover.
1800
+ """
1801
+ return pulumi.get(self, "locations")
1802
+
1803
+
1804
+ @pulumi.output_type
1805
+ class DataCollectionEndpointResponseLogsIngestion(dict):
1806
+ """
1807
+ The endpoint used by clients to ingest logs.
1808
+ """
1809
+ def __init__(__self__, *,
1810
+ endpoint: str):
1811
+ """
1812
+ The endpoint used by clients to ingest logs.
1813
+ :param str endpoint: The endpoint. This property is READ-ONLY.
1814
+ """
1815
+ pulumi.set(__self__, "endpoint", endpoint)
1816
+
1817
+ @property
1818
+ @pulumi.getter
1819
+ def endpoint(self) -> str:
1820
+ """
1821
+ The endpoint. This property is READ-ONLY.
1822
+ """
1823
+ return pulumi.get(self, "endpoint")
1824
+
1825
+
1826
+ @pulumi.output_type
1827
+ class DataCollectionEndpointResponseMetadata(dict):
1828
+ """
1829
+ Metadata for the resource. This property is READ-ONLY.
1830
+ """
1831
+ @staticmethod
1832
+ def __key_warning(key: str):
1833
+ suggest = None
1834
+ if key == "provisionedBy":
1835
+ suggest = "provisioned_by"
1836
+ elif key == "provisionedByResourceId":
1837
+ suggest = "provisioned_by_resource_id"
1838
+
1839
+ if suggest:
1840
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseMetadata. Access the value via the '{suggest}' property getter instead.")
1841
+
1842
+ def __getitem__(self, key: str) -> Any:
1843
+ DataCollectionEndpointResponseMetadata.__key_warning(key)
1844
+ return super().__getitem__(key)
1845
+
1846
+ def get(self, key: str, default = None) -> Any:
1847
+ DataCollectionEndpointResponseMetadata.__key_warning(key)
1848
+ return super().get(key, default)
1849
+
1850
+ def __init__(__self__, *,
1851
+ provisioned_by: str,
1852
+ provisioned_by_resource_id: str):
1853
+ """
1854
+ Metadata for the resource. This property is READ-ONLY.
1855
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
1856
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
1857
+ """
1858
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
1859
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
1860
+
1861
+ @property
1862
+ @pulumi.getter(name="provisionedBy")
1863
+ def provisioned_by(self) -> str:
1864
+ """
1865
+ Azure offering managing this resource on-behalf-of customer.
1866
+ """
1867
+ return pulumi.get(self, "provisioned_by")
1868
+
1869
+ @property
1870
+ @pulumi.getter(name="provisionedByResourceId")
1871
+ def provisioned_by_resource_id(self) -> str:
1872
+ """
1873
+ Resource Id of azure offering managing this resource on-behalf-of customer.
1874
+ """
1875
+ return pulumi.get(self, "provisioned_by_resource_id")
1876
+
1877
+
1878
+ @pulumi.output_type
1879
+ class DataCollectionEndpointResponseMetricsIngestion(dict):
1880
+ """
1881
+ The endpoint used by clients to ingest metrics.
1882
+ """
1883
+ def __init__(__self__, *,
1884
+ endpoint: str):
1885
+ """
1886
+ The endpoint used by clients to ingest metrics.
1887
+ :param str endpoint: The endpoint. This property is READ-ONLY.
1888
+ """
1889
+ pulumi.set(__self__, "endpoint", endpoint)
1890
+
1891
+ @property
1892
+ @pulumi.getter
1893
+ def endpoint(self) -> str:
1894
+ """
1895
+ The endpoint. This property is READ-ONLY.
1896
+ """
1897
+ return pulumi.get(self, "endpoint")
1898
+
1899
+
1900
+ @pulumi.output_type
1901
+ class DataCollectionEndpointResponseNetworkAcls(dict):
1902
+ """
1903
+ Network access control rules for the endpoints.
1904
+ """
1905
+ @staticmethod
1906
+ def __key_warning(key: str):
1907
+ suggest = None
1908
+ if key == "publicNetworkAccess":
1909
+ suggest = "public_network_access"
1910
+
1911
+ if suggest:
1912
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionEndpointResponseNetworkAcls. Access the value via the '{suggest}' property getter instead.")
1913
+
1914
+ def __getitem__(self, key: str) -> Any:
1915
+ DataCollectionEndpointResponseNetworkAcls.__key_warning(key)
1916
+ return super().__getitem__(key)
1917
+
1918
+ def get(self, key: str, default = None) -> Any:
1919
+ DataCollectionEndpointResponseNetworkAcls.__key_warning(key)
1920
+ return super().get(key, default)
1921
+
1922
+ def __init__(__self__, *,
1923
+ public_network_access: Optional[str] = None):
1924
+ """
1925
+ Network access control rules for the endpoints.
1926
+ :param str public_network_access: The configuration to set whether network access from public internet to the endpoints are allowed.
1927
+ """
1928
+ if public_network_access is not None:
1929
+ pulumi.set(__self__, "public_network_access", public_network_access)
1930
+
1931
+ @property
1932
+ @pulumi.getter(name="publicNetworkAccess")
1933
+ def public_network_access(self) -> Optional[str]:
1934
+ """
1935
+ The configuration to set whether network access from public internet to the endpoints are allowed.
1936
+ """
1937
+ return pulumi.get(self, "public_network_access")
1938
+
1939
+
1940
+ @pulumi.output_type
1941
+ class DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData(dict):
1942
+ """
1943
+ Metadata pertaining to creation and last modification of the resource.
1944
+ """
1945
+ @staticmethod
1946
+ def __key_warning(key: str):
1947
+ suggest = None
1948
+ if key == "createdAt":
1949
+ suggest = "created_at"
1950
+ elif key == "createdBy":
1951
+ suggest = "created_by"
1952
+ elif key == "createdByType":
1953
+ suggest = "created_by_type"
1954
+ elif key == "lastModifiedAt":
1955
+ suggest = "last_modified_at"
1956
+ elif key == "lastModifiedBy":
1957
+ suggest = "last_modified_by"
1958
+ elif key == "lastModifiedByType":
1959
+ suggest = "last_modified_by_type"
1960
+
1961
+ if suggest:
1962
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
1963
+
1964
+ def __getitem__(self, key: str) -> Any:
1965
+ DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData.__key_warning(key)
1966
+ return super().__getitem__(key)
1967
+
1968
+ def get(self, key: str, default = None) -> Any:
1969
+ DataCollectionRuleAssociationProxyOnlyResourceResponseSystemData.__key_warning(key)
1970
+ return super().get(key, default)
1971
+
1972
+ def __init__(__self__, *,
1973
+ created_at: Optional[str] = None,
1974
+ created_by: Optional[str] = None,
1975
+ created_by_type: Optional[str] = None,
1976
+ last_modified_at: Optional[str] = None,
1977
+ last_modified_by: Optional[str] = None,
1978
+ last_modified_by_type: Optional[str] = None):
1979
+ """
1980
+ Metadata pertaining to creation and last modification of the resource.
1981
+ :param str created_at: The timestamp of resource creation (UTC).
1982
+ :param str created_by: The identity that created the resource.
1983
+ :param str created_by_type: The type of identity that created the resource.
1984
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
1985
+ :param str last_modified_by: The identity that last modified the resource.
1986
+ :param str last_modified_by_type: The type of identity that last modified the resource.
1987
+ """
1988
+ if created_at is not None:
1989
+ pulumi.set(__self__, "created_at", created_at)
1990
+ if created_by is not None:
1991
+ pulumi.set(__self__, "created_by", created_by)
1992
+ if created_by_type is not None:
1993
+ pulumi.set(__self__, "created_by_type", created_by_type)
1994
+ if last_modified_at is not None:
1995
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
1996
+ if last_modified_by is not None:
1997
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
1998
+ if last_modified_by_type is not None:
1999
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
2000
+
2001
+ @property
2002
+ @pulumi.getter(name="createdAt")
2003
+ def created_at(self) -> Optional[str]:
2004
+ """
2005
+ The timestamp of resource creation (UTC).
2006
+ """
2007
+ return pulumi.get(self, "created_at")
2008
+
2009
+ @property
2010
+ @pulumi.getter(name="createdBy")
2011
+ def created_by(self) -> Optional[str]:
2012
+ """
2013
+ The identity that created the resource.
2014
+ """
2015
+ return pulumi.get(self, "created_by")
2016
+
2017
+ @property
2018
+ @pulumi.getter(name="createdByType")
2019
+ def created_by_type(self) -> Optional[str]:
2020
+ """
2021
+ The type of identity that created the resource.
2022
+ """
2023
+ return pulumi.get(self, "created_by_type")
2024
+
2025
+ @property
2026
+ @pulumi.getter(name="lastModifiedAt")
2027
+ def last_modified_at(self) -> Optional[str]:
2028
+ """
2029
+ The timestamp of resource last modification (UTC)
2030
+ """
2031
+ return pulumi.get(self, "last_modified_at")
2032
+
2033
+ @property
2034
+ @pulumi.getter(name="lastModifiedBy")
2035
+ def last_modified_by(self) -> Optional[str]:
2036
+ """
2037
+ The identity that last modified the resource.
2038
+ """
2039
+ return pulumi.get(self, "last_modified_by")
2040
+
2041
+ @property
2042
+ @pulumi.getter(name="lastModifiedByType")
2043
+ def last_modified_by_type(self) -> Optional[str]:
2044
+ """
2045
+ The type of identity that last modified the resource.
2046
+ """
2047
+ return pulumi.get(self, "last_modified_by_type")
2048
+
2049
+
2050
+ @pulumi.output_type
2051
+ class DataCollectionRuleAssociationResponseMetadata(dict):
2052
+ """
2053
+ Metadata about the resource
2054
+ """
2055
+ @staticmethod
2056
+ def __key_warning(key: str):
2057
+ suggest = None
2058
+ if key == "provisionedBy":
2059
+ suggest = "provisioned_by"
2060
+ elif key == "provisionedByResourceId":
2061
+ suggest = "provisioned_by_resource_id"
2062
+
2063
+ if suggest:
2064
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleAssociationResponseMetadata. Access the value via the '{suggest}' property getter instead.")
2065
+
2066
+ def __getitem__(self, key: str) -> Any:
2067
+ DataCollectionRuleAssociationResponseMetadata.__key_warning(key)
2068
+ return super().__getitem__(key)
2069
+
2070
+ def get(self, key: str, default = None) -> Any:
2071
+ DataCollectionRuleAssociationResponseMetadata.__key_warning(key)
2072
+ return super().get(key, default)
2073
+
2074
+ def __init__(__self__, *,
2075
+ provisioned_by: str,
2076
+ provisioned_by_resource_id: str):
2077
+ """
2078
+ Metadata about the resource
2079
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
2080
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
2081
+ """
2082
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
2083
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
2084
+
2085
+ @property
2086
+ @pulumi.getter(name="provisionedBy")
2087
+ def provisioned_by(self) -> str:
2088
+ """
2089
+ Azure offering managing this resource on-behalf-of customer.
2090
+ """
2091
+ return pulumi.get(self, "provisioned_by")
2092
+
2093
+ @property
2094
+ @pulumi.getter(name="provisionedByResourceId")
2095
+ def provisioned_by_resource_id(self) -> str:
2096
+ """
2097
+ Resource Id of azure offering managing this resource on-behalf-of customer.
2098
+ """
2099
+ return pulumi.get(self, "provisioned_by_resource_id")
2100
+
2101
+
2102
+ @pulumi.output_type
2103
+ class DataCollectionRuleResourceResponseIdentity(dict):
2104
+ """
2105
+ Managed service identity of the resource.
2106
+ """
2107
+ @staticmethod
2108
+ def __key_warning(key: str):
2109
+ suggest = None
2110
+ if key == "principalId":
2111
+ suggest = "principal_id"
2112
+ elif key == "tenantId":
2113
+ suggest = "tenant_id"
2114
+ elif key == "userAssignedIdentities":
2115
+ suggest = "user_assigned_identities"
2116
+
2117
+ if suggest:
2118
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResourceResponseIdentity. Access the value via the '{suggest}' property getter instead.")
2119
+
2120
+ def __getitem__(self, key: str) -> Any:
2121
+ DataCollectionRuleResourceResponseIdentity.__key_warning(key)
2122
+ return super().__getitem__(key)
2123
+
2124
+ def get(self, key: str, default = None) -> Any:
2125
+ DataCollectionRuleResourceResponseIdentity.__key_warning(key)
2126
+ return super().get(key, default)
2127
+
2128
+ def __init__(__self__, *,
2129
+ principal_id: str,
2130
+ tenant_id: str,
2131
+ type: str,
2132
+ user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
2133
+ """
2134
+ Managed service identity of the resource.
2135
+ :param str principal_id: The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
2136
+ :param str tenant_id: The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
2137
+ :param str type: Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
2138
+ :param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
2139
+ """
2140
+ pulumi.set(__self__, "principal_id", principal_id)
2141
+ pulumi.set(__self__, "tenant_id", tenant_id)
2142
+ pulumi.set(__self__, "type", type)
2143
+ if user_assigned_identities is not None:
2144
+ pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
2145
+
2146
+ @property
2147
+ @pulumi.getter(name="principalId")
2148
+ def principal_id(self) -> str:
2149
+ """
2150
+ The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
2151
+ """
2152
+ return pulumi.get(self, "principal_id")
2153
+
2154
+ @property
2155
+ @pulumi.getter(name="tenantId")
2156
+ def tenant_id(self) -> str:
2157
+ """
2158
+ The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
2159
+ """
2160
+ return pulumi.get(self, "tenant_id")
2161
+
2162
+ @property
2163
+ @pulumi.getter
2164
+ def type(self) -> str:
2165
+ """
2166
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
2167
+ """
2168
+ return pulumi.get(self, "type")
2169
+
2170
+ @property
2171
+ @pulumi.getter(name="userAssignedIdentities")
2172
+ def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
2173
+ """
2174
+ The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
2175
+ """
2176
+ return pulumi.get(self, "user_assigned_identities")
2177
+
2178
+
2179
+ @pulumi.output_type
2180
+ class DataCollectionRuleResourceResponseSystemData(dict):
2181
+ """
2182
+ Metadata pertaining to creation and last modification of the resource.
2183
+ """
2184
+ @staticmethod
2185
+ def __key_warning(key: str):
2186
+ suggest = None
2187
+ if key == "createdAt":
2188
+ suggest = "created_at"
2189
+ elif key == "createdBy":
2190
+ suggest = "created_by"
2191
+ elif key == "createdByType":
2192
+ suggest = "created_by_type"
2193
+ elif key == "lastModifiedAt":
2194
+ suggest = "last_modified_at"
2195
+ elif key == "lastModifiedBy":
2196
+ suggest = "last_modified_by"
2197
+ elif key == "lastModifiedByType":
2198
+ suggest = "last_modified_by_type"
2199
+
2200
+ if suggest:
2201
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResourceResponseSystemData. Access the value via the '{suggest}' property getter instead.")
2202
+
2203
+ def __getitem__(self, key: str) -> Any:
2204
+ DataCollectionRuleResourceResponseSystemData.__key_warning(key)
2205
+ return super().__getitem__(key)
2206
+
2207
+ def get(self, key: str, default = None) -> Any:
2208
+ DataCollectionRuleResourceResponseSystemData.__key_warning(key)
2209
+ return super().get(key, default)
2210
+
2211
+ def __init__(__self__, *,
2212
+ created_at: Optional[str] = None,
2213
+ created_by: Optional[str] = None,
2214
+ created_by_type: Optional[str] = None,
2215
+ last_modified_at: Optional[str] = None,
2216
+ last_modified_by: Optional[str] = None,
2217
+ last_modified_by_type: Optional[str] = None):
2218
+ """
2219
+ Metadata pertaining to creation and last modification of the resource.
2220
+ :param str created_at: The timestamp of resource creation (UTC).
2221
+ :param str created_by: The identity that created the resource.
2222
+ :param str created_by_type: The type of identity that created the resource.
2223
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
2224
+ :param str last_modified_by: The identity that last modified the resource.
2225
+ :param str last_modified_by_type: The type of identity that last modified the resource.
2226
+ """
2227
+ if created_at is not None:
2228
+ pulumi.set(__self__, "created_at", created_at)
2229
+ if created_by is not None:
2230
+ pulumi.set(__self__, "created_by", created_by)
2231
+ if created_by_type is not None:
2232
+ pulumi.set(__self__, "created_by_type", created_by_type)
2233
+ if last_modified_at is not None:
2234
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
2235
+ if last_modified_by is not None:
2236
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
2237
+ if last_modified_by_type is not None:
2238
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
2239
+
2240
+ @property
2241
+ @pulumi.getter(name="createdAt")
2242
+ def created_at(self) -> Optional[str]:
2243
+ """
2244
+ The timestamp of resource creation (UTC).
2245
+ """
2246
+ return pulumi.get(self, "created_at")
2247
+
2248
+ @property
2249
+ @pulumi.getter(name="createdBy")
2250
+ def created_by(self) -> Optional[str]:
2251
+ """
2252
+ The identity that created the resource.
2253
+ """
2254
+ return pulumi.get(self, "created_by")
2255
+
2256
+ @property
2257
+ @pulumi.getter(name="createdByType")
2258
+ def created_by_type(self) -> Optional[str]:
2259
+ """
2260
+ The type of identity that created the resource.
2261
+ """
2262
+ return pulumi.get(self, "created_by_type")
2263
+
2264
+ @property
2265
+ @pulumi.getter(name="lastModifiedAt")
2266
+ def last_modified_at(self) -> Optional[str]:
2267
+ """
2268
+ The timestamp of resource last modification (UTC)
2269
+ """
2270
+ return pulumi.get(self, "last_modified_at")
2271
+
2272
+ @property
2273
+ @pulumi.getter(name="lastModifiedBy")
2274
+ def last_modified_by(self) -> Optional[str]:
2275
+ """
2276
+ The identity that last modified the resource.
2277
+ """
2278
+ return pulumi.get(self, "last_modified_by")
2279
+
2280
+ @property
2281
+ @pulumi.getter(name="lastModifiedByType")
2282
+ def last_modified_by_type(self) -> Optional[str]:
2283
+ """
2284
+ The type of identity that last modified the resource.
2285
+ """
2286
+ return pulumi.get(self, "last_modified_by_type")
2287
+
2288
+
2289
+ @pulumi.output_type
2290
+ class DataCollectionRuleResponseDataSources(dict):
2291
+ """
2292
+ The specification of data sources.
2293
+ This property is optional and can be omitted if the rule is meant to be used via direct calls to the provisioned endpoint.
2294
+ """
2295
+ @staticmethod
2296
+ def __key_warning(key: str):
2297
+ suggest = None
2298
+ if key == "dataImports":
2299
+ suggest = "data_imports"
2300
+ elif key == "iisLogs":
2301
+ suggest = "iis_logs"
2302
+ elif key == "logFiles":
2303
+ suggest = "log_files"
2304
+ elif key == "performanceCounters":
2305
+ suggest = "performance_counters"
2306
+ elif key == "platformTelemetry":
2307
+ suggest = "platform_telemetry"
2308
+ elif key == "prometheusForwarder":
2309
+ suggest = "prometheus_forwarder"
2310
+ elif key == "windowsEventLogs":
2311
+ suggest = "windows_event_logs"
2312
+ elif key == "windowsFirewallLogs":
2313
+ suggest = "windows_firewall_logs"
2314
+
2315
+ if suggest:
2316
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseDataSources. Access the value via the '{suggest}' property getter instead.")
2317
+
2318
+ def __getitem__(self, key: str) -> Any:
2319
+ DataCollectionRuleResponseDataSources.__key_warning(key)
2320
+ return super().__getitem__(key)
2321
+
2322
+ def get(self, key: str, default = None) -> Any:
2323
+ DataCollectionRuleResponseDataSources.__key_warning(key)
2324
+ return super().get(key, default)
2325
+
2326
+ def __init__(__self__, *,
2327
+ data_imports: Optional['outputs.DataSourcesSpecResponseDataImports'] = None,
2328
+ extensions: Optional[Sequence['outputs.ExtensionDataSourceResponse']] = None,
2329
+ iis_logs: Optional[Sequence['outputs.IisLogsDataSourceResponse']] = None,
2330
+ log_files: Optional[Sequence['outputs.LogFilesDataSourceResponse']] = None,
2331
+ performance_counters: Optional[Sequence['outputs.PerfCounterDataSourceResponse']] = None,
2332
+ platform_telemetry: Optional[Sequence['outputs.PlatformTelemetryDataSourceResponse']] = None,
2333
+ prometheus_forwarder: Optional[Sequence['outputs.PrometheusForwarderDataSourceResponse']] = None,
2334
+ syslog: Optional[Sequence['outputs.SyslogDataSourceResponse']] = None,
2335
+ windows_event_logs: Optional[Sequence['outputs.WindowsEventLogDataSourceResponse']] = None,
2336
+ windows_firewall_logs: Optional[Sequence['outputs.WindowsFirewallLogsDataSourceResponse']] = None):
2337
+ """
2338
+ The specification of data sources.
2339
+ This property is optional and can be omitted if the rule is meant to be used via direct calls to the provisioned endpoint.
2340
+ :param 'DataSourcesSpecResponseDataImports' data_imports: Specifications of pull based data sources
2341
+ :param Sequence['ExtensionDataSourceResponse'] extensions: The list of Azure VM extension data source configurations.
2342
+ :param Sequence['IisLogsDataSourceResponse'] iis_logs: The list of IIS logs source configurations.
2343
+ :param Sequence['LogFilesDataSourceResponse'] log_files: The list of Log files source configurations.
2344
+ :param Sequence['PerfCounterDataSourceResponse'] performance_counters: The list of performance counter data source configurations.
2345
+ :param Sequence['PlatformTelemetryDataSourceResponse'] platform_telemetry: The list of platform telemetry configurations
2346
+ :param Sequence['PrometheusForwarderDataSourceResponse'] prometheus_forwarder: The list of Prometheus forwarder data source configurations.
2347
+ :param Sequence['SyslogDataSourceResponse'] syslog: The list of Syslog data source configurations.
2348
+ :param Sequence['WindowsEventLogDataSourceResponse'] windows_event_logs: The list of Windows Event Log data source configurations.
2349
+ :param Sequence['WindowsFirewallLogsDataSourceResponse'] windows_firewall_logs: The list of Windows Firewall logs source configurations.
2350
+ """
2351
+ if data_imports is not None:
2352
+ pulumi.set(__self__, "data_imports", data_imports)
2353
+ if extensions is not None:
2354
+ pulumi.set(__self__, "extensions", extensions)
2355
+ if iis_logs is not None:
2356
+ pulumi.set(__self__, "iis_logs", iis_logs)
2357
+ if log_files is not None:
2358
+ pulumi.set(__self__, "log_files", log_files)
2359
+ if performance_counters is not None:
2360
+ pulumi.set(__self__, "performance_counters", performance_counters)
2361
+ if platform_telemetry is not None:
2362
+ pulumi.set(__self__, "platform_telemetry", platform_telemetry)
2363
+ if prometheus_forwarder is not None:
2364
+ pulumi.set(__self__, "prometheus_forwarder", prometheus_forwarder)
2365
+ if syslog is not None:
2366
+ pulumi.set(__self__, "syslog", syslog)
2367
+ if windows_event_logs is not None:
2368
+ pulumi.set(__self__, "windows_event_logs", windows_event_logs)
2369
+ if windows_firewall_logs is not None:
2370
+ pulumi.set(__self__, "windows_firewall_logs", windows_firewall_logs)
2371
+
2372
+ @property
2373
+ @pulumi.getter(name="dataImports")
2374
+ def data_imports(self) -> Optional['outputs.DataSourcesSpecResponseDataImports']:
2375
+ """
2376
+ Specifications of pull based data sources
2377
+ """
2378
+ return pulumi.get(self, "data_imports")
2379
+
2380
+ @property
2381
+ @pulumi.getter
2382
+ def extensions(self) -> Optional[Sequence['outputs.ExtensionDataSourceResponse']]:
2383
+ """
2384
+ The list of Azure VM extension data source configurations.
2385
+ """
2386
+ return pulumi.get(self, "extensions")
2387
+
2388
+ @property
2389
+ @pulumi.getter(name="iisLogs")
2390
+ def iis_logs(self) -> Optional[Sequence['outputs.IisLogsDataSourceResponse']]:
2391
+ """
2392
+ The list of IIS logs source configurations.
2393
+ """
2394
+ return pulumi.get(self, "iis_logs")
2395
+
2396
+ @property
2397
+ @pulumi.getter(name="logFiles")
2398
+ def log_files(self) -> Optional[Sequence['outputs.LogFilesDataSourceResponse']]:
2399
+ """
2400
+ The list of Log files source configurations.
2401
+ """
2402
+ return pulumi.get(self, "log_files")
2403
+
2404
+ @property
2405
+ @pulumi.getter(name="performanceCounters")
2406
+ def performance_counters(self) -> Optional[Sequence['outputs.PerfCounterDataSourceResponse']]:
2407
+ """
2408
+ The list of performance counter data source configurations.
2409
+ """
2410
+ return pulumi.get(self, "performance_counters")
2411
+
2412
+ @property
2413
+ @pulumi.getter(name="platformTelemetry")
2414
+ def platform_telemetry(self) -> Optional[Sequence['outputs.PlatformTelemetryDataSourceResponse']]:
2415
+ """
2416
+ The list of platform telemetry configurations
2417
+ """
2418
+ return pulumi.get(self, "platform_telemetry")
2419
+
2420
+ @property
2421
+ @pulumi.getter(name="prometheusForwarder")
2422
+ def prometheus_forwarder(self) -> Optional[Sequence['outputs.PrometheusForwarderDataSourceResponse']]:
2423
+ """
2424
+ The list of Prometheus forwarder data source configurations.
2425
+ """
2426
+ return pulumi.get(self, "prometheus_forwarder")
2427
+
2428
+ @property
2429
+ @pulumi.getter
2430
+ def syslog(self) -> Optional[Sequence['outputs.SyslogDataSourceResponse']]:
2431
+ """
2432
+ The list of Syslog data source configurations.
2433
+ """
2434
+ return pulumi.get(self, "syslog")
2435
+
2436
+ @property
2437
+ @pulumi.getter(name="windowsEventLogs")
2438
+ def windows_event_logs(self) -> Optional[Sequence['outputs.WindowsEventLogDataSourceResponse']]:
2439
+ """
2440
+ The list of Windows Event Log data source configurations.
2441
+ """
2442
+ return pulumi.get(self, "windows_event_logs")
2443
+
2444
+ @property
2445
+ @pulumi.getter(name="windowsFirewallLogs")
2446
+ def windows_firewall_logs(self) -> Optional[Sequence['outputs.WindowsFirewallLogsDataSourceResponse']]:
2447
+ """
2448
+ The list of Windows Firewall logs source configurations.
2449
+ """
2450
+ return pulumi.get(self, "windows_firewall_logs")
2451
+
2452
+
2453
+ @pulumi.output_type
2454
+ class DataCollectionRuleResponseDestinations(dict):
2455
+ """
2456
+ The specification of destinations.
2457
+ """
2458
+ @staticmethod
2459
+ def __key_warning(key: str):
2460
+ suggest = None
2461
+ if key == "azureMonitorMetrics":
2462
+ suggest = "azure_monitor_metrics"
2463
+ elif key == "eventHubs":
2464
+ suggest = "event_hubs"
2465
+ elif key == "eventHubsDirect":
2466
+ suggest = "event_hubs_direct"
2467
+ elif key == "logAnalytics":
2468
+ suggest = "log_analytics"
2469
+ elif key == "monitoringAccounts":
2470
+ suggest = "monitoring_accounts"
2471
+ elif key == "storageAccounts":
2472
+ suggest = "storage_accounts"
2473
+ elif key == "storageBlobsDirect":
2474
+ suggest = "storage_blobs_direct"
2475
+ elif key == "storageTablesDirect":
2476
+ suggest = "storage_tables_direct"
2477
+
2478
+ if suggest:
2479
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseDestinations. Access the value via the '{suggest}' property getter instead.")
2480
+
2481
+ def __getitem__(self, key: str) -> Any:
2482
+ DataCollectionRuleResponseDestinations.__key_warning(key)
2483
+ return super().__getitem__(key)
2484
+
2485
+ def get(self, key: str, default = None) -> Any:
2486
+ DataCollectionRuleResponseDestinations.__key_warning(key)
2487
+ return super().get(key, default)
2488
+
2489
+ def __init__(__self__, *,
2490
+ azure_monitor_metrics: Optional['outputs.DestinationsSpecResponseAzureMonitorMetrics'] = None,
2491
+ event_hubs: Optional[Sequence['outputs.EventHubDestinationResponse']] = None,
2492
+ event_hubs_direct: Optional[Sequence['outputs.EventHubDirectDestinationResponse']] = None,
2493
+ log_analytics: Optional[Sequence['outputs.LogAnalyticsDestinationResponse']] = None,
2494
+ monitoring_accounts: Optional[Sequence['outputs.MonitoringAccountDestinationResponse']] = None,
2495
+ storage_accounts: Optional[Sequence['outputs.StorageBlobDestinationResponse']] = None,
2496
+ storage_blobs_direct: Optional[Sequence['outputs.StorageBlobDestinationResponse']] = None,
2497
+ storage_tables_direct: Optional[Sequence['outputs.StorageTableDestinationResponse']] = None):
2498
+ """
2499
+ The specification of destinations.
2500
+ :param 'DestinationsSpecResponseAzureMonitorMetrics' azure_monitor_metrics: Azure Monitor Metrics destination.
2501
+ :param Sequence['EventHubDestinationResponse'] event_hubs: List of Event Hubs destinations.
2502
+ :param Sequence['EventHubDirectDestinationResponse'] event_hubs_direct: List of Event Hubs Direct destinations.
2503
+ :param Sequence['LogAnalyticsDestinationResponse'] log_analytics: List of Log Analytics destinations.
2504
+ :param Sequence['MonitoringAccountDestinationResponse'] monitoring_accounts: List of monitoring account destinations.
2505
+ :param Sequence['StorageBlobDestinationResponse'] storage_accounts: List of storage accounts destinations.
2506
+ :param Sequence['StorageBlobDestinationResponse'] storage_blobs_direct: List of Storage Blob Direct destinations. To be used only for sending data directly to store from the agent.
2507
+ :param Sequence['StorageTableDestinationResponse'] storage_tables_direct: List of Storage Table Direct destinations.
2508
+ """
2509
+ if azure_monitor_metrics is not None:
2510
+ pulumi.set(__self__, "azure_monitor_metrics", azure_monitor_metrics)
2511
+ if event_hubs is not None:
2512
+ pulumi.set(__self__, "event_hubs", event_hubs)
2513
+ if event_hubs_direct is not None:
2514
+ pulumi.set(__self__, "event_hubs_direct", event_hubs_direct)
2515
+ if log_analytics is not None:
2516
+ pulumi.set(__self__, "log_analytics", log_analytics)
2517
+ if monitoring_accounts is not None:
2518
+ pulumi.set(__self__, "monitoring_accounts", monitoring_accounts)
2519
+ if storage_accounts is not None:
2520
+ pulumi.set(__self__, "storage_accounts", storage_accounts)
2521
+ if storage_blobs_direct is not None:
2522
+ pulumi.set(__self__, "storage_blobs_direct", storage_blobs_direct)
2523
+ if storage_tables_direct is not None:
2524
+ pulumi.set(__self__, "storage_tables_direct", storage_tables_direct)
2525
+
2526
+ @property
2527
+ @pulumi.getter(name="azureMonitorMetrics")
2528
+ def azure_monitor_metrics(self) -> Optional['outputs.DestinationsSpecResponseAzureMonitorMetrics']:
2529
+ """
2530
+ Azure Monitor Metrics destination.
2531
+ """
2532
+ return pulumi.get(self, "azure_monitor_metrics")
2533
+
2534
+ @property
2535
+ @pulumi.getter(name="eventHubs")
2536
+ def event_hubs(self) -> Optional[Sequence['outputs.EventHubDestinationResponse']]:
2537
+ """
2538
+ List of Event Hubs destinations.
2539
+ """
2540
+ return pulumi.get(self, "event_hubs")
2541
+
2542
+ @property
2543
+ @pulumi.getter(name="eventHubsDirect")
2544
+ def event_hubs_direct(self) -> Optional[Sequence['outputs.EventHubDirectDestinationResponse']]:
2545
+ """
2546
+ List of Event Hubs Direct destinations.
2547
+ """
2548
+ return pulumi.get(self, "event_hubs_direct")
2549
+
2550
+ @property
2551
+ @pulumi.getter(name="logAnalytics")
2552
+ def log_analytics(self) -> Optional[Sequence['outputs.LogAnalyticsDestinationResponse']]:
2553
+ """
2554
+ List of Log Analytics destinations.
2555
+ """
2556
+ return pulumi.get(self, "log_analytics")
2557
+
2558
+ @property
2559
+ @pulumi.getter(name="monitoringAccounts")
2560
+ def monitoring_accounts(self) -> Optional[Sequence['outputs.MonitoringAccountDestinationResponse']]:
2561
+ """
2562
+ List of monitoring account destinations.
2563
+ """
2564
+ return pulumi.get(self, "monitoring_accounts")
2565
+
2566
+ @property
2567
+ @pulumi.getter(name="storageAccounts")
2568
+ def storage_accounts(self) -> Optional[Sequence['outputs.StorageBlobDestinationResponse']]:
2569
+ """
2570
+ List of storage accounts destinations.
2571
+ """
2572
+ return pulumi.get(self, "storage_accounts")
2573
+
2574
+ @property
2575
+ @pulumi.getter(name="storageBlobsDirect")
2576
+ def storage_blobs_direct(self) -> Optional[Sequence['outputs.StorageBlobDestinationResponse']]:
2577
+ """
2578
+ List of Storage Blob Direct destinations. To be used only for sending data directly to store from the agent.
2579
+ """
2580
+ return pulumi.get(self, "storage_blobs_direct")
2581
+
2582
+ @property
2583
+ @pulumi.getter(name="storageTablesDirect")
2584
+ def storage_tables_direct(self) -> Optional[Sequence['outputs.StorageTableDestinationResponse']]:
2585
+ """
2586
+ List of Storage Table Direct destinations.
2587
+ """
2588
+ return pulumi.get(self, "storage_tables_direct")
2589
+
2590
+
2591
+ @pulumi.output_type
2592
+ class DataCollectionRuleResponseMetadata(dict):
2593
+ """
2594
+ Metadata about the resource
2595
+ """
2596
+ @staticmethod
2597
+ def __key_warning(key: str):
2598
+ suggest = None
2599
+ if key == "provisionedBy":
2600
+ suggest = "provisioned_by"
2601
+ elif key == "provisionedByResourceId":
2602
+ suggest = "provisioned_by_resource_id"
2603
+
2604
+ if suggest:
2605
+ pulumi.log.warn(f"Key '{key}' not found in DataCollectionRuleResponseMetadata. Access the value via the '{suggest}' property getter instead.")
2606
+
2607
+ def __getitem__(self, key: str) -> Any:
2608
+ DataCollectionRuleResponseMetadata.__key_warning(key)
2609
+ return super().__getitem__(key)
2610
+
2611
+ def get(self, key: str, default = None) -> Any:
2612
+ DataCollectionRuleResponseMetadata.__key_warning(key)
2613
+ return super().get(key, default)
2614
+
2615
+ def __init__(__self__, *,
2616
+ provisioned_by: str,
2617
+ provisioned_by_resource_id: str):
2618
+ """
2619
+ Metadata about the resource
2620
+ :param str provisioned_by: Azure offering managing this resource on-behalf-of customer.
2621
+ :param str provisioned_by_resource_id: Resource Id of azure offering managing this resource on-behalf-of customer.
2622
+ """
2623
+ pulumi.set(__self__, "provisioned_by", provisioned_by)
2624
+ pulumi.set(__self__, "provisioned_by_resource_id", provisioned_by_resource_id)
2625
+
2626
+ @property
2627
+ @pulumi.getter(name="provisionedBy")
2628
+ def provisioned_by(self) -> str:
2629
+ """
2630
+ Azure offering managing this resource on-behalf-of customer.
2631
+ """
2632
+ return pulumi.get(self, "provisioned_by")
2633
+
2634
+ @property
2635
+ @pulumi.getter(name="provisionedByResourceId")
2636
+ def provisioned_by_resource_id(self) -> str:
2637
+ """
2638
+ Resource Id of azure offering managing this resource on-behalf-of customer.
2639
+ """
2640
+ return pulumi.get(self, "provisioned_by_resource_id")
2641
+
2642
+
2643
+ @pulumi.output_type
2644
+ class DataFlowResponse(dict):
2645
+ """
2646
+ Definition of which streams are sent to which destinations.
2647
+ """
2648
+ @staticmethod
2649
+ def __key_warning(key: str):
2650
+ suggest = None
2651
+ if key == "builtInTransform":
2652
+ suggest = "built_in_transform"
2653
+ elif key == "outputStream":
2654
+ suggest = "output_stream"
2655
+ elif key == "transformKql":
2656
+ suggest = "transform_kql"
2657
+
2658
+ if suggest:
2659
+ pulumi.log.warn(f"Key '{key}' not found in DataFlowResponse. Access the value via the '{suggest}' property getter instead.")
2660
+
2661
+ def __getitem__(self, key: str) -> Any:
2662
+ DataFlowResponse.__key_warning(key)
2663
+ return super().__getitem__(key)
2664
+
2665
+ def get(self, key: str, default = None) -> Any:
2666
+ DataFlowResponse.__key_warning(key)
2667
+ return super().get(key, default)
2668
+
2669
+ def __init__(__self__, *,
2670
+ built_in_transform: Optional[str] = None,
2671
+ destinations: Optional[Sequence[str]] = None,
2672
+ output_stream: Optional[str] = None,
2673
+ streams: Optional[Sequence[str]] = None,
2674
+ transform_kql: Optional[str] = None):
1332
2675
  """
1333
- List of Dimensions conditions
2676
+ Definition of which streams are sent to which destinations.
2677
+ :param str built_in_transform: The builtIn transform to transform stream data
2678
+ :param Sequence[str] destinations: List of destinations for this data flow.
2679
+ :param str output_stream: The output stream of the transform. Only required if the transform changes data to a different stream.
2680
+ :param Sequence[str] streams: List of streams for this data flow.
2681
+ :param str transform_kql: The KQL query to transform stream data.
1334
2682
  """
1335
- return pulumi.get(self, "dimensions")
2683
+ if built_in_transform is not None:
2684
+ pulumi.set(__self__, "built_in_transform", built_in_transform)
2685
+ if destinations is not None:
2686
+ pulumi.set(__self__, "destinations", destinations)
2687
+ if output_stream is not None:
2688
+ pulumi.set(__self__, "output_stream", output_stream)
2689
+ if streams is not None:
2690
+ pulumi.set(__self__, "streams", streams)
2691
+ if transform_kql is not None:
2692
+ pulumi.set(__self__, "transform_kql", transform_kql)
1336
2693
 
1337
2694
  @property
1338
- @pulumi.getter(name="failingPeriods")
1339
- def failing_periods(self) -> Optional['outputs.ConditionResponseFailingPeriods']:
2695
+ @pulumi.getter(name="builtInTransform")
2696
+ def built_in_transform(self) -> Optional[str]:
1340
2697
  """
1341
- The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
2698
+ The builtIn transform to transform stream data
1342
2699
  """
1343
- return pulumi.get(self, "failing_periods")
2700
+ return pulumi.get(self, "built_in_transform")
1344
2701
 
1345
2702
  @property
1346
- @pulumi.getter(name="ignoreDataBefore")
1347
- def ignore_data_before(self) -> Optional[str]:
2703
+ @pulumi.getter
2704
+ def destinations(self) -> Optional[Sequence[str]]:
1348
2705
  """
1349
- Use this option to set the date from which to start learning the metric historical data and calculate the dynamic thresholds (in ISO8601 format). Relevant only for dynamic threshold rules of the kind LogAlert.
2706
+ List of destinations for this data flow.
1350
2707
  """
1351
- return pulumi.get(self, "ignore_data_before")
2708
+ return pulumi.get(self, "destinations")
1352
2709
 
1353
2710
  @property
1354
- @pulumi.getter(name="metricMeasureColumn")
1355
- def metric_measure_column(self) -> Optional[str]:
2711
+ @pulumi.getter(name="outputStream")
2712
+ def output_stream(self) -> Optional[str]:
1356
2713
  """
1357
- The column containing the metric measure number. Relevant only for rules of the kind LogAlert.
2714
+ The output stream of the transform. Only required if the transform changes data to a different stream.
1358
2715
  """
1359
- return pulumi.get(self, "metric_measure_column")
2716
+ return pulumi.get(self, "output_stream")
1360
2717
 
1361
2718
  @property
1362
- @pulumi.getter(name="metricName")
1363
- def metric_name(self) -> Optional[str]:
2719
+ @pulumi.getter
2720
+ def streams(self) -> Optional[Sequence[str]]:
1364
2721
  """
1365
- The name of the metric to be sent. Relevant and required only for rules of the kind LogToMetric.
2722
+ List of streams for this data flow.
1366
2723
  """
1367
- return pulumi.get(self, "metric_name")
2724
+ return pulumi.get(self, "streams")
1368
2725
 
1369
2726
  @property
1370
- @pulumi.getter
1371
- def operator(self) -> Optional[str]:
2727
+ @pulumi.getter(name="transformKql")
2728
+ def transform_kql(self) -> Optional[str]:
1372
2729
  """
1373
- The criteria operator. Relevant and required only for rules of the kind LogAlert.
2730
+ The KQL query to transform stream data.
1374
2731
  """
1375
- return pulumi.get(self, "operator")
2732
+ return pulumi.get(self, "transform_kql")
1376
2733
 
1377
- @property
1378
- @pulumi.getter
1379
- def query(self) -> Optional[str]:
2734
+
2735
+ @pulumi.output_type
2736
+ class DataImportSourcesResponseEventHub(dict):
2737
+ """
2738
+ Definition of Event Hub configuration.
2739
+ """
2740
+ @staticmethod
2741
+ def __key_warning(key: str):
2742
+ suggest = None
2743
+ if key == "consumerGroup":
2744
+ suggest = "consumer_group"
2745
+
2746
+ if suggest:
2747
+ pulumi.log.warn(f"Key '{key}' not found in DataImportSourcesResponseEventHub. Access the value via the '{suggest}' property getter instead.")
2748
+
2749
+ def __getitem__(self, key: str) -> Any:
2750
+ DataImportSourcesResponseEventHub.__key_warning(key)
2751
+ return super().__getitem__(key)
2752
+
2753
+ def get(self, key: str, default = None) -> Any:
2754
+ DataImportSourcesResponseEventHub.__key_warning(key)
2755
+ return super().get(key, default)
2756
+
2757
+ def __init__(__self__, *,
2758
+ consumer_group: Optional[str] = None,
2759
+ name: Optional[str] = None,
2760
+ stream: Optional[str] = None):
1380
2761
  """
1381
- Log query alert
2762
+ Definition of Event Hub configuration.
2763
+ :param str consumer_group: Event Hub consumer group name
2764
+ :param str name: A friendly name for the data source.
2765
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2766
+ :param str stream: The stream to collect from EventHub
1382
2767
  """
1383
- return pulumi.get(self, "query")
2768
+ if consumer_group is not None:
2769
+ pulumi.set(__self__, "consumer_group", consumer_group)
2770
+ if name is not None:
2771
+ pulumi.set(__self__, "name", name)
2772
+ if stream is not None:
2773
+ pulumi.set(__self__, "stream", stream)
1384
2774
 
1385
2775
  @property
1386
- @pulumi.getter(name="resourceIdColumn")
1387
- def resource_id_column(self) -> Optional[str]:
2776
+ @pulumi.getter(name="consumerGroup")
2777
+ def consumer_group(self) -> Optional[str]:
1388
2778
  """
1389
- The column containing the resource id. The content of the column must be a uri formatted as resource id. Relevant only for rules of the kind LogAlert.
2779
+ Event Hub consumer group name
1390
2780
  """
1391
- return pulumi.get(self, "resource_id_column")
2781
+ return pulumi.get(self, "consumer_group")
1392
2782
 
1393
2783
  @property
1394
2784
  @pulumi.getter
1395
- def threshold(self) -> Optional[float]:
2785
+ def name(self) -> Optional[str]:
1396
2786
  """
1397
- the criteria threshold value that activates the alert. Relevant and required only for static threshold rules of the kind LogAlert.
2787
+ A friendly name for the data source.
2788
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
1398
2789
  """
1399
- return pulumi.get(self, "threshold")
2790
+ return pulumi.get(self, "name")
1400
2791
 
1401
2792
  @property
1402
- @pulumi.getter(name="timeAggregation")
1403
- def time_aggregation(self) -> Optional[str]:
2793
+ @pulumi.getter
2794
+ def stream(self) -> Optional[str]:
1404
2795
  """
1405
- Aggregation type. Relevant and required only for rules of the kind LogAlert.
2796
+ The stream to collect from EventHub
1406
2797
  """
1407
- return pulumi.get(self, "time_aggregation")
2798
+ return pulumi.get(self, "stream")
1408
2799
 
1409
2800
 
1410
2801
  @pulumi.output_type
1411
- class ConditionResponseFailingPeriods(dict):
2802
+ class DataSourcesSpecResponseDataImports(dict):
1412
2803
  """
1413
- The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
2804
+ Specifications of pull based data sources
1414
2805
  """
1415
2806
  @staticmethod
1416
2807
  def __key_warning(key: str):
1417
2808
  suggest = None
1418
- if key == "minFailingPeriodsToAlert":
1419
- suggest = "min_failing_periods_to_alert"
1420
- elif key == "numberOfEvaluationPeriods":
1421
- suggest = "number_of_evaluation_periods"
2809
+ if key == "eventHub":
2810
+ suggest = "event_hub"
1422
2811
 
1423
2812
  if suggest:
1424
- pulumi.log.warn(f"Key '{key}' not found in ConditionResponseFailingPeriods. Access the value via the '{suggest}' property getter instead.")
2813
+ pulumi.log.warn(f"Key '{key}' not found in DataSourcesSpecResponseDataImports. Access the value via the '{suggest}' property getter instead.")
1425
2814
 
1426
2815
  def __getitem__(self, key: str) -> Any:
1427
- ConditionResponseFailingPeriods.__key_warning(key)
2816
+ DataSourcesSpecResponseDataImports.__key_warning(key)
1428
2817
  return super().__getitem__(key)
1429
2818
 
1430
2819
  def get(self, key: str, default = None) -> Any:
1431
- ConditionResponseFailingPeriods.__key_warning(key)
2820
+ DataSourcesSpecResponseDataImports.__key_warning(key)
1432
2821
  return super().get(key, default)
1433
2822
 
1434
2823
  def __init__(__self__, *,
1435
- min_failing_periods_to_alert: Optional[float] = None,
1436
- number_of_evaluation_periods: Optional[float] = None):
2824
+ event_hub: Optional['outputs.DataImportSourcesResponseEventHub'] = None):
1437
2825
  """
1438
- The minimum number of violations required within the selected lookback time window required to raise an alert. Relevant only for rules of the kind LogAlert.
1439
- :param float min_failing_periods_to_alert: The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods. Default value is 1
1440
- :param float number_of_evaluation_periods: The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points. Default value is 1
2826
+ Specifications of pull based data sources
2827
+ :param 'DataImportSourcesResponseEventHub' event_hub: Definition of Event Hub configuration.
1441
2828
  """
1442
- if min_failing_periods_to_alert is None:
1443
- min_failing_periods_to_alert = 1
1444
- if min_failing_periods_to_alert is not None:
1445
- pulumi.set(__self__, "min_failing_periods_to_alert", min_failing_periods_to_alert)
1446
- if number_of_evaluation_periods is None:
1447
- number_of_evaluation_periods = 1
1448
- if number_of_evaluation_periods is not None:
1449
- pulumi.set(__self__, "number_of_evaluation_periods", number_of_evaluation_periods)
2829
+ if event_hub is not None:
2830
+ pulumi.set(__self__, "event_hub", event_hub)
1450
2831
 
1451
2832
  @property
1452
- @pulumi.getter(name="minFailingPeriodsToAlert")
1453
- def min_failing_periods_to_alert(self) -> Optional[float]:
2833
+ @pulumi.getter(name="eventHub")
2834
+ def event_hub(self) -> Optional['outputs.DataImportSourcesResponseEventHub']:
1454
2835
  """
1455
- The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods. Default value is 1
2836
+ Definition of Event Hub configuration.
1456
2837
  """
1457
- return pulumi.get(self, "min_failing_periods_to_alert")
2838
+ return pulumi.get(self, "event_hub")
2839
+
2840
+
2841
+ @pulumi.output_type
2842
+ class DestinationsSpecResponseAzureMonitorMetrics(dict):
2843
+ """
2844
+ Azure Monitor Metrics destination.
2845
+ """
2846
+ def __init__(__self__, *,
2847
+ name: Optional[str] = None):
2848
+ """
2849
+ Azure Monitor Metrics destination.
2850
+ :param str name: A friendly name for the destination.
2851
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
2852
+ """
2853
+ if name is not None:
2854
+ pulumi.set(__self__, "name", name)
1458
2855
 
1459
2856
  @property
1460
- @pulumi.getter(name="numberOfEvaluationPeriods")
1461
- def number_of_evaluation_periods(self) -> Optional[float]:
2857
+ @pulumi.getter
2858
+ def name(self) -> Optional[str]:
1462
2859
  """
1463
- The number of aggregated lookback points. The lookback time window is calculated based on the aggregation granularity (windowSize) and the selected number of aggregated points. Default value is 1
2860
+ A friendly name for the destination.
2861
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
1464
2862
  """
1465
- return pulumi.get(self, "number_of_evaluation_periods")
2863
+ return pulumi.get(self, "name")
1466
2864
 
1467
2865
 
1468
2866
  @pulumi.output_type
@@ -1737,6 +3135,106 @@ class EmailReceiverResponse(dict):
1737
3135
  return pulumi.get(self, "use_common_alert_schema")
1738
3136
 
1739
3137
 
3138
+ @pulumi.output_type
3139
+ class EventHubDestinationResponse(dict):
3140
+ @staticmethod
3141
+ def __key_warning(key: str):
3142
+ suggest = None
3143
+ if key == "eventHubResourceId":
3144
+ suggest = "event_hub_resource_id"
3145
+
3146
+ if suggest:
3147
+ pulumi.log.warn(f"Key '{key}' not found in EventHubDestinationResponse. Access the value via the '{suggest}' property getter instead.")
3148
+
3149
+ def __getitem__(self, key: str) -> Any:
3150
+ EventHubDestinationResponse.__key_warning(key)
3151
+ return super().__getitem__(key)
3152
+
3153
+ def get(self, key: str, default = None) -> Any:
3154
+ EventHubDestinationResponse.__key_warning(key)
3155
+ return super().get(key, default)
3156
+
3157
+ def __init__(__self__, *,
3158
+ event_hub_resource_id: Optional[str] = None,
3159
+ name: Optional[str] = None):
3160
+ """
3161
+ :param str event_hub_resource_id: The resource ID of the event hub.
3162
+ :param str name: A friendly name for the destination.
3163
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
3164
+ """
3165
+ if event_hub_resource_id is not None:
3166
+ pulumi.set(__self__, "event_hub_resource_id", event_hub_resource_id)
3167
+ if name is not None:
3168
+ pulumi.set(__self__, "name", name)
3169
+
3170
+ @property
3171
+ @pulumi.getter(name="eventHubResourceId")
3172
+ def event_hub_resource_id(self) -> Optional[str]:
3173
+ """
3174
+ The resource ID of the event hub.
3175
+ """
3176
+ return pulumi.get(self, "event_hub_resource_id")
3177
+
3178
+ @property
3179
+ @pulumi.getter
3180
+ def name(self) -> Optional[str]:
3181
+ """
3182
+ A friendly name for the destination.
3183
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
3184
+ """
3185
+ return pulumi.get(self, "name")
3186
+
3187
+
3188
+ @pulumi.output_type
3189
+ class EventHubDirectDestinationResponse(dict):
3190
+ @staticmethod
3191
+ def __key_warning(key: str):
3192
+ suggest = None
3193
+ if key == "eventHubResourceId":
3194
+ suggest = "event_hub_resource_id"
3195
+
3196
+ if suggest:
3197
+ pulumi.log.warn(f"Key '{key}' not found in EventHubDirectDestinationResponse. Access the value via the '{suggest}' property getter instead.")
3198
+
3199
+ def __getitem__(self, key: str) -> Any:
3200
+ EventHubDirectDestinationResponse.__key_warning(key)
3201
+ return super().__getitem__(key)
3202
+
3203
+ def get(self, key: str, default = None) -> Any:
3204
+ EventHubDirectDestinationResponse.__key_warning(key)
3205
+ return super().get(key, default)
3206
+
3207
+ def __init__(__self__, *,
3208
+ event_hub_resource_id: Optional[str] = None,
3209
+ name: Optional[str] = None):
3210
+ """
3211
+ :param str event_hub_resource_id: The resource ID of the event hub.
3212
+ :param str name: A friendly name for the destination.
3213
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
3214
+ """
3215
+ if event_hub_resource_id is not None:
3216
+ pulumi.set(__self__, "event_hub_resource_id", event_hub_resource_id)
3217
+ if name is not None:
3218
+ pulumi.set(__self__, "name", name)
3219
+
3220
+ @property
3221
+ @pulumi.getter(name="eventHubResourceId")
3222
+ def event_hub_resource_id(self) -> Optional[str]:
3223
+ """
3224
+ The resource ID of the event hub.
3225
+ """
3226
+ return pulumi.get(self, "event_hub_resource_id")
3227
+
3228
+ @property
3229
+ @pulumi.getter
3230
+ def name(self) -> Optional[str]:
3231
+ """
3232
+ A friendly name for the destination.
3233
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
3234
+ """
3235
+ return pulumi.get(self, "name")
3236
+
3237
+
1740
3238
  @pulumi.output_type
1741
3239
  class EventHubReceiverResponse(dict):
1742
3240
  """
@@ -1931,6 +3429,103 @@ class ExporterResponse(dict):
1931
3429
  return pulumi.get(self, "tcp")
1932
3430
 
1933
3431
 
3432
+ @pulumi.output_type
3433
+ class ExtensionDataSourceResponse(dict):
3434
+ """
3435
+ Definition of which data will be collected from a separate VM extension that integrates with the Azure Monitor Agent.
3436
+ Collected from either Windows and Linux machines, depending on which extension is defined.
3437
+ """
3438
+ @staticmethod
3439
+ def __key_warning(key: str):
3440
+ suggest = None
3441
+ if key == "extensionName":
3442
+ suggest = "extension_name"
3443
+ elif key == "extensionSettings":
3444
+ suggest = "extension_settings"
3445
+ elif key == "inputDataSources":
3446
+ suggest = "input_data_sources"
3447
+
3448
+ if suggest:
3449
+ pulumi.log.warn(f"Key '{key}' not found in ExtensionDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
3450
+
3451
+ def __getitem__(self, key: str) -> Any:
3452
+ ExtensionDataSourceResponse.__key_warning(key)
3453
+ return super().__getitem__(key)
3454
+
3455
+ def get(self, key: str, default = None) -> Any:
3456
+ ExtensionDataSourceResponse.__key_warning(key)
3457
+ return super().get(key, default)
3458
+
3459
+ def __init__(__self__, *,
3460
+ extension_name: str,
3461
+ extension_settings: Optional[Any] = None,
3462
+ input_data_sources: Optional[Sequence[str]] = None,
3463
+ name: Optional[str] = None,
3464
+ streams: Optional[Sequence[str]] = None):
3465
+ """
3466
+ Definition of which data will be collected from a separate VM extension that integrates with the Azure Monitor Agent.
3467
+ Collected from either Windows and Linux machines, depending on which extension is defined.
3468
+ :param str extension_name: The name of the VM extension.
3469
+ :param Any extension_settings: The extension settings. The format is specific for particular extension.
3470
+ :param Sequence[str] input_data_sources: The list of data sources this extension needs data from.
3471
+ :param str name: A friendly name for the data source.
3472
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3473
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
3474
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3475
+ """
3476
+ pulumi.set(__self__, "extension_name", extension_name)
3477
+ if extension_settings is not None:
3478
+ pulumi.set(__self__, "extension_settings", extension_settings)
3479
+ if input_data_sources is not None:
3480
+ pulumi.set(__self__, "input_data_sources", input_data_sources)
3481
+ if name is not None:
3482
+ pulumi.set(__self__, "name", name)
3483
+ if streams is not None:
3484
+ pulumi.set(__self__, "streams", streams)
3485
+
3486
+ @property
3487
+ @pulumi.getter(name="extensionName")
3488
+ def extension_name(self) -> str:
3489
+ """
3490
+ The name of the VM extension.
3491
+ """
3492
+ return pulumi.get(self, "extension_name")
3493
+
3494
+ @property
3495
+ @pulumi.getter(name="extensionSettings")
3496
+ def extension_settings(self) -> Optional[Any]:
3497
+ """
3498
+ The extension settings. The format is specific for particular extension.
3499
+ """
3500
+ return pulumi.get(self, "extension_settings")
3501
+
3502
+ @property
3503
+ @pulumi.getter(name="inputDataSources")
3504
+ def input_data_sources(self) -> Optional[Sequence[str]]:
3505
+ """
3506
+ The list of data sources this extension needs data from.
3507
+ """
3508
+ return pulumi.get(self, "input_data_sources")
3509
+
3510
+ @property
3511
+ @pulumi.getter
3512
+ def name(self) -> Optional[str]:
3513
+ """
3514
+ A friendly name for the data source.
3515
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3516
+ """
3517
+ return pulumi.get(self, "name")
3518
+
3519
+ @property
3520
+ @pulumi.getter
3521
+ def streams(self) -> Optional[Sequence[str]]:
3522
+ """
3523
+ List of streams that this data source will be sent to.
3524
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
3525
+ """
3526
+ return pulumi.get(self, "streams")
3527
+
3528
+
1934
3529
  @pulumi.output_type
1935
3530
  class IdentityResponse(dict):
1936
3531
  """
@@ -2003,9 +3598,74 @@ class IdentityResponse(dict):
2003
3598
  @pulumi.getter(name="userAssignedIdentities")
2004
3599
  def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserIdentityPropertiesResponse']]:
2005
3600
  """
2006
- The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
3601
+ The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
3602
+ """
3603
+ return pulumi.get(self, "user_assigned_identities")
3604
+
3605
+
3606
+ @pulumi.output_type
3607
+ class IisLogsDataSourceResponse(dict):
3608
+ """
3609
+ Enables IIS logs to be collected by this data collection rule.
3610
+ """
3611
+ @staticmethod
3612
+ def __key_warning(key: str):
3613
+ suggest = None
3614
+ if key == "logDirectories":
3615
+ suggest = "log_directories"
3616
+
3617
+ if suggest:
3618
+ pulumi.log.warn(f"Key '{key}' not found in IisLogsDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
3619
+
3620
+ def __getitem__(self, key: str) -> Any:
3621
+ IisLogsDataSourceResponse.__key_warning(key)
3622
+ return super().__getitem__(key)
3623
+
3624
+ def get(self, key: str, default = None) -> Any:
3625
+ IisLogsDataSourceResponse.__key_warning(key)
3626
+ return super().get(key, default)
3627
+
3628
+ def __init__(__self__, *,
3629
+ streams: Sequence[str],
3630
+ log_directories: Optional[Sequence[str]] = None,
3631
+ name: Optional[str] = None):
3632
+ """
3633
+ Enables IIS logs to be collected by this data collection rule.
3634
+ :param Sequence[str] streams: IIS streams
3635
+ :param Sequence[str] log_directories: Absolute paths file location
3636
+ :param str name: A friendly name for the data source.
3637
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3638
+ """
3639
+ pulumi.set(__self__, "streams", streams)
3640
+ if log_directories is not None:
3641
+ pulumi.set(__self__, "log_directories", log_directories)
3642
+ if name is not None:
3643
+ pulumi.set(__self__, "name", name)
3644
+
3645
+ @property
3646
+ @pulumi.getter
3647
+ def streams(self) -> Sequence[str]:
3648
+ """
3649
+ IIS streams
3650
+ """
3651
+ return pulumi.get(self, "streams")
3652
+
3653
+ @property
3654
+ @pulumi.getter(name="logDirectories")
3655
+ def log_directories(self) -> Optional[Sequence[str]]:
3656
+ """
3657
+ Absolute paths file location
3658
+ """
3659
+ return pulumi.get(self, "log_directories")
3660
+
3661
+ @property
3662
+ @pulumi.getter
3663
+ def name(self) -> Optional[str]:
3664
+ """
3665
+ A friendly name for the data source.
3666
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
2007
3667
  """
2008
- return pulumi.get(self, "user_assigned_identities")
3668
+ return pulumi.get(self, "name")
2009
3669
 
2010
3670
 
2011
3671
  @pulumi.output_type
@@ -2411,6 +4071,272 @@ class JsonMapperSourceFieldResponse(dict):
2411
4071
  return pulumi.get(self, "field_name")
2412
4072
 
2413
4073
 
4074
+ @pulumi.output_type
4075
+ class LocationSpecResponse(dict):
4076
+ @staticmethod
4077
+ def __key_warning(key: str):
4078
+ suggest = None
4079
+ if key == "provisioningStatus":
4080
+ suggest = "provisioning_status"
4081
+
4082
+ if suggest:
4083
+ pulumi.log.warn(f"Key '{key}' not found in LocationSpecResponse. Access the value via the '{suggest}' property getter instead.")
4084
+
4085
+ def __getitem__(self, key: str) -> Any:
4086
+ LocationSpecResponse.__key_warning(key)
4087
+ return super().__getitem__(key)
4088
+
4089
+ def get(self, key: str, default = None) -> Any:
4090
+ LocationSpecResponse.__key_warning(key)
4091
+ return super().get(key, default)
4092
+
4093
+ def __init__(__self__, *,
4094
+ location: Optional[str] = None,
4095
+ provisioning_status: Optional[str] = None):
4096
+ """
4097
+ :param str location: Name of location.
4098
+ :param str provisioning_status: The resource provisioning state in this location.
4099
+ """
4100
+ if location is not None:
4101
+ pulumi.set(__self__, "location", location)
4102
+ if provisioning_status is not None:
4103
+ pulumi.set(__self__, "provisioning_status", provisioning_status)
4104
+
4105
+ @property
4106
+ @pulumi.getter
4107
+ def location(self) -> Optional[str]:
4108
+ """
4109
+ Name of location.
4110
+ """
4111
+ return pulumi.get(self, "location")
4112
+
4113
+ @property
4114
+ @pulumi.getter(name="provisioningStatus")
4115
+ def provisioning_status(self) -> Optional[str]:
4116
+ """
4117
+ The resource provisioning state in this location.
4118
+ """
4119
+ return pulumi.get(self, "provisioning_status")
4120
+
4121
+
4122
+ @pulumi.output_type
4123
+ class LogAnalyticsDestinationResponse(dict):
4124
+ """
4125
+ Log Analytics destination.
4126
+ """
4127
+ @staticmethod
4128
+ def __key_warning(key: str):
4129
+ suggest = None
4130
+ if key == "workspaceId":
4131
+ suggest = "workspace_id"
4132
+ elif key == "workspaceResourceId":
4133
+ suggest = "workspace_resource_id"
4134
+
4135
+ if suggest:
4136
+ pulumi.log.warn(f"Key '{key}' not found in LogAnalyticsDestinationResponse. Access the value via the '{suggest}' property getter instead.")
4137
+
4138
+ def __getitem__(self, key: str) -> Any:
4139
+ LogAnalyticsDestinationResponse.__key_warning(key)
4140
+ return super().__getitem__(key)
4141
+
4142
+ def get(self, key: str, default = None) -> Any:
4143
+ LogAnalyticsDestinationResponse.__key_warning(key)
4144
+ return super().get(key, default)
4145
+
4146
+ def __init__(__self__, *,
4147
+ workspace_id: str,
4148
+ name: Optional[str] = None,
4149
+ workspace_resource_id: Optional[str] = None):
4150
+ """
4151
+ Log Analytics destination.
4152
+ :param str workspace_id: The Customer ID of the Log Analytics workspace.
4153
+ :param str name: A friendly name for the destination.
4154
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
4155
+ :param str workspace_resource_id: The resource ID of the Log Analytics workspace.
4156
+ """
4157
+ pulumi.set(__self__, "workspace_id", workspace_id)
4158
+ if name is not None:
4159
+ pulumi.set(__self__, "name", name)
4160
+ if workspace_resource_id is not None:
4161
+ pulumi.set(__self__, "workspace_resource_id", workspace_resource_id)
4162
+
4163
+ @property
4164
+ @pulumi.getter(name="workspaceId")
4165
+ def workspace_id(self) -> str:
4166
+ """
4167
+ The Customer ID of the Log Analytics workspace.
4168
+ """
4169
+ return pulumi.get(self, "workspace_id")
4170
+
4171
+ @property
4172
+ @pulumi.getter
4173
+ def name(self) -> Optional[str]:
4174
+ """
4175
+ A friendly name for the destination.
4176
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
4177
+ """
4178
+ return pulumi.get(self, "name")
4179
+
4180
+ @property
4181
+ @pulumi.getter(name="workspaceResourceId")
4182
+ def workspace_resource_id(self) -> Optional[str]:
4183
+ """
4184
+ The resource ID of the Log Analytics workspace.
4185
+ """
4186
+ return pulumi.get(self, "workspace_resource_id")
4187
+
4188
+
4189
+ @pulumi.output_type
4190
+ class LogFileSettingsResponseText(dict):
4191
+ """
4192
+ Text settings
4193
+ """
4194
+ @staticmethod
4195
+ def __key_warning(key: str):
4196
+ suggest = None
4197
+ if key == "recordStartTimestampFormat":
4198
+ suggest = "record_start_timestamp_format"
4199
+
4200
+ if suggest:
4201
+ pulumi.log.warn(f"Key '{key}' not found in LogFileSettingsResponseText. Access the value via the '{suggest}' property getter instead.")
4202
+
4203
+ def __getitem__(self, key: str) -> Any:
4204
+ LogFileSettingsResponseText.__key_warning(key)
4205
+ return super().__getitem__(key)
4206
+
4207
+ def get(self, key: str, default = None) -> Any:
4208
+ LogFileSettingsResponseText.__key_warning(key)
4209
+ return super().get(key, default)
4210
+
4211
+ def __init__(__self__, *,
4212
+ record_start_timestamp_format: str):
4213
+ """
4214
+ Text settings
4215
+ :param str record_start_timestamp_format: One of the supported timestamp formats
4216
+ """
4217
+ pulumi.set(__self__, "record_start_timestamp_format", record_start_timestamp_format)
4218
+
4219
+ @property
4220
+ @pulumi.getter(name="recordStartTimestampFormat")
4221
+ def record_start_timestamp_format(self) -> str:
4222
+ """
4223
+ One of the supported timestamp formats
4224
+ """
4225
+ return pulumi.get(self, "record_start_timestamp_format")
4226
+
4227
+
4228
+ @pulumi.output_type
4229
+ class LogFilesDataSourceResponse(dict):
4230
+ """
4231
+ Definition of which custom log files will be collected by this data collection rule
4232
+ """
4233
+ @staticmethod
4234
+ def __key_warning(key: str):
4235
+ suggest = None
4236
+ if key == "filePatterns":
4237
+ suggest = "file_patterns"
4238
+
4239
+ if suggest:
4240
+ pulumi.log.warn(f"Key '{key}' not found in LogFilesDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
4241
+
4242
+ def __getitem__(self, key: str) -> Any:
4243
+ LogFilesDataSourceResponse.__key_warning(key)
4244
+ return super().__getitem__(key)
4245
+
4246
+ def get(self, key: str, default = None) -> Any:
4247
+ LogFilesDataSourceResponse.__key_warning(key)
4248
+ return super().get(key, default)
4249
+
4250
+ def __init__(__self__, *,
4251
+ file_patterns: Sequence[str],
4252
+ format: str,
4253
+ streams: Sequence[str],
4254
+ name: Optional[str] = None,
4255
+ settings: Optional['outputs.LogFilesDataSourceResponseSettings'] = None):
4256
+ """
4257
+ Definition of which custom log files will be collected by this data collection rule
4258
+ :param Sequence[str] file_patterns: File Patterns where the log files are located
4259
+ :param str format: The data format of the log files
4260
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
4261
+ A stream indicates what schema will be used for this data source
4262
+ :param str name: A friendly name for the data source.
4263
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
4264
+ :param 'LogFilesDataSourceResponseSettings' settings: The log files specific settings.
4265
+ """
4266
+ pulumi.set(__self__, "file_patterns", file_patterns)
4267
+ pulumi.set(__self__, "format", format)
4268
+ pulumi.set(__self__, "streams", streams)
4269
+ if name is not None:
4270
+ pulumi.set(__self__, "name", name)
4271
+ if settings is not None:
4272
+ pulumi.set(__self__, "settings", settings)
4273
+
4274
+ @property
4275
+ @pulumi.getter(name="filePatterns")
4276
+ def file_patterns(self) -> Sequence[str]:
4277
+ """
4278
+ File Patterns where the log files are located
4279
+ """
4280
+ return pulumi.get(self, "file_patterns")
4281
+
4282
+ @property
4283
+ @pulumi.getter
4284
+ def format(self) -> str:
4285
+ """
4286
+ The data format of the log files
4287
+ """
4288
+ return pulumi.get(self, "format")
4289
+
4290
+ @property
4291
+ @pulumi.getter
4292
+ def streams(self) -> Sequence[str]:
4293
+ """
4294
+ List of streams that this data source will be sent to.
4295
+ A stream indicates what schema will be used for this data source
4296
+ """
4297
+ return pulumi.get(self, "streams")
4298
+
4299
+ @property
4300
+ @pulumi.getter
4301
+ def name(self) -> Optional[str]:
4302
+ """
4303
+ A friendly name for the data source.
4304
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
4305
+ """
4306
+ return pulumi.get(self, "name")
4307
+
4308
+ @property
4309
+ @pulumi.getter
4310
+ def settings(self) -> Optional['outputs.LogFilesDataSourceResponseSettings']:
4311
+ """
4312
+ The log files specific settings.
4313
+ """
4314
+ return pulumi.get(self, "settings")
4315
+
4316
+
4317
+ @pulumi.output_type
4318
+ class LogFilesDataSourceResponseSettings(dict):
4319
+ """
4320
+ The log files specific settings.
4321
+ """
4322
+ def __init__(__self__, *,
4323
+ text: Optional['outputs.LogFileSettingsResponseText'] = None):
4324
+ """
4325
+ The log files specific settings.
4326
+ :param 'LogFileSettingsResponseText' text: Text settings
4327
+ """
4328
+ if text is not None:
4329
+ pulumi.set(__self__, "text", text)
4330
+
4331
+ @property
4332
+ @pulumi.getter
4333
+ def text(self) -> Optional['outputs.LogFileSettingsResponseText']:
4334
+ """
4335
+ Text settings
4336
+ """
4337
+ return pulumi.get(self, "text")
4338
+
4339
+
2414
4340
  @pulumi.output_type
2415
4341
  class LogSettingsResponse(dict):
2416
4342
  """
@@ -3028,6 +4954,73 @@ class MetricsResponse(dict):
3028
4954
  return pulumi.get(self, "prometheus_query_endpoint")
3029
4955
 
3030
4956
 
4957
+ @pulumi.output_type
4958
+ class MonitoringAccountDestinationResponse(dict):
4959
+ """
4960
+ Monitoring account destination.
4961
+ """
4962
+ @staticmethod
4963
+ def __key_warning(key: str):
4964
+ suggest = None
4965
+ if key == "accountId":
4966
+ suggest = "account_id"
4967
+ elif key == "accountResourceId":
4968
+ suggest = "account_resource_id"
4969
+
4970
+ if suggest:
4971
+ pulumi.log.warn(f"Key '{key}' not found in MonitoringAccountDestinationResponse. Access the value via the '{suggest}' property getter instead.")
4972
+
4973
+ def __getitem__(self, key: str) -> Any:
4974
+ MonitoringAccountDestinationResponse.__key_warning(key)
4975
+ return super().__getitem__(key)
4976
+
4977
+ def get(self, key: str, default = None) -> Any:
4978
+ MonitoringAccountDestinationResponse.__key_warning(key)
4979
+ return super().get(key, default)
4980
+
4981
+ def __init__(__self__, *,
4982
+ account_id: str,
4983
+ account_resource_id: Optional[str] = None,
4984
+ name: Optional[str] = None):
4985
+ """
4986
+ Monitoring account destination.
4987
+ :param str account_id: The immutable ID of the account.
4988
+ :param str account_resource_id: The resource ID of the monitoring account.
4989
+ :param str name: A friendly name for the destination.
4990
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
4991
+ """
4992
+ pulumi.set(__self__, "account_id", account_id)
4993
+ if account_resource_id is not None:
4994
+ pulumi.set(__self__, "account_resource_id", account_resource_id)
4995
+ if name is not None:
4996
+ pulumi.set(__self__, "name", name)
4997
+
4998
+ @property
4999
+ @pulumi.getter(name="accountId")
5000
+ def account_id(self) -> str:
5001
+ """
5002
+ The immutable ID of the account.
5003
+ """
5004
+ return pulumi.get(self, "account_id")
5005
+
5006
+ @property
5007
+ @pulumi.getter(name="accountResourceId")
5008
+ def account_resource_id(self) -> Optional[str]:
5009
+ """
5010
+ The resource ID of the monitoring account.
5011
+ """
5012
+ return pulumi.get(self, "account_resource_id")
5013
+
5014
+ @property
5015
+ @pulumi.getter
5016
+ def name(self) -> Optional[str]:
5017
+ """
5018
+ A friendly name for the destination.
5019
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
5020
+ """
5021
+ return pulumi.get(self, "name")
5022
+
5023
+
3031
5024
  @pulumi.output_type
3032
5025
  class NetworkingConfigurationResponse(dict):
3033
5026
  """
@@ -3170,6 +5163,94 @@ class OtlpReceiverResponse(dict):
3170
5163
  return pulumi.get(self, "endpoint")
3171
5164
 
3172
5165
 
5166
+ @pulumi.output_type
5167
+ class PerfCounterDataSourceResponse(dict):
5168
+ """
5169
+ Definition of which performance counters will be collected and how they will be collected by this data collection rule.
5170
+ Collected from both Windows and Linux machines where the counter is present.
5171
+ """
5172
+ @staticmethod
5173
+ def __key_warning(key: str):
5174
+ suggest = None
5175
+ if key == "counterSpecifiers":
5176
+ suggest = "counter_specifiers"
5177
+ elif key == "samplingFrequencyInSeconds":
5178
+ suggest = "sampling_frequency_in_seconds"
5179
+
5180
+ if suggest:
5181
+ pulumi.log.warn(f"Key '{key}' not found in PerfCounterDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
5182
+
5183
+ def __getitem__(self, key: str) -> Any:
5184
+ PerfCounterDataSourceResponse.__key_warning(key)
5185
+ return super().__getitem__(key)
5186
+
5187
+ def get(self, key: str, default = None) -> Any:
5188
+ PerfCounterDataSourceResponse.__key_warning(key)
5189
+ return super().get(key, default)
5190
+
5191
+ def __init__(__self__, *,
5192
+ counter_specifiers: Optional[Sequence[str]] = None,
5193
+ name: Optional[str] = None,
5194
+ sampling_frequency_in_seconds: Optional[int] = None,
5195
+ streams: Optional[Sequence[str]] = None):
5196
+ """
5197
+ Definition of which performance counters will be collected and how they will be collected by this data collection rule.
5198
+ Collected from both Windows and Linux machines where the counter is present.
5199
+ :param Sequence[str] counter_specifiers: A list of specifier names of the performance counters you want to collect.
5200
+ Use a wildcard (*) to collect a counter for all instances.
5201
+ To get a list of performance counters on Windows, run the command 'typeperf'.
5202
+ :param str name: A friendly name for the data source.
5203
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
5204
+ :param int sampling_frequency_in_seconds: The number of seconds between consecutive counter measurements (samples).
5205
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
5206
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
5207
+ """
5208
+ if counter_specifiers is not None:
5209
+ pulumi.set(__self__, "counter_specifiers", counter_specifiers)
5210
+ if name is not None:
5211
+ pulumi.set(__self__, "name", name)
5212
+ if sampling_frequency_in_seconds is not None:
5213
+ pulumi.set(__self__, "sampling_frequency_in_seconds", sampling_frequency_in_seconds)
5214
+ if streams is not None:
5215
+ pulumi.set(__self__, "streams", streams)
5216
+
5217
+ @property
5218
+ @pulumi.getter(name="counterSpecifiers")
5219
+ def counter_specifiers(self) -> Optional[Sequence[str]]:
5220
+ """
5221
+ A list of specifier names of the performance counters you want to collect.
5222
+ Use a wildcard (*) to collect a counter for all instances.
5223
+ To get a list of performance counters on Windows, run the command 'typeperf'.
5224
+ """
5225
+ return pulumi.get(self, "counter_specifiers")
5226
+
5227
+ @property
5228
+ @pulumi.getter
5229
+ def name(self) -> Optional[str]:
5230
+ """
5231
+ A friendly name for the data source.
5232
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
5233
+ """
5234
+ return pulumi.get(self, "name")
5235
+
5236
+ @property
5237
+ @pulumi.getter(name="samplingFrequencyInSeconds")
5238
+ def sampling_frequency_in_seconds(self) -> Optional[int]:
5239
+ """
5240
+ The number of seconds between consecutive counter measurements (samples).
5241
+ """
5242
+ return pulumi.get(self, "sampling_frequency_in_seconds")
5243
+
5244
+ @property
5245
+ @pulumi.getter
5246
+ def streams(self) -> Optional[Sequence[str]]:
5247
+ """
5248
+ List of streams that this data source will be sent to.
5249
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
5250
+ """
5251
+ return pulumi.get(self, "streams")
5252
+
5253
+
3173
5254
  @pulumi.output_type
3174
5255
  class PersistenceConfigurationsResponse(dict):
3175
5256
  """
@@ -3380,9 +5461,45 @@ class PipelineResponse(dict):
3380
5461
  @pulumi.getter
3381
5462
  def processors(self) -> Optional[Sequence[str]]:
3382
5463
  """
3383
- Reference to processors configured for the pipeline.
5464
+ Reference to processors configured for the pipeline.
5465
+ """
5466
+ return pulumi.get(self, "processors")
5467
+
5468
+
5469
+ @pulumi.output_type
5470
+ class PlatformTelemetryDataSourceResponse(dict):
5471
+ """
5472
+ Definition of platform telemetry data source configuration
5473
+ """
5474
+ def __init__(__self__, *,
5475
+ streams: Sequence[str],
5476
+ name: Optional[str] = None):
5477
+ """
5478
+ Definition of platform telemetry data source configuration
5479
+ :param Sequence[str] streams: List of platform telemetry streams to collect
5480
+ :param str name: A friendly name for the data source.
5481
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
5482
+ """
5483
+ pulumi.set(__self__, "streams", streams)
5484
+ if name is not None:
5485
+ pulumi.set(__self__, "name", name)
5486
+
5487
+ @property
5488
+ @pulumi.getter
5489
+ def streams(self) -> Sequence[str]:
5490
+ """
5491
+ List of platform telemetry streams to collect
5492
+ """
5493
+ return pulumi.get(self, "streams")
5494
+
5495
+ @property
5496
+ @pulumi.getter
5497
+ def name(self) -> Optional[str]:
5498
+ """
5499
+ A friendly name for the data source.
5500
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
3384
5501
  """
3385
- return pulumi.get(self, "processors")
5502
+ return pulumi.get(self, "name")
3386
5503
 
3387
5504
 
3388
5505
  @pulumi.output_type
@@ -3587,6 +5704,56 @@ class PrivateEndpointResponse(dict):
3587
5704
  return pulumi.get(self, "id")
3588
5705
 
3589
5706
 
5707
+ @pulumi.output_type
5708
+ class PrivateLinkScopedResourceResponse(dict):
5709
+ @staticmethod
5710
+ def __key_warning(key: str):
5711
+ suggest = None
5712
+ if key == "resourceId":
5713
+ suggest = "resource_id"
5714
+ elif key == "scopeId":
5715
+ suggest = "scope_id"
5716
+
5717
+ if suggest:
5718
+ pulumi.log.warn(f"Key '{key}' not found in PrivateLinkScopedResourceResponse. Access the value via the '{suggest}' property getter instead.")
5719
+
5720
+ def __getitem__(self, key: str) -> Any:
5721
+ PrivateLinkScopedResourceResponse.__key_warning(key)
5722
+ return super().__getitem__(key)
5723
+
5724
+ def get(self, key: str, default = None) -> Any:
5725
+ PrivateLinkScopedResourceResponse.__key_warning(key)
5726
+ return super().get(key, default)
5727
+
5728
+ def __init__(__self__, *,
5729
+ resource_id: Optional[str] = None,
5730
+ scope_id: Optional[str] = None):
5731
+ """
5732
+ :param str resource_id: The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
5733
+ :param str scope_id: The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
5734
+ """
5735
+ if resource_id is not None:
5736
+ pulumi.set(__self__, "resource_id", resource_id)
5737
+ if scope_id is not None:
5738
+ pulumi.set(__self__, "scope_id", scope_id)
5739
+
5740
+ @property
5741
+ @pulumi.getter(name="resourceId")
5742
+ def resource_id(self) -> Optional[str]:
5743
+ """
5744
+ The resourceId of the Azure Monitor Private Link Scope Scoped Resource through which this DCE is associated with a Azure Monitor Private Link Scope.
5745
+ """
5746
+ return pulumi.get(self, "resource_id")
5747
+
5748
+ @property
5749
+ @pulumi.getter(name="scopeId")
5750
+ def scope_id(self) -> Optional[str]:
5751
+ """
5752
+ The immutableId of the Azure Monitor Private Link Scope Resource to which the association is.
5753
+ """
5754
+ return pulumi.get(self, "scope_id")
5755
+
5756
+
3590
5757
  @pulumi.output_type
3591
5758
  class PrivateLinkServiceConnectionStateResponse(dict):
3592
5759
  """
@@ -3696,6 +5863,76 @@ class ProcessorResponse(dict):
3696
5863
  return pulumi.get(self, "batch")
3697
5864
 
3698
5865
 
5866
+ @pulumi.output_type
5867
+ class PrometheusForwarderDataSourceResponse(dict):
5868
+ """
5869
+ Definition of Prometheus metrics forwarding configuration.
5870
+ """
5871
+ @staticmethod
5872
+ def __key_warning(key: str):
5873
+ suggest = None
5874
+ if key == "labelIncludeFilter":
5875
+ suggest = "label_include_filter"
5876
+
5877
+ if suggest:
5878
+ pulumi.log.warn(f"Key '{key}' not found in PrometheusForwarderDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
5879
+
5880
+ def __getitem__(self, key: str) -> Any:
5881
+ PrometheusForwarderDataSourceResponse.__key_warning(key)
5882
+ return super().__getitem__(key)
5883
+
5884
+ def get(self, key: str, default = None) -> Any:
5885
+ PrometheusForwarderDataSourceResponse.__key_warning(key)
5886
+ return super().get(key, default)
5887
+
5888
+ def __init__(__self__, *,
5889
+ label_include_filter: Optional[Mapping[str, str]] = None,
5890
+ name: Optional[str] = None,
5891
+ streams: Optional[Sequence[str]] = None):
5892
+ """
5893
+ Definition of Prometheus metrics forwarding configuration.
5894
+ :param Mapping[str, str] label_include_filter: The list of label inclusion filters in the form of label "name-value" pairs.
5895
+ Currently only one label is supported: 'microsoft_metrics_include_label'.
5896
+ Label values are matched case-insensitively.
5897
+ :param str name: A friendly name for the data source.
5898
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
5899
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
5900
+ """
5901
+ if label_include_filter is not None:
5902
+ pulumi.set(__self__, "label_include_filter", label_include_filter)
5903
+ if name is not None:
5904
+ pulumi.set(__self__, "name", name)
5905
+ if streams is not None:
5906
+ pulumi.set(__self__, "streams", streams)
5907
+
5908
+ @property
5909
+ @pulumi.getter(name="labelIncludeFilter")
5910
+ def label_include_filter(self) -> Optional[Mapping[str, str]]:
5911
+ """
5912
+ The list of label inclusion filters in the form of label "name-value" pairs.
5913
+ Currently only one label is supported: 'microsoft_metrics_include_label'.
5914
+ Label values are matched case-insensitively.
5915
+ """
5916
+ return pulumi.get(self, "label_include_filter")
5917
+
5918
+ @property
5919
+ @pulumi.getter
5920
+ def name(self) -> Optional[str]:
5921
+ """
5922
+ A friendly name for the data source.
5923
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
5924
+ """
5925
+ return pulumi.get(self, "name")
5926
+
5927
+ @property
5928
+ @pulumi.getter
5929
+ def streams(self) -> Optional[Sequence[str]]:
5930
+ """
5931
+ List of streams that this data source will be sent to.
5932
+ """
5933
+ return pulumi.get(self, "streams")
5934
+
5935
+
3699
5936
  @pulumi.output_type
3700
5937
  class ReceiverResponse(dict):
3701
5938
  """
@@ -4537,6 +6774,157 @@ class SmsReceiverResponse(dict):
4537
6774
  return pulumi.get(self, "status")
4538
6775
 
4539
6776
 
6777
+ @pulumi.output_type
6778
+ class StorageBlobDestinationResponse(dict):
6779
+ @staticmethod
6780
+ def __key_warning(key: str):
6781
+ suggest = None
6782
+ if key == "containerName":
6783
+ suggest = "container_name"
6784
+ elif key == "storageAccountResourceId":
6785
+ suggest = "storage_account_resource_id"
6786
+
6787
+ if suggest:
6788
+ pulumi.log.warn(f"Key '{key}' not found in StorageBlobDestinationResponse. Access the value via the '{suggest}' property getter instead.")
6789
+
6790
+ def __getitem__(self, key: str) -> Any:
6791
+ StorageBlobDestinationResponse.__key_warning(key)
6792
+ return super().__getitem__(key)
6793
+
6794
+ def get(self, key: str, default = None) -> Any:
6795
+ StorageBlobDestinationResponse.__key_warning(key)
6796
+ return super().get(key, default)
6797
+
6798
+ def __init__(__self__, *,
6799
+ container_name: Optional[str] = None,
6800
+ name: Optional[str] = None,
6801
+ storage_account_resource_id: Optional[str] = None):
6802
+ """
6803
+ :param str container_name: The container name of the Storage Blob.
6804
+ :param str name: A friendly name for the destination.
6805
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
6806
+ :param str storage_account_resource_id: The resource ID of the storage account.
6807
+ """
6808
+ if container_name is not None:
6809
+ pulumi.set(__self__, "container_name", container_name)
6810
+ if name is not None:
6811
+ pulumi.set(__self__, "name", name)
6812
+ if storage_account_resource_id is not None:
6813
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
6814
+
6815
+ @property
6816
+ @pulumi.getter(name="containerName")
6817
+ def container_name(self) -> Optional[str]:
6818
+ """
6819
+ The container name of the Storage Blob.
6820
+ """
6821
+ return pulumi.get(self, "container_name")
6822
+
6823
+ @property
6824
+ @pulumi.getter
6825
+ def name(self) -> Optional[str]:
6826
+ """
6827
+ A friendly name for the destination.
6828
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
6829
+ """
6830
+ return pulumi.get(self, "name")
6831
+
6832
+ @property
6833
+ @pulumi.getter(name="storageAccountResourceId")
6834
+ def storage_account_resource_id(self) -> Optional[str]:
6835
+ """
6836
+ The resource ID of the storage account.
6837
+ """
6838
+ return pulumi.get(self, "storage_account_resource_id")
6839
+
6840
+
6841
+ @pulumi.output_type
6842
+ class StorageTableDestinationResponse(dict):
6843
+ @staticmethod
6844
+ def __key_warning(key: str):
6845
+ suggest = None
6846
+ if key == "storageAccountResourceId":
6847
+ suggest = "storage_account_resource_id"
6848
+ elif key == "tableName":
6849
+ suggest = "table_name"
6850
+
6851
+ if suggest:
6852
+ pulumi.log.warn(f"Key '{key}' not found in StorageTableDestinationResponse. Access the value via the '{suggest}' property getter instead.")
6853
+
6854
+ def __getitem__(self, key: str) -> Any:
6855
+ StorageTableDestinationResponse.__key_warning(key)
6856
+ return super().__getitem__(key)
6857
+
6858
+ def get(self, key: str, default = None) -> Any:
6859
+ StorageTableDestinationResponse.__key_warning(key)
6860
+ return super().get(key, default)
6861
+
6862
+ def __init__(__self__, *,
6863
+ name: Optional[str] = None,
6864
+ storage_account_resource_id: Optional[str] = None,
6865
+ table_name: Optional[str] = None):
6866
+ """
6867
+ :param str name: A friendly name for the destination.
6868
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
6869
+ :param str storage_account_resource_id: The resource ID of the storage account.
6870
+ :param str table_name: The name of the Storage Table.
6871
+ """
6872
+ if name is not None:
6873
+ pulumi.set(__self__, "name", name)
6874
+ if storage_account_resource_id is not None:
6875
+ pulumi.set(__self__, "storage_account_resource_id", storage_account_resource_id)
6876
+ if table_name is not None:
6877
+ pulumi.set(__self__, "table_name", table_name)
6878
+
6879
+ @property
6880
+ @pulumi.getter
6881
+ def name(self) -> Optional[str]:
6882
+ """
6883
+ A friendly name for the destination.
6884
+ This name should be unique across all destinations (regardless of type) within the data collection rule.
6885
+ """
6886
+ return pulumi.get(self, "name")
6887
+
6888
+ @property
6889
+ @pulumi.getter(name="storageAccountResourceId")
6890
+ def storage_account_resource_id(self) -> Optional[str]:
6891
+ """
6892
+ The resource ID of the storage account.
6893
+ """
6894
+ return pulumi.get(self, "storage_account_resource_id")
6895
+
6896
+ @property
6897
+ @pulumi.getter(name="tableName")
6898
+ def table_name(self) -> Optional[str]:
6899
+ """
6900
+ The name of the Storage Table.
6901
+ """
6902
+ return pulumi.get(self, "table_name")
6903
+
6904
+
6905
+ @pulumi.output_type
6906
+ class StreamDeclarationResponse(dict):
6907
+ """
6908
+ Declaration of a custom stream.
6909
+ """
6910
+ def __init__(__self__, *,
6911
+ columns: Optional[Sequence['outputs.ColumnDefinitionResponse']] = None):
6912
+ """
6913
+ Declaration of a custom stream.
6914
+ :param Sequence['ColumnDefinitionResponse'] columns: List of columns used by data in this stream.
6915
+ """
6916
+ if columns is not None:
6917
+ pulumi.set(__self__, "columns", columns)
6918
+
6919
+ @property
6920
+ @pulumi.getter
6921
+ def columns(self) -> Optional[Sequence['outputs.ColumnDefinitionResponse']]:
6922
+ """
6923
+ List of columns used by data in this stream.
6924
+ """
6925
+ return pulumi.get(self, "columns")
6926
+
6927
+
4540
6928
  @pulumi.output_type
4541
6929
  class SubscriptionLogSettingsResponse(dict):
4542
6930
  """
@@ -4600,6 +6988,90 @@ class SubscriptionLogSettingsResponse(dict):
4600
6988
  return pulumi.get(self, "category_group")
4601
6989
 
4602
6990
 
6991
+ @pulumi.output_type
6992
+ class SyslogDataSourceResponse(dict):
6993
+ """
6994
+ Definition of which syslog data will be collected and how it will be collected.
6995
+ Only collected from Linux machines.
6996
+ """
6997
+ @staticmethod
6998
+ def __key_warning(key: str):
6999
+ suggest = None
7000
+ if key == "facilityNames":
7001
+ suggest = "facility_names"
7002
+ elif key == "logLevels":
7003
+ suggest = "log_levels"
7004
+
7005
+ if suggest:
7006
+ pulumi.log.warn(f"Key '{key}' not found in SyslogDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
7007
+
7008
+ def __getitem__(self, key: str) -> Any:
7009
+ SyslogDataSourceResponse.__key_warning(key)
7010
+ return super().__getitem__(key)
7011
+
7012
+ def get(self, key: str, default = None) -> Any:
7013
+ SyslogDataSourceResponse.__key_warning(key)
7014
+ return super().get(key, default)
7015
+
7016
+ def __init__(__self__, *,
7017
+ facility_names: Optional[Sequence[str]] = None,
7018
+ log_levels: Optional[Sequence[str]] = None,
7019
+ name: Optional[str] = None,
7020
+ streams: Optional[Sequence[str]] = None):
7021
+ """
7022
+ Definition of which syslog data will be collected and how it will be collected.
7023
+ Only collected from Linux machines.
7024
+ :param Sequence[str] facility_names: The list of facility names.
7025
+ :param Sequence[str] log_levels: The log levels to collect.
7026
+ :param str name: A friendly name for the data source.
7027
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7028
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
7029
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
7030
+ """
7031
+ if facility_names is not None:
7032
+ pulumi.set(__self__, "facility_names", facility_names)
7033
+ if log_levels is not None:
7034
+ pulumi.set(__self__, "log_levels", log_levels)
7035
+ if name is not None:
7036
+ pulumi.set(__self__, "name", name)
7037
+ if streams is not None:
7038
+ pulumi.set(__self__, "streams", streams)
7039
+
7040
+ @property
7041
+ @pulumi.getter(name="facilityNames")
7042
+ def facility_names(self) -> Optional[Sequence[str]]:
7043
+ """
7044
+ The list of facility names.
7045
+ """
7046
+ return pulumi.get(self, "facility_names")
7047
+
7048
+ @property
7049
+ @pulumi.getter(name="logLevels")
7050
+ def log_levels(self) -> Optional[Sequence[str]]:
7051
+ """
7052
+ The log levels to collect.
7053
+ """
7054
+ return pulumi.get(self, "log_levels")
7055
+
7056
+ @property
7057
+ @pulumi.getter
7058
+ def name(self) -> Optional[str]:
7059
+ """
7060
+ A friendly name for the data source.
7061
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7062
+ """
7063
+ return pulumi.get(self, "name")
7064
+
7065
+ @property
7066
+ @pulumi.getter
7067
+ def streams(self) -> Optional[Sequence[str]]:
7068
+ """
7069
+ List of streams that this data source will be sent to.
7070
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
7071
+ """
7072
+ return pulumi.get(self, "streams")
7073
+
7074
+
4603
7075
  @pulumi.output_type
4604
7076
  class SyslogReceiverResponse(dict):
4605
7077
  """
@@ -5268,3 +7740,109 @@ class WebhookReceiverResponse(dict):
5268
7740
  return pulumi.get(self, "use_common_alert_schema")
5269
7741
 
5270
7742
 
7743
+ @pulumi.output_type
7744
+ class WindowsEventLogDataSourceResponse(dict):
7745
+ """
7746
+ Definition of which Windows Event Log events will be collected and how they will be collected.
7747
+ Only collected from Windows machines.
7748
+ """
7749
+ @staticmethod
7750
+ def __key_warning(key: str):
7751
+ suggest = None
7752
+ if key == "xPathQueries":
7753
+ suggest = "x_path_queries"
7754
+
7755
+ if suggest:
7756
+ pulumi.log.warn(f"Key '{key}' not found in WindowsEventLogDataSourceResponse. Access the value via the '{suggest}' property getter instead.")
7757
+
7758
+ def __getitem__(self, key: str) -> Any:
7759
+ WindowsEventLogDataSourceResponse.__key_warning(key)
7760
+ return super().__getitem__(key)
7761
+
7762
+ def get(self, key: str, default = None) -> Any:
7763
+ WindowsEventLogDataSourceResponse.__key_warning(key)
7764
+ return super().get(key, default)
7765
+
7766
+ def __init__(__self__, *,
7767
+ name: Optional[str] = None,
7768
+ streams: Optional[Sequence[str]] = None,
7769
+ x_path_queries: Optional[Sequence[str]] = None):
7770
+ """
7771
+ Definition of which Windows Event Log events will be collected and how they will be collected.
7772
+ Only collected from Windows machines.
7773
+ :param str name: A friendly name for the data source.
7774
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7775
+ :param Sequence[str] streams: List of streams that this data source will be sent to.
7776
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
7777
+ :param Sequence[str] x_path_queries: A list of Windows Event Log queries in XPATH format.
7778
+ """
7779
+ if name is not None:
7780
+ pulumi.set(__self__, "name", name)
7781
+ if streams is not None:
7782
+ pulumi.set(__self__, "streams", streams)
7783
+ if x_path_queries is not None:
7784
+ pulumi.set(__self__, "x_path_queries", x_path_queries)
7785
+
7786
+ @property
7787
+ @pulumi.getter
7788
+ def name(self) -> Optional[str]:
7789
+ """
7790
+ A friendly name for the data source.
7791
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7792
+ """
7793
+ return pulumi.get(self, "name")
7794
+
7795
+ @property
7796
+ @pulumi.getter
7797
+ def streams(self) -> Optional[Sequence[str]]:
7798
+ """
7799
+ List of streams that this data source will be sent to.
7800
+ A stream indicates what schema will be used for this data and usually what table in Log Analytics the data will be sent to.
7801
+ """
7802
+ return pulumi.get(self, "streams")
7803
+
7804
+ @property
7805
+ @pulumi.getter(name="xPathQueries")
7806
+ def x_path_queries(self) -> Optional[Sequence[str]]:
7807
+ """
7808
+ A list of Windows Event Log queries in XPATH format.
7809
+ """
7810
+ return pulumi.get(self, "x_path_queries")
7811
+
7812
+
7813
+ @pulumi.output_type
7814
+ class WindowsFirewallLogsDataSourceResponse(dict):
7815
+ """
7816
+ Enables Firewall logs to be collected by this data collection rule.
7817
+ """
7818
+ def __init__(__self__, *,
7819
+ streams: Sequence[str],
7820
+ name: Optional[str] = None):
7821
+ """
7822
+ Enables Firewall logs to be collected by this data collection rule.
7823
+ :param Sequence[str] streams: Firewall logs streams
7824
+ :param str name: A friendly name for the data source.
7825
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7826
+ """
7827
+ pulumi.set(__self__, "streams", streams)
7828
+ if name is not None:
7829
+ pulumi.set(__self__, "name", name)
7830
+
7831
+ @property
7832
+ @pulumi.getter
7833
+ def streams(self) -> Sequence[str]:
7834
+ """
7835
+ Firewall logs streams
7836
+ """
7837
+ return pulumi.get(self, "streams")
7838
+
7839
+ @property
7840
+ @pulumi.getter
7841
+ def name(self) -> Optional[str]:
7842
+ """
7843
+ A friendly name for the data source.
7844
+ This name should be unique across all data sources (regardless of type) within the data collection rule.
7845
+ """
7846
+ return pulumi.get(self, "name")
7847
+
7848
+