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

com.azure.resourcemanager.storage.models.BlobServiceItems Maven / Gradle / Ivy

There is a newer version: 2.44.0
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.storage.models;

import com.azure.core.annotation.Immutable;
import com.azure.resourcemanager.storage.fluent.models.BlobServicePropertiesInner;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * The BlobServiceItems model.
 */
@Immutable
public final class BlobServiceItems {
    /*
     * List of blob services returned.
     */
    @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY)
    private List value;

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

    /**
     * Get the value property: List of blob services returned.
     * 
     * @return the value value.
     */
    public List value() {
        return this.value;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (value() != null) {
            value().forEach(e -> e.validate());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy