
com.pulumi.azurenative.hybridnetwork.outputs.GetVendorSkusResult 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.hybridnetwork.outputs;
import com.pulumi.azurenative.hybridnetwork.outputs.NetworkFunctionTemplateResponse;
import com.pulumi.azurenative.hybridnetwork.outputs.SystemDataResponse;
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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetVendorSkusResult {
/**
* @return The sku deployment mode.
*
*/
private @Nullable String deploymentMode;
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
private String id;
/**
* @return The parameters for the managed application to be supplied by the vendor.
*
*/
private @Nullable Object managedApplicationParameters;
/**
* @return The template for the managed application deployment.
*
*/
private @Nullable Object managedApplicationTemplate;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return The template definition of the network function.
*
*/
private @Nullable NetworkFunctionTemplateResponse networkFunctionTemplate;
/**
* @return The network function type.
*
*/
private @Nullable String networkFunctionType;
/**
* @return Indicates if the vendor sku is in preview mode.
*
*/
private @Nullable Boolean preview;
/**
* @return The provisioning state of the vendor sku sub resource.
*
*/
private String provisioningState;
/**
* @return The sku type.
*
*/
private @Nullable String skuType;
/**
* @return The system meta data relating to this resource.
*
*/
private SystemDataResponse systemData;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetVendorSkusResult() {}
/**
* @return The sku deployment mode.
*
*/
public Optional deploymentMode() {
return Optional.ofNullable(this.deploymentMode);
}
/**
* @return Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*
*/
public String id() {
return this.id;
}
/**
* @return The parameters for the managed application to be supplied by the vendor.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy