com.azure.resourcemanager.security.implementation.SoftwareInventoriesImpl Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.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.security.fluent.SoftwareInventoriesClient;
import com.azure.resourcemanager.security.fluent.models.SoftwareInner;
import com.azure.resourcemanager.security.models.Software;
import com.azure.resourcemanager.security.models.SoftwareInventories;
public final class SoftwareInventoriesImpl implements SoftwareInventories {
private static final ClientLogger LOGGER = new ClientLogger(SoftwareInventoriesImpl.class);
private final SoftwareInventoriesClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public SoftwareInventoriesImpl(SoftwareInventoriesClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable listByExtendedResource(String resourceGroupName, String resourceNamespace,
String resourceType, String resourceName) {
PagedIterable inner = this.serviceClient()
.listByExtendedResource(resourceGroupName, resourceNamespace, resourceType, resourceName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SoftwareImpl(inner1, this.manager()));
}
public PagedIterable listByExtendedResource(String resourceGroupName, String resourceNamespace,
String resourceType, String resourceName, Context context) {
PagedIterable inner = this.serviceClient()
.listByExtendedResource(resourceGroupName, resourceNamespace, resourceType, resourceName, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SoftwareImpl(inner1, this.manager()));
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return ResourceManagerUtils.mapPage(inner, inner1 -> new SoftwareImpl(inner1, this.manager()));
}
public PagedIterable list(Context context) {
PagedIterable inner = this.serviceClient().list(context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SoftwareImpl(inner1, this.manager()));
}
public Response getWithResponse(String resourceGroupName, String resourceNamespace, String resourceType,
String resourceName, String softwareName, Context context) {
Response inner = this.serviceClient()
.getWithResponse(resourceGroupName, resourceNamespace, resourceType, resourceName, softwareName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new SoftwareImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public Software get(String resourceGroupName, String resourceNamespace, String resourceType, String resourceName,
String softwareName) {
SoftwareInner inner
= this.serviceClient().get(resourceGroupName, resourceNamespace, resourceType, resourceName, softwareName);
if (inner != null) {
return new SoftwareImpl(inner, this.manager());
} else {
return null;
}
}
private SoftwareInventoriesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy