
com.azure.resourcemanager.eventgrid.implementation.DomainTopicEventSubscriptionsImpl 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-2021-10-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.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.eventgrid.fluent.DomainTopicEventSubscriptionsClient;
import com.azure.resourcemanager.eventgrid.fluent.models.DeliveryAttributeListResultInner;
import com.azure.resourcemanager.eventgrid.fluent.models.EventSubscriptionFullUrlInner;
import com.azure.resourcemanager.eventgrid.fluent.models.EventSubscriptionInner;
import com.azure.resourcemanager.eventgrid.models.DeliveryAttributeListResult;
import com.azure.resourcemanager.eventgrid.models.DomainTopicEventSubscriptions;
import com.azure.resourcemanager.eventgrid.models.EventSubscription;
import com.azure.resourcemanager.eventgrid.models.EventSubscriptionFullUrl;
import com.azure.resourcemanager.eventgrid.models.EventSubscriptionUpdateParameters;
public final class DomainTopicEventSubscriptionsImpl implements DomainTopicEventSubscriptions {
private static final ClientLogger LOGGER = new ClientLogger(DomainTopicEventSubscriptionsImpl.class);
private final DomainTopicEventSubscriptionsClient innerClient;
private final com.azure.resourcemanager.eventgrid.EventGridManager serviceManager;
public DomainTopicEventSubscriptionsImpl(DomainTopicEventSubscriptionsClient innerClient,
com.azure.resourcemanager.eventgrid.EventGridManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response getDeliveryAttributesWithResponse(String resourceGroupName,
String domainName, String topicName, String eventSubscriptionName, Context context) {
Response inner = this.serviceClient()
.getDeliveryAttributesWithResponse(resourceGroupName, domainName, topicName, eventSubscriptionName,
context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new DeliveryAttributeListResultImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public DeliveryAttributeListResult getDeliveryAttributes(String resourceGroupName, String domainName,
String topicName, String eventSubscriptionName) {
DeliveryAttributeListResultInner inner = this.serviceClient()
.getDeliveryAttributes(resourceGroupName, domainName, topicName, eventSubscriptionName);
if (inner != null) {
return new DeliveryAttributeListResultImpl(inner, this.manager());
} else {
return null;
}
}
public Response getWithResponse(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName, Context context) {
Response inner = this.serviceClient()
.getWithResponse(resourceGroupName, domainName, topicName, eventSubscriptionName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new EventSubscriptionImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public EventSubscription get(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName) {
EventSubscriptionInner inner
= this.serviceClient().get(resourceGroupName, domainName, topicName, eventSubscriptionName);
if (inner != null) {
return new EventSubscriptionImpl(inner, this.manager());
} else {
return null;
}
}
public EventSubscription createOrUpdate(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo) {
EventSubscriptionInner inner = this.serviceClient()
.createOrUpdate(resourceGroupName, domainName, topicName, eventSubscriptionName, eventSubscriptionInfo);
if (inner != null) {
return new EventSubscriptionImpl(inner, this.manager());
} else {
return null;
}
}
public EventSubscription createOrUpdate(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName, EventSubscriptionInner eventSubscriptionInfo, Context context) {
EventSubscriptionInner inner = this.serviceClient()
.createOrUpdate(resourceGroupName, domainName, topicName, eventSubscriptionName, eventSubscriptionInfo,
context);
if (inner != null) {
return new EventSubscriptionImpl(inner, this.manager());
} else {
return null;
}
}
public void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName) {
this.serviceClient().delete(resourceGroupName, domainName, topicName, eventSubscriptionName);
}
public void delete(String resourceGroupName, String domainName, String topicName, String eventSubscriptionName,
Context context) {
this.serviceClient().delete(resourceGroupName, domainName, topicName, eventSubscriptionName, context);
}
public EventSubscription update(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters) {
EventSubscriptionInner inner = this.serviceClient()
.update(resourceGroupName, domainName, topicName, eventSubscriptionName, eventSubscriptionUpdateParameters);
if (inner != null) {
return new EventSubscriptionImpl(inner, this.manager());
} else {
return null;
}
}
public EventSubscription update(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters,
Context context) {
EventSubscriptionInner inner = this.serviceClient()
.update(resourceGroupName, domainName, topicName, eventSubscriptionName, eventSubscriptionUpdateParameters,
context);
if (inner != null) {
return new EventSubscriptionImpl(inner, this.manager());
} else {
return null;
}
}
public Response getFullUrlWithResponse(String resourceGroupName, String domainName,
String topicName, String eventSubscriptionName, Context context) {
Response inner = this.serviceClient()
.getFullUrlWithResponse(resourceGroupName, domainName, topicName, eventSubscriptionName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new EventSubscriptionFullUrlImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public EventSubscriptionFullUrl getFullUrl(String resourceGroupName, String domainName, String topicName,
String eventSubscriptionName) {
EventSubscriptionFullUrlInner inner
= this.serviceClient().getFullUrl(resourceGroupName, domainName, topicName, eventSubscriptionName);
if (inner != null) {
return new EventSubscriptionFullUrlImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable list(String resourceGroupName, String domainName, String topicName) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, domainName, topicName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new EventSubscriptionImpl(inner1, this.manager()));
}
public PagedIterable list(String resourceGroupName, String domainName, String topicName,
String filter, Integer top, Context context) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, domainName, topicName, filter, top, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new EventSubscriptionImpl(inner1, this.manager()));
}
private DomainTopicEventSubscriptionsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.eventgrid.EventGridManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy