scan_config.proto 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. // Copyright 2019 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. package google.cloud.websecurityscanner.v1beta;
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. import "google/cloud/websecurityscanner/v1beta/scan_run.proto";
  20. import "google/protobuf/timestamp.proto";
  21. option csharp_namespace = "Google.Cloud.WebSecurityScanner.V1Beta";
  22. option go_package = "google.golang.org/genproto/googleapis/cloud/websecurityscanner/v1beta;websecurityscanner";
  23. option java_multiple_files = true;
  24. option java_outer_classname = "ScanConfigProto";
  25. option java_package = "com.google.cloud.websecurityscanner.v1beta";
  26. option php_namespace = "Google\\Cloud\\WebSecurityScanner\\V1beta";
  27. option ruby_package = "Google::Cloud::WebSecurityScanner::V1beta";
  28. // A ScanConfig resource contains the configurations to launch a scan.
  29. message ScanConfig {
  30. option (google.api.resource) = {
  31. type: "websecurityscanner.googleapis.com/ScanConfig"
  32. pattern: "projects/{project}/scanConfigs/{scan_config}"
  33. };
  34. // Scan authentication configuration.
  35. message Authentication {
  36. // Describes authentication configuration that uses a Google account.
  37. message GoogleAccount {
  38. // Required. The user name of the Google account.
  39. string username = 1 [(google.api.field_behavior) = REQUIRED];
  40. // Required. Input only. The password of the Google account. The credential is stored encrypted
  41. // and not returned in any response nor included in audit logs.
  42. string password = 2 [
  43. (google.api.field_behavior) = REQUIRED,
  44. (google.api.field_behavior) = INPUT_ONLY
  45. ];
  46. }
  47. // Describes authentication configuration that uses a custom account.
  48. message CustomAccount {
  49. // Required. The user name of the custom account.
  50. string username = 1 [(google.api.field_behavior) = REQUIRED];
  51. // Required. Input only. The password of the custom account. The credential is stored encrypted
  52. // and not returned in any response nor included in audit logs.
  53. string password = 2 [
  54. (google.api.field_behavior) = REQUIRED,
  55. (google.api.field_behavior) = INPUT_ONLY
  56. ];
  57. // Required. The login form URL of the website.
  58. string login_url = 3 [(google.api.field_behavior) = REQUIRED];
  59. }
  60. // Required.
  61. // Authentication configuration
  62. oneof authentication {
  63. // Authentication using a Google account.
  64. GoogleAccount google_account = 1;
  65. // Authentication using a custom account.
  66. CustomAccount custom_account = 2;
  67. }
  68. }
  69. // Scan schedule configuration.
  70. message Schedule {
  71. // A timestamp indicates when the next run will be scheduled. The value is
  72. // refreshed by the server after each run. If unspecified, it will default
  73. // to current server time, which means the scan will be scheduled to start
  74. // immediately.
  75. google.protobuf.Timestamp schedule_time = 1;
  76. // Required. The duration of time between executions in days.
  77. int32 interval_duration_days = 2 [(google.api.field_behavior) = REQUIRED];
  78. }
  79. // Type of user agents used for scanning.
  80. enum UserAgent {
  81. // The user agent is unknown. Service will default to CHROME_LINUX.
  82. USER_AGENT_UNSPECIFIED = 0;
  83. // Chrome on Linux. This is the service default if unspecified.
  84. CHROME_LINUX = 1;
  85. // Chrome on Android.
  86. CHROME_ANDROID = 2;
  87. // Safari on IPhone.
  88. SAFARI_IPHONE = 3;
  89. }
  90. // Cloud platforms supported by Cloud Web Security Scanner.
  91. enum TargetPlatform {
  92. // The target platform is unknown. Requests with this enum value will be
  93. // rejected with INVALID_ARGUMENT error.
  94. TARGET_PLATFORM_UNSPECIFIED = 0;
  95. // Google App Engine service.
  96. APP_ENGINE = 1;
  97. // Google Compute Engine service.
  98. COMPUTE = 2;
  99. }
  100. // Scan risk levels supported by Cloud Web Security Scanner. LOW impact
  101. // scanning will minimize requests with the potential to modify data. To
  102. // achieve the maximum scan coverage, NORMAL risk level is recommended.
  103. enum RiskLevel {
  104. // Use default, which is NORMAL.
  105. RISK_LEVEL_UNSPECIFIED = 0;
  106. // Normal scanning (Recommended)
  107. NORMAL = 1;
  108. // Lower impact scanning
  109. LOW = 2;
  110. }
  111. // Controls export of scan configurations and results to Cloud Security
  112. // Command Center.
  113. enum ExportToSecurityCommandCenter {
  114. // Use default, which is ENABLED.
  115. EXPORT_TO_SECURITY_COMMAND_CENTER_UNSPECIFIED = 0;
  116. // Export results of this scan to Cloud Security Command Center.
  117. ENABLED = 1;
  118. // Do not export results of this scan to Cloud Security Command Center.
  119. DISABLED = 2;
  120. }
  121. // The resource name of the ScanConfig. The name follows the format of
  122. // 'projects/{projectId}/scanConfigs/{scanConfigId}'. The ScanConfig IDs are
  123. // generated by the system.
  124. string name = 1;
  125. // Required. The user provided display name of the ScanConfig.
  126. string display_name = 2 [(google.api.field_behavior) = REQUIRED];
  127. // The maximum QPS during scanning. A valid value ranges from 5 to 20
  128. // inclusively. If the field is unspecified or its value is set 0, server will
  129. // default to 15. Other values outside of [5, 20] range will be rejected with
  130. // INVALID_ARGUMENT error.
  131. int32 max_qps = 3;
  132. // Required. The starting URLs from which the scanner finds site pages.
  133. repeated string starting_urls = 4 [(google.api.field_behavior) = REQUIRED];
  134. // The authentication configuration. If specified, service will use the
  135. // authentication configuration during scanning.
  136. Authentication authentication = 5;
  137. // The user agent used during scanning.
  138. UserAgent user_agent = 6;
  139. // The blacklist URL patterns as described in
  140. // https://cloud.google.com/security-scanner/docs/excluded-urls
  141. repeated string blacklist_patterns = 7;
  142. // The schedule of the ScanConfig.
  143. Schedule schedule = 8;
  144. // Set of Cloud Platforms targeted by the scan. If empty, APP_ENGINE will be
  145. // used as a default.
  146. repeated TargetPlatform target_platforms = 9;
  147. // Controls export of scan configurations and results to Cloud Security
  148. // Command Center.
  149. ExportToSecurityCommandCenter export_to_security_command_center = 10;
  150. // Latest ScanRun if available.
  151. ScanRun latest_run = 11;
  152. // The risk level selected for the scan
  153. RiskLevel risk_level = 12;
  154. }