com.azure.resourcemanager.applicationinsights.implementation.AnnotationsImpl 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.AnnotationsClient;
import com.azure.resourcemanager.applicationinsights.fluent.models.AnnotationInner;
import com.azure.resourcemanager.applicationinsights.models.Annotation;
import com.azure.resourcemanager.applicationinsights.models.Annotations;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
public final class AnnotationsImpl implements Annotations {
private static final ClientLogger LOGGER = new ClientLogger(AnnotationsImpl.class);
private final AnnotationsClient innerClient;
private final com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager;
public AnnotationsImpl(
AnnotationsClient innerClient,
com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list(String resourceGroupName, String resourceName, String start, String end) {
PagedIterable inner = this.serviceClient().list(resourceGroupName, resourceName, start, end);
return Utils.mapPage(inner, inner1 -> new AnnotationImpl(inner1, this.manager()));
}
public PagedIterable list(
String resourceGroupName, String resourceName, String start, String end, Context context) {
PagedIterable inner =
this.serviceClient().list(resourceGroupName, resourceName, start, end, context);
return Utils.mapPage(inner, inner1 -> new AnnotationImpl(inner1, this.manager()));
}
public List create(
String resourceGroupName, String resourceName, AnnotationInner annotationProperties) {
List inner =
this.serviceClient().create(resourceGroupName, resourceName, annotationProperties);
if (inner != null) {
return Collections
.unmodifiableList(
inner
.stream()
.map(inner1 -> new AnnotationImpl(inner1, this.manager()))
.collect(Collectors.toList()));
} else {
return Collections.emptyList();
}
}
public Response> createWithResponse(
String resourceGroupName, String resourceName, AnnotationInner annotationProperties, Context context) {
Response> inner =
this.serviceClient().createWithResponse(resourceGroupName, resourceName, annotationProperties, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
inner
.getValue()
.stream()
.map(inner1 -> new AnnotationImpl(inner1, this.manager()))
.collect(Collectors.toList()));
} else {
return null;
}
}
public void delete(String resourceGroupName, String resourceName, String annotationId) {
this.serviceClient().delete(resourceGroupName, resourceName, annotationId);
}
public Response deleteWithResponse(
String resourceGroupName, String resourceName, String annotationId, Context context) {
return this.serviceClient().deleteWithResponse(resourceGroupName, resourceName, annotationId, context);
}
public List get(String resourceGroupName, String resourceName, String annotationId) {
List inner = this.serviceClient().get(resourceGroupName, resourceName, annotationId);
if (inner != null) {
return Collections
.unmodifiableList(
inner
.stream()
.map(inner1 -> new AnnotationImpl(inner1, this.manager()))
.collect(Collectors.toList()));
} else {
return Collections.emptyList();
}
}
public Response> getWithResponse(
String resourceGroupName, String resourceName, String annotationId, Context context) {
Response> inner =
this.serviceClient().getWithResponse(resourceGroupName, resourceName, annotationId, context);
if (inner != null) {
return new SimpleResponse<>(
inner.getRequest(),
inner.getStatusCode(),
inner.getHeaders(),
inner
.getValue()
.stream()
.map(inner1 -> new AnnotationImpl(inner1, this.manager()))
.collect(Collectors.toList()));
} else {
return null;
}
}
private AnnotationsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager manager() {
return this.serviceManager;
}
}