MsixPackages Interface

public interface MsixPackages

Resource collection API of MsixPackages.

Method Summary

Modifier and Type Method and Description
abstract Blank define(String name)

Begins definition for a new MsixPackage resource.

abstract void delete(String resourceGroupName, String hostPoolName, String msixPackageFullName)

Remove an MSIX Package.

abstract void deleteById(String id)

Remove an MSIX Package.

abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Remove an MSIX Package.

abstract Response<Void> deleteWithResponse(String resourceGroupName, String hostPoolName, String msixPackageFullName, Context context)

Remove an MSIX Package.

abstract MsixPackage get(String resourceGroupName, String hostPoolName, String msixPackageFullName)

Get a msixpackage.

abstract MsixPackage getById(String id)

Get a msixpackage.

abstract Response<MsixPackage> getByIdWithResponse(String id, Context context)

Get a msixpackage.

abstract Response<MsixPackage> getWithResponse(String resourceGroupName, String hostPoolName, String msixPackageFullName, Context context)

Get a msixpackage.

abstract PagedIterable<MsixPackage> list(String resourceGroupName, String hostPoolName)

List MSIX packages in hostpool.

abstract PagedIterable<MsixPackage> list(String resourceGroupName, String hostPoolName, Integer pageSize, Boolean isDescending, Integer initialSkip, Context context)

List MSIX packages in hostpool.

Method Details

define

public abstract MsixPackage.DefinitionStages.Blank define(String name)

Begins definition for a new MsixPackage resource.

Parameters:

name - resource name.

Returns:

the first stage of the new MsixPackage definition.

delete

public abstract void delete(String resourceGroupName, String hostPoolName, String msixPackageFullName)

Remove an MSIX Package.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.
msixPackageFullName - The version specific package full name of the MSIX package within specified hostpool.

deleteById

public abstract void deleteById(String id)

Remove an MSIX Package.

Parameters:

id - the resource ID.

deleteByIdWithResponse

public abstract Response<Void> deleteByIdWithResponse(String id, Context context)

Remove an MSIX Package.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

deleteWithResponse

public abstract Response<Void> deleteWithResponse(String resourceGroupName, String hostPoolName, String msixPackageFullName, Context context)

Remove an MSIX Package.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.
msixPackageFullName - The version specific package full name of the MSIX package within specified hostpool.
context - The context to associate with this operation.

Returns:

get

public abstract MsixPackage get(String resourceGroupName, String hostPoolName, String msixPackageFullName)

Get a msixpackage.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.
msixPackageFullName - The version specific package full name of the MSIX package within specified hostpool.

Returns:

a msixpackage.

getById

public abstract MsixPackage getById(String id)

Get a msixpackage.

Parameters:

id - the resource ID.

Returns:

a msixpackage along with Response<T>.

getByIdWithResponse

public abstract Response<MsixPackage> getByIdWithResponse(String id, Context context)

Get a msixpackage.

Parameters:

id - the resource ID.
context - The context to associate with this operation.

Returns:

a msixpackage along with Response<T>.

getWithResponse

public abstract Response<MsixPackage> getWithResponse(String resourceGroupName, String hostPoolName, String msixPackageFullName, Context context)

Get a msixpackage.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.
msixPackageFullName - The version specific package full name of the MSIX package within specified hostpool.
context - The context to associate with this operation.

Returns:

a msixpackage along with Response<T>.

list

public abstract PagedIterable<MsixPackage> list(String resourceGroupName, String hostPoolName)

List MSIX packages in hostpool.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.

Returns:

msixPackageList as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<MsixPackage> list(String resourceGroupName, String hostPoolName, Integer pageSize, Boolean isDescending, Integer initialSkip, Context context)

List MSIX packages in hostpool.

Parameters:

resourceGroupName - The name of the resource group. The name is case insensitive.
hostPoolName - The name of the host pool within the specified resource group.
pageSize - Number of items per page.
isDescending - Indicates whether the collection is descending.
initialSkip - Initial number of items to skip.
context - The context to associate with this operation.

Returns:

msixPackageList as paginated response with PagedIterable<T>.

Applies to