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

com.azure.resourcemanager.monitor.models.Metadata 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.monitor.models;

import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Metadata about the resource. */
@Immutable
public class Metadata {
    /*
     * Azure offering managing this resource on-behalf-of customer.
     */
    @JsonProperty(value = "provisionedBy", access = JsonProperty.Access.WRITE_ONLY)
    private String provisionedBy;

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

    /**
     * Get the provisionedBy property: Azure offering managing this resource on-behalf-of customer.
     *
     * @return the provisionedBy value.
     */
    public String provisionedBy() {
        return this.provisionedBy;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy