リソース名
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Google Ads API のエンティティの一意の識別子はリソース名と呼ばれ、予測可能な形式の文字列で表されます。リソース名の構成要素がわかっている場合は、このユーティリティを使用して最終的なリソース名を生成できます。
ResourceNames クラス
ResourceNames
クラスは、エンティティに関連するすべての関連 ID がわかっている場合に、エンティティのリソース名を構築する方法です。たとえば、キャンペーン リソース名の形式は customers/{customer_id}/campaigns/{campaign_id}
です。お客様 ID とキャンペーン ID がわかっている場合は、ResourceNames
クラスを使用して、次のように完全なリソース名を構築できます。
string campaignResourceName = ResourceNames.Campaign(customerId, campaignId),
リソース名の最終的な形式に応じて異なる ID を取得する他のエンティティ名も使用できます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-26 UTC。
[null,null,["最終更新日 2025-08-26 UTC。"],[[["\u003cp\u003eThe Google Ads API client library for .NET will drop support for .NET 5.0 starting with version 19.0.0, urging users to upgrade to a newer version.\u003c/p\u003e\n"],["\u003cp\u003eResource names are unique identifiers for entities in the Google Ads API, following a predictable format based on the entity's components.\u003c/p\u003e\n"],["\u003cp\u003eYou can easily construct resource names using the \u003ccode\u003eResourceNames\u003c/code\u003e class if you know the necessary IDs, such as customer and campaign IDs.\u003c/p\u003e\n"]]],[],null,["# Resource Names\n\nThe unique identifier for an entity in the Google Ads API is called a resource\nname, and is represented as a string with a predictable format. If you know\nthe constituent components of a resource name, you can use this utility to\ngenerate the final resource name.\n\nResourceNames class\n-------------------\n\nThe `ResourceNames` class is a way to construct the resource name of an entity\nif you know all of the relevant IDs related to that entity. For example, a\ncampaign resource name is in the format\n`customers/{customer_id}/campaigns/{campaign_id}`, so if you know the customer\nID and the campaign ID, you can use the `ResourceNames` class construct the full\nresource name as follows: \n\n string campaignResourceName = ResourceNames.Campaign(customerId, campaignId),\n\nYou can use other entity names as well, which take different IDs depending on\nthe final form of the resource name."]]