com.azure.resourcemanager.botservice.implementation.PrivateLinkResourcesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-botservice Show documentation
Show all versions of azure-resourcemanager-botservice Show documentation
This package contains Microsoft Azure SDK for BotService Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Bot Service is a platform for creating smart conversational agents. Package tag package-2021-03-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.botservice.implementation;
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.botservice.fluent.PrivateLinkResourcesClient;
import com.azure.resourcemanager.botservice.fluent.models.PrivateLinkResourceListResultInner;
import com.azure.resourcemanager.botservice.models.PrivateLinkResourceListResult;
import com.azure.resourcemanager.botservice.models.PrivateLinkResources;
import com.fasterxml.jackson.annotation.JsonIgnore;
public final class PrivateLinkResourcesImpl implements PrivateLinkResources {
@JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateLinkResourcesImpl.class);
private final PrivateLinkResourcesClient innerClient;
private final com.azure.resourcemanager.botservice.BotServiceManager serviceManager;
public PrivateLinkResourcesImpl(
PrivateLinkResourcesClient innerClient, com.azure.resourcemanager.botservice.BotServiceManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PrivateLinkResourceListResult listByBotResource(String resourceGroupName, String resourceName) {
PrivateLinkResourceListResultInner inner =
this.serviceClient().listByBotResource(resourceGroupName, resourceName);
if (inner != null) {
return new PrivateLinkResourceListResultImpl(inner, this.manager());
} else {
return null;
}
}
public Response listByBotResourceWithResponse(
String resourceGroupName, String resourceName, Context context) {
Response inner =
this.serviceClient().listByBotResourceWithResponse(resourceGroupName, resourceName, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new PrivateLinkResourceListResultImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
private PrivateLinkResourcesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.botservice.BotServiceManager manager() {
return this.serviceManager;
}
}