com.azure.resourcemanager.automation.models.SourceControlSyncJobStreamById 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.SourceControlSyncJobStreamByIdInner;
import java.time.OffsetDateTime;
import java.util.Map;
/**
* An immutable client-side representation of SourceControlSyncJobStreamById.
*/
public interface SourceControlSyncJobStreamById {
/**
* Gets the id property: Resource id.
*
* @return the id value.
*/
String id();
/**
* Gets the sourceControlSyncJobStreamId property: The sync job stream id.
*
* @return the sourceControlSyncJobStreamId value.
*/
String sourceControlSyncJobStreamId();
/**
* Gets the summary property: The summary of the sync job stream.
*
* @return the summary value.
*/
String summary();
/**
* Gets the time property: The time of the sync job stream.
*
* @return the time value.
*/
OffsetDateTime time();
/**
* Gets the streamType property: The type of the sync job stream.
*
* @return the streamType value.
*/
StreamType streamType();
/**
* Gets the streamText property: The text of the sync job stream.
*
* @return the streamText value.
*/
String streamText();
/**
* Gets the value property: The values of the job stream.
*
* @return the value value.
*/
Map value();
/**
* Gets the inner com.azure.resourcemanager.automation.fluent.models.SourceControlSyncJobStreamByIdInner object.
*
* @return the inner object.
*/
SourceControlSyncJobStreamByIdInner innerModel();
}