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

com.azure.resourcemanager.avs.implementation.ScriptPackageImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Avs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure VMware Solution API. Package tag package-2023-09-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.avs.implementation;

import com.azure.core.management.SystemData;
import com.azure.resourcemanager.avs.fluent.models.ScriptPackageInner;
import com.azure.resourcemanager.avs.models.ScriptPackage;
import com.azure.resourcemanager.avs.models.ScriptPackageProvisioningState;

public final class ScriptPackageImpl implements ScriptPackage {
    private ScriptPackageInner innerObject;

    private final com.azure.resourcemanager.avs.AvsManager serviceManager;

    ScriptPackageImpl(ScriptPackageInner innerObject, com.azure.resourcemanager.avs.AvsManager serviceManager) {
        this.innerObject = innerObject;
        this.serviceManager = serviceManager;
    }

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

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

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

    public SystemData systemData() {
        return this.innerModel().systemData();
    }

    public ScriptPackageProvisioningState provisioningState() {
        return this.innerModel().provisioningState();
    }

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

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

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

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

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

    private com.azure.resourcemanager.avs.AvsManager manager() {
        return this.serviceManager;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy