Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.appservice;
import com.microsoft.azure.management.appservice.implementation.FunctionEnvelopeInner;
import com.microsoft.azure.management.resources.fluentcore.model.HasInner;
import java.util.Map;
An immutable representation of function Information.
/**
* An immutable representation of function Information.
*/
public interface FunctionEnvelope extends
HasInner<FunctionEnvelopeInner> {
Returns: the functionAppId value
/**
* @return the functionAppId value
*/
String functionAppId();
Returns: the scriptRootPathHref value
/**
* @return the scriptRootPathHref value
*/
String scriptRootPathHref();
Returns: the scriptHref value
/**
* @return the scriptHref value
*/
String scriptHref();
Returns: the configHref value
/**
* @return the configHref value
*/
String configHref();
Returns: the secretsFileHref value
/**
* @return the secretsFileHref value
*/
String secretsFileHref();
Returns: the href value
/**
* @return the href value
*/
String href();
Returns: the config value
/**
* @return the config value
*/
Object config();
Returns: the files value
/**
* @return the files value
*/
Map<String, String> files();
Returns: the testData value
/**
* @return the testData value
*/
String testData();
}