Skip to content

Commit

Permalink
Rebased to master
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcturusZhang committed Dec 24, 2019
1 parent 7fd6308 commit b6cef81
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azurerm
package machinelearning

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azurerm
package machinelearning

import (
"fmt"
Expand Down
8 changes: 6 additions & 2 deletions azurerm/internal/services/machinelearning/registration.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ func (r Registration) Name() string {

// SupportedDataSources returns the supported Data Sources supported by this Service
func (r Registration) SupportedDataSources() map[string]*schema.Resource {
return map[string]*schema.Resource{}
return map[string]*schema.Resource{
"azurerm_machine_learning_workspace": dataSourceArmAMLWorkspace(),
}
}

// SupportedResources returns the supported Resources supported by this Service
func (r Registration) SupportedResources() map[string]*schema.Resource {
return map[string]*schema.Resource{}
return map[string]*schema.Resource{
"azurerm_machine_learning_workspace": resourceArmAmlWorkspace(),
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azurerm
package machinelearning

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package azurerm
package machinelearning

import (
"fmt"
Expand Down

0 comments on commit b6cef81

Please sign in to comment.