Skip to content

Commit 8c3106e

Browse files
feat(zero_trust_dlp): Added individual resources and new routes
1 parent 9e3b287 commit 8c3106e

11 files changed

+3187
-3
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 1761
1+
configured_endpoints: 1769
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-96ad9bfaad2a1dce9c6cccc0b105a257651c44566e5038a75fbf769f2ffacd9b.yml
33
openapi_spec_hash: 241cae658fd35c1eca02921272879760
4-
config_hash: 150f1595200b5d085e0c40682eb2010b
4+
config_hash: 553b8c9fbe8068eae649aed371f36d6f

api.md

Lines changed: 48 additions & 0 deletions
Large diffs are not rendered by default.

zero_trust/dlpentry.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ import (
2525
// automatically. You should not instantiate this service directly, and instead use
2626
// the [NewDLPEntryService] method instead.
2727
type DLPEntryService struct {
28-
Options []option.RequestOption
28+
Options []option.RequestOption
29+
Custom *DLPEntryCustomService
30+
Predefined *DLPEntryPredefinedService
31+
Integration *DLPEntryIntegrationService
2932
}
3033

3134
// NewDLPEntryService generates a new service that applies the given options to
@@ -34,6 +37,9 @@ type DLPEntryService struct {
3437
func NewDLPEntryService(opts ...option.RequestOption) (r *DLPEntryService) {
3538
r = &DLPEntryService{}
3639
r.Options = opts
40+
r.Custom = NewDLPEntryCustomService(opts...)
41+
r.Predefined = NewDLPEntryPredefinedService(opts...)
42+
r.Integration = NewDLPEntryIntegrationService(opts...)
3743
return
3844
}
3945

0 commit comments

Comments
 (0)