
com.azure.resourcemanager.network.models.NetworkGroupsCreateOrUpdateHeaders Maven / Gradle / Ivy
// 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() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy