Skip to content

Commit

Permalink
SCALRCORE-31428 [GO-SCALR] Delete old webhook client (#157)
Browse files Browse the repository at this point in the history
* SCALRCORE-31428 Delete old webhook client

* SCALRCORE-31428 Delete old webhook client

* SCALRCORE-31428 Delete endpoint
  • Loading branch information
RomanMytsko authored Aug 12, 2024
1 parent 1d10bd3 commit f3f7839
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 418 deletions.
200 changes: 0 additions & 200 deletions endpoint.go

This file was deleted.

4 changes: 0 additions & 4 deletions scalr.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ type Client struct {
AgentPools AgentPools
EventBridgeIntegrations EventBridgeIntegrations
ConfigurationVersions ConfigurationVersions
Endpoints Endpoints
EnvironmentTags EnvironmentTags
Environments Environments
ModuleVersions ModuleVersions
Expand All @@ -145,7 +144,6 @@ type Client struct {
Variables Variables
VcsProviders VcsProviders
VcsRevisions VcsRevisions
Webhooks Webhooks
WebhookIntegrations WebhookIntegrations
WorkspaceTags WorkspaceTags
Workspaces Workspaces
Expand Down Expand Up @@ -223,7 +221,6 @@ func NewClient(cfg *Config) (*Client, error) {
client.AgentPoolTokens = &agentPoolTokens{client: client}
client.AgentPools = &agentPools{client: client}
client.ConfigurationVersions = &configurationVersions{client: client}
client.Endpoints = &endpoints{client: client}
client.EnvironmentTags = &environmentTag{client: client}
client.Environments = &environments{client: client}
client.ModuleVersions = &moduleVersions{client: client}
Expand All @@ -245,7 +242,6 @@ func NewClient(cfg *Config) (*Client, error) {
client.Variables = &variables{client: client}
client.VcsProviders = &vcsProviders{client: client}
client.VcsRevisions = &vcsRevisions{client: client}
client.Webhooks = &webhooks{client: client}
client.WebhookIntegrations = &webhookIntegrations{client: client}
client.WorkspaceTags = &workspaceTag{client: client}
client.Workspaces = &workspaces{client: client}
Expand Down
Loading

0 comments on commit f3f7839

Please sign in to comment.