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

com.azure.resourcemanager.applicationinsights.implementation.ComponentLinkedStorageAccountsImpl Maven / Gradle / Ivy

Go to download

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.util.Context;
import com.azure.resourcemanager.applicationinsights.fluent.models.ComponentLinkedStorageAccountsInner;
import com.azure.resourcemanager.applicationinsights.models.ComponentLinkedStorageAccounts;
import com.azure.resourcemanager.applicationinsights.models.ComponentLinkedStorageAccountsPatch;
import com.azure.resourcemanager.applicationinsights.models.StorageType;

public final class ComponentLinkedStorageAccountsImpl
    implements ComponentLinkedStorageAccounts,
        ComponentLinkedStorageAccounts.Definition,
        ComponentLinkedStorageAccounts.Update {
    private ComponentLinkedStorageAccountsInner innerObject;

    private final com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager;

    public String id() {
        return this.innerModel().id();
    }

    public String name() {
        return this.innerModel().name();
    }

    public String type() {
        return this.innerModel().type();
    }

    public String linkedStorageAccount() {
        return this.innerModel().linkedStorageAccount();
    }

    public String resourceGroupName() {
        return resourceGroupName;
    }

    public ComponentLinkedStorageAccountsInner innerModel() {
        return this.innerObject;
    }

    private com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager manager() {
        return this.serviceManager;
    }

    private String resourceGroupName;

    private String resourceName;

    private StorageType storageType;

    private ComponentLinkedStorageAccountsPatch updateLinkedStorageAccountsProperties;

    public ComponentLinkedStorageAccountsImpl withExistingComponent(String resourceGroupName, String resourceName) {
        this.resourceGroupName = resourceGroupName;
        this.resourceName = resourceName;
        return this;
    }

    public ComponentLinkedStorageAccounts create() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .createAndUpdateWithResponse(
                    resourceGroupName, resourceName, storageType, this.innerModel(), Context.NONE)
                .getValue();
        return this;
    }

    public ComponentLinkedStorageAccounts create(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .createAndUpdateWithResponse(resourceGroupName, resourceName, storageType, this.innerModel(), context)
                .getValue();
        return this;
    }

    ComponentLinkedStorageAccountsImpl(
        StorageType name, com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
        this.innerObject = new ComponentLinkedStorageAccountsInner();
        this.serviceManager = serviceManager;
        this.storageType = name;
    }

    public ComponentLinkedStorageAccountsImpl update() {
        this.updateLinkedStorageAccountsProperties = new ComponentLinkedStorageAccountsPatch();
        return this;
    }

    public ComponentLinkedStorageAccounts apply() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .updateWithResponse(
                    resourceGroupName, resourceName, storageType, updateLinkedStorageAccountsProperties, Context.NONE)
                .getValue();
        return this;
    }

    public ComponentLinkedStorageAccounts apply(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .updateWithResponse(
                    resourceGroupName, resourceName, storageType, updateLinkedStorageAccountsProperties, context)
                .getValue();
        return this;
    }

    ComponentLinkedStorageAccountsImpl(
        ComponentLinkedStorageAccountsInner innerObject,
        com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
        this.innerObject = innerObject;
        this.serviceManager = serviceManager;
        this.resourceGroupName = Utils.getValueFromIdByName(innerObject.id(), "resourceGroups");
        this.resourceName = Utils.getValueFromIdByName(innerObject.id(), "components");
        this.storageType =
            StorageType.fromString(Utils.getValueFromIdByName(innerObject.id(), "linkedStorageAccounts"));
    }

    public ComponentLinkedStorageAccounts refresh() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .getWithResponse(resourceGroupName, resourceName, storageType, Context.NONE)
                .getValue();
        return this;
    }

    public ComponentLinkedStorageAccounts refresh(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getComponentLinkedStorageAccountsOperations()
                .getWithResponse(resourceGroupName, resourceName, storageType, context)
                .getValue();
        return this;
    }

    public ComponentLinkedStorageAccountsImpl withLinkedStorageAccount(String linkedStorageAccount) {
        if (isInCreateMode()) {
            this.innerModel().withLinkedStorageAccount(linkedStorageAccount);
            return this;
        } else {
            this.updateLinkedStorageAccountsProperties.withLinkedStorageAccount(linkedStorageAccount);
            return this;
        }
    }

    private boolean isInCreateMode() {
        return this.innerModel().id() == null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy