The document discusses experiment templates for AWS Fault Injection Simulator (FIS). It explains that experiment templates define actions and targets for chaos engineering experiments using FIS. The document provides examples of JSON templates that specify actions like stopping EC2 instances, targets like instances tagged for chaos, and ordering of actions. It also describes the required and optional fields for defining actions, targets, and experiments in templates to automate chaos experiments with FIS.
The document discusses experiment templates for AWS Fault Injection Simulator (FIS). It explains that experiment templates define actions and targets for chaos engineering experiments using FIS. The document provides examples of JSON templates that specify actions like stopping EC2 instances, targets like instances tagged for chaos, and ordering of actions. It also describes the required and optional fields for defining actions, targets, and experiments in templates to automate chaos experiments with FIS.
現地時間3月3日から10日にかけて、世界中のテレコムが注目するテクノロジーカンファレンスである「Mobile World Conference 2025」がバルセロナで開催されました。特に競争の激しいヨーロッパのマーケットでは、各社が生き残りをかけたイノベーションをたくさん生み出しています。5G/6G、エッジクラウド、新しい音声技術など、多くのキーワードが注目されています。
4. Chatter REST APIとは
? 特にモバイルアプリでSaleseforceデータを利用するためのREST API
? FacebookやTwitterのREST APIに近い位置づけ
? Chatter以外(ファイル,通知,Data.comの購入など)にもアクセス可
Chatter REST API 開発者ガイド「 Chatter REST API の概要」より
???REST APIとは別物?
5. Chatter REST API <> REST API
? Webサイト、モバイルデバイス用にデータが構造化される
? ユーザーのタイムゾーンと言語にローカライズされる
? レート制限の単位が違う
Chatter REST API : ユーザ、アプリケーション、および時間ごと
REST API : 組織ごと
Chatter REST API 開発者ガイド「 Chatter REST API を使用するケースの決定」より
25. SOSL : WITH HIGHLIGHT
? WITH HIGHLIGHT 句を使用した検索結果での
一致する語の強調表示
Salesforce Object Search Languageとは???
?1回のクエリですべてのオブジェクトを検索できる
?テキスト検索が得意
?グローバル検索を想像するとイメージしやすいかも
26. SOSL : そもそもSOSLの使い方とは
<Apex>
FIND ’Salesforce‘ IN ALL FIELDS RETURNING Account(Name),Contact(FirstName,LastName,Department)
<開発者コンソール>
FIND {Salesforce} IN ALL FIELDS RETURNING Account(Name), Contact(FirstName,LastName,Department)
オススメ!TrailHead【SOSL クエリの作成】
https://trailhead.salesforce.com/ja/modules/apex_database/units/apex_database_sosl
ApexとAPIでは記載が少し異
なる。初めて知りました。。
27. SOSL : WITH HIGHLIGHTの使い方
(例)
ハイライトをつけて、Salesforceという語を含む
取引先(Account)と取引先責任者(Contact)を検索します。
FIND {Salesforce} IN ALL FIELDS RETURNING Account(Name),
Contact(FirstName,LastName,Department) WITH HIGHLIGHT
#31:
WITH HIGHLIGHT 句を使用した検索結果での一致する語の強調表示
https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_sosl_with_highlight.htm?search_text=date
サポートされているのは、SOAP APIとREST API
/services/data/v39.0/search/?q=FIND+%7BSalesforce%7D
/services/data/v39.0/search/?q=FIND+%7BSalesforce%7D+WITH+HIGHLIGHT