
com.azure.resourcemanager.resources.models.ResourceGroupExportResult Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.resources.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.exception.ManagementError;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
import com.azure.resourcemanager.resources.fluent.models.ResourceGroupExportResultInner;
/**
* An immutable client-side representation of an Azure deployment template export result.
*/
@Fluent
public interface ResourceGroupExportResult extends HasInnerModel {
/**
* Gets the template content.
*
* @return the template content
*/
Object template();
/**
* Gets the template content as a JSON string.
*
* @return the template content as a JSON string
*/
String templateJson();
/**
* Gets the ManagementError.
*
* @return the error, if any.
*/
ManagementError error();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy