pulumi-azure-native 3.2.0a1744649622__py3-none-any.whl → 3.3.0a1745626403__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.

Files changed (51) hide show
  1. pulumi_azure_native/__init__.py +11 -0
  2. pulumi_azure_native/advisor/assessment.py +5 -1
  3. pulumi_azure_native/advisor/get_assessment.py +4 -0
  4. pulumi_azure_native/advisor/get_suppression.py +2 -2
  5. pulumi_azure_native/advisor/suppression.py +3 -3
  6. pulumi_azure_native/containerregistry/cache_rule.py +3 -3
  7. pulumi_azure_native/containerregistry/connected_registry.py +3 -3
  8. pulumi_azure_native/containerregistry/credential_set.py +3 -3
  9. pulumi_azure_native/containerregistry/get_cache_rule.py +2 -2
  10. pulumi_azure_native/containerregistry/get_connected_registry.py +2 -2
  11. pulumi_azure_native/containerregistry/get_credential_set.py +2 -2
  12. pulumi_azure_native/containerregistry/get_private_endpoint_connection.py +2 -2
  13. pulumi_azure_native/containerregistry/get_registry.py +2 -2
  14. pulumi_azure_native/containerregistry/get_replication.py +2 -2
  15. pulumi_azure_native/containerregistry/get_scope_map.py +2 -2
  16. pulumi_azure_native/containerregistry/get_token.py +2 -2
  17. pulumi_azure_native/containerregistry/get_webhook.py +2 -2
  18. pulumi_azure_native/containerregistry/get_webhook_callback_config.py +2 -2
  19. pulumi_azure_native/containerregistry/list_registry_credentials.py +2 -2
  20. pulumi_azure_native/containerregistry/list_webhook_events.py +2 -2
  21. pulumi_azure_native/containerregistry/private_endpoint_connection.py +3 -3
  22. pulumi_azure_native/containerregistry/registry.py +3 -3
  23. pulumi_azure_native/containerregistry/replication.py +3 -3
  24. pulumi_azure_native/containerregistry/scope_map.py +3 -3
  25. pulumi_azure_native/containerregistry/token.py +3 -3
  26. pulumi_azure_native/containerregistry/webhook.py +3 -3
  27. pulumi_azure_native/dbforpostgresql/_inputs.py +274 -50
  28. pulumi_azure_native/dbforpostgresql/get_server_group_cluster.py +3 -3
  29. pulumi_azure_native/dbforpostgresql/outputs.py +229 -28
  30. pulumi_azure_native/dbforpostgresql/server_group_cluster.py +24 -24
  31. pulumi_azure_native/durabletask/_enums.py +1 -1
  32. pulumi_azure_native/loadtestservice/_inputs.py +3 -3
  33. pulumi_azure_native/loadtestservice/outputs.py +2 -2
  34. pulumi_azure_native/migrate/_enums.py +23 -0
  35. pulumi_azure_native/migrate/_inputs.py +20 -0
  36. pulumi_azure_native/migrate/outputs.py +14 -0
  37. pulumi_azure_native/monitor/_enums.py +9 -0
  38. pulumi_azure_native/monitor/azure_monitor_workspace.py +38 -18
  39. pulumi_azure_native/monitor/get_azure_monitor_workspace.py +18 -18
  40. pulumi_azure_native/monitor/outputs.py +106 -106
  41. pulumi_azure_native/onlineexperimentation/__init__.py +12 -0
  42. pulumi_azure_native/onlineexperimentation/_enums.py +57 -0
  43. pulumi_azure_native/onlineexperimentation/_inputs.py +385 -0
  44. pulumi_azure_native/onlineexperimentation/get_online_experiment_workspace.py +217 -0
  45. pulumi_azure_native/onlineexperimentation/online_experiment_workspace.py +330 -0
  46. pulumi_azure_native/onlineexperimentation/outputs.py +577 -0
  47. pulumi_azure_native/pulumi-plugin.json +1 -1
  48. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/METADATA +1 -1
  49. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/RECORD +51 -45
  50. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/WHEEL +1 -1
  51. {pulumi_azure_native-3.2.0a1744649622.dist-info → pulumi_azure_native-3.3.0a1745626403.dist-info}/top_level.txt +0 -0
@@ -34,6 +34,8 @@ __all__ = [
34
34
  'AzureFunctionReceiverResponse',
35
35
  'AzureMonitorWorkspaceLogsApiConfigResponse',
36
36
  'AzureMonitorWorkspaceLogsExporterResponse',
37
+ 'AzureMonitorWorkspaceResponseDefaultIngestionSettings',
38
+ 'AzureMonitorWorkspaceResponseMetrics',
37
39
  'AzureResourceManagerCommonTypesExtendedLocationResponse',
38
40
  'BatchProcessorResponse',
39
41
  'CacheConfigurationResponse',
@@ -75,7 +77,6 @@ __all__ = [
75
77
  'IisLogsDataSourceResponse',
76
78
  'IncidentReceiverResponse',
77
79
  'IncidentServiceConnectionResponse',
78
- 'IngestionSettingsResponse',
79
80
  'ItsmReceiverResponse',
80
81
  'JsonArrayMapperResponse',
81
82
  'JsonMapperDestinationFieldResponse',
@@ -96,7 +97,6 @@ __all__ = [
96
97
  'MetricDimensionResponse',
97
98
  'MetricSettingsResponse',
98
99
  'MetricTriggerResponse',
99
- 'MetricsResponse',
100
100
  'MonitoringAccountDestinationResponse',
101
101
  'NetworkingConfigurationResponse',
102
102
  'NetworkingRouteResponse',
@@ -1366,6 +1366,110 @@ class AzureMonitorWorkspaceLogsExporterResponse(dict):
1366
1366
  return pulumi.get(self, "concurrency")
1367
1367
 
1368
1368
 
1369
+ @pulumi.output_type
1370
+ class AzureMonitorWorkspaceResponseDefaultIngestionSettings(dict):
1371
+ """
1372
+ The Data Collection Rule and Endpoint used for ingestion by default.
1373
+ """
1374
+ @staticmethod
1375
+ def __key_warning(key: str):
1376
+ suggest = None
1377
+ if key == "dataCollectionEndpointResourceId":
1378
+ suggest = "data_collection_endpoint_resource_id"
1379
+ elif key == "dataCollectionRuleResourceId":
1380
+ suggest = "data_collection_rule_resource_id"
1381
+
1382
+ if suggest:
1383
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseDefaultIngestionSettings. Access the value via the '{suggest}' property getter instead.")
1384
+
1385
+ def __getitem__(self, key: str) -> Any:
1386
+ AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
1387
+ return super().__getitem__(key)
1388
+
1389
+ def get(self, key: str, default = None) -> Any:
1390
+ AzureMonitorWorkspaceResponseDefaultIngestionSettings.__key_warning(key)
1391
+ return super().get(key, default)
1392
+
1393
+ def __init__(__self__, *,
1394
+ data_collection_endpoint_resource_id: str,
1395
+ data_collection_rule_resource_id: str):
1396
+ """
1397
+ The Data Collection Rule and Endpoint used for ingestion by default.
1398
+ :param str data_collection_endpoint_resource_id: The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
1399
+ :param str data_collection_rule_resource_id: The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
1400
+ """
1401
+ pulumi.set(__self__, "data_collection_endpoint_resource_id", data_collection_endpoint_resource_id)
1402
+ pulumi.set(__self__, "data_collection_rule_resource_id", data_collection_rule_resource_id)
1403
+
1404
+ @property
1405
+ @pulumi.getter(name="dataCollectionEndpointResourceId")
1406
+ def data_collection_endpoint_resource_id(self) -> str:
1407
+ """
1408
+ The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
1409
+ """
1410
+ return pulumi.get(self, "data_collection_endpoint_resource_id")
1411
+
1412
+ @property
1413
+ @pulumi.getter(name="dataCollectionRuleResourceId")
1414
+ def data_collection_rule_resource_id(self) -> str:
1415
+ """
1416
+ The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
1417
+ """
1418
+ return pulumi.get(self, "data_collection_rule_resource_id")
1419
+
1420
+
1421
+ @pulumi.output_type
1422
+ class AzureMonitorWorkspaceResponseMetrics(dict):
1423
+ """
1424
+ Properties related to the metrics container in the Azure Monitor Workspace
1425
+ """
1426
+ @staticmethod
1427
+ def __key_warning(key: str):
1428
+ suggest = None
1429
+ if key == "internalId":
1430
+ suggest = "internal_id"
1431
+ elif key == "prometheusQueryEndpoint":
1432
+ suggest = "prometheus_query_endpoint"
1433
+
1434
+ if suggest:
1435
+ pulumi.log.warn(f"Key '{key}' not found in AzureMonitorWorkspaceResponseMetrics. Access the value via the '{suggest}' property getter instead.")
1436
+
1437
+ def __getitem__(self, key: str) -> Any:
1438
+ AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
1439
+ return super().__getitem__(key)
1440
+
1441
+ def get(self, key: str, default = None) -> Any:
1442
+ AzureMonitorWorkspaceResponseMetrics.__key_warning(key)
1443
+ return super().get(key, default)
1444
+
1445
+ def __init__(__self__, *,
1446
+ internal_id: str,
1447
+ prometheus_query_endpoint: str):
1448
+ """
1449
+ Properties related to the metrics container in the Azure Monitor Workspace
1450
+ :param str internal_id: An internal identifier for the metrics container. Only to be used by the system
1451
+ :param str prometheus_query_endpoint: The Prometheus query endpoint for the Azure Monitor Workspace
1452
+ """
1453
+ pulumi.set(__self__, "internal_id", internal_id)
1454
+ pulumi.set(__self__, "prometheus_query_endpoint", prometheus_query_endpoint)
1455
+
1456
+ @property
1457
+ @pulumi.getter(name="internalId")
1458
+ def internal_id(self) -> str:
1459
+ """
1460
+ An internal identifier for the metrics container. Only to be used by the system
1461
+ """
1462
+ return pulumi.get(self, "internal_id")
1463
+
1464
+ @property
1465
+ @pulumi.getter(name="prometheusQueryEndpoint")
1466
+ def prometheus_query_endpoint(self) -> str:
1467
+ """
1468
+ The Prometheus query endpoint for the Azure Monitor Workspace
1469
+ """
1470
+ return pulumi.get(self, "prometheus_query_endpoint")
1471
+
1472
+
1369
1473
  @pulumi.output_type
1370
1474
  class AzureResourceManagerCommonTypesExtendedLocationResponse(dict):
1371
1475
  """
@@ -4300,58 +4404,6 @@ class IncidentServiceConnectionResponse(dict):
4300
4404
  return pulumi.get(self, "name")
4301
4405
 
4302
4406
 
4303
- @pulumi.output_type
4304
- class IngestionSettingsResponse(dict):
4305
- """
4306
- Settings for data ingestion
4307
- """
4308
- @staticmethod
4309
- def __key_warning(key: str):
4310
- suggest = None
4311
- if key == "dataCollectionEndpointResourceId":
4312
- suggest = "data_collection_endpoint_resource_id"
4313
- elif key == "dataCollectionRuleResourceId":
4314
- suggest = "data_collection_rule_resource_id"
4315
-
4316
- if suggest:
4317
- pulumi.log.warn(f"Key '{key}' not found in IngestionSettingsResponse. Access the value via the '{suggest}' property getter instead.")
4318
-
4319
- def __getitem__(self, key: str) -> Any:
4320
- IngestionSettingsResponse.__key_warning(key)
4321
- return super().__getitem__(key)
4322
-
4323
- def get(self, key: str, default = None) -> Any:
4324
- IngestionSettingsResponse.__key_warning(key)
4325
- return super().get(key, default)
4326
-
4327
- def __init__(__self__, *,
4328
- data_collection_endpoint_resource_id: str,
4329
- data_collection_rule_resource_id: str):
4330
- """
4331
- Settings for data ingestion
4332
- :param str data_collection_endpoint_resource_id: The Azure resource Id of the default data collection endpoint for this workspace.
4333
- :param str data_collection_rule_resource_id: The Azure resource Id of the default data collection rule for this workspace.
4334
- """
4335
- pulumi.set(__self__, "data_collection_endpoint_resource_id", data_collection_endpoint_resource_id)
4336
- pulumi.set(__self__, "data_collection_rule_resource_id", data_collection_rule_resource_id)
4337
-
4338
- @property
4339
- @pulumi.getter(name="dataCollectionEndpointResourceId")
4340
- def data_collection_endpoint_resource_id(self) -> str:
4341
- """
4342
- The Azure resource Id of the default data collection endpoint for this workspace.
4343
- """
4344
- return pulumi.get(self, "data_collection_endpoint_resource_id")
4345
-
4346
- @property
4347
- @pulumi.getter(name="dataCollectionRuleResourceId")
4348
- def data_collection_rule_resource_id(self) -> str:
4349
- """
4350
- The Azure resource Id of the default data collection rule for this workspace.
4351
- """
4352
- return pulumi.get(self, "data_collection_rule_resource_id")
4353
-
4354
-
4355
4407
  @pulumi.output_type
4356
4408
  class ItsmReceiverResponse(dict):
4357
4409
  """
@@ -5777,58 +5829,6 @@ class MetricTriggerResponse(dict):
5777
5829
  return pulumi.get(self, "metric_resource_location")
5778
5830
 
5779
5831
 
5780
- @pulumi.output_type
5781
- class MetricsResponse(dict):
5782
- """
5783
- Information about metrics for the workspace
5784
- """
5785
- @staticmethod
5786
- def __key_warning(key: str):
5787
- suggest = None
5788
- if key == "internalId":
5789
- suggest = "internal_id"
5790
- elif key == "prometheusQueryEndpoint":
5791
- suggest = "prometheus_query_endpoint"
5792
-
5793
- if suggest:
5794
- pulumi.log.warn(f"Key '{key}' not found in MetricsResponse. Access the value via the '{suggest}' property getter instead.")
5795
-
5796
- def __getitem__(self, key: str) -> Any:
5797
- MetricsResponse.__key_warning(key)
5798
- return super().__getitem__(key)
5799
-
5800
- def get(self, key: str, default = None) -> Any:
5801
- MetricsResponse.__key_warning(key)
5802
- return super().get(key, default)
5803
-
5804
- def __init__(__self__, *,
5805
- internal_id: str,
5806
- prometheus_query_endpoint: str):
5807
- """
5808
- Information about metrics for the workspace
5809
- :param str internal_id: An internal identifier for the metrics container. Only to be used by the system
5810
- :param str prometheus_query_endpoint: The Prometheus query endpoint for the workspace
5811
- """
5812
- pulumi.set(__self__, "internal_id", internal_id)
5813
- pulumi.set(__self__, "prometheus_query_endpoint", prometheus_query_endpoint)
5814
-
5815
- @property
5816
- @pulumi.getter(name="internalId")
5817
- def internal_id(self) -> str:
5818
- """
5819
- An internal identifier for the metrics container. Only to be used by the system
5820
- """
5821
- return pulumi.get(self, "internal_id")
5822
-
5823
- @property
5824
- @pulumi.getter(name="prometheusQueryEndpoint")
5825
- def prometheus_query_endpoint(self) -> str:
5826
- """
5827
- The Prometheus query endpoint for the workspace
5828
- """
5829
- return pulumi.get(self, "prometheus_query_endpoint")
5830
-
5831
-
5832
5832
  @pulumi.output_type
5833
5833
  class MonitoringAccountDestinationResponse(dict):
5834
5834
  """
@@ -0,0 +1,12 @@
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
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from ._enums import *
9
+ from .get_online_experiment_workspace import *
10
+ from .online_experiment_workspace import *
11
+ from ._inputs import *
12
+ from . import outputs
@@ -0,0 +1,57 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'KeyEncryptionKeyIdentityType',
9
+ 'ManagedServiceIdentityType',
10
+ 'OnlineExperimentationWorkspaceSkuName',
11
+ ]
12
+
13
+
14
+ class KeyEncryptionKeyIdentityType(str, Enum):
15
+ """
16
+ The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
17
+ """
18
+ SYSTEM_ASSIGNED_IDENTITY = "SystemAssignedIdentity"
19
+ """
20
+ System assigned identity
21
+ """
22
+ USER_ASSIGNED_IDENTITY = "UserAssignedIdentity"
23
+ """
24
+ User assigned identity
25
+ """
26
+
27
+
28
+ class ManagedServiceIdentityType(str, Enum):
29
+ """
30
+ Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
31
+ """
32
+ NONE = "None"
33
+ SYSTEM_ASSIGNED = "SystemAssigned"
34
+ USER_ASSIGNED = "UserAssigned"
35
+ SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned"
36
+
37
+
38
+ class OnlineExperimentationWorkspaceSkuName(str, Enum):
39
+ """
40
+ The name of the SKU. Ex - F0, P0. It is typically a letter+number code
41
+ """
42
+ F0 = "F0"
43
+ """
44
+ The Free service sku name.
45
+ """
46
+ S0 = "S0"
47
+ """
48
+ The Standard service sku name.
49
+ """
50
+ P0 = "P0"
51
+ """
52
+ The Premium service sku name.
53
+ """
54
+ D0 = "D0"
55
+ """
56
+ The Developer service sku name.
57
+ """