-
Notifications
You must be signed in to change notification settings - Fork 82
/
identity_provider.go
259 lines (219 loc) · 9.76 KB
/
identity_provider.go
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
// Copyright (c) 2016, 2018, 2023, Oracle and/or its affiliates. All rights reserved.
// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
// Code generated. DO NOT EDIT.
// Identity and Access Management Service API
//
// APIs for managing users, groups, compartments, policies, and identity domains.
//
package identity
import (
"encoding/json"
"fmt"
"github.com/oracle/oci-go-sdk/v65/common"
"strings"
)
// IdentityProvider The resulting base object when you add an identity provider to your tenancy. A
// Saml2IdentityProvider
// is a specific type of `IdentityProvider` that supports the SAML 2.0 protocol. Each
// `IdentityProvider` object has its own OCID. For more information, see
// Identity Providers and Federation (https://docs.cloud.oracle.com/Content/Identity/Concepts/federation.htm).
// To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized,
// talk to an administrator. If you're an administrator who needs to write policies to give users access,
// see Get Started with Policies (https://docs.cloud.oracle.com/Content/Identity/policiesgs/get-started-with-policies.htm).
// **Warning:** Oracle recommends that you avoid using any confidential information when you supply string
// values using the API.
type IdentityProvider interface {
// The OCID of the `IdentityProvider`.
GetId() *string
// The OCID of the tenancy containing the `IdentityProvider`.
GetCompartmentId() *string
// The name you assign to the `IdentityProvider` during creation. The name
// must be unique across all `IdentityProvider` objects in the tenancy and
// cannot be changed. This is the name federated users see when choosing
// which identity provider to use when signing in to the Oracle Cloud Infrastructure
// Console.
GetName() *string
// The description you assign to the `IdentityProvider` during creation. Does
// not have to be unique, and it's changeable.
GetDescription() *string
// The identity provider service or product.
// Supported identity providers are Oracle Identity Cloud Service (IDCS) and Microsoft
// Active Directory Federation Services (ADFS).
// Allowed values are:
// - `ADFS`
// - `IDCS`
// Example: `IDCS`
GetProductType() *string
// Date and time the `IdentityProvider` was created, in the format defined by RFC3339.
// Example: `2016-08-25T21:10:29.600Z`
GetTimeCreated() *common.SDKTime
// The current state. After creating an `IdentityProvider`, make sure its
// `lifecycleState` changes from CREATING to ACTIVE before using it.
GetLifecycleState() IdentityProviderLifecycleStateEnum
// The detailed status of INACTIVE lifecycleState.
GetInactiveStatus() *int64
// Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Department": "Finance"}`
GetFreeformTags() map[string]string
// Defined tags for this resource. Each key is predefined and scoped to a namespace.
// For more information, see Resource Tags (https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
// Example: `{"Operations": {"CostCenter": "42"}}`
GetDefinedTags() map[string]map[string]interface{}
}
type identityprovider struct {
JsonData []byte
Id *string `mandatory:"true" json:"id"`
CompartmentId *string `mandatory:"true" json:"compartmentId"`
Name *string `mandatory:"true" json:"name"`
Description *string `mandatory:"true" json:"description"`
ProductType *string `mandatory:"true" json:"productType"`
TimeCreated *common.SDKTime `mandatory:"true" json:"timeCreated"`
LifecycleState IdentityProviderLifecycleStateEnum `mandatory:"true" json:"lifecycleState"`
InactiveStatus *int64 `mandatory:"false" json:"inactiveStatus"`
FreeformTags map[string]string `mandatory:"false" json:"freeformTags"`
DefinedTags map[string]map[string]interface{} `mandatory:"false" json:"definedTags"`
Protocol string `json:"protocol"`
}
// UnmarshalJSON unmarshals json
func (m *identityprovider) UnmarshalJSON(data []byte) error {
m.JsonData = data
type Unmarshaleridentityprovider identityprovider
s := struct {
Model Unmarshaleridentityprovider
}{}
err := json.Unmarshal(data, &s.Model)
if err != nil {
return err
}
m.Id = s.Model.Id
m.CompartmentId = s.Model.CompartmentId
m.Name = s.Model.Name
m.Description = s.Model.Description
m.ProductType = s.Model.ProductType
m.TimeCreated = s.Model.TimeCreated
m.LifecycleState = s.Model.LifecycleState
m.InactiveStatus = s.Model.InactiveStatus
m.FreeformTags = s.Model.FreeformTags
m.DefinedTags = s.Model.DefinedTags
m.Protocol = s.Model.Protocol
return err
}
// UnmarshalPolymorphicJSON unmarshals polymorphic json
func (m *identityprovider) UnmarshalPolymorphicJSON(data []byte) (interface{}, error) {
if data == nil || string(data) == "null" {
return nil, nil
}
var err error
switch m.Protocol {
case "SAML2":
mm := Saml2IdentityProvider{}
err = json.Unmarshal(data, &mm)
return mm, err
default:
return *m, nil
}
}
//GetId returns Id
func (m identityprovider) GetId() *string {
return m.Id
}
//GetCompartmentId returns CompartmentId
func (m identityprovider) GetCompartmentId() *string {
return m.CompartmentId
}
//GetName returns Name
func (m identityprovider) GetName() *string {
return m.Name
}
//GetDescription returns Description
func (m identityprovider) GetDescription() *string {
return m.Description
}
//GetProductType returns ProductType
func (m identityprovider) GetProductType() *string {
return m.ProductType
}
//GetTimeCreated returns TimeCreated
func (m identityprovider) GetTimeCreated() *common.SDKTime {
return m.TimeCreated
}
//GetLifecycleState returns LifecycleState
func (m identityprovider) GetLifecycleState() IdentityProviderLifecycleStateEnum {
return m.LifecycleState
}
//GetInactiveStatus returns InactiveStatus
func (m identityprovider) GetInactiveStatus() *int64 {
return m.InactiveStatus
}
//GetFreeformTags returns FreeformTags
func (m identityprovider) GetFreeformTags() map[string]string {
return m.FreeformTags
}
//GetDefinedTags returns DefinedTags
func (m identityprovider) GetDefinedTags() map[string]map[string]interface{} {
return m.DefinedTags
}
func (m identityprovider) String() string {
return common.PointerString(m)
}
// ValidateEnumValue returns an error when providing an unsupported enum value
// This function is being called during constructing API request process
// Not recommended for calling this function directly
func (m identityprovider) ValidateEnumValue() (bool, error) {
errMessage := []string{}
if _, ok := GetMappingIdentityProviderLifecycleStateEnum(string(m.LifecycleState)); !ok && m.LifecycleState != "" {
errMessage = append(errMessage, fmt.Sprintf("unsupported enum value for LifecycleState: %s. Supported values are: %s.", m.LifecycleState, strings.Join(GetIdentityProviderLifecycleStateEnumStringValues(), ",")))
}
if len(errMessage) > 0 {
return true, fmt.Errorf(strings.Join(errMessage, "\n"))
}
return false, nil
}
// IdentityProviderLifecycleStateEnum Enum with underlying type: string
type IdentityProviderLifecycleStateEnum string
// Set of constants representing the allowable values for IdentityProviderLifecycleStateEnum
const (
IdentityProviderLifecycleStateCreating IdentityProviderLifecycleStateEnum = "CREATING"
IdentityProviderLifecycleStateActive IdentityProviderLifecycleStateEnum = "ACTIVE"
IdentityProviderLifecycleStateInactive IdentityProviderLifecycleStateEnum = "INACTIVE"
IdentityProviderLifecycleStateDeleting IdentityProviderLifecycleStateEnum = "DELETING"
IdentityProviderLifecycleStateDeleted IdentityProviderLifecycleStateEnum = "DELETED"
)
var mappingIdentityProviderLifecycleStateEnum = map[string]IdentityProviderLifecycleStateEnum{
"CREATING": IdentityProviderLifecycleStateCreating,
"ACTIVE": IdentityProviderLifecycleStateActive,
"INACTIVE": IdentityProviderLifecycleStateInactive,
"DELETING": IdentityProviderLifecycleStateDeleting,
"DELETED": IdentityProviderLifecycleStateDeleted,
}
var mappingIdentityProviderLifecycleStateEnumLowerCase = map[string]IdentityProviderLifecycleStateEnum{
"creating": IdentityProviderLifecycleStateCreating,
"active": IdentityProviderLifecycleStateActive,
"inactive": IdentityProviderLifecycleStateInactive,
"deleting": IdentityProviderLifecycleStateDeleting,
"deleted": IdentityProviderLifecycleStateDeleted,
}
// GetIdentityProviderLifecycleStateEnumValues Enumerates the set of values for IdentityProviderLifecycleStateEnum
func GetIdentityProviderLifecycleStateEnumValues() []IdentityProviderLifecycleStateEnum {
values := make([]IdentityProviderLifecycleStateEnum, 0)
for _, v := range mappingIdentityProviderLifecycleStateEnum {
values = append(values, v)
}
return values
}
// GetIdentityProviderLifecycleStateEnumStringValues Enumerates the set of values in String for IdentityProviderLifecycleStateEnum
func GetIdentityProviderLifecycleStateEnumStringValues() []string {
return []string{
"CREATING",
"ACTIVE",
"INACTIVE",
"DELETING",
"DELETED",
}
}
// GetMappingIdentityProviderLifecycleStateEnum performs case Insensitive comparison on enum value and return the desired enum
func GetMappingIdentityProviderLifecycleStateEnum(val string) (IdentityProviderLifecycleStateEnum, bool) {
enum, ok := mappingIdentityProviderLifecycleStateEnumLowerCase[strings.ToLower(val)]
return enum, ok
}