Skip to content

Commit

Permalink
add sets functions back
Browse files Browse the repository at this point in the history
  • Loading branch information
sagilaufer1992 committed Jul 31, 2024
1 parent 0519dfa commit aaf9908
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/api_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ type ApiClientInterface interface {
ConfigurationSet(id string) (*ConfigurationSet, error)
ConfigurationSetDelete(id string) error
ConfigurationVariablesBySetId(setId string) ([]ConfigurationVariable, error)
AssignConfigurationSets(scope string, scopeId string, sets []string) error
UnassignConfigurationSets(scope string, scopeId string, sets []string) error
ConfigurationSetsAssignments(scope string, scopeId string) ([]ConfigurationSet, error)
}

func NewApiClient(client http.HttpClientInterface, defaultOrganizationId string) ApiClientInterface {
Expand Down
43 changes: 43 additions & 0 deletions client/api_client_mock.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit aaf9908

Please sign in to comment.