security_marks.proto 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.v1;
  16. import "google/api/resource.proto";
  17. import "google/api/annotations.proto";
  18. option csharp_namespace = "Google.Cloud.SecurityCenter.V1";
  19. option go_package = "google.golang.org/genproto/googleapis/cloud/securitycenter/v1;securitycenter";
  20. option java_multiple_files = true;
  21. option java_package = "com.google.cloud.securitycenter.v1";
  22. option php_namespace = "Google\\Cloud\\SecurityCenter\\V1";
  23. option ruby_package = "Google::Cloud::SecurityCenter::V1";
  24. // User specified security marks that are attached to the parent Security
  25. // Command Center resource. Security marks are scoped within a Security Command
  26. // Center organization -- they can be modified and viewed by all users who have
  27. // proper permissions on the organization.
  28. message SecurityMarks {
  29. option (google.api.resource) = {
  30. type: "securitycenter.googleapis.com/SecurityMarks"
  31. pattern: "organizations/{organization}/assets/{asset}/securityMarks"
  32. pattern: "organizations/{organization}/sources/{source}/findings/{finding}/securityMarks"
  33. pattern: "folders/{folder}/assets/{asset}/securityMarks"
  34. pattern: "projects/{project}/assets/{asset}/securityMarks"
  35. pattern: "folders/{folder}/sources/{source}/findings/{finding}/securityMarks"
  36. pattern: "projects/{project}/sources/{source}/findings/{finding}/securityMarks"
  37. };
  38. // The relative resource name of the SecurityMarks. See:
  39. // https://cloud.google.com/apis/design/resource_names#relative_resource_name
  40. // Examples:
  41. // "organizations/{organization_id}/assets/{asset_id}/securityMarks"
  42. // "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks".
  43. string name = 1;
  44. // Mutable user specified security marks belonging to the parent resource.
  45. // Constraints are as follows:
  46. //
  47. // * Keys and values are treated as case insensitive
  48. // * Keys must be between 1 - 256 characters (inclusive)
  49. // * Keys must be letters, numbers, underscores, or dashes
  50. // * Values have leading and trailing whitespace trimmed, remaining
  51. // characters must be between 1 - 4096 characters (inclusive)
  52. map<string, string> marks = 2;
  53. // The canonical name of the marks.
  54. // Examples:
  55. // "organizations/{organization_id}/assets/{asset_id}/securityMarks"
  56. // "folders/{folder_id}/assets/{asset_id}/securityMarks"
  57. // "projects/{project_number}/assets/{asset_id}/securityMarks"
  58. // "organizations/{organization_id}/sources/{source_id}/findings/{finding_id}/securityMarks"
  59. // "folders/{folder_id}/sources/{source_id}/findings/{finding_id}/securityMarks"
  60. // "projects/{project_number}/sources/{source_id}/findings/{finding_id}/securityMarks"
  61. string canonical_name = 3;
  62. }