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

com.azure.resourcemanager.eventgrid.models.InlineEventProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for EventGrid Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure EventGrid Management Client. Package tag package-2021-10-preview.

There is a newer version: 1.2.0-beta.7
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.eventgrid.models;

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

/**
 * Additional information about every inline event.
 */
@Fluent
public final class InlineEventProperties {
    /*
     * The description for the inline event.
     */
    @JsonProperty(value = "description")
    private String description;

    /*
     * The displayName for the inline event.
     */
    @JsonProperty(value = "displayName")
    private String displayName;

    /*
     * The documentationUrl for the inline event.
     */
    @JsonProperty(value = "documentationUrl")
    private String documentationUrl;

    /*
     * The dataSchemaUrl for the inline event.
     */
    @JsonProperty(value = "dataSchemaUrl")
    private String dataSchemaUrl;

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

    /**
     * Get the description property: The description for the inline event.
     * 
     * @return the description value.
     */
    public String description() {
        return this.description;
    }

    /**
     * Set the description property: The description for the inline event.
     * 
     * @param description the description value to set.
     * @return the InlineEventProperties object itself.
     */
    public InlineEventProperties withDescription(String description) {
        this.description = description;
        return this;
    }

    /**
     * Get the displayName property: The displayName for the inline event.
     * 
     * @return the displayName value.
     */
    public String displayName() {
        return this.displayName;
    }

    /**
     * Set the displayName property: The displayName for the inline event.
     * 
     * @param displayName the displayName value to set.
     * @return the InlineEventProperties object itself.
     */
    public InlineEventProperties withDisplayName(String displayName) {
        this.displayName = displayName;
        return this;
    }

    /**
     * Get the documentationUrl property: The documentationUrl for the inline event.
     * 
     * @return the documentationUrl value.
     */
    public String documentationUrl() {
        return this.documentationUrl;
    }

    /**
     * Set the documentationUrl property: The documentationUrl for the inline event.
     * 
     * @param documentationUrl the documentationUrl value to set.
     * @return the InlineEventProperties object itself.
     */
    public InlineEventProperties withDocumentationUrl(String documentationUrl) {
        this.documentationUrl = documentationUrl;
        return this;
    }

    /**
     * Get the dataSchemaUrl property: The dataSchemaUrl for the inline event.
     * 
     * @return the dataSchemaUrl value.
     */
    public String dataSchemaUrl() {
        return this.dataSchemaUrl;
    }

    /**
     * Set the dataSchemaUrl property: The dataSchemaUrl for the inline event.
     * 
     * @param dataSchemaUrl the dataSchemaUrl value to set.
     * @return the InlineEventProperties object itself.
     */
    public InlineEventProperties withDataSchemaUrl(String dataSchemaUrl) {
        this.dataSchemaUrl = dataSchemaUrl;
        return this;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy