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

com.azure.resourcemanager.mediaservices.implementation.ContentKeyPoliciesImpl 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.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.mediaservices.fluent.ContentKeyPoliciesClient;
import com.azure.resourcemanager.mediaservices.fluent.models.ContentKeyPolicyInner;
import com.azure.resourcemanager.mediaservices.fluent.models.ContentKeyPolicyPropertiesInner;
import com.azure.resourcemanager.mediaservices.models.ContentKeyPolicies;
import com.azure.resourcemanager.mediaservices.models.ContentKeyPolicy;
import com.azure.resourcemanager.mediaservices.models.ContentKeyPolicyProperties;

public final class ContentKeyPoliciesImpl implements ContentKeyPolicies {
    private static final ClientLogger LOGGER = new ClientLogger(ContentKeyPoliciesImpl.class);

    private final ContentKeyPoliciesClient innerClient;

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

    public ContentKeyPoliciesImpl(ContentKeyPoliciesClient innerClient,
        com.azure.resourcemanager.mediaservices.MediaServicesManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

    public PagedIterable list(String resourceGroupName, String accountName) {
        PagedIterable inner = this.serviceClient().list(resourceGroupName, accountName);
        return ResourceManagerUtils.mapPage(inner, inner1 -> new ContentKeyPolicyImpl(inner1, this.manager()));
    }

    public PagedIterable list(String resourceGroupName, String accountName, String filter,
        Integer top, String orderby, Context context) {
        PagedIterable inner
            = this.serviceClient().list(resourceGroupName, accountName, filter, top, orderby, context);
        return ResourceManagerUtils.mapPage(inner, inner1 -> new ContentKeyPolicyImpl(inner1, this.manager()));
    }

    public Response getWithResponse(String resourceGroupName, String accountName,
        String contentKeyPolicyName, Context context) {
        Response inner
            = this.serviceClient().getWithResponse(resourceGroupName, accountName, contentKeyPolicyName, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new ContentKeyPolicyImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public ContentKeyPolicy get(String resourceGroupName, String accountName, String contentKeyPolicyName) {
        ContentKeyPolicyInner inner = this.serviceClient().get(resourceGroupName, accountName, contentKeyPolicyName);
        if (inner != null) {
            return new ContentKeyPolicyImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public Response deleteWithResponse(String resourceGroupName, String accountName, String contentKeyPolicyName,
        Context context) {
        return this.serviceClient().deleteWithResponse(resourceGroupName, accountName, contentKeyPolicyName, context);
    }

    public void delete(String resourceGroupName, String accountName, String contentKeyPolicyName) {
        this.serviceClient().delete(resourceGroupName, accountName, contentKeyPolicyName);
    }

    public Response getPolicyPropertiesWithSecretsWithResponse(String resourceGroupName,
        String accountName, String contentKeyPolicyName, Context context) {
        Response inner = this.serviceClient()
            .getPolicyPropertiesWithSecretsWithResponse(resourceGroupName, accountName, contentKeyPolicyName, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new ContentKeyPolicyPropertiesImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public ContentKeyPolicyProperties getPolicyPropertiesWithSecrets(String resourceGroupName, String accountName,
        String contentKeyPolicyName) {
        ContentKeyPolicyPropertiesInner inner
            = this.serviceClient().getPolicyPropertiesWithSecrets(resourceGroupName, accountName, contentKeyPolicyName);
        if (inner != null) {
            return new ContentKeyPolicyPropertiesImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public ContentKeyPolicy getById(String id) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String accountName = ResourceManagerUtils.getValueFromIdByName(id, "mediaServices");
        if (accountName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'mediaServices'.", id)));
        }
        String contentKeyPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "contentKeyPolicies");
        if (contentKeyPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'contentKeyPolicies'.", id)));
        }
        return this.getWithResponse(resourceGroupName, accountName, contentKeyPolicyName, Context.NONE).getValue();
    }

    public Response getByIdWithResponse(String id, Context context) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String accountName = ResourceManagerUtils.getValueFromIdByName(id, "mediaServices");
        if (accountName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'mediaServices'.", id)));
        }
        String contentKeyPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "contentKeyPolicies");
        if (contentKeyPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'contentKeyPolicies'.", id)));
        }
        return this.getWithResponse(resourceGroupName, accountName, contentKeyPolicyName, context);
    }

    public void deleteById(String id) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String accountName = ResourceManagerUtils.getValueFromIdByName(id, "mediaServices");
        if (accountName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'mediaServices'.", id)));
        }
        String contentKeyPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "contentKeyPolicies");
        if (contentKeyPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'contentKeyPolicies'.", id)));
        }
        this.deleteWithResponse(resourceGroupName, accountName, contentKeyPolicyName, Context.NONE);
    }

    public Response deleteByIdWithResponse(String id, Context context) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String accountName = ResourceManagerUtils.getValueFromIdByName(id, "mediaServices");
        if (accountName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'mediaServices'.", id)));
        }
        String contentKeyPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "contentKeyPolicies");
        if (contentKeyPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'contentKeyPolicies'.", id)));
        }
        return this.deleteWithResponse(resourceGroupName, accountName, contentKeyPolicyName, context);
    }

    private ContentKeyPoliciesClient serviceClient() {
        return this.innerClient;
    }

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

    public ContentKeyPolicyImpl define(String name) {
        return new ContentKeyPolicyImpl(name, this.manager());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy