// Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package google.ads.googleads.v9.resources; import "google/ads/googleads/v9/enums/asset_set_status.proto"; import "google/ads/googleads/v9/enums/asset_set_type.proto"; import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/api/annotations.proto"; option csharp_namespace = "Google.Ads.GoogleAds.V9.Resources"; option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v9/resources;resources"; option java_multiple_files = true; option java_outer_classname = "AssetSetProto"; option java_package = "com.google.ads.googleads.v9.resources"; option objc_class_prefix = "GAA"; option php_namespace = "Google\\Ads\\GoogleAds\\V9\\Resources"; option ruby_package = "Google::Ads::GoogleAds::V9::Resources"; // An asset set representing a collection of assets. // Use AssetSetAsset to link an asset to the asset set. message AssetSet { option (google.api.resource) = { type: "googleads.googleapis.com/AssetSet" pattern: "customers/{customer_id}/assetSets/{asset_set_id}" }; // Merchant ID and Feed Label from Google Merchant Center. message MerchantCenterFeed { // Required. Merchant ID from Google Merchant Center int64 merchant_id = 1 [(google.api.field_behavior) = REQUIRED]; // Optional. Feed Label from Google Merchant Center. optional string feed_label = 2 [(google.api.field_behavior) = OPTIONAL]; } // Immutable. The resource name of the asset set. // Asset set resource names have the form: // // `customers/{customer_id}/assetSets/{asset_set_id}` string resource_name = 1 [ (google.api.field_behavior) = IMMUTABLE, (google.api.resource_reference) = { type: "googleads.googleapis.com/AssetSet" } ]; // Required. Name of the asset set. Required. It must have a minimum length of 1 and // maximum length of 128. string name = 2 [(google.api.field_behavior) = REQUIRED]; // Required. Immutable. The type of the asset set. Required. google.ads.googleads.v9.enums.AssetSetTypeEnum.AssetSetType type = 3 [ (google.api.field_behavior) = REQUIRED, (google.api.field_behavior) = IMMUTABLE ]; // Output only. The status of the asset set. Read-only. google.ads.googleads.v9.enums.AssetSetStatusEnum.AssetSetStatus status = 4 [(google.api.field_behavior) = OUTPUT_ONLY]; // Merchant ID and Feed Label from Google Merchant Center. MerchantCenterFeed merchant_center_feed = 5; }