pulumi-azure-native 2.55.0__py3-none-any.whl → 2.55.0a1723186763__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 +0 -10
- pulumi_azure_native/documentdb/__init__.py +0 -3
- pulumi_azure_native/documentdb/firewall_rule.py +1 -5
- pulumi_azure_native/documentdb/get_firewall_rule.py +0 -4
- pulumi_azure_native/documentdb/get_mongo_cluster.py +2 -2
- pulumi_azure_native/documentdb/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/list_mongo_cluster_connection_strings.py +2 -2
- pulumi_azure_native/documentdb/mongo_cluster.py +3 -3
- pulumi_azure_native/documentdb/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/private_endpoint_connection.py +2 -2
- pulumi_azure_native/documentdb/v20230315preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230315preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20230915preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20231115preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240215preview/mongo_cluster_firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20240301preview/firewall_rule.py +1 -1
- pulumi_azure_native/documentdb/v20240301preview/mongo_cluster.py +1 -1
- pulumi_azure_native/documentdb/v20240301preview/private_endpoint_connection.py +0 -2
- pulumi_azure_native/machinelearningservices/v20240401preview/outputs.py +11 -55
- pulumi_azure_native/machinelearningservices/v20240701preview/_inputs.py +10 -10
- pulumi_azure_native/machinelearningservices/v20240701preview/outputs.py +18 -60
- pulumi_azure_native/monitor/_enums.py +2 -6
- pulumi_azure_native/monitor/_inputs.py +56 -56
- pulumi_azure_native/monitor/get_pipeline_group.py +1 -1
- pulumi_azure_native/monitor/outputs.py +34 -34
- pulumi_azure_native/monitor/pipeline_group.py +8 -8
- pulumi_azure_native/monitor/v20231001preview/_enums.py +2 -6
- pulumi_azure_native/monitor/v20231001preview/_inputs.py +56 -56
- pulumi_azure_native/monitor/v20231001preview/get_pipeline_group.py +1 -1
- pulumi_azure_native/monitor/v20231001preview/outputs.py +34 -34
- pulumi_azure_native/monitor/v20231001preview/pipeline_group.py +8 -8
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.55.0.dist-info → pulumi_azure_native-2.55.0a1723186763.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.55.0.dist-info → pulumi_azure_native-2.55.0a1723186763.dist-info}/RECORD +39 -50
- pulumi_azure_native/documentdb/v20240601preview/__init__.py +0 -17
- pulumi_azure_native/documentdb/v20240601preview/_enums.py +0 -78
- pulumi_azure_native/documentdb/v20240601preview/_inputs.py +0 -332
- pulumi_azure_native/documentdb/v20240601preview/firewall_rule.py +0 -260
- pulumi_azure_native/documentdb/v20240601preview/get_firewall_rule.py +0 -167
- pulumi_azure_native/documentdb/v20240601preview/get_mongo_cluster.py +0 -305
- pulumi_azure_native/documentdb/v20240601preview/get_private_endpoint_connection.py +0 -180
- pulumi_azure_native/documentdb/v20240601preview/list_mongo_cluster_connection_strings.py +0 -84
- pulumi_azure_native/documentdb/v20240601preview/mongo_cluster.py +0 -524
- pulumi_azure_native/documentdb/v20240601preview/outputs.py +0 -537
- pulumi_azure_native/documentdb/v20240601preview/private_endpoint_connection.py +0 -252
- {pulumi_azure_native-2.55.0.dist-info → pulumi_azure_native-2.55.0a1723186763.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.55.0.dist-info → pulumi_azure_native-2.55.0a1723186763.dist-info}/top_level.txt +0 -0
|
@@ -13804,25 +13804,7 @@ class FqdnOutboundRuleResponse(dict):
|
|
|
13804
13804
|
"""
|
|
13805
13805
|
FQDN Outbound Rule for the managed network of a machine learning workspace.
|
|
13806
13806
|
"""
|
|
13807
|
-
@staticmethod
|
|
13808
|
-
def __key_warning(key: str):
|
|
13809
|
-
suggest = None
|
|
13810
|
-
if key == "parentRuleNames":
|
|
13811
|
-
suggest = "parent_rule_names"
|
|
13812
|
-
|
|
13813
|
-
if suggest:
|
|
13814
|
-
pulumi.log.warn(f"Key '{key}' not found in FqdnOutboundRuleResponse. Access the value via the '{suggest}' property getter instead.")
|
|
13815
|
-
|
|
13816
|
-
def __getitem__(self, key: str) -> Any:
|
|
13817
|
-
FqdnOutboundRuleResponse.__key_warning(key)
|
|
13818
|
-
return super().__getitem__(key)
|
|
13819
|
-
|
|
13820
|
-
def get(self, key: str, default = None) -> Any:
|
|
13821
|
-
FqdnOutboundRuleResponse.__key_warning(key)
|
|
13822
|
-
return super().get(key, default)
|
|
13823
|
-
|
|
13824
13807
|
def __init__(__self__, *,
|
|
13825
|
-
parent_rule_names: Sequence[str],
|
|
13826
13808
|
type: str,
|
|
13827
13809
|
category: Optional[str] = None,
|
|
13828
13810
|
destination: Optional[str] = None,
|
|
@@ -13834,7 +13816,6 @@ class FqdnOutboundRuleResponse(dict):
|
|
|
13834
13816
|
:param str category: Category of a managed network Outbound Rule of a machine learning workspace.
|
|
13835
13817
|
:param str status: Type of a managed network Outbound Rule of a machine learning workspace.
|
|
13836
13818
|
"""
|
|
13837
|
-
pulumi.set(__self__, "parent_rule_names", parent_rule_names)
|
|
13838
13819
|
pulumi.set(__self__, "type", 'FQDN')
|
|
13839
13820
|
if category is not None:
|
|
13840
13821
|
pulumi.set(__self__, "category", category)
|
|
@@ -13843,11 +13824,6 @@ class FqdnOutboundRuleResponse(dict):
|
|
|
13843
13824
|
if status is not None:
|
|
13844
13825
|
pulumi.set(__self__, "status", status)
|
|
13845
13826
|
|
|
13846
|
-
@property
|
|
13847
|
-
@pulumi.getter(name="parentRuleNames")
|
|
13848
|
-
def parent_rule_names(self) -> Sequence[str]:
|
|
13849
|
-
return pulumi.get(self, "parent_rule_names")
|
|
13850
|
-
|
|
13851
13827
|
@property
|
|
13852
13828
|
@pulumi.getter
|
|
13853
13829
|
def type(self) -> str:
|
|
@@ -23904,7 +23880,9 @@ class PrivateEndpointOutboundRuleResponse(dict):
|
|
|
23904
23880
|
@staticmethod
|
|
23905
23881
|
def __key_warning(key: str):
|
|
23906
23882
|
suggest = None
|
|
23907
|
-
if key == "
|
|
23883
|
+
if key == "parentRuleName":
|
|
23884
|
+
suggest = "parent_rule_name"
|
|
23885
|
+
elif key == "parentRuleNames":
|
|
23908
23886
|
suggest = "parent_rule_names"
|
|
23909
23887
|
|
|
23910
23888
|
if suggest:
|
|
@@ -23919,35 +23897,39 @@ class PrivateEndpointOutboundRuleResponse(dict):
|
|
|
23919
23897
|
return super().get(key, default)
|
|
23920
23898
|
|
|
23921
23899
|
def __init__(__self__, *,
|
|
23922
|
-
|
|
23900
|
+
parent_rule_name: str,
|
|
23923
23901
|
type: str,
|
|
23924
23902
|
category: Optional[str] = None,
|
|
23925
23903
|
destination: Optional['outputs.PrivateEndpointDestinationResponse'] = None,
|
|
23926
|
-
|
|
23904
|
+
parent_rule_names: Optional[Sequence[str]] = None,
|
|
23927
23905
|
status: Optional[str] = None):
|
|
23928
23906
|
"""
|
|
23929
23907
|
Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
|
|
23908
|
+
:param str parent_rule_name: The dependency rule name.
|
|
23930
23909
|
:param str type: Type of a managed network Outbound Rule of a machine learning workspace.
|
|
23931
23910
|
Expected value is 'PrivateEndpoint'.
|
|
23932
23911
|
:param str category: Category of a managed network Outbound Rule of a machine learning workspace.
|
|
23933
23912
|
:param 'PrivateEndpointDestinationResponse' destination: Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
|
|
23934
23913
|
:param str status: Type of a managed network Outbound Rule of a machine learning workspace.
|
|
23935
23914
|
"""
|
|
23936
|
-
pulumi.set(__self__, "
|
|
23915
|
+
pulumi.set(__self__, "parent_rule_name", parent_rule_name)
|
|
23937
23916
|
pulumi.set(__self__, "type", 'PrivateEndpoint')
|
|
23938
23917
|
if category is not None:
|
|
23939
23918
|
pulumi.set(__self__, "category", category)
|
|
23940
23919
|
if destination is not None:
|
|
23941
23920
|
pulumi.set(__self__, "destination", destination)
|
|
23942
|
-
if
|
|
23943
|
-
pulumi.set(__self__, "
|
|
23921
|
+
if parent_rule_names is not None:
|
|
23922
|
+
pulumi.set(__self__, "parent_rule_names", parent_rule_names)
|
|
23944
23923
|
if status is not None:
|
|
23945
23924
|
pulumi.set(__self__, "status", status)
|
|
23946
23925
|
|
|
23947
23926
|
@property
|
|
23948
|
-
@pulumi.getter(name="
|
|
23949
|
-
def
|
|
23950
|
-
|
|
23927
|
+
@pulumi.getter(name="parentRuleName")
|
|
23928
|
+
def parent_rule_name(self) -> str:
|
|
23929
|
+
"""
|
|
23930
|
+
The dependency rule name.
|
|
23931
|
+
"""
|
|
23932
|
+
return pulumi.get(self, "parent_rule_name")
|
|
23951
23933
|
|
|
23952
23934
|
@property
|
|
23953
23935
|
@pulumi.getter
|
|
@@ -23975,9 +23957,9 @@ class PrivateEndpointOutboundRuleResponse(dict):
|
|
|
23975
23957
|
return pulumi.get(self, "destination")
|
|
23976
23958
|
|
|
23977
23959
|
@property
|
|
23978
|
-
@pulumi.getter
|
|
23979
|
-
def
|
|
23980
|
-
return pulumi.get(self, "
|
|
23960
|
+
@pulumi.getter(name="parentRuleNames")
|
|
23961
|
+
def parent_rule_names(self) -> Optional[Sequence[str]]:
|
|
23962
|
+
return pulumi.get(self, "parent_rule_names")
|
|
23981
23963
|
|
|
23982
23964
|
@property
|
|
23983
23965
|
@pulumi.getter
|
|
@@ -27213,25 +27195,7 @@ class ServiceTagOutboundRuleResponse(dict):
|
|
|
27213
27195
|
"""
|
|
27214
27196
|
Service Tag Outbound Rule for the managed network of a machine learning workspace.
|
|
27215
27197
|
"""
|
|
27216
|
-
@staticmethod
|
|
27217
|
-
def __key_warning(key: str):
|
|
27218
|
-
suggest = None
|
|
27219
|
-
if key == "parentRuleNames":
|
|
27220
|
-
suggest = "parent_rule_names"
|
|
27221
|
-
|
|
27222
|
-
if suggest:
|
|
27223
|
-
pulumi.log.warn(f"Key '{key}' not found in ServiceTagOutboundRuleResponse. Access the value via the '{suggest}' property getter instead.")
|
|
27224
|
-
|
|
27225
|
-
def __getitem__(self, key: str) -> Any:
|
|
27226
|
-
ServiceTagOutboundRuleResponse.__key_warning(key)
|
|
27227
|
-
return super().__getitem__(key)
|
|
27228
|
-
|
|
27229
|
-
def get(self, key: str, default = None) -> Any:
|
|
27230
|
-
ServiceTagOutboundRuleResponse.__key_warning(key)
|
|
27231
|
-
return super().get(key, default)
|
|
27232
|
-
|
|
27233
27198
|
def __init__(__self__, *,
|
|
27234
|
-
parent_rule_names: Sequence[str],
|
|
27235
27199
|
type: str,
|
|
27236
27200
|
category: Optional[str] = None,
|
|
27237
27201
|
destination: Optional['outputs.ServiceTagDestinationResponse'] = None,
|
|
@@ -27244,7 +27208,6 @@ class ServiceTagOutboundRuleResponse(dict):
|
|
|
27244
27208
|
:param 'ServiceTagDestinationResponse' destination: Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
|
|
27245
27209
|
:param str status: Type of a managed network Outbound Rule of a machine learning workspace.
|
|
27246
27210
|
"""
|
|
27247
|
-
pulumi.set(__self__, "parent_rule_names", parent_rule_names)
|
|
27248
27211
|
pulumi.set(__self__, "type", 'ServiceTag')
|
|
27249
27212
|
if category is not None:
|
|
27250
27213
|
pulumi.set(__self__, "category", category)
|
|
@@ -27253,11 +27216,6 @@ class ServiceTagOutboundRuleResponse(dict):
|
|
|
27253
27216
|
if status is not None:
|
|
27254
27217
|
pulumi.set(__self__, "status", status)
|
|
27255
27218
|
|
|
27256
|
-
@property
|
|
27257
|
-
@pulumi.getter(name="parentRuleNames")
|
|
27258
|
-
def parent_rule_names(self) -> Sequence[str]:
|
|
27259
|
-
return pulumi.get(self, "parent_rule_names")
|
|
27260
|
-
|
|
27261
27219
|
@property
|
|
27262
27220
|
@pulumi.getter
|
|
27263
27221
|
def type(self) -> str:
|
|
@@ -33,15 +33,11 @@ class ExporterType(str, Enum):
|
|
|
33
33
|
|
|
34
34
|
class ExtendedLocationType(str, Enum):
|
|
35
35
|
"""
|
|
36
|
-
The type of
|
|
37
|
-
"""
|
|
38
|
-
EDGE_ZONE = "EdgeZone"
|
|
39
|
-
"""
|
|
40
|
-
Azure Edge Zones location type
|
|
36
|
+
The type of extended location.
|
|
41
37
|
"""
|
|
42
38
|
CUSTOM_LOCATION = "CustomLocation"
|
|
43
39
|
"""
|
|
44
|
-
|
|
40
|
+
Custom location.
|
|
45
41
|
"""
|
|
46
42
|
|
|
47
43
|
|
|
@@ -20,8 +20,6 @@ __all__ = [
|
|
|
20
20
|
'AzureMonitorWorkspaceLogsApiConfigArgsDict',
|
|
21
21
|
'AzureMonitorWorkspaceLogsExporterArgs',
|
|
22
22
|
'AzureMonitorWorkspaceLogsExporterArgsDict',
|
|
23
|
-
'AzureResourceManagerCommonTypesExtendedLocationArgs',
|
|
24
|
-
'AzureResourceManagerCommonTypesExtendedLocationArgsDict',
|
|
25
23
|
'BatchProcessorArgs',
|
|
26
24
|
'BatchProcessorArgsDict',
|
|
27
25
|
'CacheConfigurationArgs',
|
|
@@ -30,6 +28,8 @@ __all__ = [
|
|
|
30
28
|
'ConcurrencyConfigurationArgsDict',
|
|
31
29
|
'ExporterArgs',
|
|
32
30
|
'ExporterArgsDict',
|
|
31
|
+
'ExtendedLocationArgs',
|
|
32
|
+
'ExtendedLocationArgsDict',
|
|
33
33
|
'NetworkingConfigurationArgs',
|
|
34
34
|
'NetworkingConfigurationArgsDict',
|
|
35
35
|
'NetworkingRouteArgs',
|
|
@@ -231,60 +231,6 @@ class AzureMonitorWorkspaceLogsExporterArgs:
|
|
|
231
231
|
pulumi.set(self, "concurrency", value)
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
if not MYPY:
|
|
235
|
-
class AzureResourceManagerCommonTypesExtendedLocationArgsDict(TypedDict):
|
|
236
|
-
"""
|
|
237
|
-
The complex type of the extended location.
|
|
238
|
-
"""
|
|
239
|
-
name: pulumi.Input[str]
|
|
240
|
-
"""
|
|
241
|
-
The name of the extended location.
|
|
242
|
-
"""
|
|
243
|
-
type: pulumi.Input[Union[str, 'ExtendedLocationType']]
|
|
244
|
-
"""
|
|
245
|
-
The type of the extended location.
|
|
246
|
-
"""
|
|
247
|
-
elif False:
|
|
248
|
-
AzureResourceManagerCommonTypesExtendedLocationArgsDict: TypeAlias = Mapping[str, Any]
|
|
249
|
-
|
|
250
|
-
@pulumi.input_type
|
|
251
|
-
class AzureResourceManagerCommonTypesExtendedLocationArgs:
|
|
252
|
-
def __init__(__self__, *,
|
|
253
|
-
name: pulumi.Input[str],
|
|
254
|
-
type: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
255
|
-
"""
|
|
256
|
-
The complex type of the extended location.
|
|
257
|
-
:param pulumi.Input[str] name: The name of the extended location.
|
|
258
|
-
:param pulumi.Input[Union[str, 'ExtendedLocationType']] type: The type of the extended location.
|
|
259
|
-
"""
|
|
260
|
-
pulumi.set(__self__, "name", name)
|
|
261
|
-
pulumi.set(__self__, "type", type)
|
|
262
|
-
|
|
263
|
-
@property
|
|
264
|
-
@pulumi.getter
|
|
265
|
-
def name(self) -> pulumi.Input[str]:
|
|
266
|
-
"""
|
|
267
|
-
The name of the extended location.
|
|
268
|
-
"""
|
|
269
|
-
return pulumi.get(self, "name")
|
|
270
|
-
|
|
271
|
-
@name.setter
|
|
272
|
-
def name(self, value: pulumi.Input[str]):
|
|
273
|
-
pulumi.set(self, "name", value)
|
|
274
|
-
|
|
275
|
-
@property
|
|
276
|
-
@pulumi.getter
|
|
277
|
-
def type(self) -> pulumi.Input[Union[str, 'ExtendedLocationType']]:
|
|
278
|
-
"""
|
|
279
|
-
The type of the extended location.
|
|
280
|
-
"""
|
|
281
|
-
return pulumi.get(self, "type")
|
|
282
|
-
|
|
283
|
-
@type.setter
|
|
284
|
-
def type(self, value: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
285
|
-
pulumi.set(self, "type", value)
|
|
286
|
-
|
|
287
|
-
|
|
288
234
|
if not MYPY:
|
|
289
235
|
class BatchProcessorArgsDict(TypedDict):
|
|
290
236
|
"""
|
|
@@ -555,6 +501,60 @@ class ExporterArgs:
|
|
|
555
501
|
pulumi.set(self, "tcp", value)
|
|
556
502
|
|
|
557
503
|
|
|
504
|
+
if not MYPY:
|
|
505
|
+
class ExtendedLocationArgsDict(TypedDict):
|
|
506
|
+
"""
|
|
507
|
+
The extended location info.
|
|
508
|
+
"""
|
|
509
|
+
name: pulumi.Input[str]
|
|
510
|
+
"""
|
|
511
|
+
The name of extended location.
|
|
512
|
+
"""
|
|
513
|
+
type: pulumi.Input[Union[str, 'ExtendedLocationType']]
|
|
514
|
+
"""
|
|
515
|
+
The type of extended location.
|
|
516
|
+
"""
|
|
517
|
+
elif False:
|
|
518
|
+
ExtendedLocationArgsDict: TypeAlias = Mapping[str, Any]
|
|
519
|
+
|
|
520
|
+
@pulumi.input_type
|
|
521
|
+
class ExtendedLocationArgs:
|
|
522
|
+
def __init__(__self__, *,
|
|
523
|
+
name: pulumi.Input[str],
|
|
524
|
+
type: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
525
|
+
"""
|
|
526
|
+
The extended location info.
|
|
527
|
+
:param pulumi.Input[str] name: The name of extended location.
|
|
528
|
+
:param pulumi.Input[Union[str, 'ExtendedLocationType']] type: The type of extended location.
|
|
529
|
+
"""
|
|
530
|
+
pulumi.set(__self__, "name", name)
|
|
531
|
+
pulumi.set(__self__, "type", type)
|
|
532
|
+
|
|
533
|
+
@property
|
|
534
|
+
@pulumi.getter
|
|
535
|
+
def name(self) -> pulumi.Input[str]:
|
|
536
|
+
"""
|
|
537
|
+
The name of extended location.
|
|
538
|
+
"""
|
|
539
|
+
return pulumi.get(self, "name")
|
|
540
|
+
|
|
541
|
+
@name.setter
|
|
542
|
+
def name(self, value: pulumi.Input[str]):
|
|
543
|
+
pulumi.set(self, "name", value)
|
|
544
|
+
|
|
545
|
+
@property
|
|
546
|
+
@pulumi.getter
|
|
547
|
+
def type(self) -> pulumi.Input[Union[str, 'ExtendedLocationType']]:
|
|
548
|
+
"""
|
|
549
|
+
The type of extended location.
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "type")
|
|
552
|
+
|
|
553
|
+
@type.setter
|
|
554
|
+
def type(self, value: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
555
|
+
pulumi.set(self, "type", value)
|
|
556
|
+
|
|
557
|
+
|
|
558
558
|
if not MYPY:
|
|
559
559
|
class NetworkingConfigurationArgsDict(TypedDict):
|
|
560
560
|
"""
|
|
@@ -81,7 +81,7 @@ class GetPipelineGroupResult:
|
|
|
81
81
|
|
|
82
82
|
@property
|
|
83
83
|
@pulumi.getter(name="extendedLocation")
|
|
84
|
-
def extended_location(self) -> Optional['outputs.
|
|
84
|
+
def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
|
|
85
85
|
"""
|
|
86
86
|
The extended location for given pipeline group.
|
|
87
87
|
"""
|
|
@@ -21,11 +21,11 @@ __all__ = [
|
|
|
21
21
|
'AzureMonitorWorkspaceLogsExporterResponse',
|
|
22
22
|
'AzureMonitorWorkspaceResponseDefaultIngestionSettings',
|
|
23
23
|
'AzureMonitorWorkspaceResponseMetrics',
|
|
24
|
-
'AzureResourceManagerCommonTypesExtendedLocationResponse',
|
|
25
24
|
'BatchProcessorResponse',
|
|
26
25
|
'CacheConfigurationResponse',
|
|
27
26
|
'ConcurrencyConfigurationResponse',
|
|
28
27
|
'ExporterResponse',
|
|
28
|
+
'ExtendedLocationResponse',
|
|
29
29
|
'NetworkingConfigurationResponse',
|
|
30
30
|
'NetworkingRouteResponse',
|
|
31
31
|
'OtlpReceiverResponse',
|
|
@@ -271,39 +271,6 @@ class AzureMonitorWorkspaceResponseMetrics(dict):
|
|
|
271
271
|
return pulumi.get(self, "prometheus_query_endpoint")
|
|
272
272
|
|
|
273
273
|
|
|
274
|
-
@pulumi.output_type
|
|
275
|
-
class AzureResourceManagerCommonTypesExtendedLocationResponse(dict):
|
|
276
|
-
"""
|
|
277
|
-
The complex type of the extended location.
|
|
278
|
-
"""
|
|
279
|
-
def __init__(__self__, *,
|
|
280
|
-
name: str,
|
|
281
|
-
type: str):
|
|
282
|
-
"""
|
|
283
|
-
The complex type of the extended location.
|
|
284
|
-
:param str name: The name of the extended location.
|
|
285
|
-
:param str type: The type of the extended location.
|
|
286
|
-
"""
|
|
287
|
-
pulumi.set(__self__, "name", name)
|
|
288
|
-
pulumi.set(__self__, "type", type)
|
|
289
|
-
|
|
290
|
-
@property
|
|
291
|
-
@pulumi.getter
|
|
292
|
-
def name(self) -> str:
|
|
293
|
-
"""
|
|
294
|
-
The name of the extended location.
|
|
295
|
-
"""
|
|
296
|
-
return pulumi.get(self, "name")
|
|
297
|
-
|
|
298
|
-
@property
|
|
299
|
-
@pulumi.getter
|
|
300
|
-
def type(self) -> str:
|
|
301
|
-
"""
|
|
302
|
-
The type of the extended location.
|
|
303
|
-
"""
|
|
304
|
-
return pulumi.get(self, "type")
|
|
305
|
-
|
|
306
|
-
|
|
307
274
|
@pulumi.output_type
|
|
308
275
|
class BatchProcessorResponse(dict):
|
|
309
276
|
"""
|
|
@@ -546,6 +513,39 @@ class ExporterResponse(dict):
|
|
|
546
513
|
return pulumi.get(self, "tcp")
|
|
547
514
|
|
|
548
515
|
|
|
516
|
+
@pulumi.output_type
|
|
517
|
+
class ExtendedLocationResponse(dict):
|
|
518
|
+
"""
|
|
519
|
+
The extended location info.
|
|
520
|
+
"""
|
|
521
|
+
def __init__(__self__, *,
|
|
522
|
+
name: str,
|
|
523
|
+
type: str):
|
|
524
|
+
"""
|
|
525
|
+
The extended location info.
|
|
526
|
+
:param str name: The name of extended location.
|
|
527
|
+
:param str type: The type of extended location.
|
|
528
|
+
"""
|
|
529
|
+
pulumi.set(__self__, "name", name)
|
|
530
|
+
pulumi.set(__self__, "type", type)
|
|
531
|
+
|
|
532
|
+
@property
|
|
533
|
+
@pulumi.getter
|
|
534
|
+
def name(self) -> str:
|
|
535
|
+
"""
|
|
536
|
+
The name of extended location.
|
|
537
|
+
"""
|
|
538
|
+
return pulumi.get(self, "name")
|
|
539
|
+
|
|
540
|
+
@property
|
|
541
|
+
@pulumi.getter
|
|
542
|
+
def type(self) -> str:
|
|
543
|
+
"""
|
|
544
|
+
The type of extended location.
|
|
545
|
+
"""
|
|
546
|
+
return pulumi.get(self, "type")
|
|
547
|
+
|
|
548
|
+
|
|
549
549
|
@pulumi.output_type
|
|
550
550
|
class NetworkingConfigurationResponse(dict):
|
|
551
551
|
"""
|
|
@@ -27,7 +27,7 @@ class PipelineGroupArgs:
|
|
|
27
27
|
receivers: pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]],
|
|
28
28
|
resource_group_name: pulumi.Input[str],
|
|
29
29
|
service: pulumi.Input['ServiceArgs'],
|
|
30
|
-
extended_location: Optional[pulumi.Input['
|
|
30
|
+
extended_location: Optional[pulumi.Input['ExtendedLocationArgs']] = None,
|
|
31
31
|
location: Optional[pulumi.Input[str]] = None,
|
|
32
32
|
networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]]] = None,
|
|
33
33
|
pipeline_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -40,7 +40,7 @@ class PipelineGroupArgs:
|
|
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['ReceiverArgs']]] receivers: The receivers specified for a pipeline group instance.
|
|
41
41
|
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
42
42
|
:param pulumi.Input['ServiceArgs'] service: The service section for a given pipeline group instance.
|
|
43
|
-
:param pulumi.Input['
|
|
43
|
+
:param pulumi.Input['ExtendedLocationArgs'] extended_location: The extended location for given pipeline group.
|
|
44
44
|
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
45
45
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkingConfigurationArgs']]] networking_configurations: Networking configurations for the pipeline group instance.
|
|
46
46
|
:param pulumi.Input[str] pipeline_group_name: The name of pipeline group. The name is case insensitive.
|
|
@@ -127,14 +127,14 @@ class PipelineGroupArgs:
|
|
|
127
127
|
|
|
128
128
|
@property
|
|
129
129
|
@pulumi.getter(name="extendedLocation")
|
|
130
|
-
def extended_location(self) -> Optional[pulumi.Input['
|
|
130
|
+
def extended_location(self) -> Optional[pulumi.Input['ExtendedLocationArgs']]:
|
|
131
131
|
"""
|
|
132
132
|
The extended location for given pipeline group.
|
|
133
133
|
"""
|
|
134
134
|
return pulumi.get(self, "extended_location")
|
|
135
135
|
|
|
136
136
|
@extended_location.setter
|
|
137
|
-
def extended_location(self, value: Optional[pulumi.Input['
|
|
137
|
+
def extended_location(self, value: Optional[pulumi.Input['ExtendedLocationArgs']]):
|
|
138
138
|
pulumi.set(self, "extended_location", value)
|
|
139
139
|
|
|
140
140
|
@property
|
|
@@ -204,7 +204,7 @@ class PipelineGroup(pulumi.CustomResource):
|
|
|
204
204
|
resource_name: str,
|
|
205
205
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
206
206
|
exporters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExporterArgs', 'ExporterArgsDict']]]]] = None,
|
|
207
|
-
extended_location: Optional[pulumi.Input[Union['
|
|
207
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
208
208
|
location: Optional[pulumi.Input[str]] = None,
|
|
209
209
|
networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkingConfigurationArgs', 'NetworkingConfigurationArgsDict']]]]] = None,
|
|
210
210
|
pipeline_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -222,7 +222,7 @@ class PipelineGroup(pulumi.CustomResource):
|
|
|
222
222
|
:param str resource_name: The name of the resource.
|
|
223
223
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
224
224
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ExporterArgs', 'ExporterArgsDict']]]] exporters: The exporters specified for a pipeline group instance.
|
|
225
|
-
:param pulumi.Input[Union['
|
|
225
|
+
:param pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']] extended_location: The extended location for given pipeline group.
|
|
226
226
|
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
227
227
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkingConfigurationArgs', 'NetworkingConfigurationArgsDict']]]] networking_configurations: Networking configurations for the pipeline group instance.
|
|
228
228
|
:param pulumi.Input[str] pipeline_group_name: The name of pipeline group. The name is case insensitive.
|
|
@@ -259,7 +259,7 @@ class PipelineGroup(pulumi.CustomResource):
|
|
|
259
259
|
resource_name: str,
|
|
260
260
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
261
261
|
exporters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ExporterArgs', 'ExporterArgsDict']]]]] = None,
|
|
262
|
-
extended_location: Optional[pulumi.Input[Union['
|
|
262
|
+
extended_location: Optional[pulumi.Input[Union['ExtendedLocationArgs', 'ExtendedLocationArgsDict']]] = None,
|
|
263
263
|
location: Optional[pulumi.Input[str]] = None,
|
|
264
264
|
networking_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkingConfigurationArgs', 'NetworkingConfigurationArgsDict']]]]] = None,
|
|
265
265
|
pipeline_group_name: Optional[pulumi.Input[str]] = None,
|
|
@@ -352,7 +352,7 @@ class PipelineGroup(pulumi.CustomResource):
|
|
|
352
352
|
|
|
353
353
|
@property
|
|
354
354
|
@pulumi.getter(name="extendedLocation")
|
|
355
|
-
def extended_location(self) -> pulumi.Output[Optional['outputs.
|
|
355
|
+
def extended_location(self) -> pulumi.Output[Optional['outputs.ExtendedLocationResponse']]:
|
|
356
356
|
"""
|
|
357
357
|
The extended location for given pipeline group.
|
|
358
358
|
"""
|
|
@@ -32,15 +32,11 @@ class ExporterType(str, Enum):
|
|
|
32
32
|
|
|
33
33
|
class ExtendedLocationType(str, Enum):
|
|
34
34
|
"""
|
|
35
|
-
The type of
|
|
36
|
-
"""
|
|
37
|
-
EDGE_ZONE = "EdgeZone"
|
|
38
|
-
"""
|
|
39
|
-
Azure Edge Zones location type
|
|
35
|
+
The type of extended location.
|
|
40
36
|
"""
|
|
41
37
|
CUSTOM_LOCATION = "CustomLocation"
|
|
42
38
|
"""
|
|
43
|
-
|
|
39
|
+
Custom location.
|
|
44
40
|
"""
|
|
45
41
|
|
|
46
42
|
|
|
@@ -20,8 +20,6 @@ __all__ = [
|
|
|
20
20
|
'AzureMonitorWorkspaceLogsApiConfigArgsDict',
|
|
21
21
|
'AzureMonitorWorkspaceLogsExporterArgs',
|
|
22
22
|
'AzureMonitorWorkspaceLogsExporterArgsDict',
|
|
23
|
-
'AzureResourceManagerCommonTypesExtendedLocationArgs',
|
|
24
|
-
'AzureResourceManagerCommonTypesExtendedLocationArgsDict',
|
|
25
23
|
'BatchProcessorArgs',
|
|
26
24
|
'BatchProcessorArgsDict',
|
|
27
25
|
'CacheConfigurationArgs',
|
|
@@ -30,6 +28,8 @@ __all__ = [
|
|
|
30
28
|
'ConcurrencyConfigurationArgsDict',
|
|
31
29
|
'ExporterArgs',
|
|
32
30
|
'ExporterArgsDict',
|
|
31
|
+
'ExtendedLocationArgs',
|
|
32
|
+
'ExtendedLocationArgsDict',
|
|
33
33
|
'NetworkingConfigurationArgs',
|
|
34
34
|
'NetworkingConfigurationArgsDict',
|
|
35
35
|
'NetworkingRouteArgs',
|
|
@@ -231,60 +231,6 @@ class AzureMonitorWorkspaceLogsExporterArgs:
|
|
|
231
231
|
pulumi.set(self, "concurrency", value)
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
if not MYPY:
|
|
235
|
-
class AzureResourceManagerCommonTypesExtendedLocationArgsDict(TypedDict):
|
|
236
|
-
"""
|
|
237
|
-
The complex type of the extended location.
|
|
238
|
-
"""
|
|
239
|
-
name: pulumi.Input[str]
|
|
240
|
-
"""
|
|
241
|
-
The name of the extended location.
|
|
242
|
-
"""
|
|
243
|
-
type: pulumi.Input[Union[str, 'ExtendedLocationType']]
|
|
244
|
-
"""
|
|
245
|
-
The type of the extended location.
|
|
246
|
-
"""
|
|
247
|
-
elif False:
|
|
248
|
-
AzureResourceManagerCommonTypesExtendedLocationArgsDict: TypeAlias = Mapping[str, Any]
|
|
249
|
-
|
|
250
|
-
@pulumi.input_type
|
|
251
|
-
class AzureResourceManagerCommonTypesExtendedLocationArgs:
|
|
252
|
-
def __init__(__self__, *,
|
|
253
|
-
name: pulumi.Input[str],
|
|
254
|
-
type: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
255
|
-
"""
|
|
256
|
-
The complex type of the extended location.
|
|
257
|
-
:param pulumi.Input[str] name: The name of the extended location.
|
|
258
|
-
:param pulumi.Input[Union[str, 'ExtendedLocationType']] type: The type of the extended location.
|
|
259
|
-
"""
|
|
260
|
-
pulumi.set(__self__, "name", name)
|
|
261
|
-
pulumi.set(__self__, "type", type)
|
|
262
|
-
|
|
263
|
-
@property
|
|
264
|
-
@pulumi.getter
|
|
265
|
-
def name(self) -> pulumi.Input[str]:
|
|
266
|
-
"""
|
|
267
|
-
The name of the extended location.
|
|
268
|
-
"""
|
|
269
|
-
return pulumi.get(self, "name")
|
|
270
|
-
|
|
271
|
-
@name.setter
|
|
272
|
-
def name(self, value: pulumi.Input[str]):
|
|
273
|
-
pulumi.set(self, "name", value)
|
|
274
|
-
|
|
275
|
-
@property
|
|
276
|
-
@pulumi.getter
|
|
277
|
-
def type(self) -> pulumi.Input[Union[str, 'ExtendedLocationType']]:
|
|
278
|
-
"""
|
|
279
|
-
The type of the extended location.
|
|
280
|
-
"""
|
|
281
|
-
return pulumi.get(self, "type")
|
|
282
|
-
|
|
283
|
-
@type.setter
|
|
284
|
-
def type(self, value: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
285
|
-
pulumi.set(self, "type", value)
|
|
286
|
-
|
|
287
|
-
|
|
288
234
|
if not MYPY:
|
|
289
235
|
class BatchProcessorArgsDict(TypedDict):
|
|
290
236
|
"""
|
|
@@ -555,6 +501,60 @@ class ExporterArgs:
|
|
|
555
501
|
pulumi.set(self, "tcp", value)
|
|
556
502
|
|
|
557
503
|
|
|
504
|
+
if not MYPY:
|
|
505
|
+
class ExtendedLocationArgsDict(TypedDict):
|
|
506
|
+
"""
|
|
507
|
+
The extended location info.
|
|
508
|
+
"""
|
|
509
|
+
name: pulumi.Input[str]
|
|
510
|
+
"""
|
|
511
|
+
The name of extended location.
|
|
512
|
+
"""
|
|
513
|
+
type: pulumi.Input[Union[str, 'ExtendedLocationType']]
|
|
514
|
+
"""
|
|
515
|
+
The type of extended location.
|
|
516
|
+
"""
|
|
517
|
+
elif False:
|
|
518
|
+
ExtendedLocationArgsDict: TypeAlias = Mapping[str, Any]
|
|
519
|
+
|
|
520
|
+
@pulumi.input_type
|
|
521
|
+
class ExtendedLocationArgs:
|
|
522
|
+
def __init__(__self__, *,
|
|
523
|
+
name: pulumi.Input[str],
|
|
524
|
+
type: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
525
|
+
"""
|
|
526
|
+
The extended location info.
|
|
527
|
+
:param pulumi.Input[str] name: The name of extended location.
|
|
528
|
+
:param pulumi.Input[Union[str, 'ExtendedLocationType']] type: The type of extended location.
|
|
529
|
+
"""
|
|
530
|
+
pulumi.set(__self__, "name", name)
|
|
531
|
+
pulumi.set(__self__, "type", type)
|
|
532
|
+
|
|
533
|
+
@property
|
|
534
|
+
@pulumi.getter
|
|
535
|
+
def name(self) -> pulumi.Input[str]:
|
|
536
|
+
"""
|
|
537
|
+
The name of extended location.
|
|
538
|
+
"""
|
|
539
|
+
return pulumi.get(self, "name")
|
|
540
|
+
|
|
541
|
+
@name.setter
|
|
542
|
+
def name(self, value: pulumi.Input[str]):
|
|
543
|
+
pulumi.set(self, "name", value)
|
|
544
|
+
|
|
545
|
+
@property
|
|
546
|
+
@pulumi.getter
|
|
547
|
+
def type(self) -> pulumi.Input[Union[str, 'ExtendedLocationType']]:
|
|
548
|
+
"""
|
|
549
|
+
The type of extended location.
|
|
550
|
+
"""
|
|
551
|
+
return pulumi.get(self, "type")
|
|
552
|
+
|
|
553
|
+
@type.setter
|
|
554
|
+
def type(self, value: pulumi.Input[Union[str, 'ExtendedLocationType']]):
|
|
555
|
+
pulumi.set(self, "type", value)
|
|
556
|
+
|
|
557
|
+
|
|
558
558
|
if not MYPY:
|
|
559
559
|
class NetworkingConfigurationArgsDict(TypedDict):
|
|
560
560
|
"""
|
|
@@ -81,7 +81,7 @@ class GetPipelineGroupResult:
|
|
|
81
81
|
|
|
82
82
|
@property
|
|
83
83
|
@pulumi.getter(name="extendedLocation")
|
|
84
|
-
def extended_location(self) -> Optional['outputs.
|
|
84
|
+
def extended_location(self) -> Optional['outputs.ExtendedLocationResponse']:
|
|
85
85
|
"""
|
|
86
86
|
The extended location for given pipeline group.
|
|
87
87
|
"""
|