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

com.azure.resourcemanager.appplatform.implementation.SpringServiceCertificateImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.42.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.appplatform.implementation;

import com.azure.resourcemanager.appplatform.AppPlatformManager;
import com.azure.resourcemanager.appplatform.fluent.models.CertificateResourceInner;
import com.azure.resourcemanager.appplatform.models.CertificateProperties;
import com.azure.resourcemanager.appplatform.models.SpringService;
import com.azure.resourcemanager.appplatform.models.SpringServiceCertificate;
import com.azure.resourcemanager.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl;
import reactor.core.publisher.Mono;

public class SpringServiceCertificateImpl
    extends ExternalChildResourceImpl<
        SpringServiceCertificate, CertificateResourceInner, SpringServiceImpl, SpringService>
    implements SpringServiceCertificate {
    SpringServiceCertificateImpl(String name, SpringServiceImpl parent, CertificateResourceInner innerObject) {
        super(name, parent, innerObject);
    }

    @Override
    public Mono createResourceAsync() {
        return manager().serviceClient().getCertificates().createOrUpdateAsync(
            parent().resourceGroupName(), parent().name(), name(), innerModel())
            .map(inner -> {
                setInner(inner);
                return this;
            });
    }

    @Override
    public Mono updateResourceAsync() {
        return createResourceAsync();
    }

    @Override
    public Mono deleteResourceAsync() {
        return manager().serviceClient().getCertificates()
            .deleteAsync(parent().resourceGroupName(), parent().name(), name());
    }

    @Override
    protected Mono getInnerAsync() {
        return manager().serviceClient().getCertificates()
            .getAsync(parent().resourceGroupName(), parent().name(), name());
    }

    @Override
    public CertificateProperties properties() {
        return innerModel().properties();
    }

    @Override
    public String id() {
        return innerModel().id();
    }

    public AppPlatformManager manager() {
        return parent().manager();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy