Question 12 of 32 from exam 300-735-SAUTO: Automating and Programming Cisco Security Solutions

Question 12 of 32 from exam 300-735-SAUTO: Automating and Programming Cisco Security Solutions

Question

Which snippet is used to create an object for network 10.0.69.0/24 using Cisco Firepower Management Center REST APIs? A.

— APT PRTES
/api/fmc_config/v1/domain/<domain_uuid>/object/networks

— METHOD:

POST

— INPUT JSON:
"type": "Network",
"value": "10.0.69.0/24",
"overridable": false,
"description": " ",

"name": "Branch_ L. “het”

B.

-— API PATH:
/api/fmc_config/v1/domain/<domain_uuid>/object/networkgroups

— METHOD:

PUT

— INPUT JSON:

{
"type": "Network",
"value": "10.0.69.0/24",
"overridable": false,
"description": "",

"name": "Branch_1_net"

C.

— JAP PATH:
/api/fmc_config/v1/domain/<domain_uuid>/object/networkgroups

— METHOD:

POST

-— INPUT JSON:

{
"type": "Network",
"value "10.0.69.0/24",
"overridable" false,

"description": " "

D.

— APT PATH:
/api/fmc_config/v1/domain/<domain_uuid>/object/networks

— METHOD:
POST

- INPUT JSON:
{

"Network",
"10.0.69.0/24",
"overridable": false,
"description": ""

Explanations

A.