com.azure.resourcemanager.automation.models.RunbookCreateOrUpdateProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-automation Show documentation
Show all versions of azure-resourcemanager-automation Show documentation
This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.
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.automation.models;
import com.azure.resourcemanager.automation.fluent.models.RunbookCreateOrUpdatePropertiesInner;
/**
* An immutable client-side representation of RunbookCreateOrUpdateProperties.
*/
public interface RunbookCreateOrUpdateProperties {
/**
* Gets the logVerbose property: Gets or sets verbose log option.
*
* @return the logVerbose value.
*/
Boolean logVerbose();
/**
* Gets the logProgress property: Gets or sets progress log option.
*
* @return the logProgress value.
*/
Boolean logProgress();
/**
* Gets the runbookType property: Gets or sets the type of the runbook.
*
* @return the runbookType value.
*/
RunbookTypeEnum runbookType();
/**
* Gets the draft property: Gets or sets the draft runbook properties.
*
* @return the draft value.
*/
RunbookDraft draft();
/**
* Gets the publishContentLink property: Gets or sets the published runbook content link.
*
* @return the publishContentLink value.
*/
ContentLink publishContentLink();
/**
* Gets the description property: Gets or sets the description of the runbook.
*
* @return the description value.
*/
String description();
/**
* Gets the logActivityTrace property: Gets or sets the activity-level tracing options of the runbook.
*
* @return the logActivityTrace value.
*/
Integer logActivityTrace();
/**
* Gets the inner com.azure.resourcemanager.automation.fluent.models.RunbookCreateOrUpdatePropertiesInner object.
*
* @return the inner object.
*/
RunbookCreateOrUpdatePropertiesInner innerModel();
}