-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodel_group_remote_info.go
More file actions
896 lines (760 loc) · 30.3 KB
/
model_group_remote_info.go
File metadata and controls
896 lines (760 loc) · 30.3 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
/*
Opal API
The Opal API is a RESTful API that allows you to interact with the Opal Security platform programmatically.
API version: 1.0
Contact: hello@opal.dev
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package opal
import (
"encoding/json"
)
// checks if the GroupRemoteInfo type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &GroupRemoteInfo{}
// GroupRemoteInfo Information that defines the remote group. This replaces the deprecated remote_id and metadata fields. If remote_info is provided, a group will be imported into Opal. For group types that support group creation through Opal, a new group will be created if remote_info is not provided.
type GroupRemoteInfo struct {
ActiveDirectoryGroup *GroupRemoteInfoActiveDirectoryGroup `json:"active_directory_group,omitempty"`
TailscaleGroup *GroupRemoteInfoTailscaleGroup `json:"tailscale_group,omitempty"`
AwsSsoGroup *GroupRemoteInfoAwsSsoGroup `json:"aws_sso_group,omitempty"`
DatabricksAccountGroup *GroupRemoteInfoDatabricksAccountGroup `json:"databricks_account_group,omitempty"`
ConnectorGroup *GroupRemoteInfoConnectorGroup `json:"connector_group,omitempty"`
GithubTeam *GroupRemoteInfoGithubTeam `json:"github_team,omitempty"`
GithubEnterpriseTeam *GroupRemoteInfoGithubEnterpriseTeam `json:"github_enterprise_team,omitempty"`
GitlabGroup *GroupRemoteInfoGitlabGroup `json:"gitlab_group,omitempty"`
GoogleGroup *GroupRemoteInfoGoogleGroup `json:"google_group,omitempty"`
LdapGroup *GroupRemoteInfoLdapGroup `json:"ldap_group,omitempty"`
OktaGroup *GroupRemoteInfoOktaGroup `json:"okta_group,omitempty"`
DuoGroup *GroupRemoteInfoDuoGroup `json:"duo_group,omitempty"`
AzureAdSecurityGroup *GroupRemoteInfoAzureAdSecurityGroup `json:"azure_ad_security_group,omitempty"`
AzureAdMicrosoft365Group *GroupRemoteInfoAzureAdMicrosoft365Group `json:"azure_ad_microsoft_365_group,omitempty"`
SnowflakeRole *GroupRemoteInfoSnowflakeRole `json:"snowflake_role,omitempty"`
OktaGroupRule *GroupRemoteInfoOktaGroupRule `json:"okta_group_rule,omitempty"`
WorkdayUserSecurityGroup *GroupRemoteInfoWorkdayUserSecurityGroup `json:"workday_user_security_group,omitempty"`
PagerdutyOnCallSchedule *GroupRemoteInfoPagerdutyOnCallSchedule `json:"pagerduty_on_call_schedule,omitempty"`
IncidentioOnCallSchedule *GroupRemoteInfoIncidentioOnCallSchedule `json:"incidentio_on_call_schedule,omitempty"`
RootlyOnCallSchedule *GroupRemoteInfoRootlyOnCallSchedule `json:"rootly_on_call_schedule,omitempty"`
DevinGroup *GroupRemoteInfoDevinGroup `json:"devin_group,omitempty"`
AdditionalProperties map[string]interface{}
}
type _GroupRemoteInfo GroupRemoteInfo
// NewGroupRemoteInfo instantiates a new GroupRemoteInfo object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewGroupRemoteInfo() *GroupRemoteInfo {
this := GroupRemoteInfo{}
return &this
}
// NewGroupRemoteInfoWithDefaults instantiates a new GroupRemoteInfo object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewGroupRemoteInfoWithDefaults() *GroupRemoteInfo {
this := GroupRemoteInfo{}
return &this
}
// GetActiveDirectoryGroup returns the ActiveDirectoryGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetActiveDirectoryGroup() GroupRemoteInfoActiveDirectoryGroup {
if o == nil || IsNil(o.ActiveDirectoryGroup) {
var ret GroupRemoteInfoActiveDirectoryGroup
return ret
}
return *o.ActiveDirectoryGroup
}
// GetActiveDirectoryGroupOk returns a tuple with the ActiveDirectoryGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetActiveDirectoryGroupOk() (*GroupRemoteInfoActiveDirectoryGroup, bool) {
if o == nil || IsNil(o.ActiveDirectoryGroup) {
return nil, false
}
return o.ActiveDirectoryGroup, true
}
// HasActiveDirectoryGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasActiveDirectoryGroup() bool {
if o != nil && !IsNil(o.ActiveDirectoryGroup) {
return true
}
return false
}
// SetActiveDirectoryGroup gets a reference to the given GroupRemoteInfoActiveDirectoryGroup and assigns it to the ActiveDirectoryGroup field.
func (o *GroupRemoteInfo) SetActiveDirectoryGroup(v GroupRemoteInfoActiveDirectoryGroup) {
o.ActiveDirectoryGroup = &v
}
// GetTailscaleGroup returns the TailscaleGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetTailscaleGroup() GroupRemoteInfoTailscaleGroup {
if o == nil || IsNil(o.TailscaleGroup) {
var ret GroupRemoteInfoTailscaleGroup
return ret
}
return *o.TailscaleGroup
}
// GetTailscaleGroupOk returns a tuple with the TailscaleGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetTailscaleGroupOk() (*GroupRemoteInfoTailscaleGroup, bool) {
if o == nil || IsNil(o.TailscaleGroup) {
return nil, false
}
return o.TailscaleGroup, true
}
// HasTailscaleGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasTailscaleGroup() bool {
if o != nil && !IsNil(o.TailscaleGroup) {
return true
}
return false
}
// SetTailscaleGroup gets a reference to the given GroupRemoteInfoTailscaleGroup and assigns it to the TailscaleGroup field.
func (o *GroupRemoteInfo) SetTailscaleGroup(v GroupRemoteInfoTailscaleGroup) {
o.TailscaleGroup = &v
}
// GetAwsSsoGroup returns the AwsSsoGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetAwsSsoGroup() GroupRemoteInfoAwsSsoGroup {
if o == nil || IsNil(o.AwsSsoGroup) {
var ret GroupRemoteInfoAwsSsoGroup
return ret
}
return *o.AwsSsoGroup
}
// GetAwsSsoGroupOk returns a tuple with the AwsSsoGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetAwsSsoGroupOk() (*GroupRemoteInfoAwsSsoGroup, bool) {
if o == nil || IsNil(o.AwsSsoGroup) {
return nil, false
}
return o.AwsSsoGroup, true
}
// HasAwsSsoGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasAwsSsoGroup() bool {
if o != nil && !IsNil(o.AwsSsoGroup) {
return true
}
return false
}
// SetAwsSsoGroup gets a reference to the given GroupRemoteInfoAwsSsoGroup and assigns it to the AwsSsoGroup field.
func (o *GroupRemoteInfo) SetAwsSsoGroup(v GroupRemoteInfoAwsSsoGroup) {
o.AwsSsoGroup = &v
}
// GetDatabricksAccountGroup returns the DatabricksAccountGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetDatabricksAccountGroup() GroupRemoteInfoDatabricksAccountGroup {
if o == nil || IsNil(o.DatabricksAccountGroup) {
var ret GroupRemoteInfoDatabricksAccountGroup
return ret
}
return *o.DatabricksAccountGroup
}
// GetDatabricksAccountGroupOk returns a tuple with the DatabricksAccountGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetDatabricksAccountGroupOk() (*GroupRemoteInfoDatabricksAccountGroup, bool) {
if o == nil || IsNil(o.DatabricksAccountGroup) {
return nil, false
}
return o.DatabricksAccountGroup, true
}
// HasDatabricksAccountGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasDatabricksAccountGroup() bool {
if o != nil && !IsNil(o.DatabricksAccountGroup) {
return true
}
return false
}
// SetDatabricksAccountGroup gets a reference to the given GroupRemoteInfoDatabricksAccountGroup and assigns it to the DatabricksAccountGroup field.
func (o *GroupRemoteInfo) SetDatabricksAccountGroup(v GroupRemoteInfoDatabricksAccountGroup) {
o.DatabricksAccountGroup = &v
}
// GetConnectorGroup returns the ConnectorGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetConnectorGroup() GroupRemoteInfoConnectorGroup {
if o == nil || IsNil(o.ConnectorGroup) {
var ret GroupRemoteInfoConnectorGroup
return ret
}
return *o.ConnectorGroup
}
// GetConnectorGroupOk returns a tuple with the ConnectorGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetConnectorGroupOk() (*GroupRemoteInfoConnectorGroup, bool) {
if o == nil || IsNil(o.ConnectorGroup) {
return nil, false
}
return o.ConnectorGroup, true
}
// HasConnectorGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasConnectorGroup() bool {
if o != nil && !IsNil(o.ConnectorGroup) {
return true
}
return false
}
// SetConnectorGroup gets a reference to the given GroupRemoteInfoConnectorGroup and assigns it to the ConnectorGroup field.
func (o *GroupRemoteInfo) SetConnectorGroup(v GroupRemoteInfoConnectorGroup) {
o.ConnectorGroup = &v
}
// GetGithubTeam returns the GithubTeam field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetGithubTeam() GroupRemoteInfoGithubTeam {
if o == nil || IsNil(o.GithubTeam) {
var ret GroupRemoteInfoGithubTeam
return ret
}
return *o.GithubTeam
}
// GetGithubTeamOk returns a tuple with the GithubTeam field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetGithubTeamOk() (*GroupRemoteInfoGithubTeam, bool) {
if o == nil || IsNil(o.GithubTeam) {
return nil, false
}
return o.GithubTeam, true
}
// HasGithubTeam returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasGithubTeam() bool {
if o != nil && !IsNil(o.GithubTeam) {
return true
}
return false
}
// SetGithubTeam gets a reference to the given GroupRemoteInfoGithubTeam and assigns it to the GithubTeam field.
func (o *GroupRemoteInfo) SetGithubTeam(v GroupRemoteInfoGithubTeam) {
o.GithubTeam = &v
}
// GetGithubEnterpriseTeam returns the GithubEnterpriseTeam field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetGithubEnterpriseTeam() GroupRemoteInfoGithubEnterpriseTeam {
if o == nil || IsNil(o.GithubEnterpriseTeam) {
var ret GroupRemoteInfoGithubEnterpriseTeam
return ret
}
return *o.GithubEnterpriseTeam
}
// GetGithubEnterpriseTeamOk returns a tuple with the GithubEnterpriseTeam field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetGithubEnterpriseTeamOk() (*GroupRemoteInfoGithubEnterpriseTeam, bool) {
if o == nil || IsNil(o.GithubEnterpriseTeam) {
return nil, false
}
return o.GithubEnterpriseTeam, true
}
// HasGithubEnterpriseTeam returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasGithubEnterpriseTeam() bool {
if o != nil && !IsNil(o.GithubEnterpriseTeam) {
return true
}
return false
}
// SetGithubEnterpriseTeam gets a reference to the given GroupRemoteInfoGithubEnterpriseTeam and assigns it to the GithubEnterpriseTeam field.
func (o *GroupRemoteInfo) SetGithubEnterpriseTeam(v GroupRemoteInfoGithubEnterpriseTeam) {
o.GithubEnterpriseTeam = &v
}
// GetGitlabGroup returns the GitlabGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetGitlabGroup() GroupRemoteInfoGitlabGroup {
if o == nil || IsNil(o.GitlabGroup) {
var ret GroupRemoteInfoGitlabGroup
return ret
}
return *o.GitlabGroup
}
// GetGitlabGroupOk returns a tuple with the GitlabGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetGitlabGroupOk() (*GroupRemoteInfoGitlabGroup, bool) {
if o == nil || IsNil(o.GitlabGroup) {
return nil, false
}
return o.GitlabGroup, true
}
// HasGitlabGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasGitlabGroup() bool {
if o != nil && !IsNil(o.GitlabGroup) {
return true
}
return false
}
// SetGitlabGroup gets a reference to the given GroupRemoteInfoGitlabGroup and assigns it to the GitlabGroup field.
func (o *GroupRemoteInfo) SetGitlabGroup(v GroupRemoteInfoGitlabGroup) {
o.GitlabGroup = &v
}
// GetGoogleGroup returns the GoogleGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetGoogleGroup() GroupRemoteInfoGoogleGroup {
if o == nil || IsNil(o.GoogleGroup) {
var ret GroupRemoteInfoGoogleGroup
return ret
}
return *o.GoogleGroup
}
// GetGoogleGroupOk returns a tuple with the GoogleGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetGoogleGroupOk() (*GroupRemoteInfoGoogleGroup, bool) {
if o == nil || IsNil(o.GoogleGroup) {
return nil, false
}
return o.GoogleGroup, true
}
// HasGoogleGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasGoogleGroup() bool {
if o != nil && !IsNil(o.GoogleGroup) {
return true
}
return false
}
// SetGoogleGroup gets a reference to the given GroupRemoteInfoGoogleGroup and assigns it to the GoogleGroup field.
func (o *GroupRemoteInfo) SetGoogleGroup(v GroupRemoteInfoGoogleGroup) {
o.GoogleGroup = &v
}
// GetLdapGroup returns the LdapGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetLdapGroup() GroupRemoteInfoLdapGroup {
if o == nil || IsNil(o.LdapGroup) {
var ret GroupRemoteInfoLdapGroup
return ret
}
return *o.LdapGroup
}
// GetLdapGroupOk returns a tuple with the LdapGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetLdapGroupOk() (*GroupRemoteInfoLdapGroup, bool) {
if o == nil || IsNil(o.LdapGroup) {
return nil, false
}
return o.LdapGroup, true
}
// HasLdapGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasLdapGroup() bool {
if o != nil && !IsNil(o.LdapGroup) {
return true
}
return false
}
// SetLdapGroup gets a reference to the given GroupRemoteInfoLdapGroup and assigns it to the LdapGroup field.
func (o *GroupRemoteInfo) SetLdapGroup(v GroupRemoteInfoLdapGroup) {
o.LdapGroup = &v
}
// GetOktaGroup returns the OktaGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetOktaGroup() GroupRemoteInfoOktaGroup {
if o == nil || IsNil(o.OktaGroup) {
var ret GroupRemoteInfoOktaGroup
return ret
}
return *o.OktaGroup
}
// GetOktaGroupOk returns a tuple with the OktaGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetOktaGroupOk() (*GroupRemoteInfoOktaGroup, bool) {
if o == nil || IsNil(o.OktaGroup) {
return nil, false
}
return o.OktaGroup, true
}
// HasOktaGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasOktaGroup() bool {
if o != nil && !IsNil(o.OktaGroup) {
return true
}
return false
}
// SetOktaGroup gets a reference to the given GroupRemoteInfoOktaGroup and assigns it to the OktaGroup field.
func (o *GroupRemoteInfo) SetOktaGroup(v GroupRemoteInfoOktaGroup) {
o.OktaGroup = &v
}
// GetDuoGroup returns the DuoGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetDuoGroup() GroupRemoteInfoDuoGroup {
if o == nil || IsNil(o.DuoGroup) {
var ret GroupRemoteInfoDuoGroup
return ret
}
return *o.DuoGroup
}
// GetDuoGroupOk returns a tuple with the DuoGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetDuoGroupOk() (*GroupRemoteInfoDuoGroup, bool) {
if o == nil || IsNil(o.DuoGroup) {
return nil, false
}
return o.DuoGroup, true
}
// HasDuoGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasDuoGroup() bool {
if o != nil && !IsNil(o.DuoGroup) {
return true
}
return false
}
// SetDuoGroup gets a reference to the given GroupRemoteInfoDuoGroup and assigns it to the DuoGroup field.
func (o *GroupRemoteInfo) SetDuoGroup(v GroupRemoteInfoDuoGroup) {
o.DuoGroup = &v
}
// GetAzureAdSecurityGroup returns the AzureAdSecurityGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetAzureAdSecurityGroup() GroupRemoteInfoAzureAdSecurityGroup {
if o == nil || IsNil(o.AzureAdSecurityGroup) {
var ret GroupRemoteInfoAzureAdSecurityGroup
return ret
}
return *o.AzureAdSecurityGroup
}
// GetAzureAdSecurityGroupOk returns a tuple with the AzureAdSecurityGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetAzureAdSecurityGroupOk() (*GroupRemoteInfoAzureAdSecurityGroup, bool) {
if o == nil || IsNil(o.AzureAdSecurityGroup) {
return nil, false
}
return o.AzureAdSecurityGroup, true
}
// HasAzureAdSecurityGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasAzureAdSecurityGroup() bool {
if o != nil && !IsNil(o.AzureAdSecurityGroup) {
return true
}
return false
}
// SetAzureAdSecurityGroup gets a reference to the given GroupRemoteInfoAzureAdSecurityGroup and assigns it to the AzureAdSecurityGroup field.
func (o *GroupRemoteInfo) SetAzureAdSecurityGroup(v GroupRemoteInfoAzureAdSecurityGroup) {
o.AzureAdSecurityGroup = &v
}
// GetAzureAdMicrosoft365Group returns the AzureAdMicrosoft365Group field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetAzureAdMicrosoft365Group() GroupRemoteInfoAzureAdMicrosoft365Group {
if o == nil || IsNil(o.AzureAdMicrosoft365Group) {
var ret GroupRemoteInfoAzureAdMicrosoft365Group
return ret
}
return *o.AzureAdMicrosoft365Group
}
// GetAzureAdMicrosoft365GroupOk returns a tuple with the AzureAdMicrosoft365Group field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetAzureAdMicrosoft365GroupOk() (*GroupRemoteInfoAzureAdMicrosoft365Group, bool) {
if o == nil || IsNil(o.AzureAdMicrosoft365Group) {
return nil, false
}
return o.AzureAdMicrosoft365Group, true
}
// HasAzureAdMicrosoft365Group returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasAzureAdMicrosoft365Group() bool {
if o != nil && !IsNil(o.AzureAdMicrosoft365Group) {
return true
}
return false
}
// SetAzureAdMicrosoft365Group gets a reference to the given GroupRemoteInfoAzureAdMicrosoft365Group and assigns it to the AzureAdMicrosoft365Group field.
func (o *GroupRemoteInfo) SetAzureAdMicrosoft365Group(v GroupRemoteInfoAzureAdMicrosoft365Group) {
o.AzureAdMicrosoft365Group = &v
}
// GetSnowflakeRole returns the SnowflakeRole field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetSnowflakeRole() GroupRemoteInfoSnowflakeRole {
if o == nil || IsNil(o.SnowflakeRole) {
var ret GroupRemoteInfoSnowflakeRole
return ret
}
return *o.SnowflakeRole
}
// GetSnowflakeRoleOk returns a tuple with the SnowflakeRole field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetSnowflakeRoleOk() (*GroupRemoteInfoSnowflakeRole, bool) {
if o == nil || IsNil(o.SnowflakeRole) {
return nil, false
}
return o.SnowflakeRole, true
}
// HasSnowflakeRole returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasSnowflakeRole() bool {
if o != nil && !IsNil(o.SnowflakeRole) {
return true
}
return false
}
// SetSnowflakeRole gets a reference to the given GroupRemoteInfoSnowflakeRole and assigns it to the SnowflakeRole field.
func (o *GroupRemoteInfo) SetSnowflakeRole(v GroupRemoteInfoSnowflakeRole) {
o.SnowflakeRole = &v
}
// GetOktaGroupRule returns the OktaGroupRule field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetOktaGroupRule() GroupRemoteInfoOktaGroupRule {
if o == nil || IsNil(o.OktaGroupRule) {
var ret GroupRemoteInfoOktaGroupRule
return ret
}
return *o.OktaGroupRule
}
// GetOktaGroupRuleOk returns a tuple with the OktaGroupRule field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetOktaGroupRuleOk() (*GroupRemoteInfoOktaGroupRule, bool) {
if o == nil || IsNil(o.OktaGroupRule) {
return nil, false
}
return o.OktaGroupRule, true
}
// HasOktaGroupRule returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasOktaGroupRule() bool {
if o != nil && !IsNil(o.OktaGroupRule) {
return true
}
return false
}
// SetOktaGroupRule gets a reference to the given GroupRemoteInfoOktaGroupRule and assigns it to the OktaGroupRule field.
func (o *GroupRemoteInfo) SetOktaGroupRule(v GroupRemoteInfoOktaGroupRule) {
o.OktaGroupRule = &v
}
// GetWorkdayUserSecurityGroup returns the WorkdayUserSecurityGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetWorkdayUserSecurityGroup() GroupRemoteInfoWorkdayUserSecurityGroup {
if o == nil || IsNil(o.WorkdayUserSecurityGroup) {
var ret GroupRemoteInfoWorkdayUserSecurityGroup
return ret
}
return *o.WorkdayUserSecurityGroup
}
// GetWorkdayUserSecurityGroupOk returns a tuple with the WorkdayUserSecurityGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetWorkdayUserSecurityGroupOk() (*GroupRemoteInfoWorkdayUserSecurityGroup, bool) {
if o == nil || IsNil(o.WorkdayUserSecurityGroup) {
return nil, false
}
return o.WorkdayUserSecurityGroup, true
}
// HasWorkdayUserSecurityGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasWorkdayUserSecurityGroup() bool {
if o != nil && !IsNil(o.WorkdayUserSecurityGroup) {
return true
}
return false
}
// SetWorkdayUserSecurityGroup gets a reference to the given GroupRemoteInfoWorkdayUserSecurityGroup and assigns it to the WorkdayUserSecurityGroup field.
func (o *GroupRemoteInfo) SetWorkdayUserSecurityGroup(v GroupRemoteInfoWorkdayUserSecurityGroup) {
o.WorkdayUserSecurityGroup = &v
}
// GetPagerdutyOnCallSchedule returns the PagerdutyOnCallSchedule field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetPagerdutyOnCallSchedule() GroupRemoteInfoPagerdutyOnCallSchedule {
if o == nil || IsNil(o.PagerdutyOnCallSchedule) {
var ret GroupRemoteInfoPagerdutyOnCallSchedule
return ret
}
return *o.PagerdutyOnCallSchedule
}
// GetPagerdutyOnCallScheduleOk returns a tuple with the PagerdutyOnCallSchedule field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetPagerdutyOnCallScheduleOk() (*GroupRemoteInfoPagerdutyOnCallSchedule, bool) {
if o == nil || IsNil(o.PagerdutyOnCallSchedule) {
return nil, false
}
return o.PagerdutyOnCallSchedule, true
}
// HasPagerdutyOnCallSchedule returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasPagerdutyOnCallSchedule() bool {
if o != nil && !IsNil(o.PagerdutyOnCallSchedule) {
return true
}
return false
}
// SetPagerdutyOnCallSchedule gets a reference to the given GroupRemoteInfoPagerdutyOnCallSchedule and assigns it to the PagerdutyOnCallSchedule field.
func (o *GroupRemoteInfo) SetPagerdutyOnCallSchedule(v GroupRemoteInfoPagerdutyOnCallSchedule) {
o.PagerdutyOnCallSchedule = &v
}
// GetIncidentioOnCallSchedule returns the IncidentioOnCallSchedule field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetIncidentioOnCallSchedule() GroupRemoteInfoIncidentioOnCallSchedule {
if o == nil || IsNil(o.IncidentioOnCallSchedule) {
var ret GroupRemoteInfoIncidentioOnCallSchedule
return ret
}
return *o.IncidentioOnCallSchedule
}
// GetIncidentioOnCallScheduleOk returns a tuple with the IncidentioOnCallSchedule field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetIncidentioOnCallScheduleOk() (*GroupRemoteInfoIncidentioOnCallSchedule, bool) {
if o == nil || IsNil(o.IncidentioOnCallSchedule) {
return nil, false
}
return o.IncidentioOnCallSchedule, true
}
// HasIncidentioOnCallSchedule returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasIncidentioOnCallSchedule() bool {
if o != nil && !IsNil(o.IncidentioOnCallSchedule) {
return true
}
return false
}
// SetIncidentioOnCallSchedule gets a reference to the given GroupRemoteInfoIncidentioOnCallSchedule and assigns it to the IncidentioOnCallSchedule field.
func (o *GroupRemoteInfo) SetIncidentioOnCallSchedule(v GroupRemoteInfoIncidentioOnCallSchedule) {
o.IncidentioOnCallSchedule = &v
}
// GetRootlyOnCallSchedule returns the RootlyOnCallSchedule field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetRootlyOnCallSchedule() GroupRemoteInfoRootlyOnCallSchedule {
if o == nil || IsNil(o.RootlyOnCallSchedule) {
var ret GroupRemoteInfoRootlyOnCallSchedule
return ret
}
return *o.RootlyOnCallSchedule
}
// GetRootlyOnCallScheduleOk returns a tuple with the RootlyOnCallSchedule field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetRootlyOnCallScheduleOk() (*GroupRemoteInfoRootlyOnCallSchedule, bool) {
if o == nil || IsNil(o.RootlyOnCallSchedule) {
return nil, false
}
return o.RootlyOnCallSchedule, true
}
// HasRootlyOnCallSchedule returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasRootlyOnCallSchedule() bool {
if o != nil && !IsNil(o.RootlyOnCallSchedule) {
return true
}
return false
}
// SetRootlyOnCallSchedule gets a reference to the given GroupRemoteInfoRootlyOnCallSchedule and assigns it to the RootlyOnCallSchedule field.
func (o *GroupRemoteInfo) SetRootlyOnCallSchedule(v GroupRemoteInfoRootlyOnCallSchedule) {
o.RootlyOnCallSchedule = &v
}
// GetDevinGroup returns the DevinGroup field value if set, zero value otherwise.
func (o *GroupRemoteInfo) GetDevinGroup() GroupRemoteInfoDevinGroup {
if o == nil || IsNil(o.DevinGroup) {
var ret GroupRemoteInfoDevinGroup
return ret
}
return *o.DevinGroup
}
// GetDevinGroupOk returns a tuple with the DevinGroup field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *GroupRemoteInfo) GetDevinGroupOk() (*GroupRemoteInfoDevinGroup, bool) {
if o == nil || IsNil(o.DevinGroup) {
return nil, false
}
return o.DevinGroup, true
}
// HasDevinGroup returns a boolean if a field has been set.
func (o *GroupRemoteInfo) HasDevinGroup() bool {
if o != nil && !IsNil(o.DevinGroup) {
return true
}
return false
}
// SetDevinGroup gets a reference to the given GroupRemoteInfoDevinGroup and assigns it to the DevinGroup field.
func (o *GroupRemoteInfo) SetDevinGroup(v GroupRemoteInfoDevinGroup) {
o.DevinGroup = &v
}
func (o GroupRemoteInfo) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o GroupRemoteInfo) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.ActiveDirectoryGroup) {
toSerialize["active_directory_group"] = o.ActiveDirectoryGroup
}
if !IsNil(o.TailscaleGroup) {
toSerialize["tailscale_group"] = o.TailscaleGroup
}
if !IsNil(o.AwsSsoGroup) {
toSerialize["aws_sso_group"] = o.AwsSsoGroup
}
if !IsNil(o.DatabricksAccountGroup) {
toSerialize["databricks_account_group"] = o.DatabricksAccountGroup
}
if !IsNil(o.ConnectorGroup) {
toSerialize["connector_group"] = o.ConnectorGroup
}
if !IsNil(o.GithubTeam) {
toSerialize["github_team"] = o.GithubTeam
}
if !IsNil(o.GithubEnterpriseTeam) {
toSerialize["github_enterprise_team"] = o.GithubEnterpriseTeam
}
if !IsNil(o.GitlabGroup) {
toSerialize["gitlab_group"] = o.GitlabGroup
}
if !IsNil(o.GoogleGroup) {
toSerialize["google_group"] = o.GoogleGroup
}
if !IsNil(o.LdapGroup) {
toSerialize["ldap_group"] = o.LdapGroup
}
if !IsNil(o.OktaGroup) {
toSerialize["okta_group"] = o.OktaGroup
}
if !IsNil(o.DuoGroup) {
toSerialize["duo_group"] = o.DuoGroup
}
if !IsNil(o.AzureAdSecurityGroup) {
toSerialize["azure_ad_security_group"] = o.AzureAdSecurityGroup
}
if !IsNil(o.AzureAdMicrosoft365Group) {
toSerialize["azure_ad_microsoft_365_group"] = o.AzureAdMicrosoft365Group
}
if !IsNil(o.SnowflakeRole) {
toSerialize["snowflake_role"] = o.SnowflakeRole
}
if !IsNil(o.OktaGroupRule) {
toSerialize["okta_group_rule"] = o.OktaGroupRule
}
if !IsNil(o.WorkdayUserSecurityGroup) {
toSerialize["workday_user_security_group"] = o.WorkdayUserSecurityGroup
}
if !IsNil(o.PagerdutyOnCallSchedule) {
toSerialize["pagerduty_on_call_schedule"] = o.PagerdutyOnCallSchedule
}
if !IsNil(o.IncidentioOnCallSchedule) {
toSerialize["incidentio_on_call_schedule"] = o.IncidentioOnCallSchedule
}
if !IsNil(o.RootlyOnCallSchedule) {
toSerialize["rootly_on_call_schedule"] = o.RootlyOnCallSchedule
}
if !IsNil(o.DevinGroup) {
toSerialize["devin_group"] = o.DevinGroup
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *GroupRemoteInfo) UnmarshalJSON(data []byte) (err error) {
varGroupRemoteInfo := _GroupRemoteInfo{}
err = json.Unmarshal(data, &varGroupRemoteInfo)
if err != nil {
return err
}
*o = GroupRemoteInfo(varGroupRemoteInfo)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(data, &additionalProperties); err == nil {
delete(additionalProperties, "active_directory_group")
delete(additionalProperties, "tailscale_group")
delete(additionalProperties, "aws_sso_group")
delete(additionalProperties, "databricks_account_group")
delete(additionalProperties, "connector_group")
delete(additionalProperties, "github_team")
delete(additionalProperties, "github_enterprise_team")
delete(additionalProperties, "gitlab_group")
delete(additionalProperties, "google_group")
delete(additionalProperties, "ldap_group")
delete(additionalProperties, "okta_group")
delete(additionalProperties, "duo_group")
delete(additionalProperties, "azure_ad_security_group")
delete(additionalProperties, "azure_ad_microsoft_365_group")
delete(additionalProperties, "snowflake_role")
delete(additionalProperties, "okta_group_rule")
delete(additionalProperties, "workday_user_security_group")
delete(additionalProperties, "pagerduty_on_call_schedule")
delete(additionalProperties, "incidentio_on_call_schedule")
delete(additionalProperties, "rootly_on_call_schedule")
delete(additionalProperties, "devin_group")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullableGroupRemoteInfo struct {
value *GroupRemoteInfo
isSet bool
}
func (v NullableGroupRemoteInfo) Get() *GroupRemoteInfo {
return v.value
}
func (v *NullableGroupRemoteInfo) Set(val *GroupRemoteInfo) {
v.value = val
v.isSet = true
}
func (v NullableGroupRemoteInfo) IsSet() bool {
return v.isSet
}
func (v *NullableGroupRemoteInfo) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableGroupRemoteInfo(val *GroupRemoteInfo) *NullableGroupRemoteInfo {
return &NullableGroupRemoteInfo{value: val, isSet: true}
}
func (v NullableGroupRemoteInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableGroupRemoteInfo) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}