
com.microsoft.azure.management.network.implementation.TroubleshootingParametersInner Maven / Gradle / Ivy
/**
* 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.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
/**
* Parameters that define the resource to troubleshoot.
*/
@JsonFlatten
public class TroubleshootingParametersInner {
/**
* The target resource to troubleshoot.
*/
@JsonProperty(value = "targetResourceId", required = true)
private String targetResourceId;
/**
* The ID for the storage account to save the troubleshoot result.
*/
@JsonProperty(value = "properties.storageId", required = true)
private String storageId;
/**
* The path to the blob to save the troubleshoot result in.
*/
@JsonProperty(value = "properties.storagePath", required = true)
private String storagePath;
/**
* Get the targetResourceId value.
*
* @return the targetResourceId value
*/
public String targetResourceId() {
return this.targetResourceId;
}
/**
* Set the targetResourceId value.
*
* @param targetResourceId the targetResourceId value to set
* @return the TroubleshootingParametersInner object itself.
*/
public TroubleshootingParametersInner withTargetResourceId(String targetResourceId) {
this.targetResourceId = targetResourceId;
return this;
}
/**
* Get the storageId value.
*
* @return the storageId value
*/
public String storageId() {
return this.storageId;
}
/**
* Set the storageId value.
*
* @param storageId the storageId value to set
* @return the TroubleshootingParametersInner object itself.
*/
public TroubleshootingParametersInner withStorageId(String storageId) {
this.storageId = storageId;
return this;
}
/**
* Get the storagePath value.
*
* @return the storagePath value
*/
public String storagePath() {
return this.storagePath;
}
/**
* Set the storagePath value.
*
* @param storagePath the storagePath value to set
* @return the TroubleshootingParametersInner object itself.
*/
public TroubleshootingParametersInner withStoragePath(String storagePath) {
this.storagePath = storagePath;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy