custom_column.proto 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.ads.searchads360.v0.resources;
  16. import "google/ads/searchads360/v0/enums/custom_column_value_type.proto";
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. option csharp_namespace = "Google.Ads.SearchAds360.V0.Resources";
  20. option go_package = "google.golang.org/genproto/googleapis/ads/searchads360/v0/resources;resources";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "CustomColumnProto";
  23. option java_package = "com.google.ads.searchads360.v0.resources";
  24. option objc_class_prefix = "GASA360";
  25. option php_namespace = "Google\\Ads\\SearchAds360\\V0\\Resources";
  26. option ruby_package = "Google::Ads::SearchAds360::V0::Resources";
  27. // Proto file describing the Custom Column resource.
  28. // A custom column.
  29. // See Search Ads 360 custom column at
  30. // https://support.google.com/sa360/answer/9633916
  31. message CustomColumn {
  32. option (google.api.resource) = {
  33. type: "searchads360.googleapis.com/CustomColumn"
  34. pattern: "customers/{customer_id}/customColumns/{custom_column_id}"
  35. };
  36. // Immutable. The resource name of the custom column.
  37. // Custom column resource names have the form:
  38. //
  39. // `customers/{customer_id}/customColumns/{custom_column_id}`
  40. string resource_name = 1 [
  41. (google.api.field_behavior) = IMMUTABLE,
  42. (google.api.resource_reference) = {
  43. type: "searchads360.googleapis.com/CustomColumn"
  44. }
  45. ];
  46. // Output only. ID of the custom column.
  47. int64 id = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  48. // Output only. User-defined name of the custom column.
  49. string name = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  50. // Output only. User-defined description of the custom column.
  51. string description = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  52. // Output only. The type of the result value of the custom column.
  53. google.ads.searchads360.v0.enums.CustomColumnValueTypeEnum.CustomColumnValueType value_type = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  54. // Output only. True when the custom column is referring to one or more attributes.
  55. bool references_attributes = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  56. // Output only. True when the custom column is referring to one or more metrics.
  57. bool references_metrics = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  58. // Output only. True when the custom column is available to be used in the query of
  59. // SearchAds360Service.Search and SearchAds360Service.SearchStream.
  60. bool queryable = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  61. // Output only. The list of the referenced system columns of this custom column.
  62. // For example, A custom column "sum of impressions and clicks" has referenced
  63. // system columns of {"metrics.clicks", "metrics.impressions"}.
  64. repeated string referenced_system_columns = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  65. }