Skip to content

Commit 540534c

Browse files
committedJan 30, 2025
feat(api): manual updates (#3845)
1 parent 76a39f4 commit 540534c

File tree

3 files changed

+0
-30
lines changed

3 files changed

+0
-30
lines changed
 

‎api.md

-2
Original file line numberDiff line numberDiff line change
@@ -5202,8 +5202,6 @@ Methods:
52025202
- <code title="post /accounts/{account_id}/dex/commands">client.ZeroTrust.DEX.Commands.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandService.New">New</a>(ctx <a href="https://pkg.go.dev/context">context</a>.<a href="https://pkg.go.dev/context#Context">Context</a>, params <a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust">zero_trust</a>.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandNewParams">DEXCommandNewParams</a>) (<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust">zero_trust</a>.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandNewResponse">DEXCommandNewResponse</a>, <a href="https://pkg.go.dev/builtin#error">error</a>)</code>
52035203
- <code title="get /accounts/{account_id}/dex/commands">client.ZeroTrust.DEX.Commands.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandService.List">List</a>(ctx <a href="https://pkg.go.dev/context">context</a>.<a href="https://pkg.go.dev/context#Context">Context</a>, params <a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust">zero_trust</a>.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandListParams">DEXCommandListParams</a>) (<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/packages/pagination">pagination</a>.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/packages/pagination#V4PagePagination">V4PagePagination</a>[<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust">zero_trust</a>.<a href="https://pkg.go.dev/github.com/cloudflare/cloudflare-go/v4/zero_trust#DEXCommandListResponse">DEXCommandListResponse</a>], <a href="https://pkg.go.dev/builtin#error">error</a>)</code>
52045204

5205-
#### Users
5206-
52075205
#### Devices
52085206

52095207
Response Types:

‎zero_trust/dexcommand.go

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import (
2727
// the [NewDEXCommandService] method instead.
2828
type DEXCommandService struct {
2929
Options []option.RequestOption
30-
Users *DEXCommandUserService
3130
Devices *DEXCommandDeviceService
3231
Downloads *DEXCommandDownloadService
3332
Quota *DEXCommandQuotaService
@@ -39,7 +38,6 @@ type DEXCommandService struct {
3938
func NewDEXCommandService(opts ...option.RequestOption) (r *DEXCommandService) {
4039
r = &DEXCommandService{}
4140
r.Options = opts
42-
r.Users = NewDEXCommandUserService(opts...)
4341
r.Devices = NewDEXCommandDeviceService(opts...)
4442
r.Downloads = NewDEXCommandDownloadService(opts...)
4543
r.Quota = NewDEXCommandQuotaService(opts...)

‎zero_trust/dexcommanduser.go

-26
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.