-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade TF provider to 1.50.0 (#1681)
## Changes See databricks/terraform-provider-databricks#3900 ## Tests * Manually test on a bundle with a pipeline and a schema * Integration tests pass
- Loading branch information
Showing
12 changed files
with
234 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package schema | ||
|
||
const ProviderVersion = "1.49.1" | ||
const ProviderVersion = "1.50.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
bundle/internal/tf/schema/resource_notification_destination.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type ResourceNotificationDestinationConfigEmail struct { | ||
Addresses []string `json:"addresses,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestinationConfigGenericWebhook struct { | ||
Password string `json:"password,omitempty"` | ||
PasswordSet bool `json:"password_set,omitempty"` | ||
Url string `json:"url,omitempty"` | ||
UrlSet bool `json:"url_set,omitempty"` | ||
Username string `json:"username,omitempty"` | ||
UsernameSet bool `json:"username_set,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestinationConfigMicrosoftTeams struct { | ||
Url string `json:"url,omitempty"` | ||
UrlSet bool `json:"url_set,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestinationConfigPagerduty struct { | ||
IntegrationKey string `json:"integration_key,omitempty"` | ||
IntegrationKeySet bool `json:"integration_key_set,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestinationConfigSlack struct { | ||
Url string `json:"url,omitempty"` | ||
UrlSet bool `json:"url_set,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestinationConfig struct { | ||
Email *ResourceNotificationDestinationConfigEmail `json:"email,omitempty"` | ||
GenericWebhook *ResourceNotificationDestinationConfigGenericWebhook `json:"generic_webhook,omitempty"` | ||
MicrosoftTeams *ResourceNotificationDestinationConfigMicrosoftTeams `json:"microsoft_teams,omitempty"` | ||
Pagerduty *ResourceNotificationDestinationConfigPagerduty `json:"pagerduty,omitempty"` | ||
Slack *ResourceNotificationDestinationConfigSlack `json:"slack,omitempty"` | ||
} | ||
|
||
type ResourceNotificationDestination struct { | ||
DestinationType string `json:"destination_type,omitempty"` | ||
DisplayName string `json:"display_name"` | ||
Id string `json:"id,omitempty"` | ||
Config *ResourceNotificationDestinationConfig `json:"config,omitempty"` | ||
} |
Oops, something went wrong.