fix(azure/automation): health mode (#3164)

This commit is contained in:
Thibault S 2021-09-30 16:59:17 +02:00 committed by GitHub
parent 2bece50eda
commit 7a6ae8effe
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
# limitations under the License.
#
package cloud::azure::integration::eventgrid::mode::health;
package cloud::azure::management::automation::mode::health;
use base qw(cloud::azure::management::monitor::mode::health);
@ -29,8 +29,8 @@ sub check_options {
my ($self, %options) = @_;
$self->SUPER::check_options(%options);
$self->{az_resource_namespace} = 'Microsoft.EventGrid';
$self->{az_resource_type} = 'namespaces';
$self->{az_resource_namespace} = 'Microsoft.Automation';
$self->{az_resource_type} = 'automationAccounts';
}
1;