Source File
actions_cache.go
Belonging Package
github.com/google/go-github/v66/github
// Copyright 2022 The go-github AUTHORS. All rights reserved.//// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.package githubimport ()// ActionsCache represents a GitHub action cache.//// GitHub API docs: https://docs.github.com/rest/actions/cache#about-the-cache-apitype ActionsCache struct {ID *int64 `json:"id,omitempty" url:"-"`Ref *string `json:"ref,omitempty" url:"ref"`Key *string `json:"key,omitempty" url:"key"`Version *string `json:"version,omitempty" url:"-"`LastAccessedAt *Timestamp `json:"last_accessed_at,omitempty" url:"-"`CreatedAt *Timestamp `json:"created_at,omitempty" url:"-"`SizeInBytes *int64 `json:"size_in_bytes,omitempty" url:"-"`}// ActionsCacheList represents a list of GitHub actions Cache.//// GitHub API docs: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repositorytype ActionsCacheList struct {TotalCount int `json:"total_count"`ActionsCaches []*ActionsCache `json:"actions_caches,omitempty"`}// ActionsCacheUsage represents a GitHub Actions Cache Usage object.//// GitHub API docs: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repositorytype ActionsCacheUsage struct {FullName string `json:"full_name"`ActiveCachesSizeInBytes int64 `json:"active_caches_size_in_bytes"`ActiveCachesCount int `json:"active_caches_count"`}// ActionsCacheUsageList represents a list of repositories with GitHub Actions cache usage for an organization.//// GitHub API docs: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repositorytype ActionsCacheUsageList struct {TotalCount int `json:"total_count"`RepoCacheUsage []*ActionsCacheUsage `json:"repository_cache_usages,omitempty"`}// TotalCacheUsage represents total GitHub actions cache usage of an organization or enterprise.//// GitHub API docs: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-enterprisetype TotalCacheUsage struct {TotalActiveCachesUsageSizeInBytes int64 `json:"total_active_caches_size_in_bytes"`TotalActiveCachesCount int `json:"total_active_caches_count"`}// ActionsCacheListOptions represents a list of all possible optional Query parameters for ListCaches method.//// GitHub API docs: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repositorytype ActionsCacheListOptions struct {ListOptions// The Git reference for the results you want to list.// The ref for a branch can be formatted either as refs/heads/<branch name>// or simply <branch name>. To reference a pull request use refs/pull/<number>/mergeRef *string `url:"ref,omitempty"`Key *string `url:"key,omitempty"`// Can be one of: "created_at", "last_accessed_at", "size_in_bytes". Default: "last_accessed_at"Sort *string `url:"sort,omitempty"`// Can be one of: "asc", "desc" Default: descDirection *string `url:"direction,omitempty"`}// ListCaches lists the GitHub Actions caches for a repository.// You must authenticate using an access token with the repo scope to use this endpoint.//// Permissions: must have the actions:read permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository////meta:operation GET /repos/{owner}/{repo}/actions/cachesfunc ( *ActionsService) ( context.Context, , string, *ActionsCacheListOptions) (*ActionsCacheList, *Response, error) {:= fmt.Sprintf("repos/%v/%v/actions/caches", , ), := addOptions(, )if != nil {return nil, nil,}, := .client.NewRequest("GET", , nil)if != nil {return nil, nil,}:= new(ActionsCacheList), := .client.Do(, , )if != nil {return nil, ,}return , , nil}// DeleteCachesByKey deletes one or more GitHub Actions caches for a repository, using a complete cache key.// By default, all caches that match the provided key are deleted, but you can optionally provide// a Git ref to restrict deletions to caches that match both the provided key and the Git ref.// The ref for a branch can be formatted either as "refs/heads/<branch name>" or simply "<branch name>".// To reference a pull request use "refs/pull/<number>/merge". If you don't want to use ref just pass nil in parameter.//// Permissions: You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key////meta:operation DELETE /repos/{owner}/{repo}/actions/cachesfunc ( *ActionsService) ( context.Context, , , string, *string) (*Response, error) {:= fmt.Sprintf("repos/%v/%v/actions/caches", , ), := addOptions(, ActionsCache{Key: &, Ref: })if != nil {return nil,}, := .client.NewRequest("DELETE", , nil)if != nil {return nil,}return .client.Do(, , nil)}// DeleteCachesByID deletes a GitHub Actions cache for a repository, using a cache ID.//// Permissions: You must authenticate using an access token with the repo scope to use this endpoint. GitHub Apps must have the actions:write permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id////meta:operation DELETE /repos/{owner}/{repo}/actions/caches/{cache_id}func ( *ActionsService) ( context.Context, , string, int64) (*Response, error) {:= fmt.Sprintf("repos/%v/%v/actions/caches/%v", , , ), := .client.NewRequest("DELETE", , nil)if != nil {return nil,}return .client.Do(, , nil)}// GetCacheUsageForRepo gets GitHub Actions cache usage for a repository. The data fetched using this API is refreshed approximately every 5 minutes,// so values returned from this endpoint may take at least 5 minutes to get updated.//// Permissions: Anyone with read access to the repository can use this endpoint. If the repository is private, you must use an// access token with the repo scope. GitHub Apps must have the actions:read permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository////meta:operation GET /repos/{owner}/{repo}/actions/cache/usagefunc ( *ActionsService) ( context.Context, , string) (*ActionsCacheUsage, *Response, error) {:= fmt.Sprintf("repos/%v/%v/actions/cache/usage", , ), := .client.NewRequest("GET", , nil)if != nil {return nil, nil,}:= new(ActionsCacheUsage), := .client.Do(, , )if != nil {return nil, ,}return , ,}// ListCacheUsageByRepoForOrg lists repositories and their GitHub Actions cache usage for an organization. The data fetched using this API is// refreshed approximately every 5 minutes, so values returned from this endpoint may take at least 5 minutes to get updated.//// Permissions: You must authenticate using an access token with the read:org scope to use this endpoint.// GitHub Apps must have the organization_administration:read permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization////meta:operation GET /orgs/{org}/actions/cache/usage-by-repositoryfunc ( *ActionsService) ( context.Context, string, *ListOptions) (*ActionsCacheUsageList, *Response, error) {:= fmt.Sprintf("orgs/%v/actions/cache/usage-by-repository", ), := addOptions(, )if != nil {return nil, nil,}, := .client.NewRequest("GET", , nil)if != nil {return nil, nil,}:= new(ActionsCacheUsageList), := .client.Do(, , )if != nil {return nil, ,}return , ,}// GetTotalCacheUsageForOrg gets the total GitHub Actions cache usage for an organization. The data fetched using this API is refreshed approximately every// 5 minutes, so values returned from this endpoint may take at least 5 minutes to get updated.//// Permissions: You must authenticate using an access token with the read:org scope to use this endpoint.// GitHub Apps must have the organization_administration:read permission to use this endpoint.//// GitHub API docs: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-an-organization////meta:operation GET /orgs/{org}/actions/cache/usagefunc ( *ActionsService) ( context.Context, string) (*TotalCacheUsage, *Response, error) {:= fmt.Sprintf("orgs/%v/actions/cache/usage", ), := .client.NewRequest("GET", , nil)if != nil {return nil, nil,}:= new(TotalCacheUsage), := .client.Do(, , )if != nil {return nil, ,}return , ,}// GetTotalCacheUsageForEnterprise gets the total GitHub Actions cache usage for an enterprise. The data fetched using this API is refreshed approximately every 5 minutes,// so values returned from this endpoint may take at least 5 minutes to get updated.//// Permissions: You must authenticate using an access token with the "admin:enterprise" scope to use this endpoint.//// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-usage-for-an-enterprise////meta:operation GET /enterprises/{enterprise}/actions/cache/usagefunc ( *ActionsService) ( context.Context, string) (*TotalCacheUsage, *Response, error) {:= fmt.Sprintf("enterprises/%v/actions/cache/usage", ), := .client.NewRequest("GET", , nil)if != nil {return nil, nil,}:= new(TotalCacheUsage), := .client.Do(, , )if != nil {return nil, ,}return , ,}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |