12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- // Copyright 2022 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.v11.resources;
- import "google/ads/googleads/v11/enums/asset_set_status.proto";
- import "google/ads/googleads/v11/enums/asset_set_type.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- option csharp_namespace = "Google.Ads.GoogleAds.V11.Resources";
- option go_package = "google.golang.org/genproto/googleapis/ads/googleads/v11/resources;resources";
- option java_multiple_files = true;
- option java_outer_classname = "AssetSetProto";
- option java_package = "com.google.ads.googleads.v11.resources";
- option objc_class_prefix = "GAA";
- option php_namespace = "Google\\Ads\\GoogleAds\\V11\\Resources";
- option ruby_package = "Google::Ads::GoogleAds::V11::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];
- }
- // Output only. The ID of the asset set.
- int64 id = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
- // 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.v11.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.v11.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;
- }
|