com.azure.messaging.eventgrid.systemevents.ApiManagementProductCreatedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Schema of the Data property of an EventGridEvent for a Microsoft.ApiManagement.ProductCreated event. */
@Fluent
public final class ApiManagementProductCreatedEventData {
/*
* The fully qualified ID of the resource that the compliance state change is for, including the resource name and
* resource type. Uses the format,
* `/subscriptions//resourceGroups//Microsoft.ApiManagement/service///`
*/
@JsonProperty(value = "resourceUri")
private String resourceUri;
/** Creates an instance of ApiManagementProductCreatedEventData class. */
public ApiManagementProductCreatedEventData() {}
/**
* Get the resourceUri property: The fully qualified ID of the resource that the compliance state change is for,
* including the resource name and resource type. Uses the format,
* `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>`.
*
* @return the resourceUri value.
*/
public String getResourceUri() {
return this.resourceUri;
}
/**
* Set the resourceUri property: The fully qualified ID of the resource that the compliance state change is for,
* including the resource name and resource type. Uses the format,
* `/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroup>/Microsoft.ApiManagement/service/<ServiceName>/<ResourceType>/<ResourceName>`.
*
* @param resourceUri the resourceUri value to set.
* @return the ApiManagementProductCreatedEventData object itself.
*/
public ApiManagementProductCreatedEventData setResourceUri(String resourceUri) {
this.resourceUri = resourceUri;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy