Cisco DNA Centerでデバイス構成の同期をトリガーするために使用される2つのAPIコールはどれですか。 (2つ選択してください。)
正解:A,D
https://developer.cisco.com/docs/dna-center/2-3-5/sync-devices/ Operation Id: syncDevices Description: Sync the devices provided as input curl -L --request PUT \ --url /dna/intent/api/v1/network-device \ --header 'Accept: application/json' \ --header 'Content-Type: ' \ --data '{ "type": "COMPUTE_DEVICE" }' AND Operation Id: syncDevicesNetworkDevice Description: Synchronizes the devices. If forceSync param is false (default) then the sync would run in normal priority thread. If forceSync param is true then the sync would run in high priority thread if available, else the sync will fail. Result can be seen in the child task of each device. curl -L --request PUT \ --url /dna/intent/api/v1/network-device/sync \ --header 'Accept: application/json' \ --header 'Content-Type: ' \ --data '{}'