Skip to content

Commit

Permalink
Add new private service connect API (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
matpimenta authored Jan 23, 2025
1 parent 8e659f2 commit 329adce
Show file tree
Hide file tree
Showing 5 changed files with 2,651 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/redis_rules"
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/roles"
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/users"
"github.com/RedisLabs/rediscloud-go-api/service/psc"

"github.com/RedisLabs/rediscloud-go-api/internal"
"github.com/RedisLabs/rediscloud-go-api/service/account"
Expand Down Expand Up @@ -43,6 +44,7 @@ type Client struct {
Maintenance *maintenance.API
Pricing *pricing.API
TransitGatewayAttachments *attachments.API
PrivateServiceConnect *psc.API
Tags *tags.API
// fixed
FixedPlans *plans.API
Expand Down Expand Up @@ -91,6 +93,7 @@ func NewClient(configs ...Option) (*Client, error) {
Maintenance: maintenance.NewAPI(client, t, config.logger),
Pricing: pricing.NewAPI(client),
TransitGatewayAttachments: attachments.NewAPI(client, t, config.logger),
PrivateServiceConnect: psc.NewAPI(client, t, config.logger),
Tags: tags.NewAPI(client),
// fixed
FixedPlans: plans.NewAPI(client, config.logger),
Expand Down
Loading

0 comments on commit 329adce

Please sign in to comment.