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__ = ['GcpIntegrationsArgs', 'GcpIntegrations']
21
22
  @pulumi.input_type
22
23
  class GcpIntegrationsArgs:
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
  alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
27
28
  app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
28
29
  big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
@@ -51,10 +52,10 @@ class GcpIntegrationsArgs:
51
52
  vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
52
53
  """
53
54
  The set of arguments for constructing a GcpIntegrations resource.
54
- :param pulumi.Input[str] linked_account_id: The ID of the linked GCP account in New Relic.
55
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
55
56
 
56
57
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
57
- :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`.
58
+ :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`.
58
59
  :param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
59
60
  :param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
60
61
  :param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
@@ -140,7 +141,7 @@ class GcpIntegrationsArgs:
140
141
 
141
142
  @property
142
143
  @pulumi.getter(name="linkedAccountId")
143
- def linked_account_id(self) -> pulumi.Input[str]:
144
+ def linked_account_id(self) -> pulumi.Input[builtins.str]:
144
145
  """
145
146
  The ID of the linked GCP account in New Relic.
146
147
 
@@ -149,19 +150,19 @@ class GcpIntegrationsArgs:
149
150
  return pulumi.get(self, "linked_account_id")
150
151
 
151
152
  @linked_account_id.setter
152
- def linked_account_id(self, value: pulumi.Input[str]):
153
+ def linked_account_id(self, value: pulumi.Input[builtins.str]):
153
154
  pulumi.set(self, "linked_account_id", value)
154
155
 
155
156
  @property
156
157
  @pulumi.getter(name="accountId")
157
- def account_id(self) -> Optional[pulumi.Input[str]]:
158
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
158
159
  """
159
160
  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`.
160
161
  """
161
162
  return pulumi.get(self, "account_id")
162
163
 
163
164
  @account_id.setter
164
- def account_id(self, value: Optional[pulumi.Input[str]]):
165
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
165
166
  pulumi.set(self, "account_id", value)
166
167
 
167
168
  @property
@@ -480,7 +481,7 @@ class GcpIntegrationsArgs:
480
481
  @pulumi.input_type
481
482
  class _GcpIntegrationsState:
482
483
  def __init__(__self__, *,
483
- account_id: Optional[pulumi.Input[str]] = None,
484
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
484
485
  alloy_db: Optional[pulumi.Input['GcpIntegrationsAlloyDbArgs']] = None,
485
486
  app_engine: Optional[pulumi.Input['GcpIntegrationsAppEngineArgs']] = None,
486
487
  big_query: Optional[pulumi.Input['GcpIntegrationsBigQueryArgs']] = None,
@@ -496,7 +497,7 @@ class _GcpIntegrationsState:
496
497
  functions: Optional[pulumi.Input['GcpIntegrationsFunctionsArgs']] = None,
497
498
  interconnect: Optional[pulumi.Input['GcpIntegrationsInterconnectArgs']] = None,
498
499
  kubernetes: Optional[pulumi.Input['GcpIntegrationsKubernetesArgs']] = None,
499
- linked_account_id: Optional[pulumi.Input[str]] = None,
500
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
500
501
  load_balancing: Optional[pulumi.Input['GcpIntegrationsLoadBalancingArgs']] = None,
501
502
  mem_cache: Optional[pulumi.Input['GcpIntegrationsMemCacheArgs']] = None,
502
503
  pub_sub: Optional[pulumi.Input['GcpIntegrationsPubSubArgs']] = None,
@@ -510,7 +511,7 @@ class _GcpIntegrationsState:
510
511
  vpc_access: Optional[pulumi.Input['GcpIntegrationsVpcAccessArgs']] = None):
511
512
  """
512
513
  Input properties used for looking up and filtering GcpIntegrations resources.
513
- :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`.
514
+ :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`.
514
515
  :param pulumi.Input['GcpIntegrationsAlloyDbArgs'] alloy_db: Alloy DB integration. See Integration blocks below for details.
515
516
  :param pulumi.Input['GcpIntegrationsAppEngineArgs'] app_engine: App Engine integration. See Integration blocks below for details.
516
517
  :param pulumi.Input['GcpIntegrationsBigQueryArgs'] big_query: Biq Query integration. See Integration blocks below for details.
@@ -526,7 +527,7 @@ class _GcpIntegrationsState:
526
527
  :param pulumi.Input['GcpIntegrationsFunctionsArgs'] functions: Functions integration. See Integration blocks below for details.
527
528
  :param pulumi.Input['GcpIntegrationsInterconnectArgs'] interconnect: Interconnect integration. See Integration blocks below for details.
528
529
  :param pulumi.Input['GcpIntegrationsKubernetesArgs'] kubernetes: Kubernetes integration. See Integration blocks below for details.
529
- :param pulumi.Input[str] linked_account_id: The ID of the linked GCP account in New Relic.
530
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
530
531
 
531
532
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
532
533
  :param pulumi.Input['GcpIntegrationsLoadBalancingArgs'] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -600,14 +601,14 @@ class _GcpIntegrationsState:
600
601
 
601
602
  @property
602
603
  @pulumi.getter(name="accountId")
603
- def account_id(self) -> Optional[pulumi.Input[str]]:
604
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
604
605
  """
605
606
  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`.
606
607
  """
607
608
  return pulumi.get(self, "account_id")
608
609
 
609
610
  @account_id.setter
610
- def account_id(self, value: Optional[pulumi.Input[str]]):
611
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
611
612
  pulumi.set(self, "account_id", value)
612
613
 
613
614
  @property
@@ -792,7 +793,7 @@ class _GcpIntegrationsState:
792
793
 
793
794
  @property
794
795
  @pulumi.getter(name="linkedAccountId")
795
- def linked_account_id(self) -> Optional[pulumi.Input[str]]:
796
+ def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
796
797
  """
797
798
  The ID of the linked GCP account in New Relic.
798
799
 
@@ -801,7 +802,7 @@ class _GcpIntegrationsState:
801
802
  return pulumi.get(self, "linked_account_id")
802
803
 
803
804
  @linked_account_id.setter
804
- def linked_account_id(self, value: Optional[pulumi.Input[str]]):
805
+ def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
805
806
  pulumi.set(self, "linked_account_id", value)
806
807
 
807
808
  @property
@@ -942,7 +943,7 @@ class GcpIntegrations(pulumi.CustomResource):
942
943
  def __init__(__self__,
943
944
  resource_name: str,
944
945
  opts: Optional[pulumi.ResourceOptions] = None,
945
- account_id: Optional[pulumi.Input[str]] = None,
946
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
946
947
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
947
948
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
948
949
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -958,7 +959,7 @@ class GcpIntegrations(pulumi.CustomResource):
958
959
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
959
960
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
960
961
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
961
- linked_account_id: Optional[pulumi.Input[str]] = None,
962
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
962
963
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
963
964
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
964
965
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1086,7 +1087,7 @@ class GcpIntegrations(pulumi.CustomResource):
1086
1087
 
1087
1088
  :param str resource_name: The name of the resource.
1088
1089
  :param pulumi.ResourceOptions opts: Options for the resource.
1089
- :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`.
1090
+ :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`.
1090
1091
  :param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
1091
1092
  :param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
1092
1093
  :param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
@@ -1102,7 +1103,7 @@ class GcpIntegrations(pulumi.CustomResource):
1102
1103
  :param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
1103
1104
  :param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
1104
1105
  :param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
1105
- :param pulumi.Input[str] linked_account_id: The ID of the linked GCP account in New Relic.
1106
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1106
1107
 
1107
1108
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1108
1109
  :param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -1251,7 +1252,7 @@ class GcpIntegrations(pulumi.CustomResource):
1251
1252
  def _internal_init(__self__,
1252
1253
  resource_name: str,
1253
1254
  opts: Optional[pulumi.ResourceOptions] = None,
1254
- account_id: Optional[pulumi.Input[str]] = None,
1255
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1255
1256
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
1256
1257
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
1257
1258
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -1267,7 +1268,7 @@ class GcpIntegrations(pulumi.CustomResource):
1267
1268
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
1268
1269
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
1269
1270
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
1270
- linked_account_id: Optional[pulumi.Input[str]] = None,
1271
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1271
1272
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
1272
1273
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
1273
1274
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1328,7 +1329,7 @@ class GcpIntegrations(pulumi.CustomResource):
1328
1329
  def get(resource_name: str,
1329
1330
  id: pulumi.Input[str],
1330
1331
  opts: Optional[pulumi.ResourceOptions] = None,
1331
- account_id: Optional[pulumi.Input[str]] = None,
1332
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1332
1333
  alloy_db: Optional[pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']]] = None,
1333
1334
  app_engine: Optional[pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']]] = None,
1334
1335
  big_query: Optional[pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']]] = None,
@@ -1344,7 +1345,7 @@ class GcpIntegrations(pulumi.CustomResource):
1344
1345
  functions: Optional[pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']]] = None,
1345
1346
  interconnect: Optional[pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']]] = None,
1346
1347
  kubernetes: Optional[pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']]] = None,
1347
- linked_account_id: Optional[pulumi.Input[str]] = None,
1348
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1348
1349
  load_balancing: Optional[pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']]] = None,
1349
1350
  mem_cache: Optional[pulumi.Input[Union['GcpIntegrationsMemCacheArgs', 'GcpIntegrationsMemCacheArgsDict']]] = None,
1350
1351
  pub_sub: Optional[pulumi.Input[Union['GcpIntegrationsPubSubArgs', 'GcpIntegrationsPubSubArgsDict']]] = None,
@@ -1363,7 +1364,7 @@ class GcpIntegrations(pulumi.CustomResource):
1363
1364
  :param str resource_name: The unique name of the resulting resource.
1364
1365
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1365
1366
  :param pulumi.ResourceOptions opts: Options for the resource.
1366
- :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`.
1367
+ :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`.
1367
1368
  :param pulumi.Input[Union['GcpIntegrationsAlloyDbArgs', 'GcpIntegrationsAlloyDbArgsDict']] alloy_db: Alloy DB integration. See Integration blocks below for details.
1368
1369
  :param pulumi.Input[Union['GcpIntegrationsAppEngineArgs', 'GcpIntegrationsAppEngineArgsDict']] app_engine: App Engine integration. See Integration blocks below for details.
1369
1370
  :param pulumi.Input[Union['GcpIntegrationsBigQueryArgs', 'GcpIntegrationsBigQueryArgsDict']] big_query: Biq Query integration. See Integration blocks below for details.
@@ -1379,7 +1380,7 @@ class GcpIntegrations(pulumi.CustomResource):
1379
1380
  :param pulumi.Input[Union['GcpIntegrationsFunctionsArgs', 'GcpIntegrationsFunctionsArgsDict']] functions: Functions integration. See Integration blocks below for details.
1380
1381
  :param pulumi.Input[Union['GcpIntegrationsInterconnectArgs', 'GcpIntegrationsInterconnectArgsDict']] interconnect: Interconnect integration. See Integration blocks below for details.
1381
1382
  :param pulumi.Input[Union['GcpIntegrationsKubernetesArgs', 'GcpIntegrationsKubernetesArgsDict']] kubernetes: Kubernetes integration. See Integration blocks below for details.
1382
- :param pulumi.Input[str] linked_account_id: The ID of the linked GCP account in New Relic.
1383
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked GCP account in New Relic.
1383
1384
 
1384
1385
  The following arguments/integration blocks are intended to be used with a minimum `metrics_polling_interval` of 300 seconds.
1385
1386
  :param pulumi.Input[Union['GcpIntegrationsLoadBalancingArgs', 'GcpIntegrationsLoadBalancingArgsDict']] load_balancing: Load Balancing integration. See Integration blocks below for details.
@@ -1430,7 +1431,7 @@ class GcpIntegrations(pulumi.CustomResource):
1430
1431
 
1431
1432
  @property
1432
1433
  @pulumi.getter(name="accountId")
1433
- def account_id(self) -> pulumi.Output[str]:
1434
+ def account_id(self) -> pulumi.Output[builtins.str]:
1434
1435
  """
1435
1436
  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`.
1436
1437
  """
@@ -1558,7 +1559,7 @@ class GcpIntegrations(pulumi.CustomResource):
1558
1559
 
1559
1560
  @property
1560
1561
  @pulumi.getter(name="linkedAccountId")
1561
- def linked_account_id(self) -> pulumi.Output[str]:
1562
+ def linked_account_id(self) -> pulumi.Output[builtins.str]:
1562
1563
  """
1563
1564
  The ID of the linked GCP account in New Relic.
1564
1565
 
@@ -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,14 +20,14 @@ __all__ = ['GcpLinkAccountArgs', 'GcpLinkAccount']
19
20
  @pulumi.input_type
20
21
  class GcpLinkAccountArgs:
21
22
  def __init__(__self__, *,
22
- project_id: pulumi.Input[str],
23
- account_id: Optional[pulumi.Input[str]] = None,
24
- name: Optional[pulumi.Input[str]] = None):
23
+ project_id: pulumi.Input[builtins.str],
24
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
25
+ name: Optional[pulumi.Input[builtins.str]] = None):
25
26
  """
26
27
  The set of arguments for constructing a GcpLinkAccount resource.
27
- :param pulumi.Input[str] project_id: Project ID of the GCP account.
28
- :param pulumi.Input[str] account_id: Account ID of the New Relic account.
29
- :param pulumi.Input[str] name: name of the linked account
28
+ :param pulumi.Input[builtins.str] project_id: Project ID of the GCP account.
29
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic account.
30
+ :param pulumi.Input[builtins.str] name: name of the linked account
30
31
  """
31
32
  pulumi.set(__self__, "project_id", project_id)
32
33
  if account_id is not None:
@@ -36,52 +37,52 @@ class GcpLinkAccountArgs:
36
37
 
37
38
  @property
38
39
  @pulumi.getter(name="projectId")
39
- def project_id(self) -> pulumi.Input[str]:
40
+ def project_id(self) -> pulumi.Input[builtins.str]:
40
41
  """
41
42
  Project ID of the GCP account.
42
43
  """
43
44
  return pulumi.get(self, "project_id")
44
45
 
45
46
  @project_id.setter
46
- def project_id(self, value: pulumi.Input[str]):
47
+ def project_id(self, value: pulumi.Input[builtins.str]):
47
48
  pulumi.set(self, "project_id", value)
48
49
 
49
50
  @property
50
51
  @pulumi.getter(name="accountId")
51
- def account_id(self) -> Optional[pulumi.Input[str]]:
52
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
52
53
  """
53
54
  Account ID of the New Relic account.
54
55
  """
55
56
  return pulumi.get(self, "account_id")
56
57
 
57
58
  @account_id.setter
58
- def account_id(self, value: Optional[pulumi.Input[str]]):
59
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
59
60
  pulumi.set(self, "account_id", value)
60
61
 
61
62
  @property
62
63
  @pulumi.getter
63
- def name(self) -> Optional[pulumi.Input[str]]:
64
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
64
65
  """
65
66
  name of the linked account
66
67
  """
67
68
  return pulumi.get(self, "name")
68
69
 
69
70
  @name.setter
70
- def name(self, value: Optional[pulumi.Input[str]]):
71
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
71
72
  pulumi.set(self, "name", value)
72
73
 
73
74
 
74
75
  @pulumi.input_type
75
76
  class _GcpLinkAccountState:
76
77
  def __init__(__self__, *,
77
- account_id: Optional[pulumi.Input[str]] = None,
78
- name: Optional[pulumi.Input[str]] = None,
79
- project_id: Optional[pulumi.Input[str]] = None):
78
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
79
+ name: Optional[pulumi.Input[builtins.str]] = None,
80
+ project_id: Optional[pulumi.Input[builtins.str]] = None):
80
81
  """
81
82
  Input properties used for looking up and filtering GcpLinkAccount resources.
82
- :param pulumi.Input[str] account_id: Account ID of the New Relic account.
83
- :param pulumi.Input[str] name: name of the linked account
84
- :param pulumi.Input[str] project_id: Project ID of the GCP account.
83
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic account.
84
+ :param pulumi.Input[builtins.str] name: name of the linked account
85
+ :param pulumi.Input[builtins.str] project_id: Project ID of the GCP account.
85
86
  """
86
87
  if account_id is not None:
87
88
  pulumi.set(__self__, "account_id", account_id)
@@ -92,38 +93,38 @@ class _GcpLinkAccountState:
92
93
 
93
94
  @property
94
95
  @pulumi.getter(name="accountId")
95
- def account_id(self) -> Optional[pulumi.Input[str]]:
96
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
96
97
  """
97
98
  Account ID of the New Relic account.
98
99
  """
99
100
  return pulumi.get(self, "account_id")
100
101
 
101
102
  @account_id.setter
102
- def account_id(self, value: Optional[pulumi.Input[str]]):
103
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
103
104
  pulumi.set(self, "account_id", value)
104
105
 
105
106
  @property
106
107
  @pulumi.getter
107
- def name(self) -> Optional[pulumi.Input[str]]:
108
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
108
109
  """
109
110
  name of the linked account
110
111
  """
111
112
  return pulumi.get(self, "name")
112
113
 
113
114
  @name.setter
114
- def name(self, value: Optional[pulumi.Input[str]]):
115
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
115
116
  pulumi.set(self, "name", value)
116
117
 
117
118
  @property
118
119
  @pulumi.getter(name="projectId")
119
- def project_id(self) -> Optional[pulumi.Input[str]]:
120
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
120
121
  """
121
122
  Project ID of the GCP account.
122
123
  """
123
124
  return pulumi.get(self, "project_id")
124
125
 
125
126
  @project_id.setter
126
- def project_id(self, value: Optional[pulumi.Input[str]]):
127
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
127
128
  pulumi.set(self, "project_id", value)
128
129
 
129
130
 
@@ -132,9 +133,9 @@ class GcpLinkAccount(pulumi.CustomResource):
132
133
  def __init__(__self__,
133
134
  resource_name: str,
134
135
  opts: Optional[pulumi.ResourceOptions] = None,
135
- account_id: Optional[pulumi.Input[str]] = None,
136
- name: Optional[pulumi.Input[str]] = None,
137
- project_id: Optional[pulumi.Input[str]] = None,
136
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
137
+ name: Optional[pulumi.Input[builtins.str]] = None,
138
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
138
139
  __props__=None):
139
140
  """
140
141
  Use this resource to link a GCP account to New Relic.
@@ -172,14 +173,14 @@ class GcpLinkAccount(pulumi.CustomResource):
172
173
  bash
173
174
 
174
175
  ```sh
175
- $ pulumi import newrelic:cloud/gcpLinkAccount:GcpLinkAccount newrelic_cloud_gcp_link_account.foo <id>
176
+ $ pulumi import newrelic:cloud/gcpLinkAccount:GcpLinkAccount newrelic_cloud_gcp_link_account.foo <id>
176
177
  ```
177
178
 
178
179
  :param str resource_name: The name of the resource.
179
180
  :param pulumi.ResourceOptions opts: Options for the resource.
180
- :param pulumi.Input[str] account_id: Account ID of the New Relic account.
181
- :param pulumi.Input[str] name: name of the linked account
182
- :param pulumi.Input[str] project_id: Project ID of the GCP account.
181
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic account.
182
+ :param pulumi.Input[builtins.str] name: name of the linked account
183
+ :param pulumi.Input[builtins.str] project_id: Project ID of the GCP account.
183
184
  """
184
185
  ...
185
186
  @overload
@@ -223,7 +224,7 @@ class GcpLinkAccount(pulumi.CustomResource):
223
224
  bash
224
225
 
225
226
  ```sh
226
- $ pulumi import newrelic:cloud/gcpLinkAccount:GcpLinkAccount newrelic_cloud_gcp_link_account.foo <id>
227
+ $ pulumi import newrelic:cloud/gcpLinkAccount:GcpLinkAccount newrelic_cloud_gcp_link_account.foo <id>
227
228
  ```
228
229
 
229
230
  :param str resource_name: The name of the resource.
@@ -241,9 +242,9 @@ class GcpLinkAccount(pulumi.CustomResource):
241
242
  def _internal_init(__self__,
242
243
  resource_name: str,
243
244
  opts: Optional[pulumi.ResourceOptions] = None,
244
- account_id: Optional[pulumi.Input[str]] = None,
245
- name: Optional[pulumi.Input[str]] = None,
246
- project_id: Optional[pulumi.Input[str]] = None,
245
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
246
+ name: Optional[pulumi.Input[builtins.str]] = None,
247
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
247
248
  __props__=None):
248
249
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
249
250
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -268,9 +269,9 @@ class GcpLinkAccount(pulumi.CustomResource):
268
269
  def get(resource_name: str,
269
270
  id: pulumi.Input[str],
270
271
  opts: Optional[pulumi.ResourceOptions] = None,
271
- account_id: Optional[pulumi.Input[str]] = None,
272
- name: Optional[pulumi.Input[str]] = None,
273
- project_id: Optional[pulumi.Input[str]] = None) -> 'GcpLinkAccount':
272
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
273
+ name: Optional[pulumi.Input[builtins.str]] = None,
274
+ project_id: Optional[pulumi.Input[builtins.str]] = None) -> 'GcpLinkAccount':
274
275
  """
275
276
  Get an existing GcpLinkAccount resource's state with the given name, id, and optional extra
276
277
  properties used to qualify the lookup.
@@ -278,9 +279,9 @@ class GcpLinkAccount(pulumi.CustomResource):
278
279
  :param str resource_name: The unique name of the resulting resource.
279
280
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
280
281
  :param pulumi.ResourceOptions opts: Options for the resource.
281
- :param pulumi.Input[str] account_id: Account ID of the New Relic account.
282
- :param pulumi.Input[str] name: name of the linked account
283
- :param pulumi.Input[str] project_id: Project ID of the GCP account.
282
+ :param pulumi.Input[builtins.str] account_id: Account ID of the New Relic account.
283
+ :param pulumi.Input[builtins.str] name: name of the linked account
284
+ :param pulumi.Input[builtins.str] project_id: Project ID of the GCP account.
284
285
  """
285
286
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
286
287
 
@@ -293,7 +294,7 @@ class GcpLinkAccount(pulumi.CustomResource):
293
294
 
294
295
  @property
295
296
  @pulumi.getter(name="accountId")
296
- def account_id(self) -> pulumi.Output[str]:
297
+ def account_id(self) -> pulumi.Output[builtins.str]:
297
298
  """
298
299
  Account ID of the New Relic account.
299
300
  """
@@ -301,7 +302,7 @@ class GcpLinkAccount(pulumi.CustomResource):
301
302
 
302
303
  @property
303
304
  @pulumi.getter
304
- def name(self) -> pulumi.Output[str]:
305
+ def name(self) -> pulumi.Output[builtins.str]:
305
306
  """
306
307
  name of the linked account
307
308
  """
@@ -309,7 +310,7 @@ class GcpLinkAccount(pulumi.CustomResource):
309
310
 
310
311
  @property
311
312
  @pulumi.getter(name="projectId")
312
- def project_id(self) -> pulumi.Output[str]:
313
+ def project_id(self) -> pulumi.Output[builtins.str]:
313
314
  """
314
315
  Project ID of the GCP account.
315
316
  """