- Resource: AccessLevel
- BasicLevel
- Condition
- DevicePolicy
- OsConstraint
- VpcNetworkSource
- VpcSubNetwork
- ConditionCombiningFunction
- CustomLevel
- Methods
Resource: AccessLevel
An AccessLevel
is a label that can be applied to requests to Google Cloud services, along with a list of requirements necessary for the label to be applied.
JSON representation |
---|
{ "name": string, "title": string, "description": string, // Union field |
Fields | |
---|---|
name |
Identifier. Resource name for the The After you create an |
title |
Human readable title. Must be unique within the Policy. |
description |
Description of the |
Union field level . Required. Describes the necessary conditions for the level to apply. level can be only one of the following: |
|
basic |
A |
custom |
A |
BasicLevel
BasicLevel
is an AccessLevel
using a set of recommended features.
JSON representation |
---|
{ "conditions": [ { object ( |
Fields | |
---|---|
conditions[] |
Required. A list of requirements for the |
combiningFunction |
How the |
Condition
A condition necessary for an AccessLevel
to be granted. The Condition is an AND over its fields. So a Condition is true if: 1) the request IP is from one of the listed subnetworks AND 2) the originating device complies with the listed device policy AND 3) all listed access levels are granted AND 4) the request was sent at a time allowed by the DateTimeRestriction AND 5) the request was sent from one of the specified vpcNetworkSources.
JSON representation |
---|
{ "ipSubnetworks": [ string ], "devicePolicy": { object ( |
Fields | |
---|---|
ipSubnetworks[] |
CIDR block IP subnetwork specification. May be IPv4 or IPv6. Note that for a CIDR IP address block, the specified IP address portion must be properly truncated (i.e. all the host bits must be zero) or the input is considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. Similarly, for IPv6, "2001:db8::/32" is accepted whereas "2001:db8::1/32" is not. The originating IP of a request must be in one of the listed subnets in order for this Condition to be true. If this field is empty, all IP addresses are allowed. |
devicePolicy |
Device specific restrictions, all restrictions must hold for the Condition to be true. If not specified, all devices are allowed. |
requiredAccessLevels[] |
A list of other access levels defined in the same |
negate |
Whether to negate the Condition. If true, the Condition becomes a NAND over its non-empty fields. Any non-empty field criteria evaluating to false will result in the Condition to be satisfied. Defaults to false. |
members[] |
The request must be made by one of the provided user or service accounts. Groups are not supported. Syntax: |
regions[] |
The request must originate from one of the provided countries/regions. Must be valid ISO 3166-1 alpha-2 codes. |
vpcNetworkSources[] |
The request must originate from one of the provided VPC networks in Google Cloud. Cannot specify this field together with |
DevicePolicy
DevicePolicy
specifies device specific restrictions necessary to acquire a given access level. A DevicePolicy
specifies requirements for requests from devices to be granted access levels, it does not do any enforcement on the device. DevicePolicy
acts as an AND over all specified fields, and each repeated field is an OR over its elements. Any unset fields are ignored. For example, if the proto is { osType : DESKTOP_WINDOWS, osType : DESKTOP_LINUX, encryption_status: ENCRYPTED}, then the DevicePolicy will be true for requests originating from encrypted Linux desktops and encrypted Windows desktops.
JSON representation |
---|
{ "requireScreenlock": boolean, "allowedEncryptionStatuses": [ enum ( |
Fields | |
---|---|
requireScreenlock |
Whether or not screenlock is required for the DevicePolicy to be true. Defaults to |
allowedEncryptionStatuses[] |
Allowed encryptions statuses, an empty list allows all statuses. |
osConstraints[] |
Allowed OS versions, an empty list allows all types and all versions. |
allowedDeviceManagementLevels[] |
Allowed device management levels, an empty list allows all management levels. |
requireAdminApproval |
Whether the device needs to be approved by the customer admin. |
requireCorpOwned |
Whether the device needs to be corp owned. |
OsConstraint
A restriction on the OS type and version of devices making requests.
JSON representation |
---|
{
"osType": enum ( |
Fields | |
---|---|
osType |
Required. The allowed OS type. |
minimumVersion |
The minimum allowed OS version. If not set, any version of this OS satisfies the constraint. Format: |
requireVerifiedChromeOs |
Only allows requests from devices with a verified Chrome OS. Verifications includes requirements that the device is enterprise-managed, conformant to domain policies, and the caller has permission to call the API targeted by the request. |
VpcNetworkSource
The originating network source in Google Cloud.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field kind . The type of the originating network source of the request. kind can be only one of the following: |
|
vpcSubnetwork |
Sub-segment ranges of a VPC network. |
VpcSubNetwork
Sub-segment ranges inside of a VPC Network.
JSON representation |
---|
{ "network": string, "vpcIpSubnetworks": [ string ] } |
Fields | |
---|---|
network |
Required. Network name. If the network is not part of the organization, the |
vpcIpSubnetworks[] |
CIDR block IP subnetwork specification. The IP address must be an IPv4 address and can be a public or private IP address. Note that for a CIDR IP address block, the specified IP address portion must be properly truncated (i.e. all the host bits must be zero) or the input is considered malformed. For example, "192.0.2.0/24" is accepted but "192.0.2.1/24" is not. If empty, all IP addresses are allowed. |
ConditionCombiningFunction
Options for how the conditions
list should be combined to determine if this AccessLevel
is applied. Default is AND.
Enums | |
---|---|
AND |
All Conditions must be true for the BasicLevel to be true. |
OR |
If at least one Condition is true, then the BasicLevel is true. |
CustomLevel
CustomLevel
is an AccessLevel
using the Cloud Common Expression Language to represent the necessary conditions for the level to apply to a request. See CEL spec at: https://github.com/google/cel-spec
JSON representation |
---|
{
"expr": {
object ( |
Fields | |
---|---|
expr |
Required. A Cloud CEL expression evaluating to a boolean. |
Methods |
|
---|---|
|
Creates an access level . |
|
Deletes an access level based on the resource name. |
|
Gets an access level based on the resource name. |
|
Lists all access levels for an access policy. |
|
Updates an access level . |
|
Replaces all existing access levels in an access policy with the access levels provided. |
|
Returns the IAM permissions that the caller has on the specified Access Context Manager resource. |