-
Notifications
You must be signed in to change notification settings - Fork 7
/
schema_source_entitlement.go
62 lines (59 loc) · 1.2 KB
/
schema_source_entitlement.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
package main
import "github.com/hashicorp/terraform-plugin-sdk/helper/schema"
func sourceEntitlementFields() map[string]*schema.Schema {
s := map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Description: "Source entitlements name",
},
"source_id": {
Type: schema.TypeString,
Required: true,
Description: "source id",
},
"source_name": {
Type: schema.TypeString,
Required: true,
Description: "source name",
},
"source_schema_object_type": {
Type: schema.TypeString,
Computed: true,
},
"attribute": {
Type: schema.TypeString,
Computed: true,
Description: "attribute",
},
"created": {
Type: schema.TypeString,
Computed: true,
},
"description": {
Type: schema.TypeString,
Computed: true,
},
"modified": {
Type: schema.TypeString,
Computed: true,
},
"owner": {
Type: schema.TypeString,
Computed: true,
},
"privileged": {
Type: schema.TypeBool,
Computed: true,
},
"requestable": {
Type: schema.TypeBool,
Computed: true,
},
"value": {
Type: schema.TypeString,
Computed: true,
},
}
return s
}