Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.containerregistry.implementation; import com.fasterxml.jackson.annotation.JsonProperty;
The result of get log link operation.
/** * The result of get log link operation. */
public class RunGetLogResultInner {
The link to logs for a run on a azure container registry.
/** * The link to logs for a run on a azure container registry. */
@JsonProperty(value = "logLink") private String logLink;
Get the link to logs for a run on a azure container registry.
Returns:the logLink value
/** * Get the link to logs for a run on a azure container registry. * * @return the logLink value */
public String logLink() { return this.logLink; }
Set the link to logs for a run on a azure container registry.
Params:
  • logLink – the logLink value to set
Returns:the RunGetLogResultInner object itself.
/** * Set the link to logs for a run on a azure container registry. * * @param logLink the logLink value to set * @return the RunGetLogResultInner object itself. */
public RunGetLogResultInner withLogLink(String logLink) { this.logLink = logLink; return this; } }