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

com.azure.resourcemanager.mediaservices.implementation.StreamingLocatorImpl 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.

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.mediaservices.implementation;

import com.azure.core.http.rest.Response;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.mediaservices.fluent.models.StreamingLocatorInner;
import com.azure.resourcemanager.mediaservices.models.ListContentKeysResponse;
import com.azure.resourcemanager.mediaservices.models.ListPathsResponse;
import com.azure.resourcemanager.mediaservices.models.StreamingLocator;
import com.azure.resourcemanager.mediaservices.models.StreamingLocatorContentKey;
import java.time.OffsetDateTime;
import java.util.Collections;
import java.util.List;
import java.util.UUID;

public final class StreamingLocatorImpl implements StreamingLocator, StreamingLocator.Definition {
    private StreamingLocatorInner innerObject;

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

    StreamingLocatorImpl(StreamingLocatorInner 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 assetName() {
        return this.innerModel().assetName();
    }

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

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

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

    public UUID streamingLocatorId() {
        return this.innerModel().streamingLocatorId();
    }

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

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

    public List contentKeys() {
        List inner = this.innerModel().contentKeys();
        if (inner != null) {
            return Collections.unmodifiableList(inner);
        } else {
            return Collections.emptyList();
        }
    }

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

    public List filters() {
        List inner = this.innerModel().filters();
        if (inner != null) {
            return Collections.unmodifiableList(inner);
        } else {
            return Collections.emptyList();
        }
    }

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

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

    private String resourceGroupName;

    private String accountName;

    private String streamingLocatorName;

    public StreamingLocatorImpl withExistingMediaService(String resourceGroupName, String accountName) {
        this.resourceGroupName = resourceGroupName;
        this.accountName = accountName;
        return this;
    }

    public StreamingLocator create() {
        this.innerObject = serviceManager.serviceClient()
            .getStreamingLocators()
            .createWithResponse(resourceGroupName, accountName, streamingLocatorName, this.innerModel(), Context.NONE)
            .getValue();
        return this;
    }

    public StreamingLocator create(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getStreamingLocators()
            .createWithResponse(resourceGroupName, accountName, streamingLocatorName, this.innerModel(), context)
            .getValue();
        return this;
    }

    StreamingLocatorImpl(String name, com.azure.resourcemanager.mediaservices.MediaServicesManager serviceManager) {
        this.innerObject = new StreamingLocatorInner();
        this.serviceManager = serviceManager;
        this.streamingLocatorName = name;
    }

    public StreamingLocator refresh() {
        this.innerObject = serviceManager.serviceClient()
            .getStreamingLocators()
            .getWithResponse(resourceGroupName, accountName, streamingLocatorName, Context.NONE)
            .getValue();
        return this;
    }

    public StreamingLocator refresh(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getStreamingLocators()
            .getWithResponse(resourceGroupName, accountName, streamingLocatorName, context)
            .getValue();
        return this;
    }

    public Response listContentKeysWithResponse(Context context) {
        return serviceManager.streamingLocators()
            .listContentKeysWithResponse(resourceGroupName, accountName, streamingLocatorName, context);
    }

    public ListContentKeysResponse listContentKeys() {
        return serviceManager.streamingLocators().listContentKeys(resourceGroupName, accountName, streamingLocatorName);
    }

    public Response listPathsWithResponse(Context context) {
        return serviceManager.streamingLocators()
            .listPathsWithResponse(resourceGroupName, accountName, streamingLocatorName, context);
    }

    public ListPathsResponse listPaths() {
        return serviceManager.streamingLocators().listPaths(resourceGroupName, accountName, streamingLocatorName);
    }

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

    public StreamingLocatorImpl withStartTime(OffsetDateTime startTime) {
        this.innerModel().withStartTime(startTime);
        return this;
    }

    public StreamingLocatorImpl withEndTime(OffsetDateTime endTime) {
        this.innerModel().withEndTime(endTime);
        return this;
    }

    public StreamingLocatorImpl withStreamingLocatorId(UUID streamingLocatorId) {
        this.innerModel().withStreamingLocatorId(streamingLocatorId);
        return this;
    }

    public StreamingLocatorImpl withStreamingPolicyName(String streamingPolicyName) {
        this.innerModel().withStreamingPolicyName(streamingPolicyName);
        return this;
    }

    public StreamingLocatorImpl withDefaultContentKeyPolicyName(String defaultContentKeyPolicyName) {
        this.innerModel().withDefaultContentKeyPolicyName(defaultContentKeyPolicyName);
        return this;
    }

    public StreamingLocatorImpl withContentKeys(List contentKeys) {
        this.innerModel().withContentKeys(contentKeys);
        return this;
    }

    public StreamingLocatorImpl withAlternativeMediaId(String alternativeMediaId) {
        this.innerModel().withAlternativeMediaId(alternativeMediaId);
        return this;
    }

    public StreamingLocatorImpl withFilters(List filters) {
        this.innerModel().withFilters(filters);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy