@pulumi/azure-native 3.0.0 → 3.1.0-alpha.1744013012

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.
@@ -6,6 +6,18 @@ export declare const AccessMode: {
6
6
  * Specifies the default access mode of queries through associated private endpoints in scope. If not specified default value is 'Open'. You can override this default setting for a specific private endpoint connection by adding an exclusion in the 'exclusions' array.
7
7
  */
8
8
  export type AccessMode = (typeof AccessMode)[keyof typeof AccessMode];
9
+ export declare const ComparisonOperationType: {
10
+ readonly Equals: "Equals";
11
+ readonly NotEquals: "NotEquals";
12
+ readonly GreaterThan: "GreaterThan";
13
+ readonly GreaterThanOrEqual: "GreaterThanOrEqual";
14
+ readonly LessThan: "LessThan";
15
+ readonly LessThanOrEqual: "LessThanOrEqual";
16
+ };
17
+ /**
18
+ * the operator that is used to compare the metric data and the threshold.
19
+ */
20
+ export type ComparisonOperationType = (typeof ComparisonOperationType)[keyof typeof ComparisonOperationType];
9
21
  export declare const ConditionOperator: {
10
22
  readonly Equals: "Equals";
11
23
  readonly GreaterThan: "GreaterThan";
@@ -121,6 +133,24 @@ export declare const ManagedServiceIdentityType: {
121
133
  * Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
122
134
  */
123
135
  export type ManagedServiceIdentityType = (typeof ManagedServiceIdentityType)[keyof typeof ManagedServiceIdentityType];
136
+ export declare const MetricStatisticType: {
137
+ readonly Average: "Average";
138
+ readonly Min: "Min";
139
+ readonly Max: "Max";
140
+ readonly Sum: "Sum";
141
+ readonly Count: "Count";
142
+ };
143
+ /**
144
+ * the metric statistic type. How the metrics from multiple instances are combined.
145
+ */
146
+ export type MetricStatisticType = (typeof MetricStatisticType)[keyof typeof MetricStatisticType];
147
+ export declare const OperationType: {
148
+ readonly Scale: "Scale";
149
+ };
150
+ /**
151
+ * the operation associated with the notification and its value must be "scale"
152
+ */
153
+ export type OperationType = (typeof OperationType)[keyof typeof OperationType];
124
154
  export declare const PipelineType: {
125
155
  /**
126
156
  * Pipeline for logs telemetry.
@@ -131,6 +161,15 @@ export declare const PipelineType: {
131
161
  * The type of pipeline
132
162
  */
133
163
  export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
164
+ export declare const PredictiveAutoscalePolicyScaleMode: {
165
+ readonly Disabled: "Disabled";
166
+ readonly ForecastOnly: "ForecastOnly";
167
+ readonly Enabled: "Enabled";
168
+ };
169
+ /**
170
+ * the predictive autoscale mode
171
+ */
172
+ export type PredictiveAutoscalePolicyScaleMode = (typeof PredictiveAutoscalePolicyScaleMode)[keyof typeof PredictiveAutoscalePolicyScaleMode];
134
173
  export declare const PrivateEndpointServiceConnectionStatus: {
135
174
  readonly Pending: "Pending";
136
175
  readonly Approved: "Approved";
@@ -176,6 +215,47 @@ export declare const ReceiverType: {
176
215
  * The type of receiver.
177
216
  */
178
217
  export type ReceiverType = (typeof ReceiverType)[keyof typeof ReceiverType];
218
+ export declare const RecurrenceFrequency: {
219
+ readonly None: "None";
220
+ readonly Second: "Second";
221
+ readonly Minute: "Minute";
222
+ readonly Hour: "Hour";
223
+ readonly Day: "Day";
224
+ readonly Week: "Week";
225
+ readonly Month: "Month";
226
+ readonly Year: "Year";
227
+ };
228
+ /**
229
+ * the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set **schedule** to every day of the week. The frequency property specifies that the schedule is repeated weekly.
230
+ */
231
+ export type RecurrenceFrequency = (typeof RecurrenceFrequency)[keyof typeof RecurrenceFrequency];
232
+ export declare const ScaleDirection: {
233
+ readonly None: "None";
234
+ readonly Increase: "Increase";
235
+ readonly Decrease: "Decrease";
236
+ };
237
+ /**
238
+ * the scale direction. Whether the scaling action increases or decreases the number of instances.
239
+ */
240
+ export type ScaleDirection = (typeof ScaleDirection)[keyof typeof ScaleDirection];
241
+ export declare const ScaleRuleMetricDimensionOperationType: {
242
+ readonly Equals: "Equals";
243
+ readonly NotEquals: "NotEquals";
244
+ };
245
+ /**
246
+ * the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
247
+ */
248
+ export type ScaleRuleMetricDimensionOperationType = (typeof ScaleRuleMetricDimensionOperationType)[keyof typeof ScaleRuleMetricDimensionOperationType];
249
+ export declare const ScaleType: {
250
+ readonly ChangeCount: "ChangeCount";
251
+ readonly PercentChangeCount: "PercentChangeCount";
252
+ readonly ExactCount: "ExactCount";
253
+ readonly ServiceAllowedNextValue: "ServiceAllowedNextValue";
254
+ };
255
+ /**
256
+ * the type of action that should occur when the scale rule fires.
257
+ */
258
+ export type ScaleType = (typeof ScaleType)[keyof typeof ScaleType];
179
259
  export declare const ScopedResourceKind: {
180
260
  readonly Resource: "Resource";
181
261
  readonly Metrics: "Metrics";
@@ -239,3 +319,15 @@ export declare const TimeAggregation: {
239
319
  * Aggregation type. Relevant and required only for rules of the kind LogAlert.
240
320
  */
241
321
  export type TimeAggregation = (typeof TimeAggregation)[keyof typeof TimeAggregation];
322
+ export declare const TimeAggregationType: {
323
+ readonly Average: "Average";
324
+ readonly Minimum: "Minimum";
325
+ readonly Maximum: "Maximum";
326
+ readonly Total: "Total";
327
+ readonly Count: "Count";
328
+ readonly Last: "Last";
329
+ };
330
+ /**
331
+ * time aggregation type. How the data that is collected should be combined over time. The default value is Average.
332
+ */
333
+ export type TimeAggregationType = (typeof TimeAggregationType)[keyof typeof TimeAggregationType];
@@ -2,11 +2,19 @@
2
2
  // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.TimeAggregation = exports.SyslogProtocol = exports.StreamEncodingType = exports.ScopedResourceKind = exports.ReceiverType = exports.ProcessorType = exports.PrivateEndpointServiceConnectionStatus = exports.PipelineType = exports.ManagedServiceIdentityType = exports.Kind = exports.JsonMapperElement = exports.IncidentManagementService = exports.IdentityType = exports.ExternalNetworkingMode = exports.ExtendedLocationType = exports.ExporterType = exports.DimensionOperator = exports.CriterionType = exports.ConditionOperator = exports.AccessMode = void 0;
5
+ exports.TimeAggregationType = exports.TimeAggregation = exports.SyslogProtocol = exports.StreamEncodingType = exports.ScopedResourceKind = exports.ScaleType = exports.ScaleRuleMetricDimensionOperationType = exports.ScaleDirection = exports.RecurrenceFrequency = exports.ReceiverType = exports.ProcessorType = exports.PrivateEndpointServiceConnectionStatus = exports.PredictiveAutoscalePolicyScaleMode = exports.PipelineType = exports.OperationType = exports.MetricStatisticType = exports.ManagedServiceIdentityType = exports.Kind = exports.JsonMapperElement = exports.IncidentManagementService = exports.IdentityType = exports.ExternalNetworkingMode = exports.ExtendedLocationType = exports.ExporterType = exports.DimensionOperator = exports.CriterionType = exports.ConditionOperator = exports.ComparisonOperationType = exports.AccessMode = void 0;
6
6
  exports.AccessMode = {
7
7
  Open: "Open",
8
8
  PrivateOnly: "PrivateOnly",
9
9
  };
10
+ exports.ComparisonOperationType = {
11
+ Equals: "Equals",
12
+ NotEquals: "NotEquals",
13
+ GreaterThan: "GreaterThan",
14
+ GreaterThanOrEqual: "GreaterThanOrEqual",
15
+ LessThan: "LessThan",
16
+ LessThanOrEqual: "LessThanOrEqual",
17
+ };
10
18
  exports.ConditionOperator = {
11
19
  Equals: "Equals",
12
20
  GreaterThan: "GreaterThan",
@@ -78,12 +86,27 @@ exports.ManagedServiceIdentityType = {
78
86
  UserAssigned: "UserAssigned",
79
87
  SystemAssigned_UserAssigned: "SystemAssigned,UserAssigned",
80
88
  };
89
+ exports.MetricStatisticType = {
90
+ Average: "Average",
91
+ Min: "Min",
92
+ Max: "Max",
93
+ Sum: "Sum",
94
+ Count: "Count",
95
+ };
96
+ exports.OperationType = {
97
+ Scale: "Scale",
98
+ };
81
99
  exports.PipelineType = {
82
100
  /**
83
101
  * Pipeline for logs telemetry.
84
102
  */
85
103
  Logs: "Logs",
86
104
  };
105
+ exports.PredictiveAutoscalePolicyScaleMode = {
106
+ Disabled: "Disabled",
107
+ ForecastOnly: "ForecastOnly",
108
+ Enabled: "Enabled",
109
+ };
87
110
  exports.PrivateEndpointServiceConnectionStatus = {
88
111
  Pending: "Pending",
89
112
  Approved: "Approved",
@@ -117,6 +140,31 @@ exports.ReceiverType = {
117
140
  */
118
141
  UDP: "UDP",
119
142
  };
143
+ exports.RecurrenceFrequency = {
144
+ None: "None",
145
+ Second: "Second",
146
+ Minute: "Minute",
147
+ Hour: "Hour",
148
+ Day: "Day",
149
+ Week: "Week",
150
+ Month: "Month",
151
+ Year: "Year",
152
+ };
153
+ exports.ScaleDirection = {
154
+ None: "None",
155
+ Increase: "Increase",
156
+ Decrease: "Decrease",
157
+ };
158
+ exports.ScaleRuleMetricDimensionOperationType = {
159
+ Equals: "Equals",
160
+ NotEquals: "NotEquals",
161
+ };
162
+ exports.ScaleType = {
163
+ ChangeCount: "ChangeCount",
164
+ PercentChangeCount: "PercentChangeCount",
165
+ ExactCount: "ExactCount",
166
+ ServiceAllowedNextValue: "ServiceAllowedNextValue",
167
+ };
120
168
  exports.ScopedResourceKind = {
121
169
  Resource: "Resource",
122
170
  Metrics: "Metrics",
@@ -164,4 +212,12 @@ exports.TimeAggregation = {
164
212
  Maximum: "Maximum",
165
213
  Total: "Total",
166
214
  };
167
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90eXBlcy9lbnVtcy9tb25pdG9yL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFHcEUsUUFBQSxVQUFVLEdBQUc7SUFDdEIsSUFBSSxFQUFFLE1BQU07SUFDWixXQUFXLEVBQUUsYUFBYTtDQUNwQixDQUFDO0FBT0UsUUFBQSxpQkFBaUIsR0FBRztJQUM3QixNQUFNLEVBQUUsUUFBUTtJQUNoQixXQUFXLEVBQUUsYUFBYTtJQUMxQixrQkFBa0IsRUFBRSxvQkFBb0I7SUFDeEMsUUFBUSxFQUFFLFVBQVU7SUFDcEIsZUFBZSxFQUFFLGlCQUFpQjtJQUNsQyxpQkFBaUIsRUFBRSxtQkFBbUI7Q0FDaEMsQ0FBQztBQU9FLFFBQUEsYUFBYSxHQUFHO0lBQ3pCLHdCQUF3QixFQUFFLDBCQUEwQjtJQUNwRCx5QkFBeUIsRUFBRSwyQkFBMkI7Q0FDaEQsQ0FBQztBQU9FLFFBQUEsaUJBQWlCLEdBQUc7SUFDN0IsT0FBTyxFQUFFLFNBQVM7SUFDbEIsT0FBTyxFQUFFLFNBQVM7Q0FDWixDQUFDO0FBT0UsUUFBQSxZQUFZLEdBQUc7SUFDeEI7O09BRUc7SUFDSCx5QkFBeUIsRUFBRSwyQkFBMkI7SUFDdEQ7O09BRUc7SUFDSCxhQUFhLEVBQUUsZUFBZTtDQUN4QixDQUFDO0FBT0UsUUFBQSxvQkFBb0IsR0FBRztJQUNoQzs7T0FFRztJQUNILFFBQVEsRUFBRSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gsY0FBYyxFQUFFLGdCQUFnQjtDQUMxQixDQUFDO0FBT0UsUUFBQSxzQkFBc0IsR0FBRztJQUNsQzs7T0FFRztJQUNILGdCQUFnQixFQUFFLGtCQUFrQjtDQUM5QixDQUFDO0FBT0UsUUFBQSxZQUFZLEdBQUc7SUFDeEIsY0FBYyxFQUFFLGdCQUFnQjtJQUNoQyxZQUFZLEVBQUUsY0FBYztJQUM1QixJQUFJLEVBQUUsTUFBTTtDQUNOLENBQUM7QUFPRSxRQUFBLHlCQUF5QixHQUFHO0lBQ3JDLEdBQUcsRUFBRSxLQUFLO0NBQ0osQ0FBQztBQU9FLFFBQUEsaUJBQWlCLEdBQUc7SUFDN0I7O09BRUc7SUFDSCxJQUFJLEVBQUUsTUFBTTtJQUNaOztPQUVHO0lBQ0gsVUFBVSxFQUFFLFlBQVk7Q0FDbEIsQ0FBQztBQU9FLFFBQUEsSUFBSSxHQUFHO0lBQ2hCLFFBQVEsRUFBRSxVQUFVO0lBQ3BCLGFBQWEsRUFBRSxlQUFlO0lBQzlCLFdBQVcsRUFBRSxhQUFhO0NBQ3BCLENBQUM7QUFPRSxRQUFBLDBCQUEwQixHQUFHO0lBQ3RDLElBQUksRUFBRSxNQUFNO0lBQ1osY0FBYyxFQUFFLGdCQUFnQjtJQUNoQyxZQUFZLEVBQUUsY0FBYztJQUM1QiwyQkFBMkIsRUFBRSw2QkFBNkI7Q0FDcEQsQ0FBQztBQU9FLFFBQUEsWUFBWSxHQUFHO0lBQ3hCOztPQUVHO0lBQ0gsSUFBSSxFQUFFLE1BQU07Q0FDTixDQUFDO0FBT0UsUUFBQSxzQ0FBc0MsR0FBRztJQUNsRCxPQUFPLEVBQUUsU0FBUztJQUNsQixRQUFRLEVBQUUsVUFBVTtJQUNwQixRQUFRLEVBQUUsVUFBVTtDQUNkLENBQUM7QUFPRSxRQUFBLGFBQWEsR0FBRztJQUN6Qjs7T0FFRztJQUNILEtBQUssRUFBRSxPQUFPO0NBQ1IsQ0FBQztBQU9FLFFBQUEsWUFBWSxHQUFHO0lBQ3hCOztPQUVHO0lBQ0gsTUFBTSxFQUFFLFFBQVE7SUFDaEI7O09BRUc7SUFDSCxHQUFHLEVBQUUsS0FBSztJQUNWOztPQUVHO0lBQ0gsYUFBYSxFQUFFLGVBQWU7SUFDOUI7O09BRUc7SUFDSCxJQUFJLEVBQUUsTUFBTTtJQUNaOztPQUVHO0lBQ0gsR0FBRyxFQUFFLEtBQUs7Q0FDSixDQUFDO0FBT0UsUUFBQSxrQkFBa0IsR0FBRztJQUM5QixRQUFRLEVBQUUsVUFBVTtJQUNwQixPQUFPLEVBQUUsU0FBUztDQUNaLENBQUM7QUFPRSxRQUFBLGtCQUFrQixHQUFHO0lBQzlCOztPQUVHO0lBQ0gsR0FBRyxFQUFFLEtBQUs7SUFDVjs7T0FFRztJQUNILEtBQUssRUFBRSxPQUFPO0lBQ2Q7O09BRUc7SUFDSCxRQUFRLEVBQUUsVUFBVTtJQUNwQjs7T0FFRztJQUNILFFBQVEsRUFBRSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gsS0FBSyxFQUFFLE9BQU87SUFDZDs7T0FFRztJQUNILElBQUksRUFBRSxNQUFNO0NBQ04sQ0FBQztBQU9FLFFBQUEsY0FBYyxHQUFHO0lBQzFCOztPQUVHO0lBQ0gsT0FBTyxFQUFFLFNBQVM7SUFDbEI7O09BRUc7SUFDSCxPQUFPLEVBQUUsU0FBUztDQUNaLENBQUM7QUFPRSxRQUFBLGVBQWUsR0FBRztJQUMzQixLQUFLLEVBQUUsT0FBTztJQUNkLE9BQU8sRUFBRSxTQUFTO0lBQ2xCLE9BQU8sRUFBRSxTQUFTO0lBQ2xCLE9BQU8sRUFBRSxTQUFTO0lBQ2xCLEtBQUssRUFBRSxPQUFPO0NBQ1IsQ0FBQyJ9
215
+ exports.TimeAggregationType = {
216
+ Average: "Average",
217
+ Minimum: "Minimum",
218
+ Maximum: "Maximum",
219
+ Total: "Total",
220
+ Count: "Count",
221
+ Last: "Last",
222
+ };
223
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90eXBlcy9lbnVtcy9tb25pdG9yL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxzRUFBc0U7QUFDdEUsaUZBQWlGOzs7QUFHcEUsUUFBQSxVQUFVLEdBQUc7SUFDdEIsSUFBSSxFQUFFLE1BQU07SUFDWixXQUFXLEVBQUUsYUFBYTtDQUNwQixDQUFDO0FBT0UsUUFBQSx1QkFBdUIsR0FBRztJQUNuQyxNQUFNLEVBQUUsUUFBUTtJQUNoQixTQUFTLEVBQUUsV0FBVztJQUN0QixXQUFXLEVBQUUsYUFBYTtJQUMxQixrQkFBa0IsRUFBRSxvQkFBb0I7SUFDeEMsUUFBUSxFQUFFLFVBQVU7SUFDcEIsZUFBZSxFQUFFLGlCQUFpQjtDQUM1QixDQUFDO0FBT0UsUUFBQSxpQkFBaUIsR0FBRztJQUM3QixNQUFNLEVBQUUsUUFBUTtJQUNoQixXQUFXLEVBQUUsYUFBYTtJQUMxQixrQkFBa0IsRUFBRSxvQkFBb0I7SUFDeEMsUUFBUSxFQUFFLFVBQVU7SUFDcEIsZUFBZSxFQUFFLGlCQUFpQjtJQUNsQyxpQkFBaUIsRUFBRSxtQkFBbUI7Q0FDaEMsQ0FBQztBQU9FLFFBQUEsYUFBYSxHQUFHO0lBQ3pCLHdCQUF3QixFQUFFLDBCQUEwQjtJQUNwRCx5QkFBeUIsRUFBRSwyQkFBMkI7Q0FDaEQsQ0FBQztBQU9FLFFBQUEsaUJBQWlCLEdBQUc7SUFDN0IsT0FBTyxFQUFFLFNBQVM7SUFDbEIsT0FBTyxFQUFFLFNBQVM7Q0FDWixDQUFDO0FBT0UsUUFBQSxZQUFZLEdBQUc7SUFDeEI7O09BRUc7SUFDSCx5QkFBeUIsRUFBRSwyQkFBMkI7SUFDdEQ7O09BRUc7SUFDSCxhQUFhLEVBQUUsZUFBZTtDQUN4QixDQUFDO0FBT0UsUUFBQSxvQkFBb0IsR0FBRztJQUNoQzs7T0FFRztJQUNILFFBQVEsRUFBRSxVQUFVO0lBQ3BCOztPQUVHO0lBQ0gsY0FBYyxFQUFFLGdCQUFn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
package/types/input.d.ts CHANGED
@@ -122981,6 +122981,52 @@ export declare namespace monitor {
122981
122981
  * automationRunbookReceiverArgsProvideDefaults sets the appropriate defaults for AutomationRunbookReceiverArgs
122982
122982
  */
122983
122983
  function automationRunbookReceiverArgsProvideDefaults(val: AutomationRunbookReceiverArgs): AutomationRunbookReceiverArgs;
122984
+ /**
122985
+ * Autoscale notification.
122986
+ */
122987
+ interface AutoscaleNotificationArgs {
122988
+ /**
122989
+ * the email notification.
122990
+ */
122991
+ email?: pulumi.Input<inputs.monitor.EmailNotificationArgs>;
122992
+ /**
122993
+ * the operation associated with the notification and its value must be "scale"
122994
+ */
122995
+ operation: pulumi.Input<enums.monitor.OperationType>;
122996
+ /**
122997
+ * the collection of webhook notifications.
122998
+ */
122999
+ webhooks?: pulumi.Input<pulumi.Input<inputs.monitor.WebhookNotificationArgs>[]>;
123000
+ }
123001
+ /**
123002
+ * autoscaleNotificationArgsProvideDefaults sets the appropriate defaults for AutoscaleNotificationArgs
123003
+ */
123004
+ function autoscaleNotificationArgsProvideDefaults(val: AutoscaleNotificationArgs): AutoscaleNotificationArgs;
123005
+ /**
123006
+ * Autoscale profile.
123007
+ */
123008
+ interface AutoscaleProfileArgs {
123009
+ /**
123010
+ * the number of instances that can be used during this profile.
123011
+ */
123012
+ capacity: pulumi.Input<inputs.monitor.ScaleCapacityArgs>;
123013
+ /**
123014
+ * the specific date-time for the profile. This element is not used if the Recurrence element is used.
123015
+ */
123016
+ fixedDate?: pulumi.Input<inputs.monitor.TimeWindowArgs>;
123017
+ /**
123018
+ * the name of the profile.
123019
+ */
123020
+ name: pulumi.Input<string>;
123021
+ /**
123022
+ * the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
123023
+ */
123024
+ recurrence?: pulumi.Input<inputs.monitor.RecurrenceArgs>;
123025
+ /**
123026
+ * the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
123027
+ */
123028
+ rules: pulumi.Input<pulumi.Input<inputs.monitor.ScaleRuleArgs>[]>;
123029
+ }
122984
123030
  /**
122985
123031
  * The Azure mobile App push notification receiver.
122986
123032
  */
@@ -123220,6 +123266,27 @@ export declare namespace monitor {
123220
123266
  */
123221
123267
  values: pulumi.Input<pulumi.Input<string>[]>;
123222
123268
  }
123269
+ /**
123270
+ * Email notification of an autoscale event.
123271
+ */
123272
+ interface EmailNotificationArgs {
123273
+ /**
123274
+ * the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
123275
+ */
123276
+ customEmails?: pulumi.Input<pulumi.Input<string>[]>;
123277
+ /**
123278
+ * a value indicating whether to send email to subscription administrator.
123279
+ */
123280
+ sendToSubscriptionAdministrator?: pulumi.Input<boolean>;
123281
+ /**
123282
+ * a value indicating whether to send email to subscription co-administrators.
123283
+ */
123284
+ sendToSubscriptionCoAdministrators?: pulumi.Input<boolean>;
123285
+ }
123286
+ /**
123287
+ * emailNotificationArgsProvideDefaults sets the appropriate defaults for EmailNotificationArgs
123288
+ */
123289
+ function emailNotificationArgsProvideDefaults(val: EmailNotificationArgs): EmailNotificationArgs;
123223
123290
  /**
123224
123291
  * An email receiver.
123225
123292
  */
@@ -123424,6 +123491,27 @@ export declare namespace monitor {
123424
123491
  */
123425
123492
  fieldName?: pulumi.Input<string>;
123426
123493
  }
123494
+ /**
123495
+ * Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log.
123496
+ */
123497
+ interface LogSettingsArgs {
123498
+ /**
123499
+ * Name of a Diagnostic Log category for a resource type this setting is applied to. To obtain the list of Diagnostic Log categories for a resource, first perform a GET diagnostic settings operation.
123500
+ */
123501
+ category?: pulumi.Input<string>;
123502
+ /**
123503
+ * Name of a Diagnostic Log category group for a resource type this setting is applied to. To obtain the list of Diagnostic Log categories for a resource, first perform a GET diagnostic settings operation.
123504
+ */
123505
+ categoryGroup?: pulumi.Input<string>;
123506
+ /**
123507
+ * a value indicating whether this log is enabled.
123508
+ */
123509
+ enabled: pulumi.Input<boolean>;
123510
+ /**
123511
+ * the retention policy for this log.
123512
+ */
123513
+ retentionPolicy?: pulumi.Input<inputs.monitor.RetentionPolicyArgs>;
123514
+ }
123427
123515
  /**
123428
123516
  * A logic app receiver.
123429
123517
  */
@@ -123466,6 +123554,97 @@ export declare namespace monitor {
123466
123554
  */
123467
123555
  userAssignedIdentities?: pulumi.Input<pulumi.Input<string>[]>;
123468
123556
  }
123557
+ /**
123558
+ * Part of Management Group diagnostic setting. Specifies the settings for a particular log.
123559
+ */
123560
+ interface ManagementGroupLogSettingsArgs {
123561
+ /**
123562
+ * Name of a Management Group Diagnostic Log category for a resource type this setting is applied to.
123563
+ */
123564
+ category?: pulumi.Input<string>;
123565
+ /**
123566
+ * Name of a Management Group Diagnostic Log category group for a resource type this setting is applied to.
123567
+ */
123568
+ categoryGroup?: pulumi.Input<string>;
123569
+ /**
123570
+ * a value indicating whether this log is enabled.
123571
+ */
123572
+ enabled: pulumi.Input<boolean>;
123573
+ }
123574
+ /**
123575
+ * Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular metric.
123576
+ */
123577
+ interface MetricSettingsArgs {
123578
+ /**
123579
+ * Name of a Diagnostic Metric category for a resource type this setting is applied to. To obtain the list of Diagnostic metric categories for a resource, first perform a GET diagnostic settings operation.
123580
+ */
123581
+ category?: pulumi.Input<string>;
123582
+ /**
123583
+ * a value indicating whether this category is enabled.
123584
+ */
123585
+ enabled: pulumi.Input<boolean>;
123586
+ /**
123587
+ * the retention policy for this category.
123588
+ */
123589
+ retentionPolicy?: pulumi.Input<inputs.monitor.RetentionPolicyArgs>;
123590
+ /**
123591
+ * the timegrain of the metric in ISO8601 format.
123592
+ */
123593
+ timeGrain?: pulumi.Input<string>;
123594
+ }
123595
+ /**
123596
+ * The trigger that results in a scaling action.
123597
+ */
123598
+ interface MetricTriggerArgs {
123599
+ /**
123600
+ * List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
123601
+ */
123602
+ dimensions?: pulumi.Input<pulumi.Input<inputs.monitor.ScaleRuleMetricDimensionArgs>[]>;
123603
+ /**
123604
+ * a value indicating whether metric should divide per instance.
123605
+ */
123606
+ dividePerInstance?: pulumi.Input<boolean>;
123607
+ /**
123608
+ * the name of the metric that defines what the rule monitors.
123609
+ */
123610
+ metricName: pulumi.Input<string>;
123611
+ /**
123612
+ * the namespace of the metric that defines what the rule monitors.
123613
+ */
123614
+ metricNamespace?: pulumi.Input<string>;
123615
+ /**
123616
+ * the location of the resource the rule monitors.
123617
+ */
123618
+ metricResourceLocation?: pulumi.Input<string>;
123619
+ /**
123620
+ * the resource identifier of the resource the rule monitors.
123621
+ */
123622
+ metricResourceUri: pulumi.Input<string>;
123623
+ /**
123624
+ * the operator that is used to compare the metric data and the threshold.
123625
+ */
123626
+ operator: pulumi.Input<enums.monitor.ComparisonOperationType>;
123627
+ /**
123628
+ * the metric statistic type. How the metrics from multiple instances are combined.
123629
+ */
123630
+ statistic: pulumi.Input<enums.monitor.MetricStatisticType>;
123631
+ /**
123632
+ * the threshold of the metric that triggers the scale action.
123633
+ */
123634
+ threshold: pulumi.Input<number>;
123635
+ /**
123636
+ * time aggregation type. How the data that is collected should be combined over time. The default value is Average.
123637
+ */
123638
+ timeAggregation: pulumi.Input<enums.monitor.TimeAggregationType>;
123639
+ /**
123640
+ * the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
123641
+ */
123642
+ timeGrain: pulumi.Input<string>;
123643
+ /**
123644
+ * the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
123645
+ */
123646
+ timeWindow: pulumi.Input<string>;
123647
+ }
123469
123648
  /**
123470
123649
  * Networking configuration for the pipeline group instance.
123471
123650
  */
@@ -123576,6 +123755,19 @@ export declare namespace monitor {
123576
123755
  */
123577
123756
  service: pulumi.Input<inputs.monitor.ServiceArgs>;
123578
123757
  }
123758
+ /**
123759
+ * The parameters for enabling predictive autoscale.
123760
+ */
123761
+ interface PredictiveAutoscalePolicyArgs {
123762
+ /**
123763
+ * the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
123764
+ */
123765
+ scaleLookAheadTime?: pulumi.Input<string>;
123766
+ /**
123767
+ * the predictive autoscale mode
123768
+ */
123769
+ scaleMode: pulumi.Input<enums.monitor.PredictiveAutoscalePolicyScaleMode>;
123770
+ }
123579
123771
  /**
123580
123772
  * A collection of information about the state of the connection between service consumer and provider.
123581
123773
  */
@@ -123656,6 +123848,40 @@ export declare namespace monitor {
123656
123848
  */
123657
123849
  to: pulumi.Input<string>;
123658
123850
  }
123851
+ /**
123852
+ * The repeating times at which this profile begins. This element is not used if the FixedDate element is used.
123853
+ */
123854
+ interface RecurrenceArgs {
123855
+ /**
123856
+ * the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set **schedule** to every day of the week. The frequency property specifies that the schedule is repeated weekly.
123857
+ */
123858
+ frequency: pulumi.Input<enums.monitor.RecurrenceFrequency>;
123859
+ /**
123860
+ * the scheduling constraints for when the profile begins.
123861
+ */
123862
+ schedule: pulumi.Input<inputs.monitor.RecurrentScheduleArgs>;
123863
+ }
123864
+ /**
123865
+ * The scheduling constraints for when the profile begins.
123866
+ */
123867
+ interface RecurrentScheduleArgs {
123868
+ /**
123869
+ * the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
123870
+ */
123871
+ days: pulumi.Input<pulumi.Input<string>[]>;
123872
+ /**
123873
+ * A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
123874
+ */
123875
+ hours: pulumi.Input<pulumi.Input<number>[]>;
123876
+ /**
123877
+ * A collection of minutes at which the profile takes effect at.
123878
+ */
123879
+ minutes: pulumi.Input<pulumi.Input<number>[]>;
123880
+ /**
123881
+ * the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
123882
+ */
123883
+ timeZone: pulumi.Input<string>;
123884
+ }
123659
123885
  /**
123660
123886
  * Resource map for schema in azure monitor.
123661
123887
  */
@@ -123669,6 +123895,19 @@ export declare namespace monitor {
123669
123895
  */
123670
123896
  to: pulumi.Input<string>;
123671
123897
  }
123898
+ /**
123899
+ * Specifies the retention policy for the log.
123900
+ */
123901
+ interface RetentionPolicyArgs {
123902
+ /**
123903
+ * the number of days for the retention in days. A value of 0 will retain the events indefinitely.
123904
+ */
123905
+ days: pulumi.Input<number>;
123906
+ /**
123907
+ * a value indicating whether the retention policy is enabled.
123908
+ */
123909
+ enabled: pulumi.Input<boolean>;
123910
+ }
123672
123911
  /**
123673
123912
  * TBD. Relevant only for rules of the kind LogAlert.
123674
123913
  */
@@ -123682,6 +123921,82 @@ export declare namespace monitor {
123682
123921
  */
123683
123922
  timeToResolve?: pulumi.Input<string>;
123684
123923
  }
123924
+ /**
123925
+ * The parameters for the scaling action.
123926
+ */
123927
+ interface ScaleActionArgs {
123928
+ /**
123929
+ * the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
123930
+ */
123931
+ cooldown: pulumi.Input<string>;
123932
+ /**
123933
+ * the scale direction. Whether the scaling action increases or decreases the number of instances.
123934
+ */
123935
+ direction: pulumi.Input<enums.monitor.ScaleDirection>;
123936
+ /**
123937
+ * the type of action that should occur when the scale rule fires.
123938
+ */
123939
+ type: pulumi.Input<enums.monitor.ScaleType>;
123940
+ /**
123941
+ * the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
123942
+ */
123943
+ value?: pulumi.Input<string>;
123944
+ }
123945
+ /**
123946
+ * scaleActionArgsProvideDefaults sets the appropriate defaults for ScaleActionArgs
123947
+ */
123948
+ function scaleActionArgsProvideDefaults(val: ScaleActionArgs): ScaleActionArgs;
123949
+ /**
123950
+ * The number of instances that can be used during this profile.
123951
+ */
123952
+ interface ScaleCapacityArgs {
123953
+ /**
123954
+ * the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
123955
+ */
123956
+ default: pulumi.Input<string>;
123957
+ /**
123958
+ * the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
123959
+ */
123960
+ maximum: pulumi.Input<string>;
123961
+ /**
123962
+ * the minimum number of instances for the resource.
123963
+ */
123964
+ minimum: pulumi.Input<string>;
123965
+ }
123966
+ /**
123967
+ * A rule that provide the triggers and parameters for the scaling action.
123968
+ */
123969
+ interface ScaleRuleArgs {
123970
+ /**
123971
+ * the trigger that results in a scaling action.
123972
+ */
123973
+ metricTrigger: pulumi.Input<inputs.monitor.MetricTriggerArgs>;
123974
+ /**
123975
+ * the parameters for the scaling action.
123976
+ */
123977
+ scaleAction: pulumi.Input<inputs.monitor.ScaleActionArgs>;
123978
+ }
123979
+ /**
123980
+ * scaleRuleArgsProvideDefaults sets the appropriate defaults for ScaleRuleArgs
123981
+ */
123982
+ function scaleRuleArgsProvideDefaults(val: ScaleRuleArgs): ScaleRuleArgs;
123983
+ /**
123984
+ * Specifies an auto scale rule metric dimension.
123985
+ */
123986
+ interface ScaleRuleMetricDimensionArgs {
123987
+ /**
123988
+ * Name of the dimension.
123989
+ */
123990
+ dimensionName: pulumi.Input<string>;
123991
+ /**
123992
+ * the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
123993
+ */
123994
+ operator: pulumi.Input<string | enums.monitor.ScaleRuleMetricDimensionOperationType>;
123995
+ /**
123996
+ * list of dimension values. For example: ["App1","App2"].
123997
+ */
123998
+ values: pulumi.Input<pulumi.Input<string>[]>;
123999
+ }
123685
124000
  /**
123686
124001
  * The rule criteria that defines the conditions of the scheduled query rule.
123687
124002
  */
@@ -123751,6 +124066,23 @@ export declare namespace monitor {
123751
124066
  */
123752
124067
  phoneNumber: pulumi.Input<string>;
123753
124068
  }
124069
+ /**
124070
+ * Part of Subscription diagnostic setting. Specifies the settings for a particular log.
124071
+ */
124072
+ interface SubscriptionLogSettingsArgs {
124073
+ /**
124074
+ * Name of a Subscription Diagnostic Log category for a resource type this setting is applied to.
124075
+ */
124076
+ category?: pulumi.Input<string>;
124077
+ /**
124078
+ * Name of a Subscription Diagnostic Log category group for a resource type this setting is applied to.
124079
+ */
124080
+ categoryGroup?: pulumi.Input<string>;
124081
+ /**
124082
+ * a value indicating whether this log is enabled.
124083
+ */
124084
+ enabled: pulumi.Input<boolean>;
124085
+ }
123754
124086
  /**
123755
124087
  * Base receiver using TCP as transport protocol.
123756
124088
  */
@@ -123777,6 +124109,23 @@ export declare namespace monitor {
123777
124109
  */
123778
124110
  url: pulumi.Input<string>;
123779
124111
  }
124112
+ /**
124113
+ * A specific date-time for the profile.
124114
+ */
124115
+ interface TimeWindowArgs {
124116
+ /**
124117
+ * the end time for the profile in ISO 8601 format.
124118
+ */
124119
+ end: pulumi.Input<string>;
124120
+ /**
124121
+ * the start time for the profile in ISO 8601 format.
124122
+ */
124123
+ start: pulumi.Input<string>;
124124
+ /**
124125
+ * the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
124126
+ */
124127
+ timeZone?: pulumi.Input<string>;
124128
+ }
123780
124129
  /**
123781
124130
  * Receiver using UDP as transport protocol.
123782
124131
  */
@@ -123819,6 +124168,21 @@ export declare namespace monitor {
123819
124168
  */
123820
124169
  phoneNumber: pulumi.Input<string>;
123821
124170
  }
124171
+ /**
124172
+ * Webhook notification of an autoscale event.
124173
+ */
124174
+ interface WebhookNotificationArgs {
124175
+ /**
124176
+ * a property bag of settings. This value can be empty.
124177
+ */
124178
+ properties?: pulumi.Input<{
124179
+ [key: string]: pulumi.Input<string>;
124180
+ }>;
124181
+ /**
124182
+ * the service address to receive the notification.
124183
+ */
124184
+ serviceUri?: pulumi.Input<string>;
124185
+ }
123822
124186
  /**
123823
124187
  * A webhook receiver.
123824
124188
  */