Skip to content

Commit

Permalink
first pass at fixing all mdx compilation/syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sserrata committed Jul 11, 2024
1 parent 52d0341 commit 940c9e3
Show file tree
Hide file tree
Showing 67 changed files with 796 additions and 796 deletions.
2 changes: 1 addition & 1 deletion products/contributing/create-doc-md.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Strikethrough uses two tildes. ~~Scratch this.~~

Or leave it empty and use the [link text itself].

URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or <http://www.example.com/> and sometimes example.com (but not on GitHub, for example).
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or \<http://www.example.com/\> and sometimes example.com (but not on GitHub, for example).

Some text to show that the reference links can follow later.

Expand Down
2 changes: 1 addition & 1 deletion products/expedition/docs/creating_credentials.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ API syntax for generate API key:

| Method | EndPoint | Parameters | Example Value |
| ------ | ---------------------------------------------------------- | --------------------------------- | ------------------------------------------------------------------ |
| POST | <small>`https://localhost/api/v1/generate_api_key`</small> | <small>username, password</small> | <small>{**"username"**:"admin", **"password"**:"paloalto"}</small> |
| POST | <small>`https://localhost/api/v1/generate_api_key`</small> | <small>username, password</small> | <small>\{**"username"**:"admin", **"password"**:"paloalto"\}</small> |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down
14 changes: 7 additions & 7 deletions products/expedition/docs/expedition_contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ experience assisting others.

Access the <a href="https://live.paloaltonetworks.com/t5/expedition-migration-tool/ct-p/migration_tool"> Live Community Site </a>

To report bugs, requests for new features or personal contact, please reach us via the Expedition team email <[email protected]>
To report bugs, requests for new features or personal contact, please reach us via the Expedition team email \<fwmigrate\@paloaltonetworks.com\>

| Role | Members | e-mail |
| ------------------------------------------------- | --------------------------------- | -------------------------------------------------- |
| <small>Senior Manager Solutions Architect</small> | <small>David Puigdomenech</small> | <small><[email protected]></small> |
| <small>Architecture and Analytics </small> | <small>Didac Gil</small> | <small><[email protected]></small> |
| <small>API development </small> | <small>Anna Carreras</small> | <small><[email protected]></small> |
| <small>Solution Architect </small> | <small>Sathesh Anandh </small> | <small><[email protected]> </small> |
| <small>Front-End development </small> | <small>Janosch Zbick</small> | <small><[email protected]></small> |
| <small>Technical Solution Architect </small> | <small>Lynn Chiang</small> | <small><[email protected]></small> |
| Senior Manager Solutions Architect | David Puigdomenech | \<[email protected]\> |
| Architecture and Analytics | Didac Gil | \<[email protected]\> |
| API development | Anna Carreras | \<[email protected]\> |
| Solution Architect | Sathesh Anandh | \<[email protected]\> |
| Front-End development | Janosch Zbick | \<[email protected]\> |
| Technical Solution Architect | Lynn Chiang | \<[email protected]\> |
45 changes: 22 additions & 23 deletions products/expedition/docs/expedition_workflow_bulkchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ API syntax for creating a new device :

| Method | Route | Request Body Parameters |
| ------- | ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| POST | <small>`https://localhost/api/v1/device`</small> | <small>{**"name"**: devicename, **"serial"**: serialnumber,**"hostname"**: panosip,**"type"**: devicetype,**"description"**: pandescription,<br/>}</small> |
| Example | <small>`https://localhost/api/v1/device`</small> | <small>{**"name"**:"mypanorama", **"serial"**:"123456789",**"hostname"**:"pan1",**"type"**:"vm-panorama"**"description"**:"Project for testing"}</small> |
| POST | `https://localhost/api/v1/device` | \{**"name"**: devicename, **"serial"**: serialnumber,**"hostname"**: panosip,**"type"**: devicetype,**"description"**: pandescription,<br/>\} |
| Example | `https://localhost/api/v1/device` | \{**"name"**:"mypanorama", **"serial"**:"123456789",**"hostname"**:"pan1",**"type"**:"vm-panorama"**"description"**:"Project for testing"\} |

:::info
**The supported device "type" are below:**
Expand Down Expand Up @@ -135,8 +135,8 @@ API syntax for creating a new project:

| Method | Route | Parameters |
| ------- | ------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| POST | <small>`https://localhost/api/v1/project`</small> | <small>_in url_<br/>{ **"project"**:"project1", **"description"**:"Project for testing" }</small> |
| example | <small>`https://localhost/api/v1/project`</small> | <small>{"project":"MyLittleProject", "description":"A migration project"}</small> |
| POST | `https://localhost/api/v1/project` | _in url_<br/>\{ **"project"**:"project1", **"description"**:"Project for testing" \} |
| example | `https://localhost/api/v1/project` | \{"project":"MyLittleProject", "description":"A migration project"\} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -177,8 +177,8 @@ API syntax for upload PAN-OS config into device :

| Method | Route | Path Parameters |
| ------- | -------------------------------------------------------------------------- | ----------------------------------------- |
| POST | <small>"https://localhost/api/v1/device/{device_id}/upload_config"</small> | <small>**"device_id"**: device_Id</small> |
| Example | <small>"https://localhost/api/v1/device/23/upload_config"</small> | |
| POST | "https://localhost/api/v1/device/{device_id}/upload_config" | **"device_id"**: device_Id |
| Example | "https://localhost/api/v1/device/23/upload_config" | |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -214,8 +214,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| POST | <small>`https://localhost/api/v1/project/{project_id}/import/device`</small> | <small>_in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> {**"device_id"**:device_Id }</small> |
| example | <small>`https://localhost/api/v1/project/22/import/device`</small> | <small>{"device_id":"23""}</small> |
| POST | `https://localhost/api/v1/project/\{project_id\}/import/device` | _in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> \{**"device_id"**:device_Id \} |
| example | `https://localhost/api/v1/project/22/import/device` | \{"device_id":"23""\} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -256,8 +256,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------ |
| GET | <small>`https://localhost/api/v1/project/{project_id}/source`</small> | <small>_in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> {**"device_id"**:device_Id} </small> |
| example | <small>`https://localhost/api/v1/project/22/source`</small> | <small>{**"device_id"**: 23}</small> |
| GET | `https://localhost/api/v1/project/\{project_id\}/source` | _in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> \{**"device_id"**:device_Id\} |
| example | `https://localhost/api/v1/project/22/source` | \{**"device_id"**: 23\} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -301,8 +301,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | --------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| POST | <small>`https://localhost/api/v1/project/{project_id}/tools/filter`</small> | <small>_in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> {**"name"**:filter_name,**"filter"**:filter, **"reference"**:filter_reference,**"source"**:sourceId, } </small> |
| example | <small>`https://localhost/api/v1/project/22/tools/filter`</small> | <small>{**"name"**: "all allowed rules", **"filter"** : "[security_rule] action equals \"allow\"",**"reference"**: "all allowed rules", **"source"** :4486 } </small> |
| POST | `https://localhost/api/v1/project/\{project_id\}/tools/filter` | _in url_<br/> **"project_id"**:project_Id<br/>in_body<br/> \{**"name"**:filter_name,**"filter"**:filter, **"reference"**:filter_reference,**"source"**:sourceId, \} |
| example | `https://localhost/api/v1/project/22/tools/filter` | \{**"name"**: "all allowed rules", **"filter"** : "[security_rule] action equals \"allow\"",**"reference"**: "all allowed rules", **"source"** :4486 \} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -344,8 +344,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| POST | <small>`https://localhost/api/v1/project/{project_id}/tools/filter/{filter_id}/execute`</small> | <small>_in url_<br/> **"project_id"**:project_Id, **"filter_id"**:filter_Id<br/>in_body<br/> {**"source_id"**: source_id of the PAN-OS config file} </small> |
| example | <small>`https://localhost/api/v1/project/22/tools/filter/1/execute`</small> | <small>{**"source_id"**: "23564"} </small> |
| POST | `https://localhost/api/v1/project/\{project_id\}/tools/filter/{filter_id}/execute` | _in url_<br/> **"project_id"**:project_Id, **"filter_id"**:filter_Id<br/>in_body<br/> \{**"source_id"**: source_id of the PAN-OS config file\} |
| example | `https://localhost/api/v1/project/22/tools/filter/1/execute` | \{**"source_id"**: "23564"\} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -384,8 +384,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- |
| GET | <small>`https://localhost/api/v1/project/{project_id}/tools/filter/{filter_id}/success`</small> | <small>_in url_<br/> **"project_id"**:project_Id, **"filter_id"**:filter_Id</small> |
| example | <small>`https://localhost/api/v1/project/22/tools/filter/1/success`</small> | |
| GET | `https://localhost/api/v1/project/{project_id}/tools/filter/{filter_id}/success` | _in url_<br/> **"project_id"**:project_Id, **"filter_id"**:filter_Id |
| example | `https://localhost/api/v1/project/22/tools/filter/1/success` | |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -416,8 +416,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| GET | <small>`https://localhost/api/v1/project/{project_id}/collection/{Collection_Id}/content`</small> | <small>_in url_<br/> **"project_id"**:project_Id, **"collection_id"**:collection_Id</small> |
| example | <small>`https://localhost/api/v1/project/22/collection/20793/content`</small> | |
| GET | `https://localhost/api/v1/project/{project_id}/collection/{Collection_Id}/content` | _in url_<br/> **"project_id"**:project_Id, **"collection_id"**:collection_Id |
| example | `https://localhost/api/v1/project/22/collection/20793/content` | |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -446,8 +446,8 @@ API syntax for the step:

| Method | Route | Parameters |
| ------- | ----------------------------------------------------------------------------------- | --------------------------------------------------------- |
| GET | <small>`https://localhost/api/v1/project/{project_id}/object/profile_group`</small> | <small>_in url_<br/> **"project_id"**:project_Id </small> |
| example | <small>`https://localhost/api/v1/project/22/object/profile_group`</small> | |
| GET | `https://localhost/api/v1/project/{project_id}/object/profile_group` | _in url_<br/> **"project_id"**:project_Id |
| example | `https://localhost/api/v1/project/22/object/profile_group` | |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down Expand Up @@ -475,9 +475,8 @@ The final step we perform a bulk change to apply the security profile group to a
API syntax for the step:

| Method | Route | Parameters |
| ------- | ------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| PUT | <small>`https://localhost/api/v1/project/{project_id}/policy/security`</small> | <small>_in url_<br/> **"project_id"**:project_Id <br/>in_body<br/> {**"add[profile][0]"**: object_id of the SPG, **"id"**: collection_id} </small> |
| example | <small>`https://localhost/api/v1/project/22/policy/security`</small> | <small>{**"add[profile][0]"**: "11714", **"id"**:"20793"} </small> |
| ------- | ------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------\{**"add[profile][0]"**: object_id of the SPG, **"id"**: collection_id\} |
| example | `https://localhost/api/v1/project/22/policy/security` | \{**"add[profile][0]"**: "11714", **"id"**:"20793"\} |

<Tabs defaultValue={typeof window !== 'undefined' && localStorage.getItem('defaultLanguage') ? localStorage.getItem('defaultLanguage') : 'python'}
values={[
Expand Down
Loading

0 comments on commit 940c9e3

Please sign in to comment.