@@ -13,6 +13,7 @@ import (
13
13
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/redis_rules"
14
14
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/roles"
15
15
"github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/users"
16
+ "github.com/RedisLabs/rediscloud-go-api/service/psc"
16
17
17
18
"github.com/RedisLabs/rediscloud-go-api/internal"
18
19
"github.com/RedisLabs/rediscloud-go-api/service/account"
@@ -43,6 +44,7 @@ type Client struct {
43
44
Maintenance * maintenance.API
44
45
Pricing * pricing.API
45
46
TransitGatewayAttachments * attachments.API
47
+ PrivateServiceConnect * psc.API
46
48
Tags * tags.API
47
49
// fixed
48
50
FixedPlans * plans.API
@@ -91,6 +93,7 @@ func NewClient(configs ...Option) (*Client, error) {
91
93
Maintenance : maintenance .NewAPI (client , t , config .logger ),
92
94
Pricing : pricing .NewAPI (client ),
93
95
TransitGatewayAttachments : attachments .NewAPI (client , t , config .logger ),
96
+ PrivateServiceConnect : psc .NewAPI (client , t , config .logger ),
94
97
Tags : tags .NewAPI (client ),
95
98
// fixed
96
99
FixedPlans : plans .NewAPI (client , config .logger ),
0 commit comments