scan_config.proto 6.8 KB

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