@@ -13,6 +13,7 @@ import (
1313 "github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/redis_rules"
1414 "github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/roles"
1515 "github.com/RedisLabs/rediscloud-go-api/service/access_control_lists/users"
16+ "github.com/RedisLabs/rediscloud-go-api/service/psc"
1617
1718 "github.com/RedisLabs/rediscloud-go-api/internal"
1819 "github.com/RedisLabs/rediscloud-go-api/service/account"
@@ -43,6 +44,7 @@ type Client struct {
4344 Maintenance * maintenance.API
4445 Pricing * pricing.API
4546 TransitGatewayAttachments * attachments.API
47+ PrivateServiceConnect * psc.API
4648 Tags * tags.API
4749 // fixed
4850 FixedPlans * plans.API
@@ -91,6 +93,7 @@ func NewClient(configs ...Option) (*Client, error) {
9193 Maintenance : maintenance .NewAPI (client , t , config .logger ),
9294 Pricing : pricing .NewAPI (client ),
9395 TransitGatewayAttachments : attachments .NewAPI (client , t , config .logger ),
96+ PrivateServiceConnect : psc .NewAPI (client , t , config .logger ),
9497 Tags : tags .NewAPI (client ),
9598 // fixed
9699 FixedPlans : plans .NewAPI (client , config .logger ),
0 commit comments