...

Package batchapi

import "github.com/Azure/azure-sdk-for-go/services/batch/mgmt/2017-05-01/batch/batchapi"
Overview
Index

Overview ▾

Deprecated: Please note, this package has been deprecated. A replacement package is available github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/batch/armbatch(https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/batch/armbatch). We strongly encourage you to upgrade to continue receiving updates. See [Migration Guide](https://aka.ms/azsdk/golang/t2/migration) for guidance on upgrading. Refer to our [deprecation policy](https://azure.github.io/azure-sdk/policies_support.html) for more details.

type AccountClientAPI

AccountClientAPI contains the set of methods on the AccountClient type.

type AccountClientAPI interface {
    Create(ctx context.Context, resourceGroupName string, accountName string, parameters batch.AccountCreateParameters) (result batch.AccountCreateFuture, err error)
    Delete(ctx context.Context, resourceGroupName string, accountName string) (result batch.AccountDeleteFuture, err error)
    Get(ctx context.Context, resourceGroupName string, accountName string) (result batch.Account, err error)
    GetKeys(ctx context.Context, resourceGroupName string, accountName string) (result batch.AccountKeys, err error)
    List(ctx context.Context) (result batch.AccountListResultPage, err error)
    ListComplete(ctx context.Context) (result batch.AccountListResultIterator, err error)
    ListByResourceGroup(ctx context.Context, resourceGroupName string) (result batch.AccountListResultPage, err error)
    ListByResourceGroupComplete(ctx context.Context, resourceGroupName string) (result batch.AccountListResultIterator, err error)
    RegenerateKey(ctx context.Context, resourceGroupName string, accountName string, parameters batch.AccountRegenerateKeyParameters) (result batch.AccountKeys, err error)
    SynchronizeAutoStorageKeys(ctx context.Context, resourceGroupName string, accountName string) (result autorest.Response, err error)
    Update(ctx context.Context, resourceGroupName string, accountName string, parameters batch.AccountUpdateParameters) (result batch.Account, err error)
}

type ApplicationClientAPI

ApplicationClientAPI contains the set of methods on the ApplicationClient type.

type ApplicationClientAPI interface {
    Create(ctx context.Context, resourceGroupName string, accountName string, applicationID string, parameters *batch.ApplicationCreateParameters) (result batch.Application, err error)
    Delete(ctx context.Context, resourceGroupName string, accountName string, applicationID string) (result autorest.Response, err error)
    Get(ctx context.Context, resourceGroupName string, accountName string, applicationID string) (result batch.Application, err error)
    List(ctx context.Context, resourceGroupName string, accountName string, maxresults *int32) (result batch.ListApplicationsResultPage, err error)
    ListComplete(ctx context.Context, resourceGroupName string, accountName string, maxresults *int32) (result batch.ListApplicationsResultIterator, err error)
    Update(ctx context.Context, resourceGroupName string, accountName string, applicationID string, parameters batch.ApplicationUpdateParameters) (result autorest.Response, err error)
}

type ApplicationPackageClientAPI

ApplicationPackageClientAPI contains the set of methods on the ApplicationPackageClient type.

type ApplicationPackageClientAPI interface {
    Activate(ctx context.Context, resourceGroupName string, accountName string, applicationID string, version string, parameters batch.ActivateApplicationPackageParameters) (result autorest.Response, err error)
    Create(ctx context.Context, resourceGroupName string, accountName string, applicationID string, version string) (result batch.ApplicationPackage, err error)
    Delete(ctx context.Context, resourceGroupName string, accountName string, applicationID string, version string) (result autorest.Response, err error)
    Get(ctx context.Context, resourceGroupName string, accountName string, applicationID string, version string) (result batch.ApplicationPackage, err error)
}

type LocationClientAPI

LocationClientAPI contains the set of methods on the LocationClient type.

type LocationClientAPI interface {
    CheckNameAvailability(ctx context.Context, locationName string, parameters batch.CheckNameAvailabilityParameters) (result batch.CheckNameAvailabilityResult, err error)
    GetQuotas(ctx context.Context, locationName string) (result batch.LocationQuota, err error)
}

type OperationsClientAPI

OperationsClientAPI contains the set of methods on the OperationsClient type.

type OperationsClientAPI interface {
    List(ctx context.Context) (result batch.OperationListResultPage, err error)
    ListComplete(ctx context.Context) (result batch.OperationListResultIterator, err error)
}