com.microsoft.azure.management.network.TroubleshootingRecommendedActions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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.network;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Recommended actions based on discovered issues.
*/
public class TroubleshootingRecommendedActions {
/**
* ID of the recommended action.
*/
@JsonProperty(value = "actionId")
private String actionId;
/**
* Description of recommended actions.
*/
@JsonProperty(value = "actionText")
private String actionText;
/**
* The uri linking to a documentation for the recommended troubleshooting
* actions.
*/
@JsonProperty(value = "actionUri")
private String actionUri;
/**
* The information from the URI for the recommended troubleshooting
* actions.
*/
@JsonProperty(value = "actionUriText")
private String actionUriText;
/**
* Get the actionId value.
*
* @return the actionId value
*/
public String actionId() {
return this.actionId;
}
/**
* Set the actionId value.
*
* @param actionId the actionId value to set
* @return the TroubleshootingRecommendedActions object itself.
*/
public TroubleshootingRecommendedActions withActionId(String actionId) {
this.actionId = actionId;
return this;
}
/**
* Get the actionText value.
*
* @return the actionText value
*/
public String actionText() {
return this.actionText;
}
/**
* Set the actionText value.
*
* @param actionText the actionText value to set
* @return the TroubleshootingRecommendedActions object itself.
*/
public TroubleshootingRecommendedActions withActionText(String actionText) {
this.actionText = actionText;
return this;
}
/**
* Get the actionUri value.
*
* @return the actionUri value
*/
public String actionUri() {
return this.actionUri;
}
/**
* Set the actionUri value.
*
* @param actionUri the actionUri value to set
* @return the TroubleshootingRecommendedActions object itself.
*/
public TroubleshootingRecommendedActions withActionUri(String actionUri) {
this.actionUri = actionUri;
return this;
}
/**
* Get the actionUriText value.
*
* @return the actionUriText value
*/
public String actionUriText() {
return this.actionUriText;
}
/**
* Set the actionUriText value.
*
* @param actionUriText the actionUriText value to set
* @return the TroubleshootingRecommendedActions object itself.
*/
public TroubleshootingRecommendedActions withActionUriText(String actionUriText) {
this.actionUriText = actionUriText;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy