com.pulumi.azurenative.web.outputs.GetWebAppFunctionResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.web.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetWebAppFunctionResult {
/**
* @return Config information.
*
*/
private @Nullable Object config;
/**
* @return Config URI.
*
*/
private @Nullable String configHref;
/**
* @return File list.
*
*/
private @Nullable Map files;
/**
* @return Function App ID.
*
*/
private @Nullable String functionAppId;
/**
* @return Function URI.
*
*/
private @Nullable String href;
/**
* @return Resource Id.
*
*/
private String id;
/**
* @return The invocation URL
*
*/
private @Nullable String invokeUrlTemplate;
/**
* @return Gets or sets a value indicating whether the function is disabled
*
*/
private @Nullable Boolean isDisabled;
/**
* @return Kind of resource.
*
*/
private @Nullable String kind;
/**
* @return The function language
*
*/
private @Nullable String language;
/**
* @return Resource Name.
*
*/
private String name;
/**
* @return Script URI.
*
*/
private @Nullable String scriptHref;
/**
* @return Script root path URI.
*
*/
private @Nullable String scriptRootPathHref;
/**
* @return Secrets file URI.
*
*/
private @Nullable String secretsFileHref;
/**
* @return Test data used when testing via the Azure Portal.
*
*/
private @Nullable String testData;
/**
* @return Test data URI.
*
*/
private @Nullable String testDataHref;
/**
* @return Resource type.
*
*/
private String type;
private GetWebAppFunctionResult() {}
/**
* @return Config information.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy