Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.compute.implementation; import com.microsoft.azure.management.apigeneration.LangDefinition; import com.microsoft.azure.management.compute.InstanceViewStatus; import com.microsoft.azure.management.compute.RunCommandResult; import com.microsoft.azure.management.resources.fluentcore.model.implementation.WrapperImpl; import java.util.List;
The implementation of ComputeUsage.
/** * The implementation of ComputeUsage. */
@LangDefinition class RunCommandResultImpl extends WrapperImpl<RunCommandResultInner> implements RunCommandResult { RunCommandResultImpl(RunCommandResultInner innerObject) { super(innerObject); }
Get run command operation response.
Returns:the value value
/** * Get run command operation response. * * @return the value value */
@Override public List<InstanceViewStatus> value() { return inner().value(); } }