pulumi-newrelic 5.45.0a1743574084__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.0a1743574084.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.0a1743574084.dist-info/RECORD +0 -90
  88. {pulumi_newrelic-5.45.0a1743574084.dist-info → pulumi_newrelic-5.45.0a1744183332.dist-info}/WHEEL +0 -0
  89. {pulumi_newrelic-5.45.0a1743574084.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__ = ['AwsIntegrationsArgs', 'AwsIntegrations']
21
22
  @pulumi.input_type
22
23
  class AwsIntegrationsArgs:
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
  alb: Optional[pulumi.Input['AwsIntegrationsAlbArgs']] = None,
27
28
  api_gateway: Optional[pulumi.Input['AwsIntegrationsApiGatewayArgs']] = None,
28
29
  auto_scaling: Optional[pulumi.Input['AwsIntegrationsAutoScalingArgs']] = None,
@@ -77,8 +78,8 @@ class AwsIntegrationsArgs:
77
78
  x_ray: Optional[pulumi.Input['AwsIntegrationsXRayArgs']] = None):
78
79
  """
79
80
  The set of arguments for constructing a AwsIntegrations resource.
80
- :param pulumi.Input[str] linked_account_id: The ID of the linked AWS account in New Relic.
81
- :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`.
81
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked AWS account in New Relic.
82
+ :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`.
82
83
  :param pulumi.Input['AwsIntegrationsAlbArgs'] alb: ALB integration
83
84
  :param pulumi.Input['AwsIntegrationsApiGatewayArgs'] api_gateway: API Gateway integration
84
85
  :param pulumi.Input['AwsIntegrationsAutoScalingArgs'] auto_scaling: AutoScaling integration
@@ -242,26 +243,26 @@ class AwsIntegrationsArgs:
242
243
 
243
244
  @property
244
245
  @pulumi.getter(name="linkedAccountId")
245
- def linked_account_id(self) -> pulumi.Input[str]:
246
+ def linked_account_id(self) -> pulumi.Input[builtins.str]:
246
247
  """
247
248
  The ID of the linked AWS account in New Relic.
248
249
  """
249
250
  return pulumi.get(self, "linked_account_id")
250
251
 
251
252
  @linked_account_id.setter
252
- def linked_account_id(self, value: pulumi.Input[str]):
253
+ def linked_account_id(self, value: pulumi.Input[builtins.str]):
253
254
  pulumi.set(self, "linked_account_id", value)
254
255
 
255
256
  @property
256
257
  @pulumi.getter(name="accountId")
257
- def account_id(self) -> Optional[pulumi.Input[str]]:
258
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
258
259
  """
259
260
  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`.
260
261
  """
261
262
  return pulumi.get(self, "account_id")
262
263
 
263
264
  @account_id.setter
264
- def account_id(self, value: Optional[pulumi.Input[str]]):
265
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
265
266
  pulumi.set(self, "account_id", value)
266
267
 
267
268
  @property
@@ -892,7 +893,7 @@ class AwsIntegrationsArgs:
892
893
  @pulumi.input_type
893
894
  class _AwsIntegrationsState:
894
895
  def __init__(__self__, *,
895
- account_id: Optional[pulumi.Input[str]] = None,
896
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
896
897
  alb: Optional[pulumi.Input['AwsIntegrationsAlbArgs']] = None,
897
898
  api_gateway: Optional[pulumi.Input['AwsIntegrationsApiGatewayArgs']] = None,
898
899
  auto_scaling: Optional[pulumi.Input['AwsIntegrationsAutoScalingArgs']] = None,
@@ -935,7 +936,7 @@ class _AwsIntegrationsState:
935
936
  kinesis: Optional[pulumi.Input['AwsIntegrationsKinesisArgs']] = None,
936
937
  kinesis_firehose: Optional[pulumi.Input['AwsIntegrationsKinesisFirehoseArgs']] = None,
937
938
  lambda_: Optional[pulumi.Input['AwsIntegrationsLambdaArgs']] = None,
938
- linked_account_id: Optional[pulumi.Input[str]] = None,
939
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
939
940
  rds: Optional[pulumi.Input['AwsIntegrationsRdsArgs']] = None,
940
941
  redshift: Optional[pulumi.Input['AwsIntegrationsRedshiftArgs']] = None,
941
942
  route53: Optional[pulumi.Input['AwsIntegrationsRoute53Args']] = None,
@@ -948,7 +949,7 @@ class _AwsIntegrationsState:
948
949
  x_ray: Optional[pulumi.Input['AwsIntegrationsXRayArgs']] = None):
949
950
  """
950
951
  Input properties used for looking up and filtering AwsIntegrations resources.
951
- :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`.
952
+ :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`.
952
953
  :param pulumi.Input['AwsIntegrationsAlbArgs'] alb: ALB integration
953
954
  :param pulumi.Input['AwsIntegrationsApiGatewayArgs'] api_gateway: API Gateway integration
954
955
  :param pulumi.Input['AwsIntegrationsAutoScalingArgs'] auto_scaling: AutoScaling integration
@@ -991,7 +992,7 @@ class _AwsIntegrationsState:
991
992
  :param pulumi.Input['AwsIntegrationsKinesisArgs'] kinesis: Kinesis integration
992
993
  :param pulumi.Input['AwsIntegrationsKinesisFirehoseArgs'] kinesis_firehose: Kinesis Firehose integration
993
994
  :param pulumi.Input['AwsIntegrationsLambdaArgs'] lambda_: Lambda integration
994
- :param pulumi.Input[str] linked_account_id: The ID of the linked AWS account in New Relic.
995
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked AWS account in New Relic.
995
996
  :param pulumi.Input['AwsIntegrationsRdsArgs'] rds: Rds integration
996
997
  :param pulumi.Input['AwsIntegrationsRedshiftArgs'] redshift: Redshift integration
997
998
  :param pulumi.Input['AwsIntegrationsRoute53Args'] route53: Route53 integration
@@ -1114,14 +1115,14 @@ class _AwsIntegrationsState:
1114
1115
 
1115
1116
  @property
1116
1117
  @pulumi.getter(name="accountId")
1117
- def account_id(self) -> Optional[pulumi.Input[str]]:
1118
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
1118
1119
  """
1119
1120
  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`.
1120
1121
  """
1121
1122
  return pulumi.get(self, "account_id")
1122
1123
 
1123
1124
  @account_id.setter
1124
- def account_id(self, value: Optional[pulumi.Input[str]]):
1125
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
1125
1126
  pulumi.set(self, "account_id", value)
1126
1127
 
1127
1128
  @property
@@ -1630,14 +1631,14 @@ class _AwsIntegrationsState:
1630
1631
 
1631
1632
  @property
1632
1633
  @pulumi.getter(name="linkedAccountId")
1633
- def linked_account_id(self) -> Optional[pulumi.Input[str]]:
1634
+ def linked_account_id(self) -> Optional[pulumi.Input[builtins.str]]:
1634
1635
  """
1635
1636
  The ID of the linked AWS account in New Relic.
1636
1637
  """
1637
1638
  return pulumi.get(self, "linked_account_id")
1638
1639
 
1639
1640
  @linked_account_id.setter
1640
- def linked_account_id(self, value: Optional[pulumi.Input[str]]):
1641
+ def linked_account_id(self, value: Optional[pulumi.Input[builtins.str]]):
1641
1642
  pulumi.set(self, "linked_account_id", value)
1642
1643
 
1643
1644
  @property
@@ -1766,7 +1767,7 @@ class AwsIntegrations(pulumi.CustomResource):
1766
1767
  def __init__(__self__,
1767
1768
  resource_name: str,
1768
1769
  opts: Optional[pulumi.ResourceOptions] = None,
1769
- account_id: Optional[pulumi.Input[str]] = None,
1770
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1770
1771
  alb: Optional[pulumi.Input[Union['AwsIntegrationsAlbArgs', 'AwsIntegrationsAlbArgsDict']]] = None,
1771
1772
  api_gateway: Optional[pulumi.Input[Union['AwsIntegrationsApiGatewayArgs', 'AwsIntegrationsApiGatewayArgsDict']]] = None,
1772
1773
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
@@ -1809,7 +1810,7 @@ class AwsIntegrations(pulumi.CustomResource):
1809
1810
  kinesis: Optional[pulumi.Input[Union['AwsIntegrationsKinesisArgs', 'AwsIntegrationsKinesisArgsDict']]] = None,
1810
1811
  kinesis_firehose: Optional[pulumi.Input[Union['AwsIntegrationsKinesisFirehoseArgs', 'AwsIntegrationsKinesisFirehoseArgsDict']]] = None,
1811
1812
  lambda_: Optional[pulumi.Input[Union['AwsIntegrationsLambdaArgs', 'AwsIntegrationsLambdaArgsDict']]] = None,
1812
- linked_account_id: Optional[pulumi.Input[str]] = None,
1813
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1813
1814
  rds: Optional[pulumi.Input[Union['AwsIntegrationsRdsArgs', 'AwsIntegrationsRdsArgsDict']]] = None,
1814
1815
  redshift: Optional[pulumi.Input[Union['AwsIntegrationsRedshiftArgs', 'AwsIntegrationsRedshiftArgsDict']]] = None,
1815
1816
  route53: Optional[pulumi.Input[Union['AwsIntegrationsRoute53Args', 'AwsIntegrationsRoute53ArgsDict']]] = None,
@@ -1834,7 +1835,7 @@ class AwsIntegrations(pulumi.CustomResource):
1834
1835
 
1835
1836
  :param str resource_name: The name of the resource.
1836
1837
  :param pulumi.ResourceOptions opts: Options for the resource.
1837
- :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`.
1838
+ :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`.
1838
1839
  :param pulumi.Input[Union['AwsIntegrationsAlbArgs', 'AwsIntegrationsAlbArgsDict']] alb: ALB integration
1839
1840
  :param pulumi.Input[Union['AwsIntegrationsApiGatewayArgs', 'AwsIntegrationsApiGatewayArgsDict']] api_gateway: API Gateway integration
1840
1841
  :param pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']] auto_scaling: AutoScaling integration
@@ -1877,7 +1878,7 @@ class AwsIntegrations(pulumi.CustomResource):
1877
1878
  :param pulumi.Input[Union['AwsIntegrationsKinesisArgs', 'AwsIntegrationsKinesisArgsDict']] kinesis: Kinesis integration
1878
1879
  :param pulumi.Input[Union['AwsIntegrationsKinesisFirehoseArgs', 'AwsIntegrationsKinesisFirehoseArgsDict']] kinesis_firehose: Kinesis Firehose integration
1879
1880
  :param pulumi.Input[Union['AwsIntegrationsLambdaArgs', 'AwsIntegrationsLambdaArgsDict']] lambda_: Lambda integration
1880
- :param pulumi.Input[str] linked_account_id: The ID of the linked AWS account in New Relic.
1881
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked AWS account in New Relic.
1881
1882
  :param pulumi.Input[Union['AwsIntegrationsRdsArgs', 'AwsIntegrationsRdsArgsDict']] rds: Rds integration
1882
1883
  :param pulumi.Input[Union['AwsIntegrationsRedshiftArgs', 'AwsIntegrationsRedshiftArgsDict']] redshift: Redshift integration
1883
1884
  :param pulumi.Input[Union['AwsIntegrationsRoute53Args', 'AwsIntegrationsRoute53ArgsDict']] route53: Route53 integration
@@ -1921,7 +1922,7 @@ class AwsIntegrations(pulumi.CustomResource):
1921
1922
  def _internal_init(__self__,
1922
1923
  resource_name: str,
1923
1924
  opts: Optional[pulumi.ResourceOptions] = None,
1924
- account_id: Optional[pulumi.Input[str]] = None,
1925
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
1925
1926
  alb: Optional[pulumi.Input[Union['AwsIntegrationsAlbArgs', 'AwsIntegrationsAlbArgsDict']]] = None,
1926
1927
  api_gateway: Optional[pulumi.Input[Union['AwsIntegrationsApiGatewayArgs', 'AwsIntegrationsApiGatewayArgsDict']]] = None,
1927
1928
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
@@ -1964,7 +1965,7 @@ class AwsIntegrations(pulumi.CustomResource):
1964
1965
  kinesis: Optional[pulumi.Input[Union['AwsIntegrationsKinesisArgs', 'AwsIntegrationsKinesisArgsDict']]] = None,
1965
1966
  kinesis_firehose: Optional[pulumi.Input[Union['AwsIntegrationsKinesisFirehoseArgs', 'AwsIntegrationsKinesisFirehoseArgsDict']]] = None,
1966
1967
  lambda_: Optional[pulumi.Input[Union['AwsIntegrationsLambdaArgs', 'AwsIntegrationsLambdaArgsDict']]] = None,
1967
- linked_account_id: Optional[pulumi.Input[str]] = None,
1968
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
1968
1969
  rds: Optional[pulumi.Input[Union['AwsIntegrationsRdsArgs', 'AwsIntegrationsRdsArgsDict']]] = None,
1969
1970
  redshift: Optional[pulumi.Input[Union['AwsIntegrationsRedshiftArgs', 'AwsIntegrationsRedshiftArgsDict']]] = None,
1970
1971
  route53: Optional[pulumi.Input[Union['AwsIntegrationsRoute53Args', 'AwsIntegrationsRoute53ArgsDict']]] = None,
@@ -2050,7 +2051,7 @@ class AwsIntegrations(pulumi.CustomResource):
2050
2051
  def get(resource_name: str,
2051
2052
  id: pulumi.Input[str],
2052
2053
  opts: Optional[pulumi.ResourceOptions] = None,
2053
- account_id: Optional[pulumi.Input[str]] = None,
2054
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
2054
2055
  alb: Optional[pulumi.Input[Union['AwsIntegrationsAlbArgs', 'AwsIntegrationsAlbArgsDict']]] = None,
2055
2056
  api_gateway: Optional[pulumi.Input[Union['AwsIntegrationsApiGatewayArgs', 'AwsIntegrationsApiGatewayArgsDict']]] = None,
2056
2057
  auto_scaling: Optional[pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']]] = None,
@@ -2093,7 +2094,7 @@ class AwsIntegrations(pulumi.CustomResource):
2093
2094
  kinesis: Optional[pulumi.Input[Union['AwsIntegrationsKinesisArgs', 'AwsIntegrationsKinesisArgsDict']]] = None,
2094
2095
  kinesis_firehose: Optional[pulumi.Input[Union['AwsIntegrationsKinesisFirehoseArgs', 'AwsIntegrationsKinesisFirehoseArgsDict']]] = None,
2095
2096
  lambda_: Optional[pulumi.Input[Union['AwsIntegrationsLambdaArgs', 'AwsIntegrationsLambdaArgsDict']]] = None,
2096
- linked_account_id: Optional[pulumi.Input[str]] = None,
2097
+ linked_account_id: Optional[pulumi.Input[builtins.str]] = None,
2097
2098
  rds: Optional[pulumi.Input[Union['AwsIntegrationsRdsArgs', 'AwsIntegrationsRdsArgsDict']]] = None,
2098
2099
  redshift: Optional[pulumi.Input[Union['AwsIntegrationsRedshiftArgs', 'AwsIntegrationsRedshiftArgsDict']]] = None,
2099
2100
  route53: Optional[pulumi.Input[Union['AwsIntegrationsRoute53Args', 'AwsIntegrationsRoute53ArgsDict']]] = None,
@@ -2111,7 +2112,7 @@ class AwsIntegrations(pulumi.CustomResource):
2111
2112
  :param str resource_name: The unique name of the resulting resource.
2112
2113
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
2113
2114
  :param pulumi.ResourceOptions opts: Options for the resource.
2114
- :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`.
2115
+ :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`.
2115
2116
  :param pulumi.Input[Union['AwsIntegrationsAlbArgs', 'AwsIntegrationsAlbArgsDict']] alb: ALB integration
2116
2117
  :param pulumi.Input[Union['AwsIntegrationsApiGatewayArgs', 'AwsIntegrationsApiGatewayArgsDict']] api_gateway: API Gateway integration
2117
2118
  :param pulumi.Input[Union['AwsIntegrationsAutoScalingArgs', 'AwsIntegrationsAutoScalingArgsDict']] auto_scaling: AutoScaling integration
@@ -2154,7 +2155,7 @@ class AwsIntegrations(pulumi.CustomResource):
2154
2155
  :param pulumi.Input[Union['AwsIntegrationsKinesisArgs', 'AwsIntegrationsKinesisArgsDict']] kinesis: Kinesis integration
2155
2156
  :param pulumi.Input[Union['AwsIntegrationsKinesisFirehoseArgs', 'AwsIntegrationsKinesisFirehoseArgsDict']] kinesis_firehose: Kinesis Firehose integration
2156
2157
  :param pulumi.Input[Union['AwsIntegrationsLambdaArgs', 'AwsIntegrationsLambdaArgsDict']] lambda_: Lambda integration
2157
- :param pulumi.Input[str] linked_account_id: The ID of the linked AWS account in New Relic.
2158
+ :param pulumi.Input[builtins.str] linked_account_id: The ID of the linked AWS account in New Relic.
2158
2159
  :param pulumi.Input[Union['AwsIntegrationsRdsArgs', 'AwsIntegrationsRdsArgsDict']] rds: Rds integration
2159
2160
  :param pulumi.Input[Union['AwsIntegrationsRedshiftArgs', 'AwsIntegrationsRedshiftArgsDict']] redshift: Redshift integration
2160
2161
  :param pulumi.Input[Union['AwsIntegrationsRoute53Args', 'AwsIntegrationsRoute53ArgsDict']] route53: Route53 integration
@@ -2228,7 +2229,7 @@ class AwsIntegrations(pulumi.CustomResource):
2228
2229
 
2229
2230
  @property
2230
2231
  @pulumi.getter(name="accountId")
2231
- def account_id(self) -> pulumi.Output[str]:
2232
+ def account_id(self) -> pulumi.Output[builtins.str]:
2232
2233
  """
2233
2234
  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`.
2234
2235
  """
@@ -2572,7 +2573,7 @@ class AwsIntegrations(pulumi.CustomResource):
2572
2573
 
2573
2574
  @property
2574
2575
  @pulumi.getter(name="linkedAccountId")
2575
- def linked_account_id(self) -> pulumi.Output[str]:
2576
+ def linked_account_id(self) -> pulumi.Output[builtins.str]:
2576
2577
  """
2577
2578
  The ID of the linked AWS account in New Relic.
2578
2579
  """
@@ -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,16 +20,16 @@ __all__ = ['AwsLinkAccountArgs', 'AwsLinkAccount']
19
20
  @pulumi.input_type
20
21
  class AwsLinkAccountArgs:
21
22
  def __init__(__self__, *,
22
- arn: pulumi.Input[str],
23
- account_id: Optional[pulumi.Input[str]] = None,
24
- metric_collection_mode: Optional[pulumi.Input[str]] = None,
25
- name: Optional[pulumi.Input[str]] = None):
23
+ arn: pulumi.Input[builtins.str],
24
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
25
+ metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
26
+ name: Optional[pulumi.Input[builtins.str]] = None):
26
27
  """
27
28
  The set of arguments for constructing a AwsLinkAccount resource.
28
- :param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
29
- :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`.
30
- :param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
31
- :param pulumi.Input[str] name: The name of the linked account.
29
+ :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
30
+ :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`.
31
+ :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
32
+ :param pulumi.Input[builtins.str] name: The name of the linked account.
32
33
  """
33
34
  pulumi.set(__self__, "arn", arn)
34
35
  if account_id is not None:
@@ -40,66 +41,66 @@ class AwsLinkAccountArgs:
40
41
 
41
42
  @property
42
43
  @pulumi.getter
43
- def arn(self) -> pulumi.Input[str]:
44
+ def arn(self) -> pulumi.Input[builtins.str]:
44
45
  """
45
46
  The Amazon Resource Name (ARN) of the IAM role.
46
47
  """
47
48
  return pulumi.get(self, "arn")
48
49
 
49
50
  @arn.setter
50
- def arn(self, value: pulumi.Input[str]):
51
+ def arn(self, value: pulumi.Input[builtins.str]):
51
52
  pulumi.set(self, "arn", value)
52
53
 
53
54
  @property
54
55
  @pulumi.getter(name="accountId")
55
- def account_id(self) -> Optional[pulumi.Input[str]]:
56
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
56
57
  """
57
58
  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
  """
59
60
  return pulumi.get(self, "account_id")
60
61
 
61
62
  @account_id.setter
62
- def account_id(self, value: Optional[pulumi.Input[str]]):
63
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
63
64
  pulumi.set(self, "account_id", value)
64
65
 
65
66
  @property
66
67
  @pulumi.getter(name="metricCollectionMode")
67
- def metric_collection_mode(self) -> Optional[pulumi.Input[str]]:
68
+ def metric_collection_mode(self) -> Optional[pulumi.Input[builtins.str]]:
68
69
  """
69
70
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
70
71
  """
71
72
  return pulumi.get(self, "metric_collection_mode")
72
73
 
73
74
  @metric_collection_mode.setter
74
- def metric_collection_mode(self, value: Optional[pulumi.Input[str]]):
75
+ def metric_collection_mode(self, value: Optional[pulumi.Input[builtins.str]]):
75
76
  pulumi.set(self, "metric_collection_mode", value)
76
77
 
77
78
  @property
78
79
  @pulumi.getter
79
- def name(self) -> Optional[pulumi.Input[str]]:
80
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
80
81
  """
81
82
  The name of the linked account.
82
83
  """
83
84
  return pulumi.get(self, "name")
84
85
 
85
86
  @name.setter
86
- def name(self, value: Optional[pulumi.Input[str]]):
87
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
87
88
  pulumi.set(self, "name", value)
88
89
 
89
90
 
90
91
  @pulumi.input_type
91
92
  class _AwsLinkAccountState:
92
93
  def __init__(__self__, *,
93
- account_id: Optional[pulumi.Input[str]] = None,
94
- arn: Optional[pulumi.Input[str]] = None,
95
- metric_collection_mode: Optional[pulumi.Input[str]] = None,
96
- name: Optional[pulumi.Input[str]] = None):
94
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
95
+ arn: Optional[pulumi.Input[builtins.str]] = None,
96
+ metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
97
+ name: Optional[pulumi.Input[builtins.str]] = None):
97
98
  """
98
99
  Input properties used for looking up and filtering AwsLinkAccount resources.
99
- :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`.
100
- :param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
101
- :param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
102
- :param pulumi.Input[str] name: The name of the linked account.
100
+ :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`.
101
+ :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
102
+ :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
103
+ :param pulumi.Input[builtins.str] name: The name of the linked account.
103
104
  """
104
105
  if account_id is not None:
105
106
  pulumi.set(__self__, "account_id", account_id)
@@ -112,50 +113,50 @@ class _AwsLinkAccountState:
112
113
 
113
114
  @property
114
115
  @pulumi.getter(name="accountId")
115
- def account_id(self) -> Optional[pulumi.Input[str]]:
116
+ def account_id(self) -> Optional[pulumi.Input[builtins.str]]:
116
117
  """
117
118
  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`.
118
119
  """
119
120
  return pulumi.get(self, "account_id")
120
121
 
121
122
  @account_id.setter
122
- def account_id(self, value: Optional[pulumi.Input[str]]):
123
+ def account_id(self, value: Optional[pulumi.Input[builtins.str]]):
123
124
  pulumi.set(self, "account_id", value)
124
125
 
125
126
  @property
126
127
  @pulumi.getter
127
- def arn(self) -> Optional[pulumi.Input[str]]:
128
+ def arn(self) -> Optional[pulumi.Input[builtins.str]]:
128
129
  """
129
130
  The Amazon Resource Name (ARN) of the IAM role.
130
131
  """
131
132
  return pulumi.get(self, "arn")
132
133
 
133
134
  @arn.setter
134
- def arn(self, value: Optional[pulumi.Input[str]]):
135
+ def arn(self, value: Optional[pulumi.Input[builtins.str]]):
135
136
  pulumi.set(self, "arn", value)
136
137
 
137
138
  @property
138
139
  @pulumi.getter(name="metricCollectionMode")
139
- def metric_collection_mode(self) -> Optional[pulumi.Input[str]]:
140
+ def metric_collection_mode(self) -> Optional[pulumi.Input[builtins.str]]:
140
141
  """
141
142
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
142
143
  """
143
144
  return pulumi.get(self, "metric_collection_mode")
144
145
 
145
146
  @metric_collection_mode.setter
146
- def metric_collection_mode(self, value: Optional[pulumi.Input[str]]):
147
+ def metric_collection_mode(self, value: Optional[pulumi.Input[builtins.str]]):
147
148
  pulumi.set(self, "metric_collection_mode", value)
148
149
 
149
150
  @property
150
151
  @pulumi.getter
151
- def name(self) -> Optional[pulumi.Input[str]]:
152
+ def name(self) -> Optional[pulumi.Input[builtins.str]]:
152
153
  """
153
154
  The name of the linked account.
154
155
  """
155
156
  return pulumi.get(self, "name")
156
157
 
157
158
  @name.setter
158
- def name(self, value: Optional[pulumi.Input[str]]):
159
+ def name(self, value: Optional[pulumi.Input[builtins.str]]):
159
160
  pulumi.set(self, "name", value)
160
161
 
161
162
 
@@ -164,10 +165,10 @@ class AwsLinkAccount(pulumi.CustomResource):
164
165
  def __init__(__self__,
165
166
  resource_name: str,
166
167
  opts: Optional[pulumi.ResourceOptions] = None,
167
- account_id: Optional[pulumi.Input[str]] = None,
168
- arn: Optional[pulumi.Input[str]] = None,
169
- metric_collection_mode: Optional[pulumi.Input[str]] = None,
170
- name: Optional[pulumi.Input[str]] = None,
168
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
169
+ arn: Optional[pulumi.Input[builtins.str]] = None,
170
+ metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
171
+ name: Optional[pulumi.Input[builtins.str]] = None,
171
172
  __props__=None):
172
173
  """
173
174
  Use this resource to link an AWS account to New Relic.
@@ -206,10 +207,10 @@ class AwsLinkAccount(pulumi.CustomResource):
206
207
 
207
208
  :param str resource_name: The name of the resource.
208
209
  :param pulumi.ResourceOptions opts: Options for the resource.
209
- :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`.
210
- :param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
211
- :param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
212
- :param pulumi.Input[str] name: The name of the linked account.
210
+ :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`.
211
+ :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
212
+ :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
213
+ :param pulumi.Input[builtins.str] name: The name of the linked account.
213
214
  """
214
215
  ...
215
216
  @overload
@@ -267,10 +268,10 @@ class AwsLinkAccount(pulumi.CustomResource):
267
268
  def _internal_init(__self__,
268
269
  resource_name: str,
269
270
  opts: Optional[pulumi.ResourceOptions] = None,
270
- account_id: Optional[pulumi.Input[str]] = None,
271
- arn: Optional[pulumi.Input[str]] = None,
272
- metric_collection_mode: Optional[pulumi.Input[str]] = None,
273
- name: Optional[pulumi.Input[str]] = None,
271
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
272
+ arn: Optional[pulumi.Input[builtins.str]] = None,
273
+ metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
274
+ name: Optional[pulumi.Input[builtins.str]] = None,
274
275
  __props__=None):
275
276
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
276
277
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -296,10 +297,10 @@ class AwsLinkAccount(pulumi.CustomResource):
296
297
  def get(resource_name: str,
297
298
  id: pulumi.Input[str],
298
299
  opts: Optional[pulumi.ResourceOptions] = None,
299
- account_id: Optional[pulumi.Input[str]] = None,
300
- arn: Optional[pulumi.Input[str]] = None,
301
- metric_collection_mode: Optional[pulumi.Input[str]] = None,
302
- name: Optional[pulumi.Input[str]] = None) -> 'AwsLinkAccount':
300
+ account_id: Optional[pulumi.Input[builtins.str]] = None,
301
+ arn: Optional[pulumi.Input[builtins.str]] = None,
302
+ metric_collection_mode: Optional[pulumi.Input[builtins.str]] = None,
303
+ name: Optional[pulumi.Input[builtins.str]] = None) -> 'AwsLinkAccount':
303
304
  """
304
305
  Get an existing AwsLinkAccount resource's state with the given name, id, and optional extra
305
306
  properties used to qualify the lookup.
@@ -307,10 +308,10 @@ class AwsLinkAccount(pulumi.CustomResource):
307
308
  :param str resource_name: The unique name of the resulting resource.
308
309
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
309
310
  :param pulumi.ResourceOptions opts: Options for the resource.
310
- :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`.
311
- :param pulumi.Input[str] arn: The Amazon Resource Name (ARN) of the IAM role.
312
- :param pulumi.Input[str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
313
- :param pulumi.Input[str] name: The name of the linked account.
311
+ :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`.
312
+ :param pulumi.Input[builtins.str] arn: The Amazon Resource Name (ARN) of the IAM role.
313
+ :param pulumi.Input[builtins.str] metric_collection_mode: How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
314
+ :param pulumi.Input[builtins.str] name: The name of the linked account.
314
315
  """
315
316
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
316
317
 
@@ -324,7 +325,7 @@ class AwsLinkAccount(pulumi.CustomResource):
324
325
 
325
326
  @property
326
327
  @pulumi.getter(name="accountId")
327
- def account_id(self) -> pulumi.Output[str]:
328
+ def account_id(self) -> pulumi.Output[builtins.str]:
328
329
  """
329
330
  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`.
330
331
  """
@@ -332,7 +333,7 @@ class AwsLinkAccount(pulumi.CustomResource):
332
333
 
333
334
  @property
334
335
  @pulumi.getter
335
- def arn(self) -> pulumi.Output[str]:
336
+ def arn(self) -> pulumi.Output[builtins.str]:
336
337
  """
337
338
  The Amazon Resource Name (ARN) of the IAM role.
338
339
  """
@@ -340,7 +341,7 @@ class AwsLinkAccount(pulumi.CustomResource):
340
341
 
341
342
  @property
342
343
  @pulumi.getter(name="metricCollectionMode")
343
- def metric_collection_mode(self) -> pulumi.Output[Optional[str]]:
344
+ def metric_collection_mode(self) -> pulumi.Output[Optional[builtins.str]]:
344
345
  """
345
346
  How metrics will be collected. Use `PUSH` for a metric stream or `PULL` to integrate with individual services.
346
347
  """
@@ -348,7 +349,7 @@ class AwsLinkAccount(pulumi.CustomResource):
348
349
 
349
350
  @property
350
351
  @pulumi.getter
351
- def name(self) -> pulumi.Output[str]:
352
+ def name(self) -> pulumi.Output[builtins.str]:
352
353
  """
353
354
  The name of the linked account.
354
355
  """