Skip to content
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

feat/wedata #2260

Merged
merged 12 commits into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .changelog/2260.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
```release-note:new-resource
tencentcloud_wedata_function
```

```release-note:new-resource
tencentcloud_wedata_resource
```

```release-note:new-resource
tencentcloud_wedata_script
```

```release-note:new-resource
tencentcloud_wedata_dq_rule
```

```release-note:new-resource
tencentcloud_wedata_baseline
```
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ require (
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/clb v1.0.693
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cloudaudit v1.0.544
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cls v1.0.711
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.781
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.782
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cvm v1.0.624
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cwp v1.0.762
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/cynosdb v1.0.692
Expand Down Expand Up @@ -98,7 +98,7 @@ require (
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/vod v1.0.199
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/vpc v1.0.779
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/waf v1.0.771
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/wedata v1.0.725
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/wedata v1.0.782
github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/wss v1.0.199
github.com/tencentyun/cos-go-sdk-v5 v0.7.42-0.20230629101357-7edd77448a0f
github.com/yangwenmai/ratelimit v0.0.0-20180104140304-44221c2292e1
Expand Down
464 changes: 4 additions & 460 deletions go.sum

Large diffs are not rendered by default.

24 changes: 17 additions & 7 deletions tencentcloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1930,13 +1930,6 @@ Data Lake Compute(DLC)
tencentcloud_dlc_update_row_filter_operation
tencentcloud_dlc_bind_work_groups_to_user_attachment

WeData
Data Source
tencentcloud_wedata_rule_templates

Resource
tencentcloud_wedata_rule_template

Web Application Firewall(WAF)
Data Source
tencentcloud_waf_ciphers
Expand All @@ -1962,6 +1955,18 @@ Web Application Firewall(WAF)
tencentcloud_waf_anti_fake
tencentcloud_waf_anti_info_leak

Wedata
Data Source
tencentcloud_wedata_rule_templates

Resource
tencentcloud_wedata_function
tencentcloud_wedata_resource
tencentcloud_wedata_script
tencentcloud_wedata_dq_rule
tencentcloud_wedata_rule_template
tencentcloud_wedata_baseline

Cloud Firewall(CFW)
Data Source
tencentcloud_cfw_nat_fw_switches
Expand Down Expand Up @@ -3696,6 +3701,11 @@ func Provider() *schema.Provider {
"tencentcloud_waf_saas_instance": resourceTencentCloudWafSaasInstance(),
"tencentcloud_waf_anti_fake": resourceTencentCloudWafAntiFake(),
"tencentcloud_waf_anti_info_leak": resourceTencentCloudWafAntiInfoLeak(),
"tencentcloud_wedata_function": resourceTencentCloudWedataFunction(),
"tencentcloud_wedata_resource": resourceTencentCloudWedataResource(),
"tencentcloud_wedata_script": resourceTencentCloudWedataScript(),
"tencentcloud_wedata_dq_rule": resourceTencentCloudWedataDqRule(),
"tencentcloud_wedata_baseline": resourceTencentCloudWedataBaseline(),
"tencentcloud_cfw_address_template": resourceTencentCloudCfwAddressTemplate(),
"tencentcloud_cfw_block_ignore": resourceTencentCloudCfwBlockIgnore(),
"tencentcloud_cfw_edge_policy": resourceTencentCloudCfwEdgePolicy(),
Expand Down
Loading