com.azure.resourcemanager.automation.models.JobStream 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.JobStreamInner;
import java.time.OffsetDateTime;
import java.util.Map;
/**
* An immutable client-side representation of JobStream.
*/
public interface JobStream {
/**
* Gets the id property: Gets or sets the id of the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the jobStreamId property: Gets or sets the id of the job stream.
*
* @return the jobStreamId value.
*/
String jobStreamId();
/**
* Gets the time property: Gets or sets the creation time of the job.
*
* @return the time value.
*/
OffsetDateTime time();
/**
* Gets the streamType property: Gets or sets the stream type.
*
* @return the streamType value.
*/
JobStreamType streamType();
/**
* Gets the streamText property: Gets or sets the stream text.
*
* @return the streamText value.
*/
String streamText();
/**
* Gets the summary property: Gets or sets the summary.
*
* @return the summary value.
*/
String summary();
/**
* Gets the value property: Gets or sets the values of the job stream.
*
* @return the value value.
*/
Map value();
/**
* Gets the inner com.azure.resourcemanager.automation.fluent.models.JobStreamInner object.
*
* @return the inner object.
*/
JobStreamInner innerModel();
}