-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Resourece: azurerm_signalr_shared_private_link_resource #16187
Changes from 10 commits
32a6575
1571440
2d13d41
8c12be3
8c116b6
bf8939e
b52f42c
873c5d2
8cfb36c
64b8ed0
98795e0
587fe98
57d1637
78f2cd1
f207e44
5662c9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ package client | |
import ( | ||
"github.com/Azure/azure-sdk-for-go/services/webpubsub/mgmt/2021-10-01/webpubsub" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/common" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/signalr/sdk/2020-05-01/signalr" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/signalr/sdk/2021-10-01/signalr" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where's the upstream PR using this? I can only see 2020-05-01 upstream? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @tombuildsstuff are you suggesting to raise a PR to upgrade the SDK only? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the service has now been moved over to go-azure-sdk, could we update the PR to reflect this? |
||
) | ||
|
||
type Client struct { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package signalr | ||
|
||
import "github.com/Azure/go-autorest/autorest" | ||
|
||
type SignalRClient struct { | ||
Client autorest.Client | ||
baseUri string | ||
} | ||
|
||
func NewSignalRClientWithBaseURI(endpoint string) SignalRClient { | ||
return SignalRClient{ | ||
Client: autorest.NewClientWithUserAgent(userAgent()), | ||
baseUri: endpoint, | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where's the upstream PR using this? I can only see 2020-05-01 upstream?