com.microsoft.store.partnercenter.devicesdeployment.IConfigurationPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// -----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// -----------------------------------------------------------------------
package com.microsoft.store.partnercenter.devicesdeployment;
import com.microsoft.store.partnercenter.IPartnerComponent;
import com.microsoft.store.partnercenter.genericoperations.IEntityDeleteOperations;
import com.microsoft.store.partnercenter.genericoperations.IEntityGetOperations;
import com.microsoft.store.partnercenter.genericoperations.IEntityPatchOperations;
import com.microsoft.store.partnercenter.models.devicesdeployment.ConfigurationPolicy;
import com.microsoft.store.partnercenter.models.utils.Tuple;
/**
* Represents all the operations that can be done on a configuration policy.
*/
public interface IConfigurationPolicy
extends IPartnerComponent>,
IEntityGetOperations, IEntityPatchOperations, IEntityDeleteOperations
{
/**
* Retrieves the configuration policy.
*
* @return The configuration policy.
*/
ConfigurationPolicy get();
/**
* Patches the configuration policy.
*
* @param policy The policy to be updated.
* @return The updated configuration policy.
*/
ConfigurationPolicy patch(ConfigurationPolicy policy);
/**
* Deletes the configuration policy.
*/
void delete();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy