pulumi-newrelic 5.32.0__py3-none-any.whl → 5.32.0a1725688055__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.
@@ -20,8 +20,6 @@ class StepMonitorArgs:
20
20
  status: pulumi.Input[str],
21
21
  steps: pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]],
22
22
  account_id: Optional[pulumi.Input[str]] = None,
23
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
24
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
25
23
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
26
24
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
27
25
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -36,15 +34,12 @@ class StepMonitorArgs:
36
34
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
37
35
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
38
36
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
39
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
40
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
41
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
42
37
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
43
38
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
44
39
  :param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
45
40
  :param pulumi.Input[str] name: The name for the monitor.
46
41
  :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
47
- :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
42
+ :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
48
43
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
49
44
  """
50
45
  pulumi.set(__self__, "period", period)
@@ -52,10 +47,6 @@ class StepMonitorArgs:
52
47
  pulumi.set(__self__, "steps", steps)
53
48
  if account_id is not None:
54
49
  pulumi.set(__self__, "account_id", account_id)
55
- if browsers is not None:
56
- pulumi.set(__self__, "browsers", browsers)
57
- if devices is not None:
58
- pulumi.set(__self__, "devices", devices)
59
50
  if enable_screenshot_on_failure_and_script is not None:
60
51
  pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
61
52
  if location_privates is not None:
@@ -121,31 +112,6 @@ class StepMonitorArgs:
121
112
  def account_id(self, value: Optional[pulumi.Input[str]]):
122
113
  pulumi.set(self, "account_id", value)
123
114
 
124
- @property
125
- @pulumi.getter
126
- def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
127
- """
128
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
129
- """
130
- return pulumi.get(self, "browsers")
131
-
132
- @browsers.setter
133
- def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
134
- pulumi.set(self, "browsers", value)
135
-
136
- @property
137
- @pulumi.getter
138
- def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
139
- """
140
- The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
141
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
142
- """
143
- return pulumi.get(self, "devices")
144
-
145
- @devices.setter
146
- def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
147
- pulumi.set(self, "devices", value)
148
-
149
115
  @property
150
116
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
151
117
  def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
@@ -210,7 +176,7 @@ class StepMonitorArgs:
210
176
  @pulumi.getter(name="runtimeTypeVersion")
211
177
  def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
212
178
  """
213
- The specific version of the runtime type selected.
179
+ The specific semver version of the runtime type.
214
180
  """
215
181
  return pulumi.get(self, "runtime_type_version")
216
182
 
@@ -244,8 +210,6 @@ class StepMonitorArgs:
244
210
  class _StepMonitorState:
245
211
  def __init__(__self__, *,
246
212
  account_id: Optional[pulumi.Input[str]] = None,
247
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
248
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
249
213
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
250
214
  guid: Optional[pulumi.Input[str]] = None,
251
215
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]]] = None,
@@ -262,9 +226,6 @@ class _StepMonitorState:
262
226
  """
263
227
  Input properties used for looking up and filtering StepMonitor resources.
264
228
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
265
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
266
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
267
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
268
229
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
269
230
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
270
231
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorLocationPrivateArgs']]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
@@ -273,17 +234,13 @@ class _StepMonitorState:
273
234
  :param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
274
235
  :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
275
236
  :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
276
- :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
237
+ :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
277
238
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
278
239
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorStepArgs']]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
279
240
  :param pulumi.Input[Sequence[pulumi.Input['StepMonitorTagArgs']]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
280
241
  """
281
242
  if account_id is not None:
282
243
  pulumi.set(__self__, "account_id", account_id)
283
- if browsers is not None:
284
- pulumi.set(__self__, "browsers", browsers)
285
- if devices is not None:
286
- pulumi.set(__self__, "devices", devices)
287
244
  if enable_screenshot_on_failure_and_script is not None:
288
245
  pulumi.set(__self__, "enable_screenshot_on_failure_and_script", enable_screenshot_on_failure_and_script)
289
246
  if guid is not None:
@@ -323,31 +280,6 @@ class _StepMonitorState:
323
280
  def account_id(self, value: Optional[pulumi.Input[str]]):
324
281
  pulumi.set(self, "account_id", value)
325
282
 
326
- @property
327
- @pulumi.getter
328
- def browsers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
329
- """
330
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
331
- """
332
- return pulumi.get(self, "browsers")
333
-
334
- @browsers.setter
335
- def browsers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
336
- pulumi.set(self, "browsers", value)
337
-
338
- @property
339
- @pulumi.getter
340
- def devices(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
341
- """
342
- The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
343
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
344
- """
345
- return pulumi.get(self, "devices")
346
-
347
- @devices.setter
348
- def devices(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
349
- pulumi.set(self, "devices", value)
350
-
351
283
  @property
352
284
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
353
285
  def enable_screenshot_on_failure_and_script(self) -> Optional[pulumi.Input[bool]]:
@@ -448,7 +380,7 @@ class _StepMonitorState:
448
380
  @pulumi.getter(name="runtimeTypeVersion")
449
381
  def runtime_type_version(self) -> Optional[pulumi.Input[str]]:
450
382
  """
451
- The specific version of the runtime type selected.
383
+ The specific semver version of the runtime type.
452
384
  """
453
385
  return pulumi.get(self, "runtime_type_version")
454
386
 
@@ -508,8 +440,6 @@ class StepMonitor(pulumi.CustomResource):
508
440
  resource_name: str,
509
441
  opts: Optional[pulumi.ResourceOptions] = None,
510
442
  account_id: Optional[pulumi.Input[str]] = None,
511
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
512
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
513
443
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
514
444
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
515
445
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -540,12 +470,6 @@ class StepMonitor(pulumi.CustomResource):
540
470
  status="ENABLED",
541
471
  runtime_type="CHROME_BROWSER",
542
472
  runtime_type_version="100",
543
- devices=[
544
- "DESKTOP",
545
- "MOBILE_PORTRAIT",
546
- "TABLET_LANDSCAPE",
547
- ],
548
- browsers=["CHROME"],
549
473
  steps=[{
550
474
  "ordinal": 0,
551
475
  "type": "NAVIGATE",
@@ -578,14 +502,6 @@ class StepMonitor(pulumi.CustomResource):
578
502
  name="Sample Step Monitor",
579
503
  period="EVERY_6_HOURS",
580
504
  status="ENABLED",
581
- runtime_type="CHROME_BROWSER",
582
- runtime_type_version="100",
583
- devices=[
584
- "DESKTOP",
585
- "MOBILE_PORTRAIT",
586
- "TABLET_LANDSCAPE",
587
- ],
588
- browsers=["CHROME"],
589
505
  location_privates=[{
590
506
  "guid": foo.id,
591
507
  "vse_password": "secret",
@@ -614,16 +530,13 @@ class StepMonitor(pulumi.CustomResource):
614
530
  :param str resource_name: The name of the resource.
615
531
  :param pulumi.ResourceOptions opts: Options for the resource.
616
532
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
617
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
618
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
619
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
620
533
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
621
534
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
622
535
  :param pulumi.Input[Sequence[pulumi.Input[str]]] locations_publics: The location the monitor will run from. Check out [this page](https://docs.newrelic.com/docs/synthetics/synthetic-monitoring/administration/synthetic-public-minion-ips/) for a list of valid public locations. You don't need the `AWS_` prefix as the provider uses NerdGraph. At least one of either `locations_public` or `location_private` is required.
623
536
  :param pulumi.Input[str] name: The name for the monitor.
624
537
  :param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
625
538
  :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
626
- :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
539
+ :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
627
540
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
628
541
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
629
542
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
@@ -652,12 +565,6 @@ class StepMonitor(pulumi.CustomResource):
652
565
  status="ENABLED",
653
566
  runtime_type="CHROME_BROWSER",
654
567
  runtime_type_version="100",
655
- devices=[
656
- "DESKTOP",
657
- "MOBILE_PORTRAIT",
658
- "TABLET_LANDSCAPE",
659
- ],
660
- browsers=["CHROME"],
661
568
  steps=[{
662
569
  "ordinal": 0,
663
570
  "type": "NAVIGATE",
@@ -690,14 +597,6 @@ class StepMonitor(pulumi.CustomResource):
690
597
  name="Sample Step Monitor",
691
598
  period="EVERY_6_HOURS",
692
599
  status="ENABLED",
693
- runtime_type="CHROME_BROWSER",
694
- runtime_type_version="100",
695
- devices=[
696
- "DESKTOP",
697
- "MOBILE_PORTRAIT",
698
- "TABLET_LANDSCAPE",
699
- ],
700
- browsers=["CHROME"],
701
600
  location_privates=[{
702
601
  "guid": foo.id,
703
602
  "vse_password": "secret",
@@ -739,8 +638,6 @@ class StepMonitor(pulumi.CustomResource):
739
638
  resource_name: str,
740
639
  opts: Optional[pulumi.ResourceOptions] = None,
741
640
  account_id: Optional[pulumi.Input[str]] = None,
742
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
743
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
744
641
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
745
642
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
746
643
  locations_publics: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -762,8 +659,6 @@ class StepMonitor(pulumi.CustomResource):
762
659
  __props__ = StepMonitorArgs.__new__(StepMonitorArgs)
763
660
 
764
661
  __props__.__dict__["account_id"] = account_id
765
- __props__.__dict__["browsers"] = browsers
766
- __props__.__dict__["devices"] = devices
767
662
  __props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
768
663
  __props__.__dict__["location_privates"] = location_privates
769
664
  __props__.__dict__["locations_publics"] = locations_publics
@@ -794,8 +689,6 @@ class StepMonitor(pulumi.CustomResource):
794
689
  id: pulumi.Input[str],
795
690
  opts: Optional[pulumi.ResourceOptions] = None,
796
691
  account_id: Optional[pulumi.Input[str]] = None,
797
- browsers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
798
- devices: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
799
692
  enable_screenshot_on_failure_and_script: Optional[pulumi.Input[bool]] = None,
800
693
  guid: Optional[pulumi.Input[str]] = None,
801
694
  location_privates: Optional[pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]]] = None,
@@ -817,9 +710,6 @@ class StepMonitor(pulumi.CustomResource):
817
710
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
818
711
  :param pulumi.ResourceOptions opts: Options for the resource.
819
712
  :param pulumi.Input[str] account_id: The account in which the Synthetics monitor will be created.
820
- :param pulumi.Input[Sequence[pulumi.Input[str]]] browsers: The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
821
- :param pulumi.Input[Sequence[pulumi.Input[str]]] devices: The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
822
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
823
713
  :param pulumi.Input[bool] enable_screenshot_on_failure_and_script: Capture a screenshot during job execution.
824
714
  :param pulumi.Input[str] guid: The unique entity identifier of the monitor in New Relic.
825
715
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorLocationPrivateArgs', 'StepMonitorLocationPrivateArgsDict']]]] location_privates: The location the monitor will run from. At least one of `locations_public` or `location_private` is required. See Nested locations_private blocks below for details.
@@ -828,7 +718,7 @@ class StepMonitor(pulumi.CustomResource):
828
718
  :param pulumi.Input[str] period: The interval at which this monitor should run. Valid values are `EVERY_MINUTE`, `EVERY_5_MINUTES`, `EVERY_10_MINUTES`, `EVERY_15_MINUTES`, `EVERY_30_MINUTES`, `EVERY_HOUR`, `EVERY_6_HOURS`, `EVERY_12_HOURS`, or `EVERY_DAY`.
829
719
  :param pulumi.Input[int] period_in_minutes: The interval in minutes at which Synthetic monitor should run.
830
720
  :param pulumi.Input[str] runtime_type: The runtime that the monitor will use to run jobs.
831
- :param pulumi.Input[str] runtime_type_version: The specific version of the runtime type selected.
721
+ :param pulumi.Input[str] runtime_type_version: The specific semver version of the runtime type.
832
722
  :param pulumi.Input[str] status: The monitor status (ENABLED or DISABLED).
833
723
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorStepArgs', 'StepMonitorStepArgsDict']]]] steps: The steps that make up the script the monitor will run. See Nested steps blocks below for details.
834
724
  :param pulumi.Input[Sequence[pulumi.Input[Union['StepMonitorTagArgs', 'StepMonitorTagArgsDict']]]] tags: The tags that will be associated with the monitor. See Nested tag blocks below for details.
@@ -838,8 +728,6 @@ class StepMonitor(pulumi.CustomResource):
838
728
  __props__ = _StepMonitorState.__new__(_StepMonitorState)
839
729
 
840
730
  __props__.__dict__["account_id"] = account_id
841
- __props__.__dict__["browsers"] = browsers
842
- __props__.__dict__["devices"] = devices
843
731
  __props__.__dict__["enable_screenshot_on_failure_and_script"] = enable_screenshot_on_failure_and_script
844
732
  __props__.__dict__["guid"] = guid
845
733
  __props__.__dict__["location_privates"] = location_privates
@@ -863,23 +751,6 @@ class StepMonitor(pulumi.CustomResource):
863
751
  """
864
752
  return pulumi.get(self, "account_id")
865
753
 
866
- @property
867
- @pulumi.getter
868
- def browsers(self) -> pulumi.Output[Optional[Sequence[str]]]:
869
- """
870
- The multiple browsers list on which synthetic monitors will run. Valid values are `CHROME` and `FIREFOX`.
871
- """
872
- return pulumi.get(self, "browsers")
873
-
874
- @property
875
- @pulumi.getter
876
- def devices(self) -> pulumi.Output[Optional[Sequence[str]]]:
877
- """
878
- The multiple devices list on which synthetic monitors will run. Valid values are array of DESKTOP, MOBILE_LANDSCAPE,
879
- MOBILE_PORTRAIT, TABLET_LANDSCAPE and TABLET_PORTRAIT
880
- """
881
- return pulumi.get(self, "devices")
882
-
883
754
  @property
884
755
  @pulumi.getter(name="enableScreenshotOnFailureAndScript")
885
756
  def enable_screenshot_on_failure_and_script(self) -> pulumi.Output[Optional[bool]]:
@@ -948,7 +819,7 @@ class StepMonitor(pulumi.CustomResource):
948
819
  @pulumi.getter(name="runtimeTypeVersion")
949
820
  def runtime_type_version(self) -> pulumi.Output[Optional[str]]:
950
821
  """
951
- The specific version of the runtime type selected.
822
+ The specific semver version of the runtime type.
952
823
  """
953
824
  return pulumi.get(self, "runtime_type_version")
954
825
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_newrelic
3
- Version: 5.32.0
3
+ Version: 5.32.0a1725688055
4
4
  Summary: A Pulumi package for creating and managing New Relic resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -41,7 +41,7 @@ pulumi_newrelic/one_dashboard_json.py,sha256=u-JceUUU1oHvQ_QT5rSy5kWw17dGR4hk_X0
41
41
  pulumi_newrelic/one_dashboard_raw.py,sha256=_5CWA6p6_tCfI135mTysVo0qjQf1xnYBNEZBDNmKqsw,23502
42
42
  pulumi_newrelic/outputs.py,sha256=TdO-CuVJTKhSmIRRYYtL6L6i55OPM2XfwiamJrddutA,532114
43
43
  pulumi_newrelic/provider.py,sha256=Bsa8btfylF9MK4dh4DF7RFTc8PaDI7qMeaFipQxwATw,18319
44
- pulumi_newrelic/pulumi-plugin.json,sha256=0gpMogzw6F0DQieBOucfIBy7DXjazQzv6vdm3K2yi-8,68
44
+ pulumi_newrelic/pulumi-plugin.json,sha256=YNUYbpYlxNdsHnDHoGcJOq2g6eQlyj8HeWi6NUp9JHU,85
45
45
  pulumi_newrelic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  pulumi_newrelic/service_level.py,sha256=1MA3qQw6Y6d-HA6TIckt0B7FLZIhNCH8GuWhn0f246M,28806
47
47
  pulumi_newrelic/user.py,sha256=kmrrs7yU396-mOZwigKQVS4iAyJHGZgevWJJkjU_CdI,18942
@@ -50,7 +50,7 @@ pulumi_newrelic/cloud/__init__.py,sha256=iv3_NQivZ9OvaZzsRb81j-_v55U3fjpbV-q2T8o
50
50
  pulumi_newrelic/cloud/_inputs.py,sha256=PFxNJ_jznxsz2yI12uFYQMjQOI2SoHg0Q8CVieaq5SU,294585
51
51
  pulumi_newrelic/cloud/aws_govcloud_integrations.py,sha256=dDgO1N5Jb05DM_ipxCf1Su5dxS93VBhjbsGKSexhdZQ,65239
52
52
  pulumi_newrelic/cloud/aws_govcloud_link_account.py,sha256=_FJ8URQzEeNnkMCndsq7oKOe8gRIFWvsQ8HbGTvGNuc,20827
53
- pulumi_newrelic/cloud/aws_integrations.py,sha256=ClRDs7m_jcJBBwXeV09e7AwgUzufG6-ioZ-CZsug5hY,128394
53
+ pulumi_newrelic/cloud/aws_integrations.py,sha256=J7JroqOQMLmlbGsKc93wemUTHm4Y6J7jkbSlioLtns4,176154
54
54
  pulumi_newrelic/cloud/aws_link_account.py,sha256=ANyN1A7_TLGOcCwnMMX6RtXRAO53wLFUAI7c97osKNo,15495
55
55
  pulumi_newrelic/cloud/azure_integrations.py,sha256=WX7ZRZwulmMGH9Ve_VJBZuWoBLURkAfFbxuwl1voh0k,114017
56
56
  pulumi_newrelic/cloud/azure_link_account.py,sha256=QR7mViJ5B-ibn5vJg2Cgn0RddMDfYHWjRKzN7y19EoE,18559
@@ -76,14 +76,14 @@ pulumi_newrelic/synthetics/broken_links_monitor.py,sha256=hyQem6uR9RmPaf4fedhk-H
76
76
  pulumi_newrelic/synthetics/cert_check_monitor.py,sha256=FwRe7xXr_MG8sbICoM_w6CX4xUAJFFLe2W86zaVgyZg,39084
77
77
  pulumi_newrelic/synthetics/get_private_location.py,sha256=qgChL7uKmcMLxrjvYGZ9Duh6zbdgX80TKHaF-7_LLBc,5701
78
78
  pulumi_newrelic/synthetics/get_secure_credential.py,sha256=xexkDSteNi9kn0UuucFUSTIbz_NaHOzw6HTsg2yGoEU,5479
79
- pulumi_newrelic/synthetics/monitor.py,sha256=FhtdORIrPng501X3prRCI4FCK-AiKSJY2ASatm2OhGU,74804
79
+ pulumi_newrelic/synthetics/monitor.py,sha256=qRNTNb6r892TwD_oNGHwZDoNJ35r0AfjhQQ1fUawqBc,66224
80
80
  pulumi_newrelic/synthetics/multi_location_alert_condition.py,sha256=0CKd3lqK2-vL7mXXWM5LfSyxjbYLg7XFXwJyAwyvYOM,34660
81
81
  pulumi_newrelic/synthetics/outputs.py,sha256=z5-aR2wEr5nl36oFpcxI1ICSDWzci3KRU5G_OAz9MUM,11217
82
82
  pulumi_newrelic/synthetics/private_location.py,sha256=Z6Pj1vjDif95ep7w4QhWu3jsQQ5USzIjhzaFCA9oGBg,17299
83
- pulumi_newrelic/synthetics/script_monitor.py,sha256=qEsYg8-LF79kW4CTsYfisgghvPSKNwqqU5Vtcp44_Ws,65934
83
+ pulumi_newrelic/synthetics/script_monitor.py,sha256=3McDfGQHxaMQ7a_OlUdc3MWBqfL7RxfTpBbi4f2zZvA,57354
84
84
  pulumi_newrelic/synthetics/secure_credential.py,sha256=VhiFz5VYzSoyndMhYJk-aoIIoVjechXClltZUThei_8,15602
85
- pulumi_newrelic/synthetics/step_monitor.py,sha256=LfGNfqgZyQBRaA92a-kID9UNEsyFmuJxPgSWnk_Z5nQ,48788
86
- pulumi_newrelic-5.32.0.dist-info/METADATA,sha256=JaMwytElzXw5owxhnbSSLBwQDugLS7EQVBVyk8Djx_g,3889
87
- pulumi_newrelic-5.32.0.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
88
- pulumi_newrelic-5.32.0.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
- pulumi_newrelic-5.32.0.dist-info/RECORD,,
85
+ pulumi_newrelic/synthetics/step_monitor.py,sha256=46ZEzNqsgxhgS7LUP7M4S7UgXQqA-1G45_bN7vfi8RI,42280
86
+ pulumi_newrelic-5.32.0a1725688055.dist-info/METADATA,sha256=JxZZdBkNUGFW0LD8kz1tUOm0X27bUapebpkxfnp1TFs,3900
87
+ pulumi_newrelic-5.32.0a1725688055.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
88
+ pulumi_newrelic-5.32.0a1725688055.dist-info/top_level.txt,sha256=BjE1Wsu6Ah_A7k08uV5vRSZ2R_5uY3wFvSWJaa7ZoQk,16
89
+ pulumi_newrelic-5.32.0a1725688055.dist-info/RECORD,,