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

com.azure.resourcemanager.automation.models.RunbookDraft 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.automation.models;

import com.azure.resourcemanager.automation.fluent.models.RunbookDraftInner;
import java.time.OffsetDateTime;
import java.util.List;
import java.util.Map;

/**
 * An immutable client-side representation of RunbookDraft.
 */
public interface RunbookDraft {
    /**
     * Gets the inEdit property: Gets or sets whether runbook is in edit mode.
     * 
     * @return the inEdit value.
     */
    Boolean inEdit();

    /**
     * Gets the draftContentLink property: Gets or sets the draft runbook content link.
     * 
     * @return the draftContentLink value.
     */
    ContentLink draftContentLink();

    /**
     * Gets the creationTime property: Gets or sets the creation time of the runbook draft.
     * 
     * @return the creationTime value.
     */
    OffsetDateTime creationTime();

    /**
     * Gets the lastModifiedTime property: Gets or sets the last modified time of the runbook draft.
     * 
     * @return the lastModifiedTime value.
     */
    OffsetDateTime lastModifiedTime();

    /**
     * Gets the parameters property: Gets or sets the runbook draft parameters.
     * 
     * @return the parameters value.
     */
    Map parameters();

    /**
     * Gets the outputTypes property: Gets or sets the runbook output types.
     * 
     * @return the outputTypes value.
     */
    List outputTypes();

    /**
     * Gets the inner com.azure.resourcemanager.automation.fluent.models.RunbookDraftInner object.
     * 
     * @return the inner object.
     */
    RunbookDraftInner innerModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy