All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.hybridcompute.fluent.models.SettingsProperties Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.1.0-beta.1
Show 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.fasterxml.jackson.annotation.JsonProperty;

/**
 * Settings properties.
 */
@Fluent
public final class SettingsProperties {
    /*
     * Azure resource tenant Id
     */
    @JsonProperty(value = "tenantId", access = JsonProperty.Access.WRITE_ONLY)
    private String tenantId;

    /*
     * Settings Gateway properties
     */
    @JsonProperty(value = "gatewayProperties")
    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();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy