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
Description: `Required. Access level that a user must have to be granted access. Only one access level is supported, not multiple. This repeated field must have exactly one element. Example: "accessPolicies/9522/accessLevels/device_trusted"`,
Description: `Required. ID of the parent organization.`,
75
66
},
67
+
"access_levels": {
68
+
Type: schema.TypeList,
69
+
Optional: true,
70
+
Description: `Optional. Access level that a user must have to be granted access. Only one access level is supported, not multiple. This repeated field must have exactly one element. Example: "accessPolicies/9522/accessLevels/device_trusted"`,
71
+
MinItems: 1,
72
+
MaxItems: 1,
73
+
Elem: &schema.Schema{
74
+
Type: schema.TypeString,
75
+
},
76
+
},
77
+
"session_settings": {
78
+
Type: schema.TypeList,
79
+
Optional: true,
80
+
Description: `Optional. The Google Cloud session length (GCSL) policy for the group key.`,
81
+
MaxItems: 1,
82
+
Elem: &schema.Resource{
83
+
Schema: map[string]*schema.Schema{
84
+
"max_inactivity": {
85
+
Type: schema.TypeString,
86
+
Optional: true,
87
+
Description: `Optional. How long a user is allowed to take between actions before a new access token must be issued. Only set for Google Cloud apps.`,
88
+
},
89
+
"session_length": {
90
+
Type: schema.TypeString,
91
+
Optional: true,
92
+
Description: `Optional. The session length. Setting this field to zero is equal to disabling session. Also can set infinite session by flipping the enabled bit to false below. If useOidcMaxAge is true, for OIDC apps, the session length will be the minimum of this field and OIDC max_age param.`,
93
+
},
94
+
"session_length_enabled": {
95
+
Type: schema.TypeBool,
96
+
Optional: true,
97
+
Description: `Optional. This field enables or disables Google Cloud session length. When false, all fields set above will be disregarded and the session length is basically infinite.`,
Description: `Optional. The session challenges proposed to users when the Google Cloud session length is up. Possible values: ["LOGIN", "SECURITY_KEY", "PASSWORD"]`,
104
+
},
105
+
"use_oidc_max_age": {
106
+
Type: schema.TypeBool,
107
+
Optional: true,
108
+
Description: `Optional. Only useful for OIDC apps. When false, the OIDC max_age param, if passed in the authentication request will be ignored. When true, the re-auth period will be the minimum of the sessionLength field and the max_age OIDC param.`,
Copy file name to clipboardexpand all lines: google-beta/services/accesscontextmanager/resource_access_context_manager_gcp_user_access_binding_generated_meta.yaml
Copy file name to clipboardexpand all lines: website/docs/r/access_context_manager_gcp_user_access_binding.html.markdown
+32-4
Original file line number
Diff line number
Diff line change
@@ -90,10 +90,6 @@ The following arguments are supported:
90
90
(Required)
91
91
Required. Immutable. Google Group id whose members are subject to this binding's restrictions. See "id" in the G Suite Directory API's Groups resource. If a group's email address/alias is changed, this resource will continue to point at the changed group. This field does not accept group email addresses or aliases. Example: "01d520gv4vjcrht"
92
92
93
-
*`access_levels` -
94
-
(Required)
95
-
Required. Access level that a user must have to be granted access. Only one access level is supported, not multiple. This repeated field must have exactly one element. Example: "accessPolicies/9522/accessLevels/device_trusted"
96
-
97
93
*`organization_id` -
98
94
(Required)
99
95
Required. ID of the parent organization.
@@ -102,6 +98,38 @@ The following arguments are supported:
102
98
- - -
103
99
104
100
101
+
*`access_levels` -
102
+
(Optional)
103
+
Optional. Access level that a user must have to be granted access. Only one access level is supported, not multiple. This repeated field must have exactly one element. Example: "accessPolicies/9522/accessLevels/device_trusted"
104
+
105
+
*`session_settings` -
106
+
(Optional)
107
+
Optional. The Google Cloud session length (GCSL) policy for the group key.
108
+
Structure is [documented below](#nested_session_settings).
Optional. The session challenges proposed to users when the Google Cloud session length is up.
116
+
Possible values are: `LOGIN`, `SECURITY_KEY`, `PASSWORD`.
117
+
118
+
*`session_length` -
119
+
(Optional)
120
+
Optional. The session length. Setting this field to zero is equal to disabling session. Also can set infinite session by flipping the enabled bit to false below. If useOidcMaxAge is true, for OIDC apps, the session length will be the minimum of this field and OIDC max_age param.
121
+
122
+
*`max_inactivity` -
123
+
(Optional)
124
+
Optional. How long a user is allowed to take between actions before a new access token must be issued. Only set for Google Cloud apps.
125
+
126
+
*`use_oidc_max_age` -
127
+
(Optional)
128
+
Optional. Only useful for OIDC apps. When false, the OIDC max_age param, if passed in the authentication request will be ignored. When true, the re-auth period will be the minimum of the sessionLength field and the max_age OIDC param.
129
+
130
+
*`session_length_enabled` -
131
+
(Optional)
132
+
Optional. This field enables or disables Google Cloud session length. When false, all fields set above will be disregarded and the session length is basically infinite.
0 commit comments