com.azure.resourcemanager.securityinsights.models.WatchlistsDeleteHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-securityinsights Show documentation
Show all versions of azure-resourcemanager-securityinsights Show documentation
This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2022-09.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.securityinsights.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.http.HttpHeaderName;
import com.azure.core.http.HttpHeaders;
/**
* The WatchlistsDeleteHeaders model.
*/
@Fluent
public final class WatchlistsDeleteHeaders {
/*
* The Azure-AsyncOperation property.
*/
private String azureAsyncOperation;
// HttpHeaders containing the raw property values.
/**
* Creates an instance of WatchlistsDeleteHeaders class.
*
* @param rawHeaders The raw HttpHeaders that will be used to create the property values.
*/
public WatchlistsDeleteHeaders(HttpHeaders rawHeaders) {
this.azureAsyncOperation = rawHeaders.getValue(HttpHeaderName.AZURE_ASYNCOPERATION);
}
/**
* Get the azureAsyncOperation property: The Azure-AsyncOperation property.
*
* @return the azureAsyncOperation value.
*/
public String azureAsyncOperation() {
return this.azureAsyncOperation;
}
/**
* Set the azureAsyncOperation property: The Azure-AsyncOperation property.
*
* @param azureAsyncOperation the azureAsyncOperation value to set.
* @return the WatchlistsDeleteHeaders object itself.
*/
public WatchlistsDeleteHeaders withAzureAsyncOperation(String azureAsyncOperation) {
this.azureAsyncOperation = azureAsyncOperation;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}