Skip to content

Commit 635187f

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit eeabc00 of spec repo (#4220)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 32351f8 commit 635187f

23 files changed

Lines changed: 296 additions & 137 deletions

.generator/schemas/v2/openapi.yaml

Lines changed: 64 additions & 7 deletions
Large diffs are not rendered by default.

api/datadogV2/api_case_management.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ func (a *CaseManagementApi) CommentCase(ctx _context.Context, caseId string, bod
531531
type CountCasesOptionalParameters struct {
532532
QueryFilter *string
533533
GroupBys *string
534-
Limit *int32
534+
Limit *int64
535535
}
536536

537537
// NewCountCasesOptionalParameters creates an empty struct for parameters.
@@ -553,7 +553,7 @@ func (r *CountCasesOptionalParameters) WithGroupBys(groupBys string) *CountCases
553553
}
554554

555555
// WithLimit sets the corresponding parameter name and returns the struct.
556-
func (r *CountCasesOptionalParameters) WithLimit(limit int32) *CountCasesOptionalParameters {
556+
func (r *CountCasesOptionalParameters) WithLimit(limit int64) *CountCasesOptionalParameters {
557557
r.Limit = &limit
558558
return r
559559
}
@@ -3252,8 +3252,8 @@ func (a *CaseManagementApi) ListCaseLinks(ctx _context.Context, entityType strin
32523252

32533253
// ListCaseTimelineOptionalParameters holds optional parameters for ListCaseTimeline.
32543254
type ListCaseTimelineOptionalParameters struct {
3255-
PageSize *int32
3256-
PageNumber *int32
3255+
PageSize *int64
3256+
PageNumber *int64
32573257
SortAscending *bool
32583258
}
32593259

@@ -3264,13 +3264,13 @@ func NewListCaseTimelineOptionalParameters() *ListCaseTimelineOptionalParameters
32643264
}
32653265

32663266
// WithPageSize sets the corresponding parameter name and returns the struct.
3267-
func (r *ListCaseTimelineOptionalParameters) WithPageSize(pageSize int32) *ListCaseTimelineOptionalParameters {
3267+
func (r *ListCaseTimelineOptionalParameters) WithPageSize(pageSize int64) *ListCaseTimelineOptionalParameters {
32683268
r.PageSize = &pageSize
32693269
return r
32703270
}
32713271

32723272
// WithPageNumber sets the corresponding parameter name and returns the struct.
3273-
func (r *ListCaseTimelineOptionalParameters) WithPageNumber(pageNumber int32) *ListCaseTimelineOptionalParameters {
3273+
func (r *ListCaseTimelineOptionalParameters) WithPageNumber(pageNumber int64) *ListCaseTimelineOptionalParameters {
32743274
r.PageNumber = &pageNumber
32753275
return r
32763276
}

api/datadogV2/api_cloud_cost_management.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3260,8 +3260,8 @@ type ListCostAnomaliesOptionalParameters struct {
32603260
DismissalCause *string
32613261
OrderBy *string
32623262
Order *string
3263-
Limit *int32
3264-
Offset *int32
3263+
Limit *int64
3264+
Offset *int64
32653265
ProviderIds *[]string
32663266
}
32673267

@@ -3320,13 +3320,13 @@ func (r *ListCostAnomaliesOptionalParameters) WithOrder(order string) *ListCostA
33203320
}
33213321

33223322
// WithLimit sets the corresponding parameter name and returns the struct.
3323-
func (r *ListCostAnomaliesOptionalParameters) WithLimit(limit int32) *ListCostAnomaliesOptionalParameters {
3323+
func (r *ListCostAnomaliesOptionalParameters) WithLimit(limit int64) *ListCostAnomaliesOptionalParameters {
33243324
r.Limit = &limit
33253325
return r
33263326
}
33273327

33283328
// WithOffset sets the corresponding parameter name and returns the struct.
3329-
func (r *ListCostAnomaliesOptionalParameters) WithOffset(offset int32) *ListCostAnomaliesOptionalParameters {
3329+
func (r *ListCostAnomaliesOptionalParameters) WithOffset(offset int64) *ListCostAnomaliesOptionalParameters {
33303330
r.Offset = &offset
33313331
return r
33323332
}

api/datadogV2/api_entity_risk_scores.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ func (a *EntityRiskScoresApi) GetEntityRiskScore(ctx _context.Context, entityId
118118
type ListEntityRiskScoresOptionalParameters struct {
119119
From *int64
120120
To *int64
121-
PageSize *int32
122-
PageNumber *int32
121+
PageSize *int64
122+
PageNumber *int64
123123
PageQueryId *string
124124
FilterSort *string
125125
FilterQuery *string
@@ -145,13 +145,13 @@ func (r *ListEntityRiskScoresOptionalParameters) WithTo(to int64) *ListEntityRis
145145
}
146146

147147
// WithPageSize sets the corresponding parameter name and returns the struct.
148-
func (r *ListEntityRiskScoresOptionalParameters) WithPageSize(pageSize int32) *ListEntityRiskScoresOptionalParameters {
148+
func (r *ListEntityRiskScoresOptionalParameters) WithPageSize(pageSize int64) *ListEntityRiskScoresOptionalParameters {
149149
r.PageSize = &pageSize
150150
return r
151151
}
152152

153153
// WithPageNumber sets the corresponding parameter name and returns the struct.
154-
func (r *ListEntityRiskScoresOptionalParameters) WithPageNumber(pageNumber int32) *ListEntityRiskScoresOptionalParameters {
154+
func (r *ListEntityRiskScoresOptionalParameters) WithPageNumber(pageNumber int64) *ListEntityRiskScoresOptionalParameters {
155155
r.PageNumber = &pageNumber
156156
return r
157157
}

api/datadogV2/api_feature_flags.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -704,8 +704,8 @@ func (a *FeatureFlagsApi) GetFeatureFlagsEnvironment(ctx _context.Context, envir
704704
type ListFeatureFlagsOptionalParameters struct {
705705
Key *string
706706
IsArchived *bool
707-
Limit *int32
708-
Offset *int32
707+
Limit *int64
708+
Offset *int64
709709
}
710710

711711
// NewListFeatureFlagsOptionalParameters creates an empty struct for parameters.
@@ -727,13 +727,13 @@ func (r *ListFeatureFlagsOptionalParameters) WithIsArchived(isArchived bool) *Li
727727
}
728728

729729
// WithLimit sets the corresponding parameter name and returns the struct.
730-
func (r *ListFeatureFlagsOptionalParameters) WithLimit(limit int32) *ListFeatureFlagsOptionalParameters {
730+
func (r *ListFeatureFlagsOptionalParameters) WithLimit(limit int64) *ListFeatureFlagsOptionalParameters {
731731
r.Limit = &limit
732732
return r
733733
}
734734

735735
// WithOffset sets the corresponding parameter name and returns the struct.
736-
func (r *ListFeatureFlagsOptionalParameters) WithOffset(offset int32) *ListFeatureFlagsOptionalParameters {
736+
func (r *ListFeatureFlagsOptionalParameters) WithOffset(offset int64) *ListFeatureFlagsOptionalParameters {
737737
r.Offset = &offset
738738
return r
739739
}
@@ -840,8 +840,8 @@ func (a *FeatureFlagsApi) ListFeatureFlags(ctx _context.Context, o ...ListFeatur
840840
type ListFeatureFlagsEnvironmentsOptionalParameters struct {
841841
Name *string
842842
Key *string
843-
Limit *int32
844-
Offset *int32
843+
Limit *int64
844+
Offset *int64
845845
}
846846

847847
// NewListFeatureFlagsEnvironmentsOptionalParameters creates an empty struct for parameters.
@@ -863,13 +863,13 @@ func (r *ListFeatureFlagsEnvironmentsOptionalParameters) WithKey(key string) *Li
863863
}
864864

865865
// WithLimit sets the corresponding parameter name and returns the struct.
866-
func (r *ListFeatureFlagsEnvironmentsOptionalParameters) WithLimit(limit int32) *ListFeatureFlagsEnvironmentsOptionalParameters {
866+
func (r *ListFeatureFlagsEnvironmentsOptionalParameters) WithLimit(limit int64) *ListFeatureFlagsEnvironmentsOptionalParameters {
867867
r.Limit = &limit
868868
return r
869869
}
870870

871871
// WithOffset sets the corresponding parameter name and returns the struct.
872-
func (r *ListFeatureFlagsEnvironmentsOptionalParameters) WithOffset(offset int32) *ListFeatureFlagsEnvironmentsOptionalParameters {
872+
func (r *ListFeatureFlagsEnvironmentsOptionalParameters) WithOffset(offset int64) *ListFeatureFlagsEnvironmentsOptionalParameters {
873873
r.Offset = &offset
874874
return r
875875
}

api/datadogV2/api_metrics.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1555,8 +1555,8 @@ func (a *MetricsApi) ListTagConfigurationsWithPagination(ctx _context.Context, o
15551555

15561556
// ListTagIndexingRulesOptionalParameters holds optional parameters for ListTagIndexingRules.
15571557
type ListTagIndexingRulesOptionalParameters struct {
1558-
PageLimit *int32
1559-
PageOffset *int32
1558+
PageLimit *int64
1559+
PageOffset *int64
15601560
Search *string
15611561
}
15621562

@@ -1567,13 +1567,13 @@ func NewListTagIndexingRulesOptionalParameters() *ListTagIndexingRulesOptionalPa
15671567
}
15681568

15691569
// WithPageLimit sets the corresponding parameter name and returns the struct.
1570-
func (r *ListTagIndexingRulesOptionalParameters) WithPageLimit(pageLimit int32) *ListTagIndexingRulesOptionalParameters {
1570+
func (r *ListTagIndexingRulesOptionalParameters) WithPageLimit(pageLimit int64) *ListTagIndexingRulesOptionalParameters {
15711571
r.PageLimit = &pageLimit
15721572
return r
15731573
}
15741574

15751575
// WithPageOffset sets the corresponding parameter name and returns the struct.
1576-
func (r *ListTagIndexingRulesOptionalParameters) WithPageOffset(pageOffset int32) *ListTagIndexingRulesOptionalParameters {
1576+
func (r *ListTagIndexingRulesOptionalParameters) WithPageOffset(pageOffset int64) *ListTagIndexingRulesOptionalParameters {
15771577
r.PageOffset = &pageOffset
15781578
return r
15791579
}

api/datadogV2/api_model_lab_api.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,8 @@ type ListModelLabProjectsOptionalParameters struct {
680680
FilterOwnerId *uuid.UUID
681681
FilterTags *string
682682
Sort *string
683-
PageSize *int32
684-
PageNumber *int32
683+
PageSize *int64
684+
PageNumber *int64
685685
}
686686

687687
// NewListModelLabProjectsOptionalParameters creates an empty struct for parameters.
@@ -715,13 +715,13 @@ func (r *ListModelLabProjectsOptionalParameters) WithSort(sort string) *ListMode
715715
}
716716

717717
// WithPageSize sets the corresponding parameter name and returns the struct.
718-
func (r *ListModelLabProjectsOptionalParameters) WithPageSize(pageSize int32) *ListModelLabProjectsOptionalParameters {
718+
func (r *ListModelLabProjectsOptionalParameters) WithPageSize(pageSize int64) *ListModelLabProjectsOptionalParameters {
719719
r.PageSize = &pageSize
720720
return r
721721
}
722722

723723
// WithPageNumber sets the corresponding parameter name and returns the struct.
724-
func (r *ListModelLabProjectsOptionalParameters) WithPageNumber(pageNumber int32) *ListModelLabProjectsOptionalParameters {
724+
func (r *ListModelLabProjectsOptionalParameters) WithPageNumber(pageNumber int64) *ListModelLabProjectsOptionalParameters {
725725
r.PageNumber = &pageNumber
726726
return r
727727
}
@@ -1179,8 +1179,8 @@ type ListModelLabRunsOptionalParameters struct {
11791179
IncludePinned *bool
11801180
IncludeDescendantMatches *bool
11811181
Sort *string
1182-
PageSize *int32
1183-
PageNumber *int32
1182+
PageSize *int64
1183+
PageNumber *int64
11841184
}
11851185

11861186
// NewListModelLabRunsOptionalParameters creates an empty struct for parameters.
@@ -1262,13 +1262,13 @@ func (r *ListModelLabRunsOptionalParameters) WithSort(sort string) *ListModelLab
12621262
}
12631263

12641264
// WithPageSize sets the corresponding parameter name and returns the struct.
1265-
func (r *ListModelLabRunsOptionalParameters) WithPageSize(pageSize int32) *ListModelLabRunsOptionalParameters {
1265+
func (r *ListModelLabRunsOptionalParameters) WithPageSize(pageSize int64) *ListModelLabRunsOptionalParameters {
12661266
r.PageSize = &pageSize
12671267
return r
12681268
}
12691269

12701270
// WithPageNumber sets the corresponding parameter name and returns the struct.
1271-
func (r *ListModelLabRunsOptionalParameters) WithPageNumber(pageNumber int32) *ListModelLabRunsOptionalParameters {
1271+
func (r *ListModelLabRunsOptionalParameters) WithPageNumber(pageNumber int64) *ListModelLabRunsOptionalParameters {
12721272
r.PageNumber = &pageNumber
12731273
return r
12741274
}

api/datadogV2/api_rum.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1221,8 +1221,8 @@ func (a *RUMApi) ListRUMEventsWithPagination(ctx _context.Context, o ...ListRUME
12211221
// ListSourcemapsOptionalParameters holds optional parameters for ListSourcemaps.
12221222
type ListSourcemapsOptionalParameters struct {
12231223
Mapkind *SourcemapMapKind
1224-
PageSize *int32
1225-
PageNumber *int32
1224+
PageSize *int64
1225+
PageNumber *int64
12261226
FilterService *[]string
12271227
FilterVersion *[]string
12281228
FilterVariant *[]string
@@ -1256,13 +1256,13 @@ func (r *ListSourcemapsOptionalParameters) WithMapkind(mapkind SourcemapMapKind)
12561256
}
12571257

12581258
// WithPageSize sets the corresponding parameter name and returns the struct.
1259-
func (r *ListSourcemapsOptionalParameters) WithPageSize(pageSize int32) *ListSourcemapsOptionalParameters {
1259+
func (r *ListSourcemapsOptionalParameters) WithPageSize(pageSize int64) *ListSourcemapsOptionalParameters {
12601260
r.PageSize = &pageSize
12611261
return r
12621262
}
12631263

12641264
// WithPageNumber sets the corresponding parameter name and returns the struct.
1265-
func (r *ListSourcemapsOptionalParameters) WithPageNumber(pageNumber int32) *ListSourcemapsOptionalParameters {
1265+
func (r *ListSourcemapsOptionalParameters) WithPageNumber(pageNumber int64) *ListSourcemapsOptionalParameters {
12661266
r.PageNumber = &pageNumber
12671267
return r
12681268
}

api/datadogV2/api_rum_replay_heatmaps.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ func (a *RumReplayHeatmapsApi) DeleteReplayHeatmapSnapshot(ctx _context.Context,
166166
// ListReplayHeatmapSnapshotsOptionalParameters holds optional parameters for ListReplayHeatmapSnapshots.
167167
type ListReplayHeatmapSnapshotsOptionalParameters struct {
168168
FilterDeviceType *string
169-
PageLimit *int32
169+
PageLimit *int64
170170
FilterApplicationId *string
171171
}
172172

@@ -183,7 +183,7 @@ func (r *ListReplayHeatmapSnapshotsOptionalParameters) WithFilterDeviceType(filt
183183
}
184184

185185
// WithPageLimit sets the corresponding parameter name and returns the struct.
186-
func (r *ListReplayHeatmapSnapshotsOptionalParameters) WithPageLimit(pageLimit int32) *ListReplayHeatmapSnapshotsOptionalParameters {
186+
func (r *ListReplayHeatmapSnapshotsOptionalParameters) WithPageLimit(pageLimit int64) *ListReplayHeatmapSnapshotsOptionalParameters {
187187
r.PageLimit = &pageLimit
188188
return r
189189
}

api/datadogV2/api_rum_replay_playlists.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (r *AddRumReplaySessionToPlaylistOptionalParameters) WithDataSource(dataSou
3434

3535
// AddRumReplaySessionToPlaylist Add RUM replay session to playlist.
3636
// Add a session to a playlist.
37-
func (a *RumReplayPlaylistsApi) AddRumReplaySessionToPlaylist(ctx _context.Context, ts int64, playlistId int32, sessionId string, o ...AddRumReplaySessionToPlaylistOptionalParameters) (PlaylistsSession, *_nethttp.Response, error) {
37+
func (a *RumReplayPlaylistsApi) AddRumReplaySessionToPlaylist(ctx _context.Context, ts int64, playlistId int64, sessionId string, o ...AddRumReplaySessionToPlaylistOptionalParameters) (PlaylistsSession, *_nethttp.Response, error) {
3838
var (
3939
localVarHTTPMethod = _nethttp.MethodPut
4040
localVarPostBody interface{}
@@ -125,7 +125,7 @@ func (a *RumReplayPlaylistsApi) AddRumReplaySessionToPlaylist(ctx _context.Conte
125125

126126
// BulkRemoveRumReplayPlaylistSessions Bulk remove RUM replay playlist sessions.
127127
// Remove sessions from a playlist.
128-
func (a *RumReplayPlaylistsApi) BulkRemoveRumReplayPlaylistSessions(ctx _context.Context, playlistId int32, body SessionIdArray) (*_nethttp.Response, error) {
128+
func (a *RumReplayPlaylistsApi) BulkRemoveRumReplayPlaylistSessions(ctx _context.Context, playlistId int64, body SessionIdArray) (*_nethttp.Response, error) {
129129
var (
130130
localVarHTTPMethod = _nethttp.MethodDelete
131131
localVarPostBody interface{}
@@ -276,7 +276,7 @@ func (a *RumReplayPlaylistsApi) CreateRumReplayPlaylist(ctx _context.Context, bo
276276

277277
// DeleteRumReplayPlaylist Delete RUM replay playlist.
278278
// Delete a playlist.
279-
func (a *RumReplayPlaylistsApi) DeleteRumReplayPlaylist(ctx _context.Context, playlistId int32) (*_nethttp.Response, error) {
279+
func (a *RumReplayPlaylistsApi) DeleteRumReplayPlaylist(ctx _context.Context, playlistId int64) (*_nethttp.Response, error) {
280280
var (
281281
localVarHTTPMethod = _nethttp.MethodDelete
282282
localVarPostBody interface{}
@@ -344,7 +344,7 @@ func (a *RumReplayPlaylistsApi) DeleteRumReplayPlaylist(ctx _context.Context, pl
344344

345345
// GetRumReplayPlaylist Get RUM replay playlist.
346346
// Get a playlist.
347-
func (a *RumReplayPlaylistsApi) GetRumReplayPlaylist(ctx _context.Context, playlistId int32) (Playlist, *_nethttp.Response, error) {
347+
func (a *RumReplayPlaylistsApi) GetRumReplayPlaylist(ctx _context.Context, playlistId int64) (Playlist, *_nethttp.Response, error) {
348348
var (
349349
localVarHTTPMethod = _nethttp.MethodGet
350350
localVarPostBody interface{}
@@ -422,8 +422,8 @@ func (a *RumReplayPlaylistsApi) GetRumReplayPlaylist(ctx _context.Context, playl
422422

423423
// ListRumReplayPlaylistSessionsOptionalParameters holds optional parameters for ListRumReplayPlaylistSessions.
424424
type ListRumReplayPlaylistSessionsOptionalParameters struct {
425-
PageNumber *int32
426-
PageSize *int32
425+
PageNumber *int64
426+
PageSize *int64
427427
}
428428

429429
// NewListRumReplayPlaylistSessionsOptionalParameters creates an empty struct for parameters.
@@ -433,20 +433,20 @@ func NewListRumReplayPlaylistSessionsOptionalParameters() *ListRumReplayPlaylist
433433
}
434434

435435
// WithPageNumber sets the corresponding parameter name and returns the struct.
436-
func (r *ListRumReplayPlaylistSessionsOptionalParameters) WithPageNumber(pageNumber int32) *ListRumReplayPlaylistSessionsOptionalParameters {
436+
func (r *ListRumReplayPlaylistSessionsOptionalParameters) WithPageNumber(pageNumber int64) *ListRumReplayPlaylistSessionsOptionalParameters {
437437
r.PageNumber = &pageNumber
438438
return r
439439
}
440440

441441
// WithPageSize sets the corresponding parameter name and returns the struct.
442-
func (r *ListRumReplayPlaylistSessionsOptionalParameters) WithPageSize(pageSize int32) *ListRumReplayPlaylistSessionsOptionalParameters {
442+
func (r *ListRumReplayPlaylistSessionsOptionalParameters) WithPageSize(pageSize int64) *ListRumReplayPlaylistSessionsOptionalParameters {
443443
r.PageSize = &pageSize
444444
return r
445445
}
446446

447447
// ListRumReplayPlaylistSessions List RUM replay playlist sessions.
448448
// List sessions in a playlist.
449-
func (a *RumReplayPlaylistsApi) ListRumReplayPlaylistSessions(ctx _context.Context, playlistId int32, o ...ListRumReplayPlaylistSessionsOptionalParameters) (PlaylistsSessionArray, *_nethttp.Response, error) {
449+
func (a *RumReplayPlaylistsApi) ListRumReplayPlaylistSessions(ctx _context.Context, playlistId int64, o ...ListRumReplayPlaylistSessionsOptionalParameters) (PlaylistsSessionArray, *_nethttp.Response, error) {
450450
var (
451451
localVarHTTPMethod = _nethttp.MethodGet
452452
localVarPostBody interface{}
@@ -540,8 +540,8 @@ func (a *RumReplayPlaylistsApi) ListRumReplayPlaylistSessions(ctx _context.Conte
540540
type ListRumReplayPlaylistsOptionalParameters struct {
541541
FilterCreatedByUuid *string
542542
FilterQuery *string
543-
PageNumber *int32
544-
PageSize *int32
543+
PageNumber *int64
544+
PageSize *int64
545545
}
546546

547547
// NewListRumReplayPlaylistsOptionalParameters creates an empty struct for parameters.
@@ -563,13 +563,13 @@ func (r *ListRumReplayPlaylistsOptionalParameters) WithFilterQuery(filterQuery s
563563
}
564564

565565
// WithPageNumber sets the corresponding parameter name and returns the struct.
566-
func (r *ListRumReplayPlaylistsOptionalParameters) WithPageNumber(pageNumber int32) *ListRumReplayPlaylistsOptionalParameters {
566+
func (r *ListRumReplayPlaylistsOptionalParameters) WithPageNumber(pageNumber int64) *ListRumReplayPlaylistsOptionalParameters {
567567
r.PageNumber = &pageNumber
568568
return r
569569
}
570570

571571
// WithPageSize sets the corresponding parameter name and returns the struct.
572-
func (r *ListRumReplayPlaylistsOptionalParameters) WithPageSize(pageSize int32) *ListRumReplayPlaylistsOptionalParameters {
572+
func (r *ListRumReplayPlaylistsOptionalParameters) WithPageSize(pageSize int64) *ListRumReplayPlaylistsOptionalParameters {
573573
r.PageSize = &pageSize
574574
return r
575575
}
@@ -673,7 +673,7 @@ func (a *RumReplayPlaylistsApi) ListRumReplayPlaylists(ctx _context.Context, o .
673673

674674
// RemoveRumReplaySessionFromPlaylist Remove RUM replay session from playlist.
675675
// Remove a session from a playlist.
676-
func (a *RumReplayPlaylistsApi) RemoveRumReplaySessionFromPlaylist(ctx _context.Context, playlistId int32, sessionId string) (*_nethttp.Response, error) {
676+
func (a *RumReplayPlaylistsApi) RemoveRumReplaySessionFromPlaylist(ctx _context.Context, playlistId int64, sessionId string) (*_nethttp.Response, error) {
677677
var (
678678
localVarHTTPMethod = _nethttp.MethodDelete
679679
localVarPostBody interface{}
@@ -742,7 +742,7 @@ func (a *RumReplayPlaylistsApi) RemoveRumReplaySessionFromPlaylist(ctx _context.
742742

743743
// UpdateRumReplayPlaylist Update RUM replay playlist.
744744
// Update a playlist.
745-
func (a *RumReplayPlaylistsApi) UpdateRumReplayPlaylist(ctx _context.Context, playlistId int32, body Playlist) (Playlist, *_nethttp.Response, error) {
745+
func (a *RumReplayPlaylistsApi) UpdateRumReplayPlaylist(ctx _context.Context, playlistId int64, body Playlist) (Playlist, *_nethttp.Response, error) {
746746
var (
747747
localVarHTTPMethod = _nethttp.MethodPut
748748
localVarPostBody interface{}

0 commit comments

Comments
 (0)