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

com.azure.resourcemanager.mediaservices.implementation.StreamingPolicyImpl 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.StreamingPolicyInner;
import com.azure.resourcemanager.mediaservices.models.CommonEncryptionCbcs;
import com.azure.resourcemanager.mediaservices.models.CommonEncryptionCenc;
import com.azure.resourcemanager.mediaservices.models.EnvelopeEncryption;
import com.azure.resourcemanager.mediaservices.models.NoEncryption;
import com.azure.resourcemanager.mediaservices.models.StreamingPolicy;
import java.time.OffsetDateTime;

public final class StreamingPolicyImpl implements StreamingPolicy, StreamingPolicy.Definition {
    private StreamingPolicyInner innerObject;

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

    StreamingPolicyImpl(
        StreamingPolicyInner 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 OffsetDateTime created() {
        return this.innerModel().created();
    }

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

    public EnvelopeEncryption envelopeEncryption() {
        return this.innerModel().envelopeEncryption();
    }

    public CommonEncryptionCenc commonEncryptionCenc() {
        return this.innerModel().commonEncryptionCenc();
    }

    public CommonEncryptionCbcs commonEncryptionCbcs() {
        return this.innerModel().commonEncryptionCbcs();
    }

    public NoEncryption noEncryption() {
        return this.innerModel().noEncryption();
    }

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

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

    private String resourceGroupName;

    private String accountName;

    private String streamingPolicyName;

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

    public StreamingPolicy create() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getStreamingPolicies()
                .createWithResponse(
                    resourceGroupName, accountName, streamingPolicyName, this.innerModel(), Context.NONE)
                .getValue();
        return this;
    }

    public StreamingPolicy create(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getStreamingPolicies()
                .createWithResponse(resourceGroupName, accountName, streamingPolicyName, this.innerModel(), context)
                .getValue();
        return this;
    }

    StreamingPolicyImpl(String name, com.azure.resourcemanager.mediaservices.MediaServicesManager serviceManager) {
        this.innerObject = new StreamingPolicyInner();
        this.serviceManager = serviceManager;
        this.streamingPolicyName = name;
    }

    public StreamingPolicy refresh() {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getStreamingPolicies()
                .getWithResponse(resourceGroupName, accountName, streamingPolicyName, Context.NONE)
                .getValue();
        return this;
    }

    public StreamingPolicy refresh(Context context) {
        this.innerObject =
            serviceManager
                .serviceClient()
                .getStreamingPolicies()
                .getWithResponse(resourceGroupName, accountName, streamingPolicyName, context)
                .getValue();
        return this;
    }

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

    public StreamingPolicyImpl withEnvelopeEncryption(EnvelopeEncryption envelopeEncryption) {
        this.innerModel().withEnvelopeEncryption(envelopeEncryption);
        return this;
    }

    public StreamingPolicyImpl withCommonEncryptionCenc(CommonEncryptionCenc commonEncryptionCenc) {
        this.innerModel().withCommonEncryptionCenc(commonEncryptionCenc);
        return this;
    }

    public StreamingPolicyImpl withCommonEncryptionCbcs(CommonEncryptionCbcs commonEncryptionCbcs) {
        this.innerModel().withCommonEncryptionCbcs(commonEncryptionCbcs);
        return this;
    }

    public StreamingPolicyImpl withNoEncryption(NoEncryption noEncryption) {
        this.innerModel().withNoEncryption(noEncryption);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy