pulumi-newrelic 5.24.1__py3-none-any.whl → 5.25.0__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.
@@ -18,8 +18,8 @@ class AccountManagementArgs:
18
18
  name: Optional[pulumi.Input[str]] = None):
19
19
  """
20
20
  The set of arguments for constructing a AccountManagement resource.
21
- :param pulumi.Input[str] region: A description of what this parsing rule represents.
22
- :param pulumi.Input[str] name: Name of the account to be created
21
+ :param pulumi.Input[str] region: The region code of the account. One of: `us01`, `eu01`.
22
+ :param pulumi.Input[str] name: The name of the Account.
23
23
  """
24
24
  pulumi.set(__self__, "region", region)
25
25
  if name is not None:
@@ -29,7 +29,7 @@ class AccountManagementArgs:
29
29
  @pulumi.getter
30
30
  def region(self) -> pulumi.Input[str]:
31
31
  """
32
- A description of what this parsing rule represents.
32
+ The region code of the account. One of: `us01`, `eu01`.
33
33
  """
34
34
  return pulumi.get(self, "region")
35
35
 
@@ -41,7 +41,7 @@ class AccountManagementArgs:
41
41
  @pulumi.getter
42
42
  def name(self) -> Optional[pulumi.Input[str]]:
43
43
  """
44
- Name of the account to be created
44
+ The name of the Account.
45
45
  """
46
46
  return pulumi.get(self, "name")
47
47
 
@@ -57,8 +57,8 @@ class _AccountManagementState:
57
57
  region: Optional[pulumi.Input[str]] = None):
58
58
  """
59
59
  Input properties used for looking up and filtering AccountManagement resources.
60
- :param pulumi.Input[str] name: Name of the account to be created
61
- :param pulumi.Input[str] region: A description of what this parsing rule represents.
60
+ :param pulumi.Input[str] name: The name of the Account.
61
+ :param pulumi.Input[str] region: The region code of the account. One of: `us01`, `eu01`.
62
62
  """
63
63
  if name is not None:
64
64
  pulumi.set(__self__, "name", name)
@@ -69,7 +69,7 @@ class _AccountManagementState:
69
69
  @pulumi.getter
70
70
  def name(self) -> Optional[pulumi.Input[str]]:
71
71
  """
72
- Name of the account to be created
72
+ The name of the Account.
73
73
  """
74
74
  return pulumi.get(self, "name")
75
75
 
@@ -81,7 +81,7 @@ class _AccountManagementState:
81
81
  @pulumi.getter
82
82
  def region(self) -> Optional[pulumi.Input[str]]:
83
83
  """
84
- A description of what this parsing rule represents.
84
+ The region code of the account. One of: `us01`, `eu01`.
85
85
  """
86
86
  return pulumi.get(self, "region")
87
87
 
@@ -127,8 +127,8 @@ class AccountManagement(pulumi.CustomResource):
127
127
 
128
128
  :param str resource_name: The name of the resource.
129
129
  :param pulumi.ResourceOptions opts: Options for the resource.
130
- :param pulumi.Input[str] name: Name of the account to be created
131
- :param pulumi.Input[str] region: A description of what this parsing rule represents.
130
+ :param pulumi.Input[str] name: The name of the Account.
131
+ :param pulumi.Input[str] region: The region code of the account. One of: `us01`, `eu01`.
132
132
  """
133
133
  ...
134
134
  @overload
@@ -212,8 +212,8 @@ class AccountManagement(pulumi.CustomResource):
212
212
  :param str resource_name: The unique name of the resulting resource.
213
213
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
214
214
  :param pulumi.ResourceOptions opts: Options for the resource.
215
- :param pulumi.Input[str] name: Name of the account to be created
216
- :param pulumi.Input[str] region: A description of what this parsing rule represents.
215
+ :param pulumi.Input[str] name: The name of the Account.
216
+ :param pulumi.Input[str] region: The region code of the account. One of: `us01`, `eu01`.
217
217
  """
218
218
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
219
219
 
@@ -227,7 +227,7 @@ class AccountManagement(pulumi.CustomResource):
227
227
  @pulumi.getter
228
228
  def name(self) -> pulumi.Output[str]:
229
229
  """
230
- Name of the account to be created
230
+ The name of the Account.
231
231
  """
232
232
  return pulumi.get(self, "name")
233
233
 
@@ -235,7 +235,7 @@ class AccountManagement(pulumi.CustomResource):
235
235
  @pulumi.getter
236
236
  def region(self) -> pulumi.Output[str]:
237
237
  """
238
- A description of what this parsing rule represents.
238
+ The region code of the account. One of: `us01`, `eu01`.
239
239
  """
240
240
  return pulumi.get(self, "region")
241
241
 
@@ -22,10 +22,10 @@ class AlertChannelArgs:
22
22
  name: Optional[pulumi.Input[str]] = None):
23
23
  """
24
24
  The set of arguments for constructing a AlertChannel resource.
25
- :param pulumi.Input[str] type: (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
26
- :param pulumi.Input[str] account_id: The New Relic account ID where you want to create alert channels.
27
- :param pulumi.Input['AlertChannelConfigArgs'] config: The configuration block for the alert channel.
28
- :param pulumi.Input[str] name: (Required) The name of the channel.
25
+ :param pulumi.Input[str] type: The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
26
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
27
+ :param pulumi.Input['AlertChannelConfigArgs'] config: A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
28
+ :param pulumi.Input[str] name: The name of the channel.
29
29
  """
30
30
  pulumi.set(__self__, "type", type)
31
31
  if account_id is not None:
@@ -39,7 +39,7 @@ class AlertChannelArgs:
39
39
  @pulumi.getter
40
40
  def type(self) -> pulumi.Input[str]:
41
41
  """
42
- (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
42
+ The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
43
43
  """
44
44
  return pulumi.get(self, "type")
45
45
 
@@ -51,7 +51,7 @@ class AlertChannelArgs:
51
51
  @pulumi.getter(name="accountId")
52
52
  def account_id(self) -> Optional[pulumi.Input[str]]:
53
53
  """
54
- The New Relic account ID where you want to create alert channels.
54
+ Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
55
55
  """
56
56
  return pulumi.get(self, "account_id")
57
57
 
@@ -63,7 +63,7 @@ class AlertChannelArgs:
63
63
  @pulumi.getter
64
64
  def config(self) -> Optional[pulumi.Input['AlertChannelConfigArgs']]:
65
65
  """
66
- The configuration block for the alert channel.
66
+ A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
67
67
  """
68
68
  return pulumi.get(self, "config")
69
69
 
@@ -75,7 +75,7 @@ class AlertChannelArgs:
75
75
  @pulumi.getter
76
76
  def name(self) -> Optional[pulumi.Input[str]]:
77
77
  """
78
- (Required) The name of the channel.
78
+ The name of the channel.
79
79
  """
80
80
  return pulumi.get(self, "name")
81
81
 
@@ -93,10 +93,10 @@ class _AlertChannelState:
93
93
  type: Optional[pulumi.Input[str]] = None):
94
94
  """
95
95
  Input properties used for looking up and filtering AlertChannel resources.
96
- :param pulumi.Input[str] account_id: The New Relic account ID where you want to create alert channels.
97
- :param pulumi.Input['AlertChannelConfigArgs'] config: The configuration block for the alert channel.
98
- :param pulumi.Input[str] name: (Required) The name of the channel.
99
- :param pulumi.Input[str] type: (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
96
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
97
+ :param pulumi.Input['AlertChannelConfigArgs'] config: A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
98
+ :param pulumi.Input[str] name: The name of the channel.
99
+ :param pulumi.Input[str] type: The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
100
100
  """
101
101
  if account_id is not None:
102
102
  pulumi.set(__self__, "account_id", account_id)
@@ -111,7 +111,7 @@ class _AlertChannelState:
111
111
  @pulumi.getter(name="accountId")
112
112
  def account_id(self) -> Optional[pulumi.Input[str]]:
113
113
  """
114
- The New Relic account ID where you want to create alert channels.
114
+ Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
115
115
  """
116
116
  return pulumi.get(self, "account_id")
117
117
 
@@ -123,7 +123,7 @@ class _AlertChannelState:
123
123
  @pulumi.getter
124
124
  def config(self) -> Optional[pulumi.Input['AlertChannelConfigArgs']]:
125
125
  """
126
- The configuration block for the alert channel.
126
+ A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
127
127
  """
128
128
  return pulumi.get(self, "config")
129
129
 
@@ -135,7 +135,7 @@ class _AlertChannelState:
135
135
  @pulumi.getter
136
136
  def name(self) -> Optional[pulumi.Input[str]]:
137
137
  """
138
- (Required) The name of the channel.
138
+ The name of the channel.
139
139
  """
140
140
  return pulumi.get(self, "name")
141
141
 
@@ -147,7 +147,7 @@ class _AlertChannelState:
147
147
  @pulumi.getter
148
148
  def type(self) -> Optional[pulumi.Input[str]]:
149
149
  """
150
- (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
150
+ The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
151
151
  """
152
152
  return pulumi.get(self, "type")
153
153
 
@@ -303,10 +303,10 @@ class AlertChannel(pulumi.CustomResource):
303
303
 
304
304
  :param str resource_name: The name of the resource.
305
305
  :param pulumi.ResourceOptions opts: Options for the resource.
306
- :param pulumi.Input[str] account_id: The New Relic account ID where you want to create alert channels.
307
- :param pulumi.Input[pulumi.InputType['AlertChannelConfigArgs']] config: The configuration block for the alert channel.
308
- :param pulumi.Input[str] name: (Required) The name of the channel.
309
- :param pulumi.Input[str] type: (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
306
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
307
+ :param pulumi.Input[pulumi.InputType['AlertChannelConfigArgs']] config: A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
308
+ :param pulumi.Input[str] name: The name of the channel.
309
+ :param pulumi.Input[str] type: The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
310
310
  """
311
311
  ...
312
312
  @overload
@@ -504,10 +504,10 @@ class AlertChannel(pulumi.CustomResource):
504
504
  :param str resource_name: The unique name of the resulting resource.
505
505
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
506
506
  :param pulumi.ResourceOptions opts: Options for the resource.
507
- :param pulumi.Input[str] account_id: The New Relic account ID where you want to create alert channels.
508
- :param pulumi.Input[pulumi.InputType['AlertChannelConfigArgs']] config: The configuration block for the alert channel.
509
- :param pulumi.Input[str] name: (Required) The name of the channel.
510
- :param pulumi.Input[str] type: (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
507
+ :param pulumi.Input[str] account_id: Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
508
+ :param pulumi.Input[pulumi.InputType['AlertChannelConfigArgs']] config: A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
509
+ :param pulumi.Input[str] name: The name of the channel.
510
+ :param pulumi.Input[str] type: The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
511
511
  """
512
512
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
513
513
 
@@ -523,7 +523,7 @@ class AlertChannel(pulumi.CustomResource):
523
523
  @pulumi.getter(name="accountId")
524
524
  def account_id(self) -> pulumi.Output[str]:
525
525
  """
526
- The New Relic account ID where you want to create alert channels.
526
+ Determines the New Relic account where the alert channel will be created. Defaults to the account associated with the API key used.
527
527
  """
528
528
  return pulumi.get(self, "account_id")
529
529
 
@@ -531,7 +531,7 @@ class AlertChannel(pulumi.CustomResource):
531
531
  @pulumi.getter
532
532
  def config(self) -> pulumi.Output[Optional['outputs.AlertChannelConfig']]:
533
533
  """
534
- The configuration block for the alert channel.
534
+ A nested block that describes an alert channel configuration. Only one config block is permitted per alert channel definition. See Nested config blocks below for details.
535
535
  """
536
536
  return pulumi.get(self, "config")
537
537
 
@@ -539,7 +539,7 @@ class AlertChannel(pulumi.CustomResource):
539
539
  @pulumi.getter
540
540
  def name(self) -> pulumi.Output[str]:
541
541
  """
542
- (Required) The name of the channel.
542
+ The name of the channel.
543
543
  """
544
544
  return pulumi.get(self, "name")
545
545
 
@@ -547,7 +547,7 @@ class AlertChannel(pulumi.CustomResource):
547
547
  @pulumi.getter
548
548
  def type(self) -> pulumi.Output[str]:
549
549
  """
550
- (Required) The type of channel. One of: (email, opsgenie, pagerduty, slack, user, victorops, webhook).
550
+ The type of channel. One of: `email`, `slack`, `opsgenie`, `pagerduty`, `victorops`, or `webhook`.
551
551
  """
552
552
  return pulumi.get(self, "type")
553
553