com.azure.resourcemanager.automation.models.Activity 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-2019-06.
// 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.ActivityInner;
import java.time.OffsetDateTime;
import java.util.List;
/** An immutable client-side representation of Activity. */
public interface Activity {
/**
* Gets the id property: Gets or sets the id of the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: Gets the name of the activity.
*
* @return the name value.
*/
String name();
/**
* Gets the definition property: Gets or sets the user name of the activity.
*
* @return the definition value.
*/
String definition();
/**
* Gets the parameterSets property: Gets or sets the parameter sets of the activity.
*
* @return the parameterSets value.
*/
List parameterSets();
/**
* Gets the outputTypes property: Gets or sets the output types of the activity.
*
* @return the outputTypes value.
*/
List outputTypes();
/**
* Gets the creationTime property: Gets or sets the creation time.
*
* @return the creationTime value.
*/
OffsetDateTime creationTime();
/**
* Gets the lastModifiedTime property: Gets or sets the last modified time.
*
* @return the lastModifiedTime value.
*/
OffsetDateTime lastModifiedTime();
/**
* Gets the description property: Gets or sets the description.
*
* @return the description value.
*/
String description();
/**
* Gets the inner com.azure.resourcemanager.automation.fluent.models.ActivityInner object.
*
* @return the inner object.
*/
ActivityInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy