com.azure.resourcemanager.network.models.NetworkGroupsCreateOrUpdateHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
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.network.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.http.HttpHeaderName;
import com.azure.core.http.HttpHeaders;
/**
* The NetworkGroupsCreateOrUpdateHeaders model.
*/
@Fluent
public final class NetworkGroupsCreateOrUpdateHeaders {
/*
* The Etag property.
*/
private String etag;
// HttpHeaders containing the raw property values.
/**
* Creates an instance of NetworkGroupsCreateOrUpdateHeaders class.
*
* @param rawHeaders The raw HttpHeaders that will be used to create the property values.
*/
public NetworkGroupsCreateOrUpdateHeaders(HttpHeaders rawHeaders) {
this.etag = rawHeaders.getValue(HttpHeaderName.ETAG);
}
/**
* Get the etag property: The Etag property.
*
* @return the etag value.
*/
public String etag() {
return this.etag;
}
/**
* Set the etag property: The Etag property.
*
* @param etag the etag value to set.
* @return the NetworkGroupsCreateOrUpdateHeaders object itself.
*/
public NetworkGroupsCreateOrUpdateHeaders withEtag(String etag) {
this.etag = etag;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}