All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.elastic.implementation.VMCollectionsImpl 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.elastic.implementation;

import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.elastic.fluent.VMCollectionsClient;
import com.azure.resourcemanager.elastic.models.VMCollectionUpdate;
import com.azure.resourcemanager.elastic.models.VMCollections;

public final class VMCollectionsImpl implements VMCollections {
    private static final ClientLogger LOGGER = new ClientLogger(VMCollectionsImpl.class);

    private final VMCollectionsClient innerClient;

    private final com.azure.resourcemanager.elastic.ElasticManager serviceManager;

    public VMCollectionsImpl(
        VMCollectionsClient innerClient, com.azure.resourcemanager.elastic.ElasticManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

    public Response updateWithResponse(
        String resourceGroupName, String monitorName, VMCollectionUpdate body, Context context) {
        return this.serviceClient().updateWithResponse(resourceGroupName, monitorName, body, context);
    }

    public void update(String resourceGroupName, String monitorName) {
        this.serviceClient().update(resourceGroupName, monitorName);
    }

    private VMCollectionsClient serviceClient() {
        return this.innerClient;
    }

    private com.azure.resourcemanager.elastic.ElasticManager manager() {
        return this.serviceManager;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy