@pulumi/azure-native 3.0.0 → 3.0.1

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.
package/types/output.d.ts CHANGED
@@ -158272,6 +158272,89 @@ export declare namespace monitor {
158272
158272
  * automationRunbookReceiverResponseProvideDefaults sets the appropriate defaults for AutomationRunbookReceiverResponse
158273
158273
  */
158274
158274
  function automationRunbookReceiverResponseProvideDefaults(val: AutomationRunbookReceiverResponse): AutomationRunbookReceiverResponse;
158275
+ /**
158276
+ * Autoscale notification.
158277
+ */
158278
+ interface AutoscaleNotificationResponse {
158279
+ /**
158280
+ * the email notification.
158281
+ */
158282
+ email?: outputs.monitor.EmailNotificationResponse;
158283
+ /**
158284
+ * the operation associated with the notification and its value must be "scale"
158285
+ */
158286
+ operation: string;
158287
+ /**
158288
+ * the collection of webhook notifications.
158289
+ */
158290
+ webhooks?: outputs.monitor.WebhookNotificationResponse[];
158291
+ }
158292
+ /**
158293
+ * autoscaleNotificationResponseProvideDefaults sets the appropriate defaults for AutoscaleNotificationResponse
158294
+ */
158295
+ function autoscaleNotificationResponseProvideDefaults(val: AutoscaleNotificationResponse): AutoscaleNotificationResponse;
158296
+ /**
158297
+ * Autoscale profile.
158298
+ */
158299
+ interface AutoscaleProfileResponse {
158300
+ /**
158301
+ * the number of instances that can be used during this profile.
158302
+ */
158303
+ capacity: outputs.monitor.ScaleCapacityResponse;
158304
+ /**
158305
+ * the specific date-time for the profile. This element is not used if the Recurrence element is used.
158306
+ */
158307
+ fixedDate?: outputs.monitor.TimeWindowResponse;
158308
+ /**
158309
+ * the name of the profile.
158310
+ */
158311
+ name: string;
158312
+ /**
158313
+ * the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
158314
+ */
158315
+ recurrence?: outputs.monitor.RecurrenceResponse;
158316
+ /**
158317
+ * the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
158318
+ */
158319
+ rules: outputs.monitor.ScaleRuleResponse[];
158320
+ }
158321
+ /**
158322
+ * A setting that contains all of the configuration for the automatic scaling of a resource.
158323
+ */
158324
+ interface AutoscaleSettingResponse {
158325
+ /**
158326
+ * the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
158327
+ */
158328
+ enabled?: boolean;
158329
+ /**
158330
+ * the name of the autoscale setting.
158331
+ */
158332
+ name?: string;
158333
+ /**
158334
+ * the collection of notifications.
158335
+ */
158336
+ notifications?: outputs.monitor.AutoscaleNotificationResponse[];
158337
+ /**
158338
+ * the predictive autoscale policy mode.
158339
+ */
158340
+ predictiveAutoscalePolicy?: outputs.monitor.PredictiveAutoscalePolicyResponse;
158341
+ /**
158342
+ * the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
158343
+ */
158344
+ profiles: outputs.monitor.AutoscaleProfileResponse[];
158345
+ /**
158346
+ * the location of the resource that the autoscale setting should be added to.
158347
+ */
158348
+ targetResourceLocation?: string;
158349
+ /**
158350
+ * the resource identifier of the resource that the autoscale setting should be added to.
158351
+ */
158352
+ targetResourceUri?: string;
158353
+ }
158354
+ /**
158355
+ * autoscaleSettingResponseProvideDefaults sets the appropriate defaults for AutoscaleSettingResponse
158356
+ */
158357
+ function autoscaleSettingResponseProvideDefaults(val: AutoscaleSettingResponse): AutoscaleSettingResponse;
158275
158358
  /**
158276
158359
  * The Azure mobile App push notification receiver.
158277
158360
  */
@@ -158494,6 +158577,35 @@ export declare namespace monitor {
158494
158577
  * conditionResponseFailingPeriodsProvideDefaults sets the appropriate defaults for ConditionResponseFailingPeriods
158495
158578
  */
158496
158579
  function conditionResponseFailingPeriodsProvideDefaults(val: ConditionResponseFailingPeriods): ConditionResponseFailingPeriods;
158580
+ /**
158581
+ * The diagnostic settings category resource.
158582
+ */
158583
+ interface DiagnosticSettingsCategoryResourceResponse {
158584
+ /**
158585
+ * the collection of what category groups are supported.
158586
+ */
158587
+ categoryGroups?: string[];
158588
+ /**
158589
+ * The type of the diagnostic settings category.
158590
+ */
158591
+ categoryType?: string;
158592
+ /**
158593
+ * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
158594
+ */
158595
+ id: string;
158596
+ /**
158597
+ * The name of the resource
158598
+ */
158599
+ name: string;
158600
+ /**
158601
+ * The system metadata related to this resource.
158602
+ */
158603
+ systemData: outputs.monitor.SystemDataResponse;
158604
+ /**
158605
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
158606
+ */
158607
+ type: string;
158608
+ }
158497
158609
  /**
158498
158610
  * Dimension splitting and filtering definition
158499
158611
  */
@@ -158511,6 +158623,27 @@ export declare namespace monitor {
158511
158623
  */
158512
158624
  values: string[];
158513
158625
  }
158626
+ /**
158627
+ * Email notification of an autoscale event.
158628
+ */
158629
+ interface EmailNotificationResponse {
158630
+ /**
158631
+ * the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
158632
+ */
158633
+ customEmails?: string[];
158634
+ /**
158635
+ * a value indicating whether to send email to subscription administrator.
158636
+ */
158637
+ sendToSubscriptionAdministrator?: boolean;
158638
+ /**
158639
+ * a value indicating whether to send email to subscription co-administrators.
158640
+ */
158641
+ sendToSubscriptionCoAdministrators?: boolean;
158642
+ }
158643
+ /**
158644
+ * emailNotificationResponseProvideDefaults sets the appropriate defaults for EmailNotificationResponse
158645
+ */
158646
+ function emailNotificationResponseProvideDefaults(val: EmailNotificationResponse): EmailNotificationResponse;
158514
158647
  /**
158515
158648
  * An email receiver.
158516
158649
  */
@@ -158742,6 +158875,27 @@ export declare namespace monitor {
158742
158875
  */
158743
158876
  fieldName?: string;
158744
158877
  }
158878
+ /**
158879
+ * Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular log.
158880
+ */
158881
+ interface LogSettingsResponse {
158882
+ /**
158883
+ * 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.
158884
+ */
158885
+ category?: string;
158886
+ /**
158887
+ * 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.
158888
+ */
158889
+ categoryGroup?: string;
158890
+ /**
158891
+ * a value indicating whether this log is enabled.
158892
+ */
158893
+ enabled: boolean;
158894
+ /**
158895
+ * the retention policy for this log.
158896
+ */
158897
+ retentionPolicy?: outputs.monitor.RetentionPolicyResponse;
158898
+ }
158745
158899
  /**
158746
158900
  * A logic app receiver.
158747
158901
  */
@@ -158794,6 +158948,97 @@ export declare namespace monitor {
158794
158948
  [key: string]: outputs.monitor.UserAssignedIdentityResponse;
158795
158949
  };
158796
158950
  }
158951
+ /**
158952
+ * Part of Management Group diagnostic setting. Specifies the settings for a particular log.
158953
+ */
158954
+ interface ManagementGroupLogSettingsResponse {
158955
+ /**
158956
+ * Name of a Management Group Diagnostic Log category for a resource type this setting is applied to.
158957
+ */
158958
+ category?: string;
158959
+ /**
158960
+ * Name of a Management Group Diagnostic Log category group for a resource type this setting is applied to.
158961
+ */
158962
+ categoryGroup?: string;
158963
+ /**
158964
+ * a value indicating whether this log is enabled.
158965
+ */
158966
+ enabled: boolean;
158967
+ }
158968
+ /**
158969
+ * Part of MultiTenantDiagnosticSettings. Specifies the settings for a particular metric.
158970
+ */
158971
+ interface MetricSettingsResponse {
158972
+ /**
158973
+ * 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.
158974
+ */
158975
+ category?: string;
158976
+ /**
158977
+ * a value indicating whether this category is enabled.
158978
+ */
158979
+ enabled: boolean;
158980
+ /**
158981
+ * the retention policy for this category.
158982
+ */
158983
+ retentionPolicy?: outputs.monitor.RetentionPolicyResponse;
158984
+ /**
158985
+ * the timegrain of the metric in ISO8601 format.
158986
+ */
158987
+ timeGrain?: string;
158988
+ }
158989
+ /**
158990
+ * The trigger that results in a scaling action.
158991
+ */
158992
+ interface MetricTriggerResponse {
158993
+ /**
158994
+ * List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
158995
+ */
158996
+ dimensions?: outputs.monitor.ScaleRuleMetricDimensionResponse[];
158997
+ /**
158998
+ * a value indicating whether metric should divide per instance.
158999
+ */
159000
+ dividePerInstance?: boolean;
159001
+ /**
159002
+ * the name of the metric that defines what the rule monitors.
159003
+ */
159004
+ metricName: string;
159005
+ /**
159006
+ * the namespace of the metric that defines what the rule monitors.
159007
+ */
159008
+ metricNamespace?: string;
159009
+ /**
159010
+ * the location of the resource the rule monitors.
159011
+ */
159012
+ metricResourceLocation?: string;
159013
+ /**
159014
+ * the resource identifier of the resource the rule monitors.
159015
+ */
159016
+ metricResourceUri: string;
159017
+ /**
159018
+ * the operator that is used to compare the metric data and the threshold.
159019
+ */
159020
+ operator: string;
159021
+ /**
159022
+ * the metric statistic type. How the metrics from multiple instances are combined.
159023
+ */
159024
+ statistic: string;
159025
+ /**
159026
+ * the threshold of the metric that triggers the scale action.
159027
+ */
159028
+ threshold: number;
159029
+ /**
159030
+ * time aggregation type. How the data that is collected should be combined over time. The default value is Average.
159031
+ */
159032
+ timeAggregation: string;
159033
+ /**
159034
+ * 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.
159035
+ */
159036
+ timeGrain: string;
159037
+ /**
159038
+ * 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.
159039
+ */
159040
+ timeWindow: string;
159041
+ }
158797
159042
  /**
158798
159043
  * Information about metrics for the workspace
158799
159044
  */
@@ -158921,6 +159166,19 @@ export declare namespace monitor {
158921
159166
  */
158922
159167
  type: string;
158923
159168
  }
159169
+ /**
159170
+ * The parameters for enabling predictive autoscale.
159171
+ */
159172
+ interface PredictiveAutoscalePolicyResponse {
159173
+ /**
159174
+ * 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.
159175
+ */
159176
+ scaleLookAheadTime?: string;
159177
+ /**
159178
+ * the predictive autoscale mode
159179
+ */
159180
+ scaleMode: string;
159181
+ }
158924
159182
  /**
158925
159183
  * The Private Endpoint Connection resource.
158926
159184
  */
@@ -159047,6 +159305,40 @@ export declare namespace monitor {
159047
159305
  */
159048
159306
  to: string;
159049
159307
  }
159308
+ /**
159309
+ * The repeating times at which this profile begins. This element is not used if the FixedDate element is used.
159310
+ */
159311
+ interface RecurrenceResponse {
159312
+ /**
159313
+ * 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.
159314
+ */
159315
+ frequency: string;
159316
+ /**
159317
+ * the scheduling constraints for when the profile begins.
159318
+ */
159319
+ schedule: outputs.monitor.RecurrentScheduleResponse;
159320
+ }
159321
+ /**
159322
+ * The scheduling constraints for when the profile begins.
159323
+ */
159324
+ interface RecurrentScheduleResponse {
159325
+ /**
159326
+ * the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
159327
+ */
159328
+ days: string[];
159329
+ /**
159330
+ * 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).
159331
+ */
159332
+ hours: number[];
159333
+ /**
159334
+ * A collection of minutes at which the profile takes effect at.
159335
+ */
159336
+ minutes: number[];
159337
+ /**
159338
+ * 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
159339
+ */
159340
+ timeZone: string;
159341
+ }
159050
159342
  /**
159051
159343
  * Resource map for schema in azure monitor.
159052
159344
  */
@@ -159060,6 +159352,19 @@ export declare namespace monitor {
159060
159352
  */
159061
159353
  to: string;
159062
159354
  }
159355
+ /**
159356
+ * Specifies the retention policy for the log.
159357
+ */
159358
+ interface RetentionPolicyResponse {
159359
+ /**
159360
+ * the number of days for the retention in days. A value of 0 will retain the events indefinitely.
159361
+ */
159362
+ days: number;
159363
+ /**
159364
+ * a value indicating whether the retention policy is enabled.
159365
+ */
159366
+ enabled: boolean;
159367
+ }
159063
159368
  /**
159064
159369
  * TBD. Relevant only for rules of the kind LogAlert.
159065
159370
  */
@@ -159073,6 +159378,82 @@ export declare namespace monitor {
159073
159378
  */
159074
159379
  timeToResolve?: string;
159075
159380
  }
159381
+ /**
159382
+ * The parameters for the scaling action.
159383
+ */
159384
+ interface ScaleActionResponse {
159385
+ /**
159386
+ * 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.
159387
+ */
159388
+ cooldown: string;
159389
+ /**
159390
+ * the scale direction. Whether the scaling action increases or decreases the number of instances.
159391
+ */
159392
+ direction: string;
159393
+ /**
159394
+ * the type of action that should occur when the scale rule fires.
159395
+ */
159396
+ type: string;
159397
+ /**
159398
+ * the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
159399
+ */
159400
+ value?: string;
159401
+ }
159402
+ /**
159403
+ * scaleActionResponseProvideDefaults sets the appropriate defaults for ScaleActionResponse
159404
+ */
159405
+ function scaleActionResponseProvideDefaults(val: ScaleActionResponse): ScaleActionResponse;
159406
+ /**
159407
+ * The number of instances that can be used during this profile.
159408
+ */
159409
+ interface ScaleCapacityResponse {
159410
+ /**
159411
+ * 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.
159412
+ */
159413
+ default: string;
159414
+ /**
159415
+ * 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.
159416
+ */
159417
+ maximum: string;
159418
+ /**
159419
+ * the minimum number of instances for the resource.
159420
+ */
159421
+ minimum: string;
159422
+ }
159423
+ /**
159424
+ * Specifies an auto scale rule metric dimension.
159425
+ */
159426
+ interface ScaleRuleMetricDimensionResponse {
159427
+ /**
159428
+ * Name of the dimension.
159429
+ */
159430
+ dimensionName: string;
159431
+ /**
159432
+ * 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
159433
+ */
159434
+ operator: string;
159435
+ /**
159436
+ * list of dimension values. For example: ["App1","App2"].
159437
+ */
159438
+ values: string[];
159439
+ }
159440
+ /**
159441
+ * A rule that provide the triggers and parameters for the scaling action.
159442
+ */
159443
+ interface ScaleRuleResponse {
159444
+ /**
159445
+ * the trigger that results in a scaling action.
159446
+ */
159447
+ metricTrigger: outputs.monitor.MetricTriggerResponse;
159448
+ /**
159449
+ * the parameters for the scaling action.
159450
+ */
159451
+ scaleAction: outputs.monitor.ScaleActionResponse;
159452
+ }
159453
+ /**
159454
+ * scaleRuleResponseProvideDefaults sets the appropriate defaults for ScaleRuleResponse
159455
+ */
159456
+ function scaleRuleResponseProvideDefaults(val: ScaleRuleResponse): ScaleRuleResponse;
159076
159457
  /**
159077
159458
  * The rule criteria that defines the conditions of the scheduled query rule.
159078
159459
  */
@@ -159146,6 +159527,23 @@ export declare namespace monitor {
159146
159527
  */
159147
159528
  status: string;
159148
159529
  }
159530
+ /**
159531
+ * Part of Subscription diagnostic setting. Specifies the settings for a particular log.
159532
+ */
159533
+ interface SubscriptionLogSettingsResponse {
159534
+ /**
159535
+ * Name of a Subscription Diagnostic Log category for a resource type this setting is applied to.
159536
+ */
159537
+ category?: string;
159538
+ /**
159539
+ * Name of a Subscription Diagnostic Log category group for a resource type this setting is applied to.
159540
+ */
159541
+ categoryGroup?: string;
159542
+ /**
159543
+ * a value indicating whether this log is enabled.
159544
+ */
159545
+ enabled: boolean;
159546
+ }
159149
159547
  /**
159150
159548
  * Base receiver using TCP as transport protocol.
159151
159549
  */
@@ -159201,6 +159599,23 @@ export declare namespace monitor {
159201
159599
  */
159202
159600
  url: string;
159203
159601
  }
159602
+ /**
159603
+ * A specific date-time for the profile.
159604
+ */
159605
+ interface TimeWindowResponse {
159606
+ /**
159607
+ * the end time for the profile in ISO 8601 format.
159608
+ */
159609
+ end: string;
159610
+ /**
159611
+ * the start time for the profile in ISO 8601 format.
159612
+ */
159613
+ start: string;
159614
+ /**
159615
+ * 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
159616
+ */
159617
+ timeZone?: string;
159618
+ }
159204
159619
  /**
159205
159620
  * Receiver using UDP as transport protocol.
159206
159621
  */
@@ -159269,6 +159684,21 @@ export declare namespace monitor {
159269
159684
  */
159270
159685
  phoneNumber: string;
159271
159686
  }
159687
+ /**
159688
+ * Webhook notification of an autoscale event.
159689
+ */
159690
+ interface WebhookNotificationResponse {
159691
+ /**
159692
+ * a property bag of settings. This value can be empty.
159693
+ */
159694
+ properties?: {
159695
+ [key: string]: string;
159696
+ };
159697
+ /**
159698
+ * the service address to receive the notification.
159699
+ */
159700
+ serviceUri?: string;
159701
+ }
159272
159702
  /**
159273
159703
  * A webhook receiver.
159274
159704
  */