com.azure.resourcemanager.hybridcompute.fluent.models.SettingsProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
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.hybridcompute.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Settings properties.
*/
@Fluent
public final class SettingsProperties implements JsonSerializable {
/*
* Azure resource tenant Id
*/
private String tenantId;
/*
* Settings Gateway properties
*/
private SettingsGatewayProperties innerGatewayProperties;
/**
* Creates an instance of SettingsProperties class.
*/
public SettingsProperties() {
}
/**
* Get the tenantId property: Azure resource tenant Id.
*
* @return the tenantId value.
*/
public String tenantId() {
return this.tenantId;
}
/**
* Get the innerGatewayProperties property: Settings Gateway properties.
*
* @return the innerGatewayProperties value.
*/
private SettingsGatewayProperties innerGatewayProperties() {
return this.innerGatewayProperties;
}
/**
* Get the gatewayResourceId property: Associated Gateway Resource Id.
*
* @return the gatewayResourceId value.
*/
public String gatewayResourceId() {
return this.innerGatewayProperties() == null ? null : this.innerGatewayProperties().gatewayResourceId();
}
/**
* Set the gatewayResourceId property: Associated Gateway Resource Id.
*
* @param gatewayResourceId the gatewayResourceId value to set.
* @return the SettingsProperties object itself.
*/
public SettingsProperties withGatewayResourceId(String gatewayResourceId) {
if (this.innerGatewayProperties() == null) {
this.innerGatewayProperties = new SettingsGatewayProperties();
}
this.innerGatewayProperties().withGatewayResourceId(gatewayResourceId);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerGatewayProperties() != null) {
innerGatewayProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("gatewayProperties", this.innerGatewayProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SettingsProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SettingsProperties if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the SettingsProperties.
*/
public static SettingsProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SettingsProperties deserializedSettingsProperties = new SettingsProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("tenantId".equals(fieldName)) {
deserializedSettingsProperties.tenantId = reader.getString();
} else if ("gatewayProperties".equals(fieldName)) {
deserializedSettingsProperties.innerGatewayProperties = SettingsGatewayProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedSettingsProperties;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy