pulumi-newrelic 5.45.0a1743488085__py3-none-any.whl → 5.45.0a1744183332__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.
Files changed (89) hide show
  1. pulumi_newrelic/__init__.py +1 -0
  2. pulumi_newrelic/_inputs.py +2961 -2960
  3. pulumi_newrelic/account_management.py +29 -28
  4. pulumi_newrelic/alert_channel.py +43 -42
  5. pulumi_newrelic/alert_condition.py +176 -175
  6. pulumi_newrelic/alert_muting_rule.py +71 -70
  7. pulumi_newrelic/alert_policy.py +57 -56
  8. pulumi_newrelic/alert_policy_channel.py +43 -42
  9. pulumi_newrelic/api_access_key.py +92 -91
  10. pulumi_newrelic/browser_application.py +92 -91
  11. pulumi_newrelic/cloud/__init__.py +1 -0
  12. pulumi_newrelic/cloud/_inputs.py +1765 -1764
  13. pulumi_newrelic/cloud/aws_govcloud_integrations.py +29 -28
  14. pulumi_newrelic/cloud/aws_govcloud_link_account.py +57 -56
  15. pulumi_newrelic/cloud/aws_integrations.py +29 -28
  16. pulumi_newrelic/cloud/aws_link_account.py +57 -56
  17. pulumi_newrelic/cloud/azure_integrations.py +29 -28
  18. pulumi_newrelic/cloud/azure_link_account.py +85 -84
  19. pulumi_newrelic/cloud/gcp_integrations.py +29 -28
  20. pulumi_newrelic/cloud/gcp_link_account.py +45 -44
  21. pulumi_newrelic/cloud/outputs.py +1057 -1056
  22. pulumi_newrelic/config/__init__.py +1 -0
  23. pulumi_newrelic/config/__init__.pyi +1 -0
  24. pulumi_newrelic/config/vars.py +1 -0
  25. pulumi_newrelic/data_partition_rule.py +92 -91
  26. pulumi_newrelic/entity_tags.py +15 -14
  27. pulumi_newrelic/events_to_metrics_rule.py +78 -77
  28. pulumi_newrelic/get_account.py +17 -16
  29. pulumi_newrelic/get_alert_channel.py +14 -13
  30. pulumi_newrelic/get_alert_policy.py +19 -18
  31. pulumi_newrelic/get_application.py +9 -8
  32. pulumi_newrelic/get_authentication_domain.py +7 -6
  33. pulumi_newrelic/get_cloud_account.py +17 -16
  34. pulumi_newrelic/get_entity.py +40 -39
  35. pulumi_newrelic/get_group.py +13 -12
  36. pulumi_newrelic/get_key_transaction.py +19 -18
  37. pulumi_newrelic/get_notification_destination.py +20 -19
  38. pulumi_newrelic/get_obfuscation_expression.py +12 -11
  39. pulumi_newrelic/get_service_level_alert_helper.py +41 -40
  40. pulumi_newrelic/get_test_grok_pattern.py +17 -16
  41. pulumi_newrelic/get_user.py +17 -16
  42. pulumi_newrelic/group.py +43 -42
  43. pulumi_newrelic/infra_alert_condition.py +204 -203
  44. pulumi_newrelic/insights/__init__.py +1 -0
  45. pulumi_newrelic/insights/_inputs.py +26 -25
  46. pulumi_newrelic/insights/event.py +1 -0
  47. pulumi_newrelic/insights/outputs.py +16 -15
  48. pulumi_newrelic/key_transaction.py +85 -84
  49. pulumi_newrelic/log_parsing_rule.py +120 -119
  50. pulumi_newrelic/monitor_downtime.py +113 -112
  51. pulumi_newrelic/notification_channel.py +92 -91
  52. pulumi_newrelic/notification_destination.py +78 -77
  53. pulumi_newrelic/nrql_alert_condition.py +330 -329
  54. pulumi_newrelic/nrql_drop_rule.py +64 -63
  55. pulumi_newrelic/obfuscation_expression.py +57 -56
  56. pulumi_newrelic/obfuscation_rule.py +71 -70
  57. pulumi_newrelic/one_dashboard.py +71 -70
  58. pulumi_newrelic/one_dashboard_json.py +50 -49
  59. pulumi_newrelic/one_dashboard_raw.py +71 -70
  60. pulumi_newrelic/outputs.py +1831 -1830
  61. pulumi_newrelic/plugins/__init__.py +1 -0
  62. pulumi_newrelic/plugins/_inputs.py +126 -125
  63. pulumi_newrelic/plugins/application_settings.py +132 -131
  64. pulumi_newrelic/plugins/outputs.py +76 -75
  65. pulumi_newrelic/plugins/workload.py +99 -98
  66. pulumi_newrelic/provider.py +80 -79
  67. pulumi_newrelic/pulumi-plugin.json +1 -1
  68. pulumi_newrelic/service_level.py +57 -56
  69. pulumi_newrelic/synthetics/__init__.py +1 -0
  70. pulumi_newrelic/synthetics/_inputs.py +106 -105
  71. pulumi_newrelic/synthetics/alert_condition.py +78 -77
  72. pulumi_newrelic/synthetics/broken_links_monitor.py +151 -150
  73. pulumi_newrelic/synthetics/cert_check_monitor.py +158 -157
  74. pulumi_newrelic/synthetics/get_private_location.py +17 -16
  75. pulumi_newrelic/synthetics/get_secure_credential.py +14 -13
  76. pulumi_newrelic/synthetics/monitor.py +298 -297
  77. pulumi_newrelic/synthetics/multi_location_alert_condition.py +92 -91
  78. pulumi_newrelic/synthetics/outputs.py +64 -63
  79. pulumi_newrelic/synthetics/private_location.py +85 -84
  80. pulumi_newrelic/synthetics/script_monitor.py +235 -234
  81. pulumi_newrelic/synthetics/secure_credential.py +71 -70
  82. pulumi_newrelic/synthetics/step_monitor.py +165 -164
  83. pulumi_newrelic/user.py +57 -56
  84. pulumi_newrelic/workflow.py +106 -105
  85. {pulumi_newrelic-5.45.0a1743488085.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/METADATA +1 -1
  86. pulumi_newrelic-5.45.0a1744183332.dist-info/RECORD +90 -0
  87. pulumi_newrelic-5.45.0a1743488085.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743488085.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743488085.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -21,8 +22,8 @@ __all__ = ['AzureIntegrationsArgs', 'AzureIntegrations']
21
22
  @pulumi.input_type
22
23
  class AzureIntegrationsArgs:
23
24
  def __init__(__self__, *,
24
- linked_account_id: pulumi.Input[str],
25
- account_id: Optional[pulumi.Input[str]] = None,
25
+ linked_account_id: pulumi.Input[builtins.str],
26
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
26
27
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
27
28
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
28
29
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
@@ -57,11 +58,11 @@ class AzureIntegrationsArgs:
57
58
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
58
59
  """
59
60
  The set of arguments for constructing a AzureIntegrations resource.
60
- :param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
61
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
61
62
 
62
63
 
63
64
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
64
- :param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
65
+ :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
65
66
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
66
67
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
67
68
  :param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
@@ -171,7 +172,7 @@ class AzureIntegrationsArgs:
171
172
 
172
173
  @property
173
174
  @pulumi.getter(name="linkedAccountId")
174
- def linked_account_id(self) -> pulumi.Input[str]:
175
+ def linked_account_id(self) -> pulumi.Input[builtins.str]:
175
176
  """
176
177
  The ID of the linked Azure account in New Relic.
177
178
 
@@ -181,19 +182,19 @@ class AzureIntegrationsArgs:
181
182
  return pulumi.get(self, "linked_account_id")
182
183
 
183
184
  @linked_account_id.setter
184
- def linked_account_id(self, value: pulumi.Input[str]):
185
+ def linked_account_id(self, value: pulumi.Input[builtins.str]):
185
186
  pulumi.set(self, "linked_account_id", value)
186
187
 
187
188
  @property
188
189
  @pulumi.getter(name="accountId")
189
- def account_id(self) -> Optional[pulumi.Input[str]]:
190
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
190
191
  """
191
192
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
192
193
  """
193
194
  return pulumi.get(self, "account_id")
194
195
 
195
196
  @account_id.setter
196
- def account_id(self, value: Optional[pulumi.Input[str]]):
197
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
197
198
  pulumi.set(self, "account_id", value)
198
199
 
199
200
  @property
@@ -590,7 +591,7 @@ class AzureIntegrationsArgs:
590
591
  @pulumi.input_type
591
592
  class _AzureIntegrationsState:
592
593
  def __init__(__self__, *,
593
- account_id: Optional[pulumi.Input[str]] = None,
594
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
594
595
  api_management: Optional[pulumi.Input['AzureIntegrationsApiManagementArgs']] = None,
595
596
  app_gateway: Optional[pulumi.Input['AzureIntegrationsAppGatewayArgs']] = None,
596
597
  app_service: Optional[pulumi.Input['AzureIntegrationsAppServiceArgs']] = None,
@@ -604,7 +605,7 @@ class _AzureIntegrationsState:
604
605
  front_door: Optional[pulumi.Input['AzureIntegrationsFrontDoorArgs']] = None,
605
606
  functions: Optional[pulumi.Input['AzureIntegrationsFunctionsArgs']] = None,
606
607
  key_vault: Optional[pulumi.Input['AzureIntegrationsKeyVaultArgs']] = None,
607
- linked_account_id: Optional[pulumi.Input[str]] = None,
608
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
608
609
  load_balancer: Optional[pulumi.Input['AzureIntegrationsLoadBalancerArgs']] = None,
609
610
  logic_apps: Optional[pulumi.Input['AzureIntegrationsLogicAppsArgs']] = None,
610
611
  machine_learning: Optional[pulumi.Input['AzureIntegrationsMachineLearningArgs']] = None,
@@ -626,7 +627,7 @@ class _AzureIntegrationsState:
626
627
  vpn_gateway: Optional[pulumi.Input['AzureIntegrationsVpnGatewayArgs']] = None):
627
628
  """
628
629
  Input properties used for looking up and filtering AzureIntegrations resources.
629
- :param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
630
+ :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
630
631
  :param pulumi.Input['AzureIntegrationsApiManagementArgs'] api_management: Azure API Management. See Integration blocks below for details.
631
632
  :param pulumi.Input['AzureIntegrationsAppGatewayArgs'] app_gateway: Azure App Gateway. See Integration blocks below for details.
632
633
  :param pulumi.Input['AzureIntegrationsAppServiceArgs'] app_service: Azure App Service. See Integration blocks below for details.
@@ -640,7 +641,7 @@ class _AzureIntegrationsState:
640
641
  :param pulumi.Input['AzureIntegrationsFrontDoorArgs'] front_door: Azure Front Door. See Integration blocks below for details.
641
642
  :param pulumi.Input['AzureIntegrationsFunctionsArgs'] functions: Azure Functions. See Integration blocks below for details.
642
643
  :param pulumi.Input['AzureIntegrationsKeyVaultArgs'] key_vault: Azure Key Vault. See Integration blocks below for details.
643
- :param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
644
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
644
645
 
645
646
 
646
647
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -741,14 +742,14 @@ class _AzureIntegrationsState:
741
742
 
742
743
  @property
743
744
  @pulumi.getter(name="accountId")
744
- def account_id(self) -> Optional[pulumi.Input[str]]:
745
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
745
746
  """
746
747
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
747
748
  """
748
749
  return pulumi.get(self, "account_id")
749
750
 
750
751
  @account_id.setter
751
- def account_id(self, value: Optional[pulumi.Input[str]]):
752
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
752
753
  pulumi.set(self, "account_id", value)
753
754
 
754
755
  @property
@@ -909,7 +910,7 @@ class _AzureIntegrationsState:
909
910
 
910
911
  @property
911
912
  @pulumi.getter(name="linkedAccountId")
912
- def linked_account_id(self) -> Optional[pulumi.Input[str]]:
913
+ def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
913
914
  """
914
915
  The ID of the linked Azure account in New Relic.
915
916
 
@@ -919,7 +920,7 @@ class _AzureIntegrationsState:
919
920
  return pulumi.get(self, "linked_account_id")
920
921
 
921
922
  @linked_account_id.setter
922
- def linked_account_id(self, value: Optional[pulumi.Input[str]]):
923
+ def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
923
924
  pulumi.set(self, "linked_account_id", value)
924
925
 
925
926
  @property
@@ -1162,7 +1163,7 @@ class AzureIntegrations(pulumi.CustomResource):
1162
1163
  def __init__(__self__,
1163
1164
  resource_name: str,
1164
1165
  opts: Optional[pulumi.ResourceOptions] = None,
1165
- account_id: Optional[pulumi.Input[str]] = None,
1166
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1166
1167
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1167
1168
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1168
1169
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
@@ -1176,7 +1177,7 @@ class AzureIntegrations(pulumi.CustomResource):
1176
1177
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1177
1178
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1178
1179
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1179
- linked_account_id: Optional[pulumi.Input[str]] = None,
1180
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1180
1181
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1181
1182
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1182
1183
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1375,7 +1376,7 @@ class AzureIntegrations(pulumi.CustomResource):
1375
1376
 
1376
1377
  :param str resource_name: The name of the resource.
1377
1378
  :param pulumi.ResourceOptions opts: Options for the resource.
1378
- :param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1379
+ :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1379
1380
  :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1380
1381
  :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1381
1382
  :param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
@@ -1389,7 +1390,7 @@ class AzureIntegrations(pulumi.CustomResource):
1389
1390
  :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1390
1391
  :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1391
1392
  :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1392
- :param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
1393
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1393
1394
 
1394
1395
 
1395
1396
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -1616,7 +1617,7 @@ class AzureIntegrations(pulumi.CustomResource):
1616
1617
  def _internal_init(__self__,
1617
1618
  resource_name: str,
1618
1619
  opts: Optional[pulumi.ResourceOptions] = None,
1619
- account_id: Optional[pulumi.Input[str]] = None,
1620
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1620
1621
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1621
1622
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1622
1623
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
@@ -1630,7 +1631,7 @@ class AzureIntegrations(pulumi.CustomResource):
1630
1631
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1631
1632
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1632
1633
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1633
- linked_account_id: Optional[pulumi.Input[str]] = None,
1634
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1634
1635
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1635
1636
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1636
1637
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1705,7 +1706,7 @@ class AzureIntegrations(pulumi.CustomResource):
1705
1706
  def get(resource_name: str,
1706
1707
  id: pulumi.Input[str],
1707
1708
  opts: Optional[pulumi.ResourceOptions] = None,
1708
- account_id: Optional[pulumi.Input[str]] = None,
1709
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1709
1710
  api_management: Optional[pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']]] = None,
1710
1711
  app_gateway: Optional[pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']]] = None,
1711
1712
  app_service: Optional[pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']]] = None,
@@ -1719,7 +1720,7 @@ class AzureIntegrations(pulumi.CustomResource):
1719
1720
  front_door: Optional[pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']]] = None,
1720
1721
  functions: Optional[pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']]] = None,
1721
1722
  key_vault: Optional[pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']]] = None,
1722
- linked_account_id: Optional[pulumi.Input[str]] = None,
1723
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1723
1724
  load_balancer: Optional[pulumi.Input[Union['AzureIntegrationsLoadBalancerArgs', 'AzureIntegrationsLoadBalancerArgsDict']]] = None,
1724
1725
  logic_apps: Optional[pulumi.Input[Union['AzureIntegrationsLogicAppsArgs', 'AzureIntegrationsLogicAppsArgsDict']]] = None,
1725
1726
  machine_learning: Optional[pulumi.Input[Union['AzureIntegrationsMachineLearningArgs', 'AzureIntegrationsMachineLearningArgsDict']]] = None,
@@ -1746,7 +1747,7 @@ class AzureIntegrations(pulumi.CustomResource):
1746
1747
  :param str resource_name: The unique name of the resulting resource.
1747
1748
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1748
1749
  :param pulumi.ResourceOptions opts: Options for the resource.
1749
- :param pulumi.Input[str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1750
+ :param pulumi.Input[builtins.str] account_id: The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1750
1751
  :param pulumi.Input[Union['AzureIntegrationsApiManagementArgs', 'AzureIntegrationsApiManagementArgsDict']] api_management: Azure API Management. See Integration blocks below for details.
1751
1752
  :param pulumi.Input[Union['AzureIntegrationsAppGatewayArgs', 'AzureIntegrationsAppGatewayArgsDict']] app_gateway: Azure App Gateway. See Integration blocks below for details.
1752
1753
  :param pulumi.Input[Union['AzureIntegrationsAppServiceArgs', 'AzureIntegrationsAppServiceArgsDict']] app_service: Azure App Service. See Integration blocks below for details.
@@ -1760,7 +1761,7 @@ class AzureIntegrations(pulumi.CustomResource):
1760
1761
  :param pulumi.Input[Union['AzureIntegrationsFrontDoorArgs', 'AzureIntegrationsFrontDoorArgsDict']] front_door: Azure Front Door. See Integration blocks below for details.
1761
1762
  :param pulumi.Input[Union['AzureIntegrationsFunctionsArgs', 'AzureIntegrationsFunctionsArgsDict']] functions: Azure Functions. See Integration blocks below for details.
1762
1763
  :param pulumi.Input[Union['AzureIntegrationsKeyVaultArgs', 'AzureIntegrationsKeyVaultArgsDict']] key_vault: Azure Key Vault. See Integration blocks below for details.
1763
- :param pulumi.Input[str] linked_account_id: The ID of the linked Azure account in New Relic.
1764
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked Azure account in New Relic.
1764
1765
 
1765
1766
 
1766
1767
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 60 seconds.
@@ -1832,7 +1833,7 @@ class AzureIntegrations(pulumi.CustomResource):
1832
1833
 
1833
1834
  @property
1834
1835
  @pulumi.getter(name="accountId")
1835
- def account_id(self) -> pulumi.Output[str]:
1836
+ def account_id(self) -> pulumi.Output[builtins.str]:
1836
1837
  """
1837
1838
  The New Relic account ID to operate on. This allows the user to override the `account_id` attribute set on the provider. Defaults to the environment variable `NEW_RELIC_ACCOUNT_ID`.
1838
1839
  """
@@ -1944,7 +1945,7 @@ class AzureIntegrations(pulumi.CustomResource):
1944
1945
 
1945
1946
  @property
1946
1947
  @pulumi.getter(name="linkedAccountId")
1947
- def linked_account_id(self) -> pulumi.Output[str]:
1948
+ def linked_account_id(self) -> pulumi.Output[builtins.str]:
1948
1949
  """
1949
1950
  The ID of the linked Azure account in New Relic.
1950
1951
 
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -19,20 +20,20 @@ __all__ = ['AzureLinkAccountArgs', 'AzureLinkAccount']
19
20
  @pulumi.input_type
20
21
  class AzureLinkAccountArgs:
21
22
  def __init__(__self__, *,
22
- application_id: pulumi.Input[str],
23
- client_secret: pulumi.Input[str],
24
- subscription_id: pulumi.Input[str],
25
- tenant_id: pulumi.Input[str],
26
- account_id: Optional[pulumi.Input[str]] = None,
27
- name: Optional[pulumi.Input[str]] = None):
23
+ application_id: pulumi.Input[builtins.str],
24
+ client_secret: pulumi.Input[builtins.str],
25
+ subscription_id: pulumi.Input[builtins.str],
26
+ tenant_id: pulumi.Input[builtins.str],
27
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
28
+ name: Optional[pulumi.Input[builtins.str]] = None):
28
29
  """
29
30
  The set of arguments for constructing a AzureLinkAccount resource.
30
- :param pulumi.Input[str] application_id: Application ID of the App.
31
- :param pulumi.Input[str] client_secret: Secret Value of the client.
32
- :param pulumi.Input[str] subscription_id: Subscription ID of the Azure cloud account.
33
- :param pulumi.Input[str] tenant_id: Tenant ID of the Azure cloud account.
34
- :param pulumi.Input[str] account_id: Account ID of the New Relic.
35
- :param pulumi.Input[str] name: The name of the application in New Relic APM.
31
+ :param pulumi.Input[builtins.str] application_id: Application ID of the App.
32
+ :param pulumi.Input[builtins.str] client_secret: Secret Value of the client.
33
+ :param pulumi.Input[builtins.str] subscription_id: Subscription ID of the Azure cloud account.
34
+ :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the Azure cloud account.
35
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic.
36
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic APM.
36
37
  """
37
38
  pulumi.set(__self__, "application_id", application_id)
38
39
  pulumi.set(__self__, "client_secret", client_secret)
@@ -45,94 +46,94 @@ class AzureLinkAccountArgs:
45
46
 
46
47
  @property
47
48
  @pulumi.getter(name="applicationId")
48
- def application_id(self) -> pulumi.Input[str]:
49
+ def application_id(self) -> pulumi.Input[builtins.str]:
49
50
  """
50
51
  Application ID of the App.
51
52
  """
52
53
  return pulumi.get(self, "application_id")
53
54
 
54
55
  @application_id.setter
55
- def application_id(self, value: pulumi.Input[str]):
56
+ def application_id(self, value: pulumi.Input[builtins.str]):
56
57
  pulumi.set(self, "application_id", value)
57
58
 
58
59
  @property
59
60
  @pulumi.getter(name="clientSecret")
60
- def client_secret(self) -> pulumi.Input[str]:
61
+ def client_secret(self) -> pulumi.Input[builtins.str]:
61
62
  """
62
63
  Secret Value of the client.
63
64
  """
64
65
  return pulumi.get(self, "client_secret")
65
66
 
66
67
  @client_secret.setter
67
- def client_secret(self, value: pulumi.Input[str]):
68
+ def client_secret(self, value: pulumi.Input[builtins.str]):
68
69
  pulumi.set(self, "client_secret", value)
69
70
 
70
71
  @property
71
72
  @pulumi.getter(name="subscriptionId")
72
- def subscription_id(self) -> pulumi.Input[str]:
73
+ def subscription_id(self) -> pulumi.Input[builtins.str]:
73
74
  """
74
75
  Subscription ID of the Azure cloud account.
75
76
  """
76
77
  return pulumi.get(self, "subscription_id")
77
78
 
78
79
  @subscription_id.setter
79
- def subscription_id(self, value: pulumi.Input[str]):
80
+ def subscription_id(self, value: pulumi.Input[builtins.str]):
80
81
  pulumi.set(self, "subscription_id", value)
81
82
 
82
83
  @property
83
84
  @pulumi.getter(name="tenantId")
84
- def tenant_id(self) -> pulumi.Input[str]:
85
+ def tenant_id(self) -> pulumi.Input[builtins.str]:
85
86
  """
86
87
  Tenant ID of the Azure cloud account.
87
88
  """
88
89
  return pulumi.get(self, "tenant_id")
89
90
 
90
91
  @tenant_id.setter
91
- def tenant_id(self, value: pulumi.Input[str]):
92
+ def tenant_id(self, value: pulumi.Input[builtins.str]):
92
93
  pulumi.set(self, "tenant_id", value)
93
94
 
94
95
  @property
95
96
  @pulumi.getter(name="accountId")
96
- def account_id(self) -> Optional[pulumi.Input[str]]:
97
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
97
98
  """
98
99
  Account ID of the New Relic.
99
100
  """
100
101
  return pulumi.get(self, "account_id")
101
102
 
102
103
  @account_id.setter
103
- def account_id(self, value: Optional[pulumi.Input[str]]):
104
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
104
105
  pulumi.set(self, "account_id", value)
105
106
 
106
107
  @property
107
108
  @pulumi.getter
108
- def name(self) -> Optional[pulumi.Input[str]]:
109
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
109
110
  """
110
111
  The name of the application in New Relic APM.
111
112
  """
112
113
  return pulumi.get(self, "name")
113
114
 
114
115
  @name.setter
115
- def name(self, value: Optional[pulumi.Input[str]]):
116
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
116
117
  pulumi.set(self, "name", value)
117
118
 
118
119
 
119
120
  @pulumi.input_type
120
121
  class _AzureLinkAccountState:
121
122
  def __init__(__self__, *,
122
- account_id: Optional[pulumi.Input[str]] = None,
123
- application_id: Optional[pulumi.Input[str]] = None,
124
- client_secret: Optional[pulumi.Input[str]] = None,
125
- name: Optional[pulumi.Input[str]] = None,
126
- subscription_id: Optional[pulumi.Input[str]] = None,
127
- tenant_id: Optional[pulumi.Input[str]] = None):
123
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
124
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
125
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
126
+ name: Optional[pulumi.Input[builtins.str]] = None,
127
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
128
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None):
128
129
  """
129
130
  Input properties used for looking up and filtering AzureLinkAccount resources.
130
- :param pulumi.Input[str] account_id: Account ID of the New Relic.
131
- :param pulumi.Input[str] application_id: Application ID of the App.
132
- :param pulumi.Input[str] client_secret: Secret Value of the client.
133
- :param pulumi.Input[str] name: The name of the application in New Relic APM.
134
- :param pulumi.Input[str] subscription_id: Subscription ID of the Azure cloud account.
135
- :param pulumi.Input[str] tenant_id: Tenant ID of the Azure cloud account.
131
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic.
132
+ :param pulumi.Input[builtins.str] application_id: Application ID of the App.
133
+ :param pulumi.Input[builtins.str] client_secret: Secret Value of the client.
134
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic APM.
135
+ :param pulumi.Input[builtins.str] subscription_id: Subscription ID of the Azure cloud account.
136
+ :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the Azure cloud account.
136
137
  """
137
138
  if account_id is not None:
138
139
  pulumi.set(__self__, "account_id", account_id)
@@ -149,74 +150,74 @@ class _AzureLinkAccountState:
149
150
 
150
151
  @property
151
152
  @pulumi.getter(name="accountId")
152
- def account_id(self) -> Optional[pulumi.Input[str]]:
153
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
153
154
  """
154
155
  Account ID of the New Relic.
155
156
  """
156
157
  return pulumi.get(self, "account_id")
157
158
 
158
159
  @account_id.setter
159
- def account_id(self, value: Optional[pulumi.Input[str]]):
160
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
160
161
  pulumi.set(self, "account_id", value)
161
162
 
162
163
  @property
163
164
  @pulumi.getter(name="applicationId")
164
- def application_id(self) -> Optional[pulumi.Input[str]]:
165
+ def application_id(self) -> Optional[pulumi.Input[builtins.str]]:
165
166
  """
166
167
  Application ID of the App.
167
168
  """
168
169
  return pulumi.get(self, "application_id")
169
170
 
170
171
  @application_id.setter
171
- def application_id(self, value: Optional[pulumi.Input[str]]):
172
+ def application_id(self, value: Optional[pulumi.Input[builtins.str]]):
172
173
  pulumi.set(self, "application_id", value)
173
174
 
174
175
  @property
175
176
  @pulumi.getter(name="clientSecret")
176
- def client_secret(self) -> Optional[pulumi.Input[str]]:
177
+ def client_secret(self) -> Optional[pulumi.Input[builtins.str]]:
177
178
  """
178
179
  Secret Value of the client.
179
180
  """
180
181
  return pulumi.get(self, "client_secret")
181
182
 
182
183
  @client_secret.setter
183
- def client_secret(self, value: Optional[pulumi.Input[str]]):
184
+ def client_secret(self, value: Optional[pulumi.Input[builtins.str]]):
184
185
  pulumi.set(self, "client_secret", value)
185
186
 
186
187
  @property
187
188
  @pulumi.getter
188
- def name(self) -> Optional[pulumi.Input[str]]:
189
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
189
190
  """
190
191
  The name of the application in New Relic APM.
191
192
  """
192
193
  return pulumi.get(self, "name")
193
194
 
194
195
  @name.setter
195
- def name(self, value: Optional[pulumi.Input[str]]):
196
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
196
197
  pulumi.set(self, "name", value)
197
198
 
198
199
  @property
199
200
  @pulumi.getter(name="subscriptionId")
200
- def subscription_id(self) -> Optional[pulumi.Input[str]]:
201
+ def subscription_id(self) -> Optional[pulumi.Input[builtins.str]]:
201
202
  """
202
203
  Subscription ID of the Azure cloud account.
203
204
  """
204
205
  return pulumi.get(self, "subscription_id")
205
206
 
206
207
  @subscription_id.setter
207
- def subscription_id(self, value: Optional[pulumi.Input[str]]):
208
+ def subscription_id(self, value: Optional[pulumi.Input[builtins.str]]):
208
209
  pulumi.set(self, "subscription_id", value)
209
210
 
210
211
  @property
211
212
  @pulumi.getter(name="tenantId")
212
- def tenant_id(self) -> Optional[pulumi.Input[str]]:
213
+ def tenant_id(self) -> Optional[pulumi.Input[builtins.str]]:
213
214
  """
214
215
  Tenant ID of the Azure cloud account.
215
216
  """
216
217
  return pulumi.get(self, "tenant_id")
217
218
 
218
219
  @tenant_id.setter
219
- def tenant_id(self, value: Optional[pulumi.Input[str]]):
220
+ def tenant_id(self, value: Optional[pulumi.Input[builtins.str]]):
220
221
  pulumi.set(self, "tenant_id", value)
221
222
 
222
223
 
@@ -225,12 +226,12 @@ class AzureLinkAccount(pulumi.CustomResource):
225
226
  def __init__(__self__,
226
227
  resource_name: str,
227
228
  opts: Optional[pulumi.ResourceOptions] = None,
228
- account_id: Optional[pulumi.Input[str]] = None,
229
- application_id: Optional[pulumi.Input[str]] = None,
230
- client_secret: Optional[pulumi.Input[str]] = None,
231
- name: Optional[pulumi.Input[str]] = None,
232
- subscription_id: Optional[pulumi.Input[str]] = None,
233
- tenant_id: Optional[pulumi.Input[str]] = None,
229
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
230
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
231
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
232
+ name: Optional[pulumi.Input[builtins.str]] = None,
233
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
234
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None,
234
235
  __props__=None):
235
236
  """
236
237
  Use this resource to link an Azure account to New Relic.
@@ -272,12 +273,12 @@ class AzureLinkAccount(pulumi.CustomResource):
272
273
 
273
274
  :param str resource_name: The name of the resource.
274
275
  :param pulumi.ResourceOptions opts: Options for the resource.
275
- :param pulumi.Input[str] account_id: Account ID of the New Relic.
276
- :param pulumi.Input[str] application_id: Application ID of the App.
277
- :param pulumi.Input[str] client_secret: Secret Value of the client.
278
- :param pulumi.Input[str] name: The name of the application in New Relic APM.
279
- :param pulumi.Input[str] subscription_id: Subscription ID of the Azure cloud account.
280
- :param pulumi.Input[str] tenant_id: Tenant ID of the Azure cloud account.
276
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic.
277
+ :param pulumi.Input[builtins.str] application_id: Application ID of the App.
278
+ :param pulumi.Input[builtins.str] client_secret: Secret Value of the client.
279
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic APM.
280
+ :param pulumi.Input[builtins.str] subscription_id: Subscription ID of the Azure cloud account.
281
+ :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the Azure cloud account.
281
282
  """
282
283
  ...
283
284
  @overload
@@ -338,12 +339,12 @@ class AzureLinkAccount(pulumi.CustomResource):
338
339
  def _internal_init(__self__,
339
340
  resource_name: str,
340
341
  opts: Optional[pulumi.ResourceOptions] = None,
341
- account_id: Optional[pulumi.Input[str]] = None,
342
- application_id: Optional[pulumi.Input[str]] = None,
343
- client_secret: Optional[pulumi.Input[str]] = None,
344
- name: Optional[pulumi.Input[str]] = None,
345
- subscription_id: Optional[pulumi.Input[str]] = None,
346
- tenant_id: Optional[pulumi.Input[str]] = None,
342
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
343
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
344
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
345
+ name: Optional[pulumi.Input[builtins.str]] = None,
346
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
347
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None,
347
348
  __props__=None):
348
349
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
349
350
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -379,12 +380,12 @@ class AzureLinkAccount(pulumi.CustomResource):
379
380
  def get(resource_name: str,
380
381
  id: pulumi.Input[str],
381
382
  opts: Optional[pulumi.ResourceOptions] = None,
382
- account_id: Optional[pulumi.Input[str]] = None,
383
- application_id: Optional[pulumi.Input[str]] = None,
384
- client_secret: Optional[pulumi.Input[str]] = None,
385
- name: Optional[pulumi.Input[str]] = None,
386
- subscription_id: Optional[pulumi.Input[str]] = None,
387
- tenant_id: Optional[pulumi.Input[str]] = None) -> 'AzureLinkAccount':
383
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
384
+ application_id: Optional[pulumi.Input[builtins.str]] = None,
385
+ client_secret: Optional[pulumi.Input[builtins.str]] = None,
386
+ name: Optional[pulumi.Input[builtins.str]] = None,
387
+ subscription_id: Optional[pulumi.Input[builtins.str]] = None,
388
+ tenant_id: Optional[pulumi.Input[builtins.str]] = None) -> 'AzureLinkAccount':
388
389
  """
389
390
  Get an existing AzureLinkAccount resource's state with the given name, id, and optional extra
390
391
  properties used to qualify the lookup.
@@ -392,12 +393,12 @@ class AzureLinkAccount(pulumi.CustomResource):
392
393
  :param str resource_name: The unique name of the resulting resource.
393
394
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
394
395
  :param pulumi.ResourceOptions opts: Options for the resource.
395
- :param pulumi.Input[str] account_id: Account ID of the New Relic.
396
- :param pulumi.Input[str] application_id: Application ID of the App.
397
- :param pulumi.Input[str] client_secret: Secret Value of the client.
398
- :param pulumi.Input[str] name: The name of the application in New Relic APM.
399
- :param pulumi.Input[str] subscription_id: Subscription ID of the Azure cloud account.
400
- :param pulumi.Input[str] tenant_id: Tenant ID of the Azure cloud account.
396
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic.
397
+ :param pulumi.Input[builtins.str] application_id: Application ID of the App.
398
+ :param pulumi.Input[builtins.str] client_secret: Secret Value of the client.
399
+ :param pulumi.Input[builtins.str] name: The name of the application in New Relic APM.
400
+ :param pulumi.Input[builtins.str] subscription_id: Subscription ID of the Azure cloud account.
401
+ :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the Azure cloud account.
401
402
  """
402
403
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
403
404
 
@@ -413,7 +414,7 @@ class AzureLinkAccount(pulumi.CustomResource):
413
414
 
414
415
  @property
415
416
  @pulumi.getter(name="accountId")
416
- def account_id(self) -> pulumi.Output[str]:
417
+ def account_id(self) -> pulumi.Output[builtins.str]:
417
418
  """
418
419
  Account ID of the New Relic.
419
420
  """
@@ -421,7 +422,7 @@ class AzureLinkAccount(pulumi.CustomResource):
421
422
 
422
423
  @property
423
424
  @pulumi.getter(name="applicationId")
424
- def application_id(self) -> pulumi.Output[str]:
425
+ def application_id(self) -> pulumi.Output[builtins.str]:
425
426
  """
426
427
  Application ID of the App.
427
428
  """
@@ -429,7 +430,7 @@ class AzureLinkAccount(pulumi.CustomResource):
429
430
 
430
431
  @property
431
432
  @pulumi.getter(name="clientSecret")
432
- def client_secret(self) -> pulumi.Output[str]:
433
+ def client_secret(self) -> pulumi.Output[builtins.str]:
433
434
  """
434
435
  Secret Value of the client.
435
436
  """
@@ -437,7 +438,7 @@ class AzureLinkAccount(pulumi.CustomResource):
437
438
 
438
439
  @property
439
440
  @pulumi.getter
440
- def name(self) -> pulumi.Output[str]:
441
+ def name(self) -> pulumi.Output[builtins.str]:
441
442
  """
442
443
  The name of the application in New Relic APM.
443
444
  """
@@ -445,7 +446,7 @@ class AzureLinkAccount(pulumi.CustomResource):
445
446
 
446
447
  @property
447
448
  @pulumi.getter(name="subscriptionId")
448
- def subscription_id(self) -> pulumi.Output[str]:
449
+ def subscription_id(self) -> pulumi.Output[builtins.str]:
449
450
  """
450
451
  Subscription ID of the Azure cloud account.
451
452
  """
@@ -453,7 +454,7 @@ class AzureLinkAccount(pulumi.CustomResource):
453
454
 
454
455
  @property
455
456
  @pulumi.getter(name="tenantId")
456
- def tenant_id(self) -> pulumi.Output[str]:
457
+ def tenant_id(self) -> pulumi.Output[builtins.str]:
457
458
  """
458
459
  Tenant ID of the Azure cloud account.
459
460
  """