You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IBM Cloud Shell: re-gen provider for adopting the new error toolchain (IBM-Cloud#5904)
* IBM Cloud Shell: re-gen provider for adopting the new error toolchain
* IBM Cloud Shell: re-gen provider for adopting the new error toolchain
---------
Co-authored-by: Afrin Katageri <[email protected]>
Description: "The account ID in which the account settings belong to.",
28
33
},
29
-
"rev": {
34
+
"rev": &schema.Schema{
30
35
Type: schema.TypeString,
31
36
Computed: true,
32
37
Description: "Unique revision number for the settings object.",
33
38
},
34
-
"created_at": {
39
+
"created_at": &schema.Schema{
35
40
Type: schema.TypeInt,
36
41
Computed: true,
37
42
Description: "Creation timestamp in Unix epoch time.",
38
43
},
39
-
"created_by": {
44
+
"created_by": &schema.Schema{
40
45
Type: schema.TypeString,
41
46
Computed: true,
42
47
Description: "IAM ID of creator.",
43
48
},
44
-
"default_enable_new_features": {
49
+
"default_enable_new_features": &schema.Schema{
45
50
Type: schema.TypeBool,
46
51
Computed: true,
47
52
Description: "You can choose which Cloud Shell features are available in the account and whether any new features are enabled as they become available. The feature settings apply only to the enabled Cloud Shell locations.",
48
53
},
49
-
"default_enable_new_regions": {
54
+
"default_enable_new_regions": &schema.Schema{
50
55
Type: schema.TypeBool,
51
56
Computed: true,
52
57
Description: "Set whether Cloud Shell is enabled in a specific location for the account. The location determines where user and session data are stored. By default, users are routed to the nearest available location.",
53
58
},
54
-
"enabled": {
59
+
"enabled": &schema.Schema{
55
60
Type: schema.TypeBool,
56
61
Computed: true,
57
62
Description: "When enabled, Cloud Shell is available to all users in the account.",
58
63
},
59
-
"features": {
64
+
"features": &schema.Schema{
60
65
Type: schema.TypeList,
61
66
Computed: true,
62
67
Description: "List of Cloud Shell features.",
63
68
Elem: &schema.Resource{
64
69
Schema: map[string]*schema.Schema{
65
-
"enabled": {
70
+
"enabled": &schema.Schema{
66
71
Type: schema.TypeBool,
67
72
Computed: true,
68
73
Description: "State of the feature.",
69
74
},
70
-
"key": {
75
+
"key": &schema.Schema{
71
76
Type: schema.TypeString,
72
77
Computed: true,
73
78
Description: "Name of the feature.",
74
79
},
75
80
},
76
81
},
77
82
},
78
-
"regions": {
83
+
"regions": &schema.Schema{
79
84
Type: schema.TypeList,
80
85
Computed: true,
81
86
Description: "List of Cloud Shell region settings.",
82
87
Elem: &schema.Resource{
83
88
Schema: map[string]*schema.Schema{
84
-
"enabled": {
89
+
"enabled": &schema.Schema{
85
90
Type: schema.TypeBool,
86
91
Computed: true,
87
92
Description: "State of the region.",
88
93
},
89
-
"key": {
94
+
"key": &schema.Schema{
90
95
Type: schema.TypeString,
91
96
Computed: true,
92
97
Description: "Name of the region.",
93
98
},
94
99
},
95
100
},
96
101
},
97
-
"type": {
102
+
"type": &schema.Schema{
98
103
Type: schema.TypeString,
99
104
Computed: true,
100
105
Description: "Type of api response object.",
101
106
},
102
-
"updated_at": {
107
+
"updated_at": &schema.Schema{
103
108
Type: schema.TypeInt,
104
109
Computed: true,
105
110
Description: "Timestamp of last update in Unix epoch time.",
0 commit comments