-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaccess_management.go
More file actions
1716 lines (1506 loc) · 43.6 KB
/
access_management.go
File metadata and controls
1716 lines (1506 loc) · 43.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
fmt "fmt"
core "github.com/StackGuardian/sg-sdk-go/core"
internal "github.com/StackGuardian/sg-sdk-go/internal"
)
type ApiAccess struct {
// Name of the API access.
ResourceName string `json:"ResourceName" url:"-"`
// Description of the API access
Description *core.Optional[string] `json:"Description,omitempty" url:"-"`
// Tags for organizing API accesses
Tags *core.Optional[[]string] `json:"Tags,omitempty" url:"-"`
// Contextual tags to give context to your tags
ContextTags *core.Optional[map[string]*string] `json:"ContextTags,omitempty" url:"-"`
// Type of access: APIKEY for API key authentication, OIDC for OpenID Connect
//
// * `APIKEY` - APIKEY
// * `OIDC` - OIDC
AccessType *core.Optional[AccessTypeEnum] `json:"AccessType,omitempty" url:"-"`
// List of role names assigned to this API access
Roles []string `json:"Roles,omitempty" url:"-"`
// Expiration timestamp in milliseconds. Null means no expiration.
ExpiresAt *core.Optional[int] `json:"ExpiresAt,omitempty" url:"-"`
// Whether the API access is active
//
// * `0` - 0
// * `1` - 1
IsActive *core.Optional[IsPublicEnum] `json:"IsActive,omitempty" url:"-"`
// OIDC Trust configuration. Required when AccessType is OIDC.
OidcTrust *core.Optional[OidcTrust] `json:"OIDCTrust,omitempty" url:"-"`
// Document version
//
// * `V1` - V1
DocVersion *core.Optional[DocVersionAadEnum] `json:"DocVersion,omitempty" url:"-"`
}
type Role struct {
Id *string `json:"Id,omitempty"`
ResourceName string `json:"ResourceName" url:"-"`
Description *core.Optional[string] `json:"Description,omitempty" url:"-"`
Tags *core.Optional[[]string] `json:"Tags,omitempty" url:"-"`
// Contextual tags to give context to your tags
ContextTags *core.Optional[map[string]*string] `json:"ContextTags,omitempty" url:"-"`
AllowedPermissions *core.Optional[map[string]*AllowedPermissions] `json:"AllowedPermissions,omitempty" url:"-"`
// Select the document version. `V4` enforces equal path list lengths (one-to-one mapping) in AllowedPermissions. `V3.BETA` is there for legacy compatibility.
//
// * `V3.BETA` - V3.BETA
// * `V4` - V4
DocVersion *core.Optional[RoleDocVersionEnum] `json:"DocVersion,omitempty" url:"-"`
}
type ListAllUsersRequest struct {
// Filter users based on alias.
Alias *string `json:"-" url:"alias,omitempty"`
// Filter users based on entityType. This can be EMAIL or GROUP.
EntityType *string `json:"-" url:"entityType,omitempty"`
// Filter users based on loginMethod.
LoginMethod *string `json:"-" url:"loginMethod,omitempty"`
// Filter users based on roles. You can pass multiple roles separated by commas. Example: roles=ADMIN,USER will return users with both ADMIN and USER roles.
Roles *string `json:"-" url:"roles,omitempty"`
// Filter users based on userId.
UserId *string `json:"-" url:"userId,omitempty"`
}
type ListAllApiAccessesRequest struct {
// Filter by access type
AccessType *ListAllApiAccessesRequestAccessType `json:"-" url:"accessType,omitempty"`
// Base64 encoded pagination token from previous response
LastEvaluatedKey *string `json:"-" url:"lastEvaluatedKey,omitempty"`
// Maximum number of items to return (default: 50, max: 100)
Limit *int `json:"-" url:"limit,omitempty"`
// Filter by resource name (contains match)
ResourceName *string `json:"-" url:"resourceName,omitempty"`
// Filter by roles (comma-separated list)
Roles *string `json:"-" url:"roles,omitempty"`
// Filter by status (comma-separated: active, expired)
Status *string `json:"-" url:"status,omitempty"`
}
type ListAllRolesRequest struct {
// Boolean flag that, if set to `true`, includes predefined system roles in the response when the user has access to it. Default is `false`.
IncludePredefinedRoles *bool `json:"-" url:"includePredefinedRoles,omitempty"`
}
type ReadAuditLogsRequest struct {
// Filter logs by the effect of the action (e.g., 'Allow' or 'Deny').
Effect *string `json:"-" url:"effect,omitempty"`
// End time for filtering logs. Format: Unix timestamp in milliseconds.
EndTime *int `json:"-" url:"endTime,omitempty"`
// Last evaluated key for pagination. Use this to get the next set of results.
Lastevaluatedkey *string `json:"-" url:"lastevaluatedkey,omitempty"`
// Limit the number of results returned. Default is 50. Maximum is 500.
Limit *int `json:"-" url:"limit,omitempty"`
// Filter logs by the email of the principal (user or service account).
PrincipalEmail *string `json:"-" url:"principalEmail,omitempty"`
// Filter logs by the HTTP request method (e.g., 'GET', 'POST', etc.).
RequestMethod *string `json:"-" url:"request_method,omitempty"`
// Filter logs by the resource name. For example, use 'SG_SIGN_IN' for sign-in logs, and '/orgs/org-name/wfgrps/wfgrp-name/wfs/wf-name' for logs related to a specific workflow.
Resource *string `json:"-" url:"resource,omitempty"`
// Filter logs by the source IP address of the request.
SourceIp *string `json:"-" url:"sourceIp,omitempty"`
// Start time for filtering logs. Format: Unix timestamp in milliseconds.
StartTime *int `json:"-" url:"startTime,omitempty"`
}
type ApiAccessRegenerate struct {
// New expiration timestamp in milliseconds. Null means no expiration.
ExpiresAt *core.Optional[int] `json:"ExpiresAt,omitempty" url:"-"`
}
type PatchedApiAccessPatch struct {
// Name of the API access
ResourceName *core.Optional[string] `json:"ResourceName,omitempty" url:"-"`
// Description of the API access
Description *core.Optional[string] `json:"Description,omitempty" url:"-"`
// Tags for organizing API accesses
Tags *core.Optional[[]string] `json:"Tags,omitempty" url:"-"`
// Contextual tags to give context to your tags
ContextTags *core.Optional[map[string]*string] `json:"ContextTags,omitempty" url:"-"`
// List of role names assigned to this API access
Roles *core.Optional[[]string] `json:"Roles,omitempty" url:"-"`
// OIDC Trust configuration. Only updatable for OIDC access type.
OidcTrust *core.Optional[OidcTrust] `json:"OIDCTrust,omitempty" url:"-"`
}
type PatchedRole struct {
ResourceName *core.Optional[string] `json:"ResourceName,omitempty" url:"-"`
Description *core.Optional[string] `json:"Description,omitempty" url:"-"`
Tags *core.Optional[[]string] `json:"Tags,omitempty" url:"-"`
// Contextual tags to give context to your tags
ContextTags *core.Optional[map[string]*string] `json:"ContextTags,omitempty" url:"-"`
AllowedPermissions *core.Optional[map[string]*AllowedPermissions] `json:"AllowedPermissions,omitempty" url:"-"`
// Select the document version. `V4` enforces equal path list lengths (one-to-one mapping) in AllowedPermissions. `V3.BETA` is there for legacy compatibility.
//
// * `V3.BETA` - V3.BETA
// * `V4` - V4
DocVersion *core.Optional[RoleDocVersionEnum] `json:"DocVersion,omitempty" url:"-"`
}
// * `APIKEY` - APIKEY
// * `OIDC` - OIDC
type AccessTypeEnum string
const (
AccessTypeEnumApikey AccessTypeEnum = "APIKEY"
AccessTypeEnumOidc AccessTypeEnum = "OIDC"
)
func NewAccessTypeEnumFromString(s string) (AccessTypeEnum, error) {
switch s {
case "APIKEY":
return AccessTypeEnumApikey, nil
case "OIDC":
return AccessTypeEnumOidc, nil
}
var t AccessTypeEnum
return "", fmt.Errorf("%s is not a valid %T", s, t)
}
func (a AccessTypeEnum) Ptr() *AccessTypeEnum {
return &a
}
type AddUserToOrganization struct {
UserId string `json:"userId" url:"userId"`
EntityType *EntityTypeEnum `json:"entityType,omitempty" url:"entityType,omitempty"`
// Alias to easily identify SSO Groups. Alias is only applicable for GROUP entityType.
Alias *string `json:"alias,omitempty" url:"alias,omitempty"`
Role *string `json:"role,omitempty" url:"role,omitempty"`
Roles []string `json:"roles,omitempty" url:"roles,omitempty"`
ResendInvite *bool `json:"resendInvite,omitempty" url:"resendInvite,omitempty"`
SendEmail *bool `json:"sendEmail,omitempty" url:"sendEmail,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AddUserToOrganization) GetUserId() string {
if a == nil {
return ""
}
return a.UserId
}
func (a *AddUserToOrganization) GetEntityType() *EntityTypeEnum {
if a == nil {
return nil
}
return a.EntityType
}
func (a *AddUserToOrganization) GetAlias() *string {
if a == nil {
return nil
}
return a.Alias
}
func (a *AddUserToOrganization) GetRole() *string {
if a == nil {
return nil
}
return a.Role
}
func (a *AddUserToOrganization) GetRoles() []string {
if a == nil {
return nil
}
return a.Roles
}
func (a *AddUserToOrganization) GetResendInvite() *bool {
if a == nil {
return nil
}
return a.ResendInvite
}
func (a *AddUserToOrganization) GetSendEmail() *bool {
if a == nil {
return nil
}
return a.SendEmail
}
func (a *AddUserToOrganization) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AddUserToOrganization) UnmarshalJSON(data []byte) error {
type unmarshaler AddUserToOrganization
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AddUserToOrganization(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *AddUserToOrganization) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
type AddUserToOrganizationResponse struct {
Msg *string `json:"msg,omitempty" url:"msg,omitempty"`
Data *AddUserToOrganization `json:"data,omitempty" url:"data,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AddUserToOrganizationResponse) GetMsg() *string {
if a == nil {
return nil
}
return a.Msg
}
func (a *AddUserToOrganizationResponse) GetData() *AddUserToOrganization {
if a == nil {
return nil
}
return a.Data
}
func (a *AddUserToOrganizationResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AddUserToOrganizationResponse) UnmarshalJSON(data []byte) error {
type unmarshaler AddUserToOrganizationResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AddUserToOrganizationResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *AddUserToOrganizationResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
type AllowedPermissions struct {
Name string `json:"name" url:"name"`
Paths map[string][]string `json:"paths,omitempty" url:"paths,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AllowedPermissions) GetName() string {
if a == nil {
return ""
}
return a.Name
}
func (a *AllowedPermissions) GetPaths() map[string][]string {
if a == nil {
return nil
}
return a.Paths
}
func (a *AllowedPermissions) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AllowedPermissions) UnmarshalJSON(data []byte) error {
type unmarshaler AllowedPermissions
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AllowedPermissions(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *AllowedPermissions) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access creation response
type ApiAccessCreateResponse struct {
// Success message describing the result of the creation operation
Msg string `json:"msg" url:"msg"`
// Details of the created API access
Data *ApiAccessDataResponse `json:"data,omitempty" url:"data,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessCreateResponse) GetMsg() string {
if a == nil {
return ""
}
return a.Msg
}
func (a *ApiAccessCreateResponse) GetData() *ApiAccessDataResponse {
if a == nil {
return nil
}
return a.Data
}
func (a *ApiAccessCreateResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessCreateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessCreateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessCreateResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessCreateResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access data in responses
type ApiAccessDataResponse struct {
// Name of the API access.
ResourceName string `json:"ResourceName" url:"ResourceName"`
// Description of the API access
Description *string `json:"Description,omitempty" url:"Description,omitempty"`
// Tags for organizing API accesses
Tags []string `json:"Tags,omitempty" url:"Tags,omitempty"`
// Contextual tags to give context to your tags
ContextTags map[string]*string `json:"ContextTags,omitempty" url:"ContextTags,omitempty"`
// Type of access: APIKEY for API key authentication, OIDC for OpenID Connect
//
// * `APIKEY` - APIKEY
// * `OIDC` - OIDC
AccessType *AccessTypeEnum `json:"AccessType,omitempty" url:"AccessType,omitempty"`
// List of role names assigned to this API access
Roles []string `json:"Roles,omitempty" url:"Roles,omitempty"`
// Expiration timestamp in milliseconds. Null means no expiration.
ExpiresAt *int `json:"ExpiresAt,omitempty" url:"ExpiresAt,omitempty"`
// Whether the API access is active
//
// * `0` - 0
// * `1` - 1
IsActive *IsPublicEnum `json:"IsActive,omitempty" url:"IsActive,omitempty"`
// OIDC Trust configuration. Required when AccessType is OIDC.
OidcTrust *OidcTrust `json:"OIDCTrust,omitempty" url:"OIDCTrust,omitempty"`
// Document version
//
// * `V1` - V1
DocVersion *DocVersionAadEnum `json:"DocVersion,omitempty" url:"DocVersion,omitempty"`
// Parent organization ID
ParentId string `json:"ParentId" url:"ParentId"`
// Resource ID of the API access
ResourceId string `json:"ResourceId" url:"ResourceId"`
// Resource type (API_ACCESS)
ResourceType string `json:"ResourceType" url:"ResourceType"`
// List of authors
Authors []string `json:"Authors,omitempty" url:"Authors,omitempty"`
// Creation timestamp in milliseconds
CreatedAt int `json:"CreatedAt" url:"CreatedAt"`
// Last modification timestamp in milliseconds
ModifiedAt int `json:"ModifiedAt" url:"ModifiedAt"`
// Last access timestamp in milliseconds
LastAccessAt int `json:"LastAccessAt" url:"LastAccessAt"`
// Organization ID
OrgId string `json:"OrgId" url:"OrgId"`
// Environment where the access was created
CreatorEnv string `json:"CreatorEnv" url:"CreatorEnv"`
// Whether the access is archived
//
// * `0` - 0
// * `1` - 1
IsArchive IsPublicEnum `json:"IsArchive" url:"IsArchive"`
// Email address associated with the API access
Email string `json:"Email" url:"Email"`
// Generated API key (only in create/regenerate responses)
ApiKey *string `json:"APIKey,omitempty" url:"APIKey,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessDataResponse) GetResourceName() string {
if a == nil {
return ""
}
return a.ResourceName
}
func (a *ApiAccessDataResponse) GetDescription() *string {
if a == nil {
return nil
}
return a.Description
}
func (a *ApiAccessDataResponse) GetTags() []string {
if a == nil {
return nil
}
return a.Tags
}
func (a *ApiAccessDataResponse) GetContextTags() map[string]*string {
if a == nil {
return nil
}
return a.ContextTags
}
func (a *ApiAccessDataResponse) GetAccessType() *AccessTypeEnum {
if a == nil {
return nil
}
return a.AccessType
}
func (a *ApiAccessDataResponse) GetRoles() []string {
if a == nil {
return nil
}
return a.Roles
}
func (a *ApiAccessDataResponse) GetExpiresAt() *int {
if a == nil {
return nil
}
return a.ExpiresAt
}
func (a *ApiAccessDataResponse) GetIsActive() *IsPublicEnum {
if a == nil {
return nil
}
return a.IsActive
}
func (a *ApiAccessDataResponse) GetOidcTrust() *OidcTrust {
if a == nil {
return nil
}
return a.OidcTrust
}
func (a *ApiAccessDataResponse) GetParentId() string {
if a == nil {
return ""
}
return a.ParentId
}
func (a *ApiAccessDataResponse) GetResourceId() string {
if a == nil {
return ""
}
return a.ResourceId
}
func (a *ApiAccessDataResponse) GetResourceType() string {
if a == nil {
return ""
}
return a.ResourceType
}
func (a *ApiAccessDataResponse) GetAuthors() []string {
if a == nil {
return nil
}
return a.Authors
}
func (a *ApiAccessDataResponse) GetCreatedAt() int {
if a == nil {
return 0
}
return a.CreatedAt
}
func (a *ApiAccessDataResponse) GetModifiedAt() int {
if a == nil {
return 0
}
return a.ModifiedAt
}
func (a *ApiAccessDataResponse) GetLastAccessAt() int {
if a == nil {
return 0
}
return a.LastAccessAt
}
func (a *ApiAccessDataResponse) GetOrgId() string {
if a == nil {
return ""
}
return a.OrgId
}
func (a *ApiAccessDataResponse) GetCreatorEnv() string {
if a == nil {
return ""
}
return a.CreatorEnv
}
func (a *ApiAccessDataResponse) GetIsArchive() IsPublicEnum {
if a == nil {
return ""
}
return a.IsArchive
}
func (a *ApiAccessDataResponse) GetEmail() string {
if a == nil {
return ""
}
return a.Email
}
func (a *ApiAccessDataResponse) GetApiKey() *string {
if a == nil {
return nil
}
return a.ApiKey
}
func (a *ApiAccessDataResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessDataResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessDataResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessDataResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessDataResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access deletion response
type ApiAccessDeleteResponse struct {
// Success message
Msg string `json:"msg" url:"msg"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessDeleteResponse) GetMsg() string {
if a == nil {
return ""
}
return a.Msg
}
func (a *ApiAccessDeleteResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessDeleteResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessDeleteResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessDeleteResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessDeleteResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access get response
type ApiAccessGetResponse struct {
// (Deprecated) Use 'data' field. Previously contained API access data.
Msg *ApiAccessDataResponse `json:"msg,omitempty" url:"msg,omitempty"`
// Details of the requested API access
Data *ApiAccessDataResponse `json:"data,omitempty" url:"data,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessGetResponse) GetMsg() *ApiAccessDataResponse {
if a == nil {
return nil
}
return a.Msg
}
func (a *ApiAccessGetResponse) GetData() *ApiAccessDataResponse {
if a == nil {
return nil
}
return a.Data
}
func (a *ApiAccessGetResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessGetResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessGetResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessGetResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessGetResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access list response
type ApiAccessListResponse struct {
// List of API accesses
Msg []*ApiAccessDataResponse `json:"msg,omitempty" url:"msg,omitempty"`
// Base64 encoded pagination token for next page
Lastevaluatedkey *string `json:"lastevaluatedkey,omitempty" url:"lastevaluatedkey,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessListResponse) GetMsg() []*ApiAccessDataResponse {
if a == nil {
return nil
}
return a.Msg
}
func (a *ApiAccessListResponse) GetLastevaluatedkey() *string {
if a == nil {
return nil
}
return a.Lastevaluatedkey
}
func (a *ApiAccessListResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessListResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessListResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessListResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessListResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API key regeneration response
type ApiAccessRegenerateResponse struct {
// Success message
Msg string `json:"msg" url:"msg"`
// Contains the new API key
Data map[string]string `json:"data,omitempty" url:"data,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessRegenerateResponse) GetMsg() string {
if a == nil {
return ""
}
return a.Msg
}
func (a *ApiAccessRegenerateResponse) GetData() map[string]string {
if a == nil {
return nil
}
return a.Data
}
func (a *ApiAccessRegenerateResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessRegenerateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessRegenerateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessRegenerateResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessRegenerateResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
// Serializer for API Access update response
type ApiAccessUpdateResponse struct {
// Success message describing the result of the update operation
Msg string `json:"msg" url:"msg"`
// Details of the updated API access
Data *ApiAccessDataResponse `json:"data,omitempty" url:"data,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *ApiAccessUpdateResponse) GetMsg() string {
if a == nil {
return ""
}
return a.Msg
}
func (a *ApiAccessUpdateResponse) GetData() *ApiAccessDataResponse {
if a == nil {
return nil
}
return a.Data
}
func (a *ApiAccessUpdateResponse) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *ApiAccessUpdateResponse) UnmarshalJSON(data []byte) error {
type unmarshaler ApiAccessUpdateResponse
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = ApiAccessUpdateResponse(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}
func (a *ApiAccessUpdateResponse) String() string {
if len(a.rawJSON) > 0 {
if value, err := internal.StringifyJSON(a.rawJSON); err == nil {
return value
}
}
if value, err := internal.StringifyJSON(a); err == nil {
return value
}
return fmt.Sprintf("%#v", a)
}
type AuditLogItem struct {
// The ingestion time of the audit log item.
IngestionTime *int `json:"ingestionTime,omitempty" url:"ingestionTime,omitempty"`
// The timestamp of the audit log item.
Timestamp *int `json:"timestamp,omitempty" url:"timestamp,omitempty"`
// The contents of the audit log item in JSON string format.
Message *string `json:"message,omitempty" url:"message,omitempty"`
extraProperties map[string]interface{}
rawJSON json.RawMessage
}
func (a *AuditLogItem) GetIngestionTime() *int {
if a == nil {
return nil
}
return a.IngestionTime
}
func (a *AuditLogItem) GetTimestamp() *int {
if a == nil {
return nil
}
return a.Timestamp
}
func (a *AuditLogItem) GetMessage() *string {
if a == nil {
return nil
}
return a.Message
}
func (a *AuditLogItem) GetExtraProperties() map[string]interface{} {
return a.extraProperties
}
func (a *AuditLogItem) UnmarshalJSON(data []byte) error {
type unmarshaler AuditLogItem
var value unmarshaler
if err := json.Unmarshal(data, &value); err != nil {
return err
}
*a = AuditLogItem(value)
extraProperties, err := internal.ExtractExtraProperties(data, *a)
if err != nil {
return err
}
a.extraProperties = extraProperties
a.rawJSON = json.RawMessage(data)
return nil
}