com.azure.resourcemanager.applicationinsights.implementation.ApiKeysImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-applicationinsights Show documentation
Show all versions of azure-resourcemanager-applicationinsights Show documentation
This package contains Microsoft Azure SDK for ApplicationInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Composite Swagger for Application Insights Management Client. Package tag package-2022-04-01.
The 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.applicationinsights.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.applicationinsights.fluent.ApiKeysClient;
import com.azure.resourcemanager.applicationinsights.fluent.models.ApplicationInsightsComponentApiKeyInner;
import com.azure.resourcemanager.applicationinsights.models.ApiKeyRequest;
import com.azure.resourcemanager.applicationinsights.models.ApiKeys;
import com.azure.resourcemanager.applicationinsights.models.ApplicationInsightsComponentApiKey;
public final class ApiKeysImpl implements ApiKeys {
private static final ClientLogger LOGGER = new ClientLogger(ApiKeysImpl.class);
private final ApiKeysClient innerClient;
private final com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager;
public ApiKeysImpl(
ApiKeysClient innerClient,
com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list(String resourceGroupName, String resourceName) {
PagedIterable inner =
this.serviceClient().list(resourceGroupName, resourceName);
return Utils.mapPage(inner, inner1 -> new ApplicationInsightsComponentApiKeyImpl(inner1, this.manager()));
}
public PagedIterable list(
String resourceGroupName, String resourceName, Context context) {
PagedIterable inner =
this.serviceClient().list(resourceGroupName, resourceName, context);
return Utils.mapPage(inner, inner1 -> new ApplicationInsightsComponentApiKeyImpl(inner1, this.manager()));
}
public ApplicationInsightsComponentApiKey create(
String resourceGroupName, String resourceName, ApiKeyRequest apiKeyProperties) {
ApplicationInsightsComponentApiKeyInner inner =
this.serviceClient().create(resourceGroupName, resourceName, apiKeyProperties);
if (inner != null) {
return new ApplicationInsightsComponentApiKeyImpl(inner, this.manager());
} else {
return null;
}
}
public Response createWithResponse(
String resourceGroupName, String resourceName, ApiKeyRequest apiKeyProperties, Context context) {
Response inner =
this.serviceClient().createWithResponse(resourceGroupName, resourceName, apiKeyProperties, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ApplicationInsightsComponentApiKeyImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public ApplicationInsightsComponentApiKey delete(String resourceGroupName, String resourceName, String keyId) {
ApplicationInsightsComponentApiKeyInner inner =
this.serviceClient().delete(resourceGroupName, resourceName, keyId);
if (inner != null) {
return new ApplicationInsightsComponentApiKeyImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteWithResponse(
String resourceGroupName, String resourceName, String keyId, Context context) {
Response inner =
this.serviceClient().deleteWithResponse(resourceGroupName, resourceName, keyId, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ApplicationInsightsComponentApiKeyImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public ApplicationInsightsComponentApiKey get(String resourceGroupName, String resourceName, String keyId) {
ApplicationInsightsComponentApiKeyInner inner =
this.serviceClient().get(resourceGroupName, resourceName, keyId);
if (inner != null) {
return new ApplicationInsightsComponentApiKeyImpl(inner, this.manager());
} else {
return null;
}
}
public Response getWithResponse(
String resourceGroupName, String resourceName, String keyId, Context context) {
Response inner =
this.serviceClient().getWithResponse(resourceGroupName, resourceName, keyId, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
new ApplicationInsightsComponentApiKeyImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
private ApiKeysClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager manager() {
return this.serviceManager;
}
}