|
| 1 | +// Copyright 2025 Google LLC |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +syntax = "proto3"; |
| 16 | + |
| 17 | +package google.identity.accesscontextmanager.type; |
| 18 | + |
| 19 | +option csharp_namespace = "Google.Identity.AccessContextManager.Type"; |
| 20 | +option go_package = "google.golang.org/genproto/googleapis/identity/accesscontextmanager/type"; |
| 21 | +option java_package = "com.google.identity.accesscontextmanager.type"; |
| 22 | +option java_multiple_files = true; |
| 23 | +option java_outer_classname = "TypeProto"; |
| 24 | +option php_namespace = "Google\\Identity\\AccessContextManager\\Type"; |
| 25 | +option ruby_package = "Google::Identity::AccessContextManager::Type"; |
| 26 | + |
| 27 | +// The encryption state of the device. |
| 28 | +enum DeviceEncryptionStatus { |
| 29 | + // The encryption status of the device is not specified or not known. |
| 30 | + ENCRYPTION_UNSPECIFIED = 0; |
| 31 | + |
| 32 | + // The device does not support encryption. |
| 33 | + ENCRYPTION_UNSUPPORTED = 1; |
| 34 | + |
| 35 | + // The device supports encryption, but is currently unencrypted. |
| 36 | + UNENCRYPTED = 2; |
| 37 | + |
| 38 | + // The device is encrypted. |
| 39 | + ENCRYPTED = 3; |
| 40 | +} |
| 41 | + |
| 42 | +// The operating system type of the device. |
| 43 | +// Next id: 7 |
| 44 | +enum OsType { |
| 45 | + // The operating system of the device is not specified or not known. |
| 46 | + OS_UNSPECIFIED = 0; |
| 47 | + |
| 48 | + // A desktop Mac operating system. |
| 49 | + DESKTOP_MAC = 1; |
| 50 | + |
| 51 | + // A desktop Windows operating system. |
| 52 | + DESKTOP_WINDOWS = 2; |
| 53 | + |
| 54 | + // A desktop Linux operating system. |
| 55 | + DESKTOP_LINUX = 3; |
| 56 | + |
| 57 | + // A desktop ChromeOS operating system. |
| 58 | + DESKTOP_CHROME_OS = 6; |
| 59 | + |
| 60 | + // An Android operating system. |
| 61 | + ANDROID = 4; |
| 62 | + |
| 63 | + // An iOS operating system. |
| 64 | + IOS = 5; |
| 65 | +} |
| 66 | + |
| 67 | +// The degree to which the device is managed by the Cloud organization. |
| 68 | +enum DeviceManagementLevel { |
| 69 | + // The device's management level is not specified or not known. |
| 70 | + MANAGEMENT_UNSPECIFIED = 0; |
| 71 | + |
| 72 | + // The device is not managed. |
| 73 | + NONE = 1; |
| 74 | + |
| 75 | + // Basic management is enabled, which is generally limited to monitoring and |
| 76 | + // wiping the corporate account. |
| 77 | + BASIC = 2; |
| 78 | + |
| 79 | + // Complete device management. This includes more thorough monitoring and the |
| 80 | + // ability to directly manage the device (such as remote wiping). This can be |
| 81 | + // enabled through the Android Enterprise Platform. |
| 82 | + COMPLETE = 3; |
| 83 | +} |
0 commit comments