pulumi-azure-native 3.0.1__py3-none-any.whl → 3.1.0__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.
- pulumi_azure_native/__init__.py +5 -0
- pulumi_azure_native/monitor/__init__.py +10 -0
- pulumi_azure_native/monitor/_enums.py +204 -0
- pulumi_azure_native/monitor/_inputs.py +4241 -851
- pulumi_azure_native/monitor/action_group.py +9 -9
- pulumi_azure_native/monitor/activity_log_alert.py +388 -0
- pulumi_azure_native/monitor/data_collection_endpoint.py +468 -0
- pulumi_azure_native/monitor/data_collection_rule.py +519 -0
- pulumi_azure_native/monitor/data_collection_rule_association.py +300 -0
- pulumi_azure_native/monitor/get_action_group.py +2 -2
- pulumi_azure_native/monitor/get_activity_log_alert.py +231 -0
- pulumi_azure_native/monitor/get_data_collection_endpoint.py +357 -0
- pulumi_azure_native/monitor/get_data_collection_rule.py +344 -0
- pulumi_azure_native/monitor/get_data_collection_rule_association.py +231 -0
- pulumi_azure_native/monitor/get_metric_alert.py +343 -0
- pulumi_azure_native/monitor/get_private_endpoint_connection.py +4 -0
- pulumi_azure_native/monitor/get_private_link_scope.py +4 -0
- pulumi_azure_native/monitor/get_private_link_scoped_resource.py +4 -0
- pulumi_azure_native/monitor/metric_alert.py +578 -0
- pulumi_azure_native/monitor/outputs.py +4276 -743
- pulumi_azure_native/monitor/private_endpoint_connection.py +4 -0
- pulumi_azure_native/monitor/private_link_scope.py +4 -0
- pulumi_azure_native/monitor/private_link_scoped_resource.py +4 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-3.0.1.dist-info → pulumi_azure_native-3.1.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.0.1.dist-info → pulumi_azure_native-3.1.0.dist-info}/RECORD +28 -18
- {pulumi_azure_native-3.0.1.dist-info → pulumi_azure_native-3.1.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.0.1.dist-info → pulumi_azure_native-3.1.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,468 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._enums import *
|
|
18
|
+
from ._inputs import *
|
|
19
|
+
|
|
20
|
+
__all__ = ['DataCollectionEndpointArgs', 'DataCollectionEndpoint']
|
|
21
|
+
|
|
22
|
+
@pulumi.input_type
|
|
23
|
+
class DataCollectionEndpointArgs:
|
|
24
|
+
def __init__(__self__, *,
|
|
25
|
+
resource_group_name: pulumi.Input[str],
|
|
26
|
+
data_collection_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
identity: Optional[pulumi.Input['DataCollectionEndpointResourceIdentityArgs']] = None,
|
|
29
|
+
immutable_id: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
kind: Optional[pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']]] = None,
|
|
31
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
32
|
+
network_acls: Optional[pulumi.Input['DataCollectionEndpointNetworkAclsArgs']] = None,
|
|
33
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
34
|
+
"""
|
|
35
|
+
The set of arguments for constructing a DataCollectionEndpoint resource.
|
|
36
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
37
|
+
:param pulumi.Input[str] data_collection_endpoint_name: The name of the data collection endpoint. The name is case insensitive.
|
|
38
|
+
:param pulumi.Input[str] description: Description of the data collection endpoint.
|
|
39
|
+
:param pulumi.Input['DataCollectionEndpointResourceIdentityArgs'] identity: Managed service identity of the resource.
|
|
40
|
+
:param pulumi.Input[str] immutable_id: The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
|
|
41
|
+
:param pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']] kind: The kind of the resource.
|
|
42
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives.
|
|
43
|
+
:param pulumi.Input['DataCollectionEndpointNetworkAclsArgs'] network_acls: Network access control rules for the endpoints.
|
|
44
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
45
|
+
"""
|
|
46
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
47
|
+
if data_collection_endpoint_name is not None:
|
|
48
|
+
pulumi.set(__self__, "data_collection_endpoint_name", data_collection_endpoint_name)
|
|
49
|
+
if description is not None:
|
|
50
|
+
pulumi.set(__self__, "description", description)
|
|
51
|
+
if identity is not None:
|
|
52
|
+
pulumi.set(__self__, "identity", identity)
|
|
53
|
+
if immutable_id is not None:
|
|
54
|
+
pulumi.set(__self__, "immutable_id", immutable_id)
|
|
55
|
+
if kind is not None:
|
|
56
|
+
pulumi.set(__self__, "kind", kind)
|
|
57
|
+
if location is not None:
|
|
58
|
+
pulumi.set(__self__, "location", location)
|
|
59
|
+
if network_acls is not None:
|
|
60
|
+
pulumi.set(__self__, "network_acls", network_acls)
|
|
61
|
+
if tags is not None:
|
|
62
|
+
pulumi.set(__self__, "tags", tags)
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter(name="resourceGroupName")
|
|
66
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
67
|
+
"""
|
|
68
|
+
The name of the resource group. The name is case insensitive.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "resource_group_name")
|
|
71
|
+
|
|
72
|
+
@resource_group_name.setter
|
|
73
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
74
|
+
pulumi.set(self, "resource_group_name", value)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="dataCollectionEndpointName")
|
|
78
|
+
def data_collection_endpoint_name(self) -> Optional[pulumi.Input[str]]:
|
|
79
|
+
"""
|
|
80
|
+
The name of the data collection endpoint. The name is case insensitive.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "data_collection_endpoint_name")
|
|
83
|
+
|
|
84
|
+
@data_collection_endpoint_name.setter
|
|
85
|
+
def data_collection_endpoint_name(self, value: Optional[pulumi.Input[str]]):
|
|
86
|
+
pulumi.set(self, "data_collection_endpoint_name", value)
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
|
91
|
+
"""
|
|
92
|
+
Description of the data collection endpoint.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "description")
|
|
95
|
+
|
|
96
|
+
@description.setter
|
|
97
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
|
98
|
+
pulumi.set(self, "description", value)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def identity(self) -> Optional[pulumi.Input['DataCollectionEndpointResourceIdentityArgs']]:
|
|
103
|
+
"""
|
|
104
|
+
Managed service identity of the resource.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "identity")
|
|
107
|
+
|
|
108
|
+
@identity.setter
|
|
109
|
+
def identity(self, value: Optional[pulumi.Input['DataCollectionEndpointResourceIdentityArgs']]):
|
|
110
|
+
pulumi.set(self, "identity", value)
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter(name="immutableId")
|
|
114
|
+
def immutable_id(self) -> Optional[pulumi.Input[str]]:
|
|
115
|
+
"""
|
|
116
|
+
The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "immutable_id")
|
|
119
|
+
|
|
120
|
+
@immutable_id.setter
|
|
121
|
+
def immutable_id(self, value: Optional[pulumi.Input[str]]):
|
|
122
|
+
pulumi.set(self, "immutable_id", value)
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter
|
|
126
|
+
def kind(self) -> Optional[pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']]]:
|
|
127
|
+
"""
|
|
128
|
+
The kind of the resource.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "kind")
|
|
131
|
+
|
|
132
|
+
@kind.setter
|
|
133
|
+
def kind(self, value: Optional[pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']]]):
|
|
134
|
+
pulumi.set(self, "kind", value)
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter
|
|
138
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
139
|
+
"""
|
|
140
|
+
The geo-location where the resource lives.
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "location")
|
|
143
|
+
|
|
144
|
+
@location.setter
|
|
145
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
146
|
+
pulumi.set(self, "location", value)
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
@pulumi.getter(name="networkAcls")
|
|
150
|
+
def network_acls(self) -> Optional[pulumi.Input['DataCollectionEndpointNetworkAclsArgs']]:
|
|
151
|
+
"""
|
|
152
|
+
Network access control rules for the endpoints.
|
|
153
|
+
"""
|
|
154
|
+
return pulumi.get(self, "network_acls")
|
|
155
|
+
|
|
156
|
+
@network_acls.setter
|
|
157
|
+
def network_acls(self, value: Optional[pulumi.Input['DataCollectionEndpointNetworkAclsArgs']]):
|
|
158
|
+
pulumi.set(self, "network_acls", value)
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
@pulumi.getter
|
|
162
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
163
|
+
"""
|
|
164
|
+
Resource tags.
|
|
165
|
+
"""
|
|
166
|
+
return pulumi.get(self, "tags")
|
|
167
|
+
|
|
168
|
+
@tags.setter
|
|
169
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
170
|
+
pulumi.set(self, "tags", value)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
class DataCollectionEndpoint(pulumi.CustomResource):
|
|
174
|
+
@overload
|
|
175
|
+
def __init__(__self__,
|
|
176
|
+
resource_name: str,
|
|
177
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
178
|
+
data_collection_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
179
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
180
|
+
identity: Optional[pulumi.Input[Union['DataCollectionEndpointResourceIdentityArgs', 'DataCollectionEndpointResourceIdentityArgsDict']]] = None,
|
|
181
|
+
immutable_id: Optional[pulumi.Input[str]] = None,
|
|
182
|
+
kind: Optional[pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']]] = None,
|
|
183
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
184
|
+
network_acls: Optional[pulumi.Input[Union['DataCollectionEndpointNetworkAclsArgs', 'DataCollectionEndpointNetworkAclsArgsDict']]] = None,
|
|
185
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
186
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
187
|
+
__props__=None):
|
|
188
|
+
"""
|
|
189
|
+
Definition of ARM tracked top level resource.
|
|
190
|
+
|
|
191
|
+
Uses Azure REST API version 2022-06-01.
|
|
192
|
+
|
|
193
|
+
:param str resource_name: The name of the resource.
|
|
194
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
195
|
+
:param pulumi.Input[str] data_collection_endpoint_name: The name of the data collection endpoint. The name is case insensitive.
|
|
196
|
+
:param pulumi.Input[str] description: Description of the data collection endpoint.
|
|
197
|
+
:param pulumi.Input[Union['DataCollectionEndpointResourceIdentityArgs', 'DataCollectionEndpointResourceIdentityArgsDict']] identity: Managed service identity of the resource.
|
|
198
|
+
:param pulumi.Input[str] immutable_id: The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
|
|
199
|
+
:param pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']] kind: The kind of the resource.
|
|
200
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives.
|
|
201
|
+
:param pulumi.Input[Union['DataCollectionEndpointNetworkAclsArgs', 'DataCollectionEndpointNetworkAclsArgsDict']] network_acls: Network access control rules for the endpoints.
|
|
202
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
203
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
204
|
+
"""
|
|
205
|
+
...
|
|
206
|
+
@overload
|
|
207
|
+
def __init__(__self__,
|
|
208
|
+
resource_name: str,
|
|
209
|
+
args: DataCollectionEndpointArgs,
|
|
210
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
211
|
+
"""
|
|
212
|
+
Definition of ARM tracked top level resource.
|
|
213
|
+
|
|
214
|
+
Uses Azure REST API version 2022-06-01.
|
|
215
|
+
|
|
216
|
+
:param str resource_name: The name of the resource.
|
|
217
|
+
:param DataCollectionEndpointArgs args: The arguments to use to populate this resource's properties.
|
|
218
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
219
|
+
"""
|
|
220
|
+
...
|
|
221
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
222
|
+
resource_args, opts = _utilities.get_resource_args_opts(DataCollectionEndpointArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
223
|
+
if resource_args is not None:
|
|
224
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
225
|
+
else:
|
|
226
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
227
|
+
|
|
228
|
+
def _internal_init(__self__,
|
|
229
|
+
resource_name: str,
|
|
230
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
231
|
+
data_collection_endpoint_name: Optional[pulumi.Input[str]] = None,
|
|
232
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
233
|
+
identity: Optional[pulumi.Input[Union['DataCollectionEndpointResourceIdentityArgs', 'DataCollectionEndpointResourceIdentityArgsDict']]] = None,
|
|
234
|
+
immutable_id: Optional[pulumi.Input[str]] = None,
|
|
235
|
+
kind: Optional[pulumi.Input[Union[str, 'KnownDataCollectionEndpointResourceKind']]] = None,
|
|
236
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
237
|
+
network_acls: Optional[pulumi.Input[Union['DataCollectionEndpointNetworkAclsArgs', 'DataCollectionEndpointNetworkAclsArgsDict']]] = None,
|
|
238
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
239
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
240
|
+
__props__=None):
|
|
241
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
242
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
243
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
244
|
+
if opts.id is None:
|
|
245
|
+
if __props__ is not None:
|
|
246
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
247
|
+
__props__ = DataCollectionEndpointArgs.__new__(DataCollectionEndpointArgs)
|
|
248
|
+
|
|
249
|
+
__props__.__dict__["data_collection_endpoint_name"] = data_collection_endpoint_name
|
|
250
|
+
__props__.__dict__["description"] = description
|
|
251
|
+
__props__.__dict__["identity"] = identity
|
|
252
|
+
__props__.__dict__["immutable_id"] = immutable_id
|
|
253
|
+
__props__.__dict__["kind"] = kind
|
|
254
|
+
__props__.__dict__["location"] = location
|
|
255
|
+
__props__.__dict__["network_acls"] = network_acls
|
|
256
|
+
if resource_group_name is None and not opts.urn:
|
|
257
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
258
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
259
|
+
__props__.__dict__["tags"] = tags
|
|
260
|
+
__props__.__dict__["azure_api_version"] = None
|
|
261
|
+
__props__.__dict__["configuration_access"] = None
|
|
262
|
+
__props__.__dict__["etag"] = None
|
|
263
|
+
__props__.__dict__["failover_configuration"] = None
|
|
264
|
+
__props__.__dict__["logs_ingestion"] = None
|
|
265
|
+
__props__.__dict__["metadata"] = None
|
|
266
|
+
__props__.__dict__["metrics_ingestion"] = None
|
|
267
|
+
__props__.__dict__["name"] = None
|
|
268
|
+
__props__.__dict__["private_link_scoped_resources"] = None
|
|
269
|
+
__props__.__dict__["provisioning_state"] = None
|
|
270
|
+
__props__.__dict__["system_data"] = None
|
|
271
|
+
__props__.__dict__["type"] = None
|
|
272
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:insights/v20220601:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:insights/v20230311:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:insights:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:monitor/v20210401:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:monitor/v20210901preview:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:monitor/v20220601:DataCollectionEndpoint"), pulumi.Alias(type_="azure-native:monitor/v20230311:DataCollectionEndpoint")])
|
|
273
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
274
|
+
super(DataCollectionEndpoint, __self__).__init__(
|
|
275
|
+
'azure-native:monitor:DataCollectionEndpoint',
|
|
276
|
+
resource_name,
|
|
277
|
+
__props__,
|
|
278
|
+
opts)
|
|
279
|
+
|
|
280
|
+
@staticmethod
|
|
281
|
+
def get(resource_name: str,
|
|
282
|
+
id: pulumi.Input[str],
|
|
283
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DataCollectionEndpoint':
|
|
284
|
+
"""
|
|
285
|
+
Get an existing DataCollectionEndpoint resource's state with the given name, id, and optional extra
|
|
286
|
+
properties used to qualify the lookup.
|
|
287
|
+
|
|
288
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
289
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
290
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
291
|
+
"""
|
|
292
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
293
|
+
|
|
294
|
+
__props__ = DataCollectionEndpointArgs.__new__(DataCollectionEndpointArgs)
|
|
295
|
+
|
|
296
|
+
__props__.__dict__["azure_api_version"] = None
|
|
297
|
+
__props__.__dict__["configuration_access"] = None
|
|
298
|
+
__props__.__dict__["description"] = None
|
|
299
|
+
__props__.__dict__["etag"] = None
|
|
300
|
+
__props__.__dict__["failover_configuration"] = None
|
|
301
|
+
__props__.__dict__["identity"] = None
|
|
302
|
+
__props__.__dict__["immutable_id"] = None
|
|
303
|
+
__props__.__dict__["kind"] = None
|
|
304
|
+
__props__.__dict__["location"] = None
|
|
305
|
+
__props__.__dict__["logs_ingestion"] = None
|
|
306
|
+
__props__.__dict__["metadata"] = None
|
|
307
|
+
__props__.__dict__["metrics_ingestion"] = None
|
|
308
|
+
__props__.__dict__["name"] = None
|
|
309
|
+
__props__.__dict__["network_acls"] = None
|
|
310
|
+
__props__.__dict__["private_link_scoped_resources"] = None
|
|
311
|
+
__props__.__dict__["provisioning_state"] = None
|
|
312
|
+
__props__.__dict__["system_data"] = None
|
|
313
|
+
__props__.__dict__["tags"] = None
|
|
314
|
+
__props__.__dict__["type"] = None
|
|
315
|
+
return DataCollectionEndpoint(resource_name, opts=opts, __props__=__props__)
|
|
316
|
+
|
|
317
|
+
@property
|
|
318
|
+
@pulumi.getter(name="azureApiVersion")
|
|
319
|
+
def azure_api_version(self) -> pulumi.Output[str]:
|
|
320
|
+
"""
|
|
321
|
+
The Azure API version of the resource.
|
|
322
|
+
"""
|
|
323
|
+
return pulumi.get(self, "azure_api_version")
|
|
324
|
+
|
|
325
|
+
@property
|
|
326
|
+
@pulumi.getter(name="configurationAccess")
|
|
327
|
+
def configuration_access(self) -> pulumi.Output[Optional['outputs.DataCollectionEndpointResponseConfigurationAccess']]:
|
|
328
|
+
"""
|
|
329
|
+
The endpoint used by clients to access their configuration.
|
|
330
|
+
"""
|
|
331
|
+
return pulumi.get(self, "configuration_access")
|
|
332
|
+
|
|
333
|
+
@property
|
|
334
|
+
@pulumi.getter
|
|
335
|
+
def description(self) -> pulumi.Output[Optional[str]]:
|
|
336
|
+
"""
|
|
337
|
+
Description of the data collection endpoint.
|
|
338
|
+
"""
|
|
339
|
+
return pulumi.get(self, "description")
|
|
340
|
+
|
|
341
|
+
@property
|
|
342
|
+
@pulumi.getter
|
|
343
|
+
def etag(self) -> pulumi.Output[str]:
|
|
344
|
+
"""
|
|
345
|
+
Resource entity tag (ETag).
|
|
346
|
+
"""
|
|
347
|
+
return pulumi.get(self, "etag")
|
|
348
|
+
|
|
349
|
+
@property
|
|
350
|
+
@pulumi.getter(name="failoverConfiguration")
|
|
351
|
+
def failover_configuration(self) -> pulumi.Output['outputs.DataCollectionEndpointResponseFailoverConfiguration']:
|
|
352
|
+
"""
|
|
353
|
+
Failover configuration on this endpoint. This property is READ-ONLY.
|
|
354
|
+
"""
|
|
355
|
+
return pulumi.get(self, "failover_configuration")
|
|
356
|
+
|
|
357
|
+
@property
|
|
358
|
+
@pulumi.getter
|
|
359
|
+
def identity(self) -> pulumi.Output[Optional['outputs.DataCollectionEndpointResourceResponseIdentity']]:
|
|
360
|
+
"""
|
|
361
|
+
Managed service identity of the resource.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "identity")
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
@pulumi.getter(name="immutableId")
|
|
367
|
+
def immutable_id(self) -> pulumi.Output[Optional[str]]:
|
|
368
|
+
"""
|
|
369
|
+
The immutable ID of this data collection endpoint resource. This property is READ-ONLY.
|
|
370
|
+
"""
|
|
371
|
+
return pulumi.get(self, "immutable_id")
|
|
372
|
+
|
|
373
|
+
@property
|
|
374
|
+
@pulumi.getter
|
|
375
|
+
def kind(self) -> pulumi.Output[Optional[str]]:
|
|
376
|
+
"""
|
|
377
|
+
The kind of the resource.
|
|
378
|
+
"""
|
|
379
|
+
return pulumi.get(self, "kind")
|
|
380
|
+
|
|
381
|
+
@property
|
|
382
|
+
@pulumi.getter
|
|
383
|
+
def location(self) -> pulumi.Output[str]:
|
|
384
|
+
"""
|
|
385
|
+
The geo-location where the resource lives.
|
|
386
|
+
"""
|
|
387
|
+
return pulumi.get(self, "location")
|
|
388
|
+
|
|
389
|
+
@property
|
|
390
|
+
@pulumi.getter(name="logsIngestion")
|
|
391
|
+
def logs_ingestion(self) -> pulumi.Output[Optional['outputs.DataCollectionEndpointResponseLogsIngestion']]:
|
|
392
|
+
"""
|
|
393
|
+
The endpoint used by clients to ingest logs.
|
|
394
|
+
"""
|
|
395
|
+
return pulumi.get(self, "logs_ingestion")
|
|
396
|
+
|
|
397
|
+
@property
|
|
398
|
+
@pulumi.getter
|
|
399
|
+
def metadata(self) -> pulumi.Output['outputs.DataCollectionEndpointResponseMetadata']:
|
|
400
|
+
"""
|
|
401
|
+
Metadata for the resource. This property is READ-ONLY.
|
|
402
|
+
"""
|
|
403
|
+
return pulumi.get(self, "metadata")
|
|
404
|
+
|
|
405
|
+
@property
|
|
406
|
+
@pulumi.getter(name="metricsIngestion")
|
|
407
|
+
def metrics_ingestion(self) -> pulumi.Output[Optional['outputs.DataCollectionEndpointResponseMetricsIngestion']]:
|
|
408
|
+
"""
|
|
409
|
+
The endpoint used by clients to ingest metrics.
|
|
410
|
+
"""
|
|
411
|
+
return pulumi.get(self, "metrics_ingestion")
|
|
412
|
+
|
|
413
|
+
@property
|
|
414
|
+
@pulumi.getter
|
|
415
|
+
def name(self) -> pulumi.Output[str]:
|
|
416
|
+
"""
|
|
417
|
+
The name of the resource.
|
|
418
|
+
"""
|
|
419
|
+
return pulumi.get(self, "name")
|
|
420
|
+
|
|
421
|
+
@property
|
|
422
|
+
@pulumi.getter(name="networkAcls")
|
|
423
|
+
def network_acls(self) -> pulumi.Output[Optional['outputs.DataCollectionEndpointResponseNetworkAcls']]:
|
|
424
|
+
"""
|
|
425
|
+
Network access control rules for the endpoints.
|
|
426
|
+
"""
|
|
427
|
+
return pulumi.get(self, "network_acls")
|
|
428
|
+
|
|
429
|
+
@property
|
|
430
|
+
@pulumi.getter(name="privateLinkScopedResources")
|
|
431
|
+
def private_link_scoped_resources(self) -> pulumi.Output[Sequence['outputs.PrivateLinkScopedResourceResponse']]:
|
|
432
|
+
"""
|
|
433
|
+
List of Azure Monitor Private Link Scope Resources to which this data collection endpoint resource is associated. This property is READ-ONLY.
|
|
434
|
+
"""
|
|
435
|
+
return pulumi.get(self, "private_link_scoped_resources")
|
|
436
|
+
|
|
437
|
+
@property
|
|
438
|
+
@pulumi.getter(name="provisioningState")
|
|
439
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
440
|
+
"""
|
|
441
|
+
The resource provisioning state. This property is READ-ONLY.
|
|
442
|
+
"""
|
|
443
|
+
return pulumi.get(self, "provisioning_state")
|
|
444
|
+
|
|
445
|
+
@property
|
|
446
|
+
@pulumi.getter(name="systemData")
|
|
447
|
+
def system_data(self) -> pulumi.Output['outputs.DataCollectionEndpointResourceResponseSystemData']:
|
|
448
|
+
"""
|
|
449
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
450
|
+
"""
|
|
451
|
+
return pulumi.get(self, "system_data")
|
|
452
|
+
|
|
453
|
+
@property
|
|
454
|
+
@pulumi.getter
|
|
455
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
456
|
+
"""
|
|
457
|
+
Resource tags.
|
|
458
|
+
"""
|
|
459
|
+
return pulumi.get(self, "tags")
|
|
460
|
+
|
|
461
|
+
@property
|
|
462
|
+
@pulumi.getter
|
|
463
|
+
def type(self) -> pulumi.Output[str]:
|
|
464
|
+
"""
|
|
465
|
+
The type of the resource.
|
|
466
|
+
"""
|
|
467
|
+
return pulumi.get(self, "type")
|
|
468
|
+
|