source.proto 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // Copyright 2021 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.securitycenter.v1p1beta1;
  16. import "google/api/resource.proto";
  17. option csharp_namespace = "Google.Cloud.SecurityCenter.V1P1Beta1";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1p1beta1;securitycenter";
  19. option java_multiple_files = true;
  20. option java_package = "com.google.cloud.securitycenter.v1p1beta1";
  21. option php_namespace = "Google\\Cloud\\SecurityCenter\\V1p1beta1";
  22. option ruby_package = "Google::Cloud::SecurityCenter::V1p1beta1";
  23. // Security Command Center finding source. A finding source
  24. // is an entity or a mechanism that can produce a finding. A source is like a
  25. // container of findings that come from the same scanner, logger, monitor, etc.
  26. message Source {
  27. option (google.api.resource) = {
  28. type: "securitycenter.googleapis.com/Source"
  29. pattern: "organizations/{organization}/sources/{source}"
  30. pattern: "folders/{folder}/sources/{source}"
  31. pattern: "projects/{project}/sources/{source}"
  32. };
  33. // The relative resource name of this source. See:
  34. // https://cloud.google.com/apis/design/resource_names#relative_resource_name
  35. // Example:
  36. // "organizations/{organization_id}/sources/{source_id}"
  37. string name = 1;
  38. // The source's display name.
  39. // A source's display name must be unique amongst its siblings, for example,
  40. // two sources with the same parent can't share the same display name.
  41. // The display name must have a length between 1 and 64 characters
  42. // (inclusive).
  43. string display_name = 2;
  44. // The description of the source (max of 1024 characters).
  45. // Example:
  46. // "Web Security Scanner is a web security scanner for common
  47. // vulnerabilities in App Engine applications. It can automatically
  48. // scan and detect four common vulnerabilities, including cross-site-scripting
  49. // (XSS), Flash injection, mixed content (HTTP in HTTPS), and
  50. // outdated/insecure libraries."
  51. string description = 3;
  52. // The canonical name of the finding. It's either
  53. // "organizations/{organization_id}/sources/{source_id}",
  54. // "folders/{folder_id}/sources/{source_id}" or
  55. // "projects/{project_number}/sources/{source_id}",
  56. // depending on the closest CRM ancestor of the resource associated with the
  57. // finding.
  58. string canonical_name = 14;
  59. }