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

com.azure.resourcemanager.appcontainers.models.DaprComponent Maven / Gradle / Ivy

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

package com.azure.resourcemanager.appcontainers.models;

import com.azure.core.http.rest.Response;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.appcontainers.fluent.models.DaprComponentInner;
import java.util.List;

/**
 * An immutable client-side representation of DaprComponent.
 */
public interface DaprComponent {
    /**
     * 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 systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information.
     * 
     * @return the systemData value.
     */
    SystemData systemData();

    /**
     * Gets the componentType property: Component type.
     * 
     * @return the componentType value.
     */
    String componentType();

    /**
     * Gets the version property: Component version.
     * 
     * @return the version value.
     */
    String version();

    /**
     * Gets the ignoreErrors property: Boolean describing if the component errors are ignores.
     * 
     * @return the ignoreErrors value.
     */
    Boolean ignoreErrors();

    /**
     * Gets the initTimeout property: Initialization timeout.
     * 
     * @return the initTimeout value.
     */
    String initTimeout();

    /**
     * Gets the secrets property: Collection of secrets used by a Dapr component.
     * 
     * @return the secrets value.
     */
    List secrets();

    /**
     * Gets the secretStoreComponent property: Name of a Dapr component to retrieve component secrets from.
     * 
     * @return the secretStoreComponent value.
     */
    String secretStoreComponent();

    /**
     * Gets the metadata property: Component metadata.
     * 
     * @return the metadata value.
     */
    List metadata();

    /**
     * Gets the scopes property: Names of container apps that can use this Dapr component.
     * 
     * @return the scopes value.
     */
    List scopes();

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

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

    /**
     * The entirety of the DaprComponent definition.
     */
    interface Definition
        extends DefinitionStages.Blank, DefinitionStages.WithParentResource, DefinitionStages.WithCreate {
    }

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

        /**
         * The stage of the DaprComponent definition allowing to specify parent resource.
         */
        interface WithParentResource {
            /**
             * Specifies resourceGroupName, connectedEnvironmentName.
             * 
             * @param resourceGroupName The name of the resource group. The name is case insensitive.
             * @param connectedEnvironmentName Name of the connected environment.
             * @return the next definition stage.
             */
            WithCreate withExistingConnectedEnvironment(String resourceGroupName, String connectedEnvironmentName);
        }

        /**
         * The stage of the DaprComponent 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.WithComponentType, DefinitionStages.WithVersion,
            DefinitionStages.WithIgnoreErrors, DefinitionStages.WithInitTimeout, DefinitionStages.WithSecrets,
            DefinitionStages.WithSecretStoreComponent, DefinitionStages.WithMetadata, DefinitionStages.WithScopes {
            /**
             * Executes the create request.
             * 
             * @return the created resource.
             */
            DaprComponent create();

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

        /**
         * The stage of the DaprComponent definition allowing to specify componentType.
         */
        interface WithComponentType {
            /**
             * Specifies the componentType property: Component type.
             * 
             * @param componentType Component type.
             * @return the next definition stage.
             */
            WithCreate withComponentType(String componentType);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify version.
         */
        interface WithVersion {
            /**
             * Specifies the version property: Component version.
             * 
             * @param version Component version.
             * @return the next definition stage.
             */
            WithCreate withVersion(String version);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify ignoreErrors.
         */
        interface WithIgnoreErrors {
            /**
             * Specifies the ignoreErrors property: Boolean describing if the component errors are ignores.
             * 
             * @param ignoreErrors Boolean describing if the component errors are ignores.
             * @return the next definition stage.
             */
            WithCreate withIgnoreErrors(Boolean ignoreErrors);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify initTimeout.
         */
        interface WithInitTimeout {
            /**
             * Specifies the initTimeout property: Initialization timeout.
             * 
             * @param initTimeout Initialization timeout.
             * @return the next definition stage.
             */
            WithCreate withInitTimeout(String initTimeout);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify secrets.
         */
        interface WithSecrets {
            /**
             * Specifies the secrets property: Collection of secrets used by a Dapr component.
             * 
             * @param secrets Collection of secrets used by a Dapr component.
             * @return the next definition stage.
             */
            WithCreate withSecrets(List secrets);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify secretStoreComponent.
         */
        interface WithSecretStoreComponent {
            /**
             * Specifies the secretStoreComponent property: Name of a Dapr component to retrieve component secrets from.
             * 
             * @param secretStoreComponent Name of a Dapr component to retrieve component secrets from.
             * @return the next definition stage.
             */
            WithCreate withSecretStoreComponent(String secretStoreComponent);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify metadata.
         */
        interface WithMetadata {
            /**
             * Specifies the metadata property: Component metadata.
             * 
             * @param metadata Component metadata.
             * @return the next definition stage.
             */
            WithCreate withMetadata(List metadata);
        }

        /**
         * The stage of the DaprComponent definition allowing to specify scopes.
         */
        interface WithScopes {
            /**
             * Specifies the scopes property: Names of container apps that can use this Dapr component.
             * 
             * @param scopes Names of container apps that can use this Dapr component.
             * @return the next definition stage.
             */
            WithCreate withScopes(List scopes);
        }
    }

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

    /**
     * The template for DaprComponent update.
     */
    interface Update extends UpdateStages.WithComponentType, UpdateStages.WithVersion, UpdateStages.WithIgnoreErrors,
        UpdateStages.WithInitTimeout, UpdateStages.WithSecrets, UpdateStages.WithSecretStoreComponent,
        UpdateStages.WithMetadata, UpdateStages.WithScopes {
        /**
         * Executes the update request.
         * 
         * @return the updated resource.
         */
        DaprComponent apply();

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

    /**
     * The DaprComponent update stages.
     */
    interface UpdateStages {
        /**
         * The stage of the DaprComponent update allowing to specify componentType.
         */
        interface WithComponentType {
            /**
             * Specifies the componentType property: Component type.
             * 
             * @param componentType Component type.
             * @return the next definition stage.
             */
            Update withComponentType(String componentType);
        }

        /**
         * The stage of the DaprComponent update allowing to specify version.
         */
        interface WithVersion {
            /**
             * Specifies the version property: Component version.
             * 
             * @param version Component version.
             * @return the next definition stage.
             */
            Update withVersion(String version);
        }

        /**
         * The stage of the DaprComponent update allowing to specify ignoreErrors.
         */
        interface WithIgnoreErrors {
            /**
             * Specifies the ignoreErrors property: Boolean describing if the component errors are ignores.
             * 
             * @param ignoreErrors Boolean describing if the component errors are ignores.
             * @return the next definition stage.
             */
            Update withIgnoreErrors(Boolean ignoreErrors);
        }

        /**
         * The stage of the DaprComponent update allowing to specify initTimeout.
         */
        interface WithInitTimeout {
            /**
             * Specifies the initTimeout property: Initialization timeout.
             * 
             * @param initTimeout Initialization timeout.
             * @return the next definition stage.
             */
            Update withInitTimeout(String initTimeout);
        }

        /**
         * The stage of the DaprComponent update allowing to specify secrets.
         */
        interface WithSecrets {
            /**
             * Specifies the secrets property: Collection of secrets used by a Dapr component.
             * 
             * @param secrets Collection of secrets used by a Dapr component.
             * @return the next definition stage.
             */
            Update withSecrets(List secrets);
        }

        /**
         * The stage of the DaprComponent update allowing to specify secretStoreComponent.
         */
        interface WithSecretStoreComponent {
            /**
             * Specifies the secretStoreComponent property: Name of a Dapr component to retrieve component secrets from.
             * 
             * @param secretStoreComponent Name of a Dapr component to retrieve component secrets from.
             * @return the next definition stage.
             */
            Update withSecretStoreComponent(String secretStoreComponent);
        }

        /**
         * The stage of the DaprComponent update allowing to specify metadata.
         */
        interface WithMetadata {
            /**
             * Specifies the metadata property: Component metadata.
             * 
             * @param metadata Component metadata.
             * @return the next definition stage.
             */
            Update withMetadata(List metadata);
        }

        /**
         * The stage of the DaprComponent update allowing to specify scopes.
         */
        interface WithScopes {
            /**
             * Specifies the scopes property: Names of container apps that can use this Dapr component.
             * 
             * @param scopes Names of container apps that can use this Dapr component.
             * @return the next definition stage.
             */
            Update withScopes(List scopes);
        }
    }

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

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

    /**
     * List secrets for a dapr component.
     * 
     * @param context The context to associate with this operation.
     * @throws IllegalArgumentException thrown if parameters fail the validation.
     * @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
     * is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return dapr component Secrets Collection for ListSecrets Action along with {@link Response}.
     */
    Response listSecretsWithResponse(Context context);

    /**
     * List secrets for a dapr component.
     * 
     * @throws com.azure.resourcemanager.appcontainers.models.DefaultErrorResponseErrorException thrown if the request
     * is rejected by server.
     * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
     * @return dapr component Secrets Collection for ListSecrets Action.
     */
    DaprSecretsCollection listSecrets();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy