Skip to content

Commit 984ff53

Browse files
PLS
1 parent a249a8b commit 984ff53

File tree

273 files changed

+1992
-1992
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+1992
-1992
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
attributes:
1818
label: API Wrapper Version
1919
description: What version of our wrapper are you running?
20-
placeholder: github.com/linode/linodego v1.0.0
20+
placeholder: github.com/lgarber-akamai/linodego v1.0.0
2121
validations:
2222
required: true
2323

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# linodego
22

33
![Build](https://img.shields.io/github/workflow/status/linode/linodego/Testing/main?label=tests)
4-
[![Release](https://img.shields.io/github/v/release/linode/linodego)](https://github.com/linode/linodego/releases/latest)
5-
[![GoDoc](https://godoc.org/github.com/linode/linodego?status.svg)](https://godoc.org/github.com/linode/linodego)
6-
[![Go Report Card](https://goreportcard.com/badge/github.com/linode/linodego)](https://goreportcard.com/report/github.com/linode/linodego)
4+
[![Release](https://img.shields.io/github/v/release/linode/linodego)](https://github.com/lgarber-akamai/linodego/releases/latest)
5+
[![GoDoc](https://godoc.org/github.com/lgarber-akamai/linodego?status.svg)](https://godoc.org/github.com/lgarber-akamai/linodego)
6+
[![Go Report Card](https://goreportcard.com/badge/github.com/lgarber-akamai/linodego)](https://goreportcard.com/report/github.com/lgarber-akamai/linodego)
77
[![codecov](https://codecov.io/gh/linode/linodego/branch/main/graph/badge.svg)](https://codecov.io/gh/linode/linodego)
88

99
Go client for [Linode REST v4 API](https://developers.linode.com/api/v4)
1010

1111
## Installation
1212

1313
```sh
14-
go get -u github.com/linode/linodego
14+
go get -u github.com/lgarber-akamai/linodego
1515
```
1616

1717
## Documentation
1818

19-
See [godoc](https://godoc.org/github.com/linode/linodego) for a complete reference.
19+
See [godoc](https://godoc.org/github.com/lgarber-akamai/linodego) for a complete reference.
2020

2121
The API generally follows the naming patterns prescribed in the [OpenAPIv3 document for Linode APIv4](https://developers.linode.com/api/v4).
2222

@@ -35,7 +35,7 @@ import (
3535
"context"
3636
"fmt"
3737

38-
"github.com/linode/linodego"
38+
"github.com/lgarber-akamai/linodego"
3939
"golang.org/x/oauth2"
4040

4141
"log"
@@ -146,7 +146,7 @@ linodes, err := linodego.ListInstances(context.Background(), linodego.NewListOpt
146146
### Response Caching
147147

148148
By default, certain endpoints with static responses will be cached into memory.
149-
Endpoints with cached responses are identified in their [accompanying documentation](https://pkg.go.dev/github.com/linode/linodego?utm_source=godoc).
149+
Endpoints with cached responses are identified in their [accompanying documentation](https://pkg.go.dev/github.com/lgarber-akamai/linodego?utm_source=godoc).
150150

151151
The default cache entry expiry time is `15` minutes. Certain endpoints may override this value to allow for more frequent refreshes (e.g. `client.GetRegion(...)`).
152152
The global cache expiry time can be customized using the `client.SetGlobalCacheExpiration(...)` method.

account_events.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/duration"
11-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/duration"
11+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1212
)
1313

1414
// Event represents an action taken on the Account.

account_invoices.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
// Invoice structs reflect an invoice for billable activity on the account.

account_logins.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
type Login struct {

account_notifications.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/go-resty/resty/v2"
9-
"github.com/linode/linodego/internal/parseabletime"
9+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1010
)
1111

1212
// Notification represents a notification on an Account

account_payments.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
// Payment represents a Payment object

databases.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
type (

firewall_devices.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
// FirewallDeviceType represents the different kinds of devices governable by a Firewall

firewalls.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/go-resty/resty/v2"
10-
"github.com/linode/linodego/internal/parseabletime"
10+
"github.com/lgarber-akamai/linodego/internal/parseabletime"
1111
)
1212

1313
// FirewallStatus enum type

0 commit comments

Comments
 (0)