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

com.azure.resourcemanager.mediaservices.implementation.LiveOutputImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.

There is a newer version: 2.4.0-beta.2
Show 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.mediaservices.implementation;

import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.mediaservices.fluent.models.LiveOutputInner;
import com.azure.resourcemanager.mediaservices.models.Hls;
import com.azure.resourcemanager.mediaservices.models.LiveOutput;
import com.azure.resourcemanager.mediaservices.models.LiveOutputResourceState;
import java.time.Duration;
import java.time.OffsetDateTime;

public final class LiveOutputImpl implements LiveOutput, LiveOutput.Definition {
    private LiveOutputInner innerObject;

    private final com.azure.resourcemanager.mediaservices.MediaServicesManager serviceManager;

    LiveOutputImpl(
        LiveOutputInner innerObject, com.azure.resourcemanager.mediaservices.MediaServicesManager 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 String description() {
        return this.innerModel().description();
    }

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

    public Duration archiveWindowLength() {
        return this.innerModel().archiveWindowLength();
    }

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

    public Hls hls() {
        return this.innerModel().hls();
    }

    public Long outputSnapTime() {
        return this.innerModel().outputSnapTime();
    }

    public OffsetDateTime created() {
        return this.innerModel().created();
    }

    public OffsetDateTime lastModified() {
        return this.innerModel().lastModified();
    }

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

    public LiveOutputResourceState resourceState() {
        return this.innerModel().resourceState();
    }

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

    private com.azure.resourcemanager.mediaservices.MediaServicesManager manager() {
        return this.serviceManager;
    }

    private String resourceGroupName;

    private String accountName;

    private String liveEventName;

    private String liveOutputName;

    public LiveOutputImpl withExistingLiveEvent(String resourceGroupName, String accountName, String liveEventName) {
        this.resourceGroupName = resourceGroupName;
        this.accountName = accountName;
        this.liveEventName = liveEventName;
        return this;
    }

    public LiveOutput create() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getLiveOutputs()
                .create(resourceGroupName, accountName, liveEventName, liveOutputName, this.innerModel(), Context.NONE);
        return this;
    }

    public LiveOutput create(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getLiveOutputs()
                .create(resourceGroupName, accountName, liveEventName, liveOutputName, this.innerModel(), context);
        return this;
    }

    LiveOutputImpl(String name, com.azure.resourcemanager.mediaservices.MediaServicesManager serviceManager) {
        this.innerObject = new LiveOutputInner();
        this.serviceManager = serviceManager;
        this.liveOutputName = name;
    }

    public LiveOutput refresh() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getLiveOutputs()
                .getWithResponse(resourceGroupName, accountName, liveEventName, liveOutputName, Context.NONE)
                .getValue();
        return this;
    }

    public LiveOutput refresh(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getLiveOutputs()
                .getWithResponse(resourceGroupName, accountName, liveEventName, liveOutputName, context)
                .getValue();
        return this;
    }

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

    public LiveOutputImpl withAssetName(String assetName) {
        this.innerModel().withAssetName(assetName);
        return this;
    }

    public LiveOutputImpl withArchiveWindowLength(Duration archiveWindowLength) {
        this.innerModel().withArchiveWindowLength(archiveWindowLength);
        return this;
    }

    public LiveOutputImpl withManifestName(String manifestName) {
        this.innerModel().withManifestName(manifestName);
        return this;
    }

    public LiveOutputImpl withHls(Hls hls) {
        this.innerModel().withHls(hls);
        return this;
    }

    public LiveOutputImpl withOutputSnapTime(Long outputSnapTime) {
        this.innerModel().withOutputSnapTime(outputSnapTime);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy