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

com.azure.resourcemanager.deviceupdate.fluent.models.GroupInformationProperties 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.deviceupdate.fluent.models;

import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.deviceupdate.models.GroupIdProvisioningState;
import com.azure.resourcemanager.deviceupdate.models.PrivateLinkResourceProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * The properties for a group information object.
 */
@Fluent
public final class GroupInformationProperties extends PrivateLinkResourceProperties {
    /*
     * The provisioning state of private link group ID.
     */
    @JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
    private GroupIdProvisioningState provisioningState;

    /**
     * Creates an instance of GroupInformationProperties class.
     */
    public GroupInformationProperties() {
    }

    /**
     * Get the provisioningState property: The provisioning state of private link group ID.
     * 
     * @return the provisioningState value.
     */
    public GroupIdProvisioningState provisioningState() {
        return this.provisioningState;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public GroupInformationProperties withRequiredZoneNames(List requiredZoneNames) {
        super.withRequiredZoneNames(requiredZoneNames);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        super.validate();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy