All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.hybridcompute.models.License Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.hybridcompute.models;

import com.azure.core.management.Region;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.hybridcompute.fluent.models.LicenseInner;
import java.util.Map;

/**
 * An immutable client-side representation of License.
 */
public interface License {
    /**
     * Gets the id property: Fully qualified resource Id for the resource.
     * 
     * @return the id value.
     */
    String id();

    /**
     * Gets the name property: The name of the resource.
     * 
     * @return the name value.
     */
    String name();

    /**
     * Gets the type property: The type of the resource.
     * 
     * @return the type value.
     */
    String type();

    /**
     * Gets the location property: The geo-location where the resource lives.
     * 
     * @return the location value.
     */
    String location();

    /**
     * Gets the tags property: Resource tags.
     * 
     * @return the tags value.
     */
    Map tags();

    /**
     * Gets the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     * @return the systemData value.
     */
    SystemData systemData();

    /**
     * Gets the provisioningState property: The provisioning state, which only appears in the response.
     * 
     * @return the provisioningState value.
     */
    ProvisioningState provisioningState();

    /**
     * Gets the tenantId property: Describes the tenant id.
     * 
     * @return the tenantId value.
     */
    String tenantId();

    /**
     * Gets the licenseType property: The type of the license resource.
     * 
     * @return the licenseType value.
     */
    LicenseType licenseType();

    /**
     * Gets the licenseDetails property: Describes the properties of a License.
     * 
     * @return the licenseDetails value.
     */
    LicenseDetails licenseDetails();

    /**
     * Gets the region of the resource.
     * 
     * @return the region of the resource.
     */
    Region region();

    /**
     * Gets the name of the resource region.
     * 
     * @return the name of the resource region.
     */
    String regionName();

    /**
     * Gets the name of the resource group.
     * 
     * @return the name of the resource group.
     */
    String resourceGroupName();

    /**
     * Gets the inner com.azure.resourcemanager.hybridcompute.fluent.models.LicenseInner object.
     * 
     * @return the inner object.
     */
    LicenseInner innerModel();

    /**
     * The entirety of the License definition.
     */
    interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation,
        DefinitionStages.WithResourceGroup, DefinitionStages.WithCreate {
    }

    /**
     * The License definition stages.
     */
    interface DefinitionStages {
        /**
         * The first stage of the License definition.
         */
        interface Blank extends WithLocation {
        }

        /**
         * The stage of the License definition allowing to specify location.
         */
        interface WithLocation {
            /**
             * Specifies the region for the resource.
             * 
             * @param location The geo-location where the resource lives.
             * @return the next definition stage.
             */
            WithResourceGroup withRegion(Region location);

            /**
             * Specifies the region for the resource.
             * 
             * @param location The geo-location where the resource lives.
             * @return the next definition stage.
             */
            WithResourceGroup withRegion(String location);
        }

        /**
         * The stage of the License definition allowing to specify parent resource.
         */
        interface WithResourceGroup {
            /**
             * Specifies resourceGroupName.
             * 
             * @param resourceGroupName The name of the resource group. The name is case insensitive.
             * @return the next definition stage.
             */
            WithCreate withExistingResourceGroup(String resourceGroupName);
        }

        /**
         * The stage of the License definition which contains all the minimum required properties for the resource to be
         * created, but also allows for any other optional properties to be specified.
         */
        interface WithCreate extends DefinitionStages.WithTags, DefinitionStages.WithTenantId,
            DefinitionStages.WithLicenseType, DefinitionStages.WithLicenseDetails {
            /**
             * Executes the create request.
             * 
             * @return the created resource.
             */
            License create();

            /**
             * Executes the create request.
             * 
             * @param context The context to associate with this operation.
             * @return the created resource.
             */
            License create(Context context);
        }

        /**
         * The stage of the License definition allowing to specify tags.
         */
        interface WithTags {
            /**
             * Specifies the tags property: Resource tags..
             * 
             * @param tags Resource tags.
             * @return the next definition stage.
             */
            WithCreate withTags(Map tags);
        }

        /**
         * The stage of the License definition allowing to specify tenantId.
         */
        interface WithTenantId {
            /**
             * Specifies the tenantId property: Describes the tenant id..
             * 
             * @param tenantId Describes the tenant id.
             * @return the next definition stage.
             */
            WithCreate withTenantId(String tenantId);
        }

        /**
         * The stage of the License definition allowing to specify licenseType.
         */
        interface WithLicenseType {
            /**
             * Specifies the licenseType property: The type of the license resource..
             * 
             * @param licenseType The type of the license resource.
             * @return the next definition stage.
             */
            WithCreate withLicenseType(LicenseType licenseType);
        }

        /**
         * The stage of the License definition allowing to specify licenseDetails.
         */
        interface WithLicenseDetails {
            /**
             * Specifies the licenseDetails property: Describes the properties of a License..
             * 
             * @param licenseDetails Describes the properties of a License.
             * @return the next definition stage.
             */
            WithCreate withLicenseDetails(LicenseDetails licenseDetails);
        }
    }

    /**
     * Begins update for the License resource.
     * 
     * @return the stage of resource update.
     */
    License.Update update();

    /**
     * The template for License update.
     */
    interface Update extends UpdateStages.WithTags, UpdateStages.WithLicenseType, UpdateStages.WithState,
        UpdateStages.WithTarget, UpdateStages.WithEdition, UpdateStages.WithType, UpdateStages.WithProcessors {
        /**
         * Executes the update request.
         * 
         * @return the updated resource.
         */
        License apply();

        /**
         * Executes the update request.
         * 
         * @param context The context to associate with this operation.
         * @return the updated resource.
         */
        License apply(Context context);
    }

    /**
     * The License update stages.
     */
    interface UpdateStages {
        /**
         * The stage of the License update allowing to specify tags.
         */
        interface WithTags {
            /**
             * Specifies the tags property: Resource tags.
             * 
             * @param tags Resource tags.
             * @return the next definition stage.
             */
            Update withTags(Map tags);
        }

        /**
         * The stage of the License update allowing to specify licenseType.
         */
        interface WithLicenseType {
            /**
             * Specifies the licenseType property: The type of the license resource..
             * 
             * @param licenseType The type of the license resource.
             * @return the next definition stage.
             */
            Update withLicenseType(LicenseType licenseType);
        }

        /**
         * The stage of the License update allowing to specify state.
         */
        interface WithState {
            /**
             * Specifies the state property: Describes the state of the license..
             * 
             * @param state Describes the state of the license.
             * @return the next definition stage.
             */
            Update withState(LicenseState state);
        }

        /**
         * The stage of the License update allowing to specify target.
         */
        interface WithTarget {
            /**
             * Specifies the target property: Describes the license target server..
             * 
             * @param target Describes the license target server.
             * @return the next definition stage.
             */
            Update withTarget(LicenseTarget target);
        }

        /**
         * The stage of the License update allowing to specify edition.
         */
        interface WithEdition {
            /**
             * Specifies the edition property: Describes the edition of the license. The values are either Standard or
             * Datacenter..
             * 
             * @param edition Describes the edition of the license. The values are either Standard or Datacenter.
             * @return the next definition stage.
             */
            Update withEdition(LicenseEdition edition);
        }

        /**
         * The stage of the License update allowing to specify type.
         */
        interface WithType {
            /**
             * Specifies the type property: Describes the license core type (pCore or vCore)..
             * 
             * @param type Describes the license core type (pCore or vCore).
             * @return the next definition stage.
             */
            Update withType(LicenseCoreType type);
        }

        /**
         * The stage of the License update allowing to specify processors.
         */
        interface WithProcessors {
            /**
             * Specifies the processors property: Describes the number of processors..
             * 
             * @param processors Describes the number of processors.
             * @return the next definition stage.
             */
            Update withProcessors(Integer processors);
        }
    }

    /**
     * Refreshes the resource to sync with Azure.
     * 
     * @return the refreshed resource.
     */
    License refresh();

    /**
     * Refreshes the resource to sync with Azure.
     * 
     * @param context The context to associate with this operation.
     * @return the refreshed resource.
     */
    License refresh(Context context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy