com.azure.resourcemanager.eventgrid.fluent.ExtensionTopicsClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-eventgrid Show documentation
Show all versions of azure-resourcemanager-eventgrid Show documentation
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-2024-06-preview.
// 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.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.eventgrid.fluent.models.ExtensionTopicInner;
/** An instance of this class provides access to all the operations defined in ExtensionTopicsClient. */
public interface ExtensionTopicsClient {
/**
* Get the properties of an extension topic.
*
* @param scope The identifier of the resource to which extension topic is queried. The scope can be a subscription,
* or a resource group, or a top level resource belonging to a resource provider namespace. For example, use
* '/subscriptions/{subscriptionId}/' for a subscription,
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a resource group, and
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}'
* for Azure resource.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of an extension topic.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
ExtensionTopicInner get(String scope);
/**
* Get the properties of an extension topic.
*
* @param scope The identifier of the resource to which extension topic is queried. The scope can be a subscription,
* or a resource group, or a top level resource belonging to a resource provider namespace. For example, use
* '/subscriptions/{subscriptionId}/' for a subscription,
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a resource group, and
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}'
* for Azure resource.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the properties of an extension topic.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getWithResponse(String scope, Context context);
}