com.azure.resourcemanager.servicefabricmanagedclusters.models.OperationResultsGetHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
Show all versions of azure-resourcemanager-servicefabricmanagedclusters Show documentation
This package contains Microsoft Azure SDK for Service Fabric Managed Clusters Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Service Fabric Managed Clusters Management Client. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicefabricmanagedclusters.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.http.HttpHeaderName;
import com.azure.core.http.HttpHeaders;
/**
* The OperationResultsGetHeaders model.
*/
@Fluent
public final class OperationResultsGetHeaders {
/*
* The Location property.
*/
private String location;
// HttpHeaders containing the raw property values.
/**
* Creates an instance of OperationResultsGetHeaders class.
*
* @param rawHeaders The raw HttpHeaders that will be used to create the property values.
*/
public OperationResultsGetHeaders(HttpHeaders rawHeaders) {
this.location = rawHeaders.getValue(HttpHeaderName.LOCATION);
}
/**
* Get the location property: The Location property.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* Set the location property: The Location property.
*
* @param location the location value to set.
* @return the OperationResultsGetHeaders object itself.
*/
public OperationResultsGetHeaders withLocation(String location) {
this.location = location;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy