secure_connect.proto 526 B

123456789101112131415161718
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. syntax = "proto2";
  5. option optimize_for = LITE_RUNTIME;
  6. import "policy_common_definitions.proto";
  7. package enterprise_management;
  8. // Response message for GetManagedAccountsSigninRestriction.
  9. message GetManagedAccountsSigninRestrictionResponse {
  10. optional string policy_value = 1;
  11. optional PolicyOptions policy_options = 2;
  12. optional bool has_error = 3;
  13. }