Class Info
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
情報構成に関する情報データが含まれています。プロパティによって、データポータルでの表示方法が決まります。
const cc = DataStudioApp.createCommunityConnector();
const config = cc.getConfig();
const info1 = config.newInfo().setId('info1').setText(
'This text gives some context on the configuration.');
詳細なドキュメント
setId(id)
この構成エントリの一意の ID を設定します。
パラメータ
戻る
Info
- チェーン用のこのビルダー。
setText(text)
この構成エントリのテキストを設定します。
パラメータ
名前 | 型 | 説明 |
text | String | 設定するテキスト。 |
戻る
Info
- チェーン用のこのビルダー。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[],["The `Info` object, part of a Data Studio Community Connector configuration, displays information. `setId(id)` assigns a unique string ID, crucial for identifying the configuration entry. `setText(text)` sets the string text content to be displayed. Both methods return the `Info` object itself, allowing for method chaining. These actions allow for defining and displaying context within the Data Studio configuration.\n"]]