Skip to content

Commit

Permalink
Merge branch 'main' into faq-on-gitlab
Browse files Browse the repository at this point in the history
  • Loading branch information
phalbert authored Dec 30, 2024
2 parents 797127b + 3ccb810 commit b9826b2
Show file tree
Hide file tree
Showing 151 changed files with 2,266 additions and 19,027 deletions.
6 changes: 3 additions & 3 deletions docs/actions-and-automations/actions-and-automations.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ For more information and instructions for defining automations, click [here](/ac
## Comparison

Technically speaking, the difference between self-service actions and automations is the **trigger**:

- **Self-service actions** are triggered manually by a user, and are typically used for tasks that require user input and/or approval. Actions can have defined user inputs.
- **Automations** are triggered by events in your infrastructure, and are typically used for tasks that are routine and repetitive. Automations do not have user inputs.

Expand All @@ -34,17 +35,16 @@ Technically speaking, the difference between self-service actions and automation
#### Backend

For both self-service actions and automations, you define the logic that runs when the action is triggered.
Port supports a wide range of backend options to execute your logic, including GithHub workflows, Jenkins pipelines, custom webhooks, and more.
Port supports a wide range of backend options to execute your logic, including GitHub workflows, Jenkins pipelines, custom webhooks, and more.

The same backend infrastructure is used for self-service actions and automations, making the backend part of the process identical for both.

For more information about available backends and how to set them up, click [here](/actions-and-automations/setup-backend).

#### Progress reflection

When an action or automation is triggered, Port creates an "Action run" object that represents the execution. You can interact with this object to get/set the status of the run, view/add logs, and more.
When an action or automation is triggered, Port creates an "Action run" object that represents the execution. You can interact with this object to get/set the status of the run, view/add logs, and more.

This object is identical for both self-service actions and automations.

For more information about the "Action run" object and how to interact with it, click [here](/actions-and-automations/reflect-action-progress).

Original file line number Diff line number Diff line change
Expand Up @@ -988,10 +988,10 @@ action = Action(
</TabItem>
</Tabs>

:::info Users and teams as blueprints
<!-- :::info Users and teams as blueprints
If you are using the [manage users and teams as blueprints](/sso-rbac/rbac/#users-and-teams-as-blueprints) feature, there is a small change to make in the `jqQuery` value.
See more information and an example [here](/sso-rbac/rbac/#consequent-changes).
:::
::: -->

<img src='/img/software-catalog/blueprint/userPropertiesModal.png' width='70%' border='1px' />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ An example flow would be:
5. As part of the workflow, the new microservice `Deployment` is reported back to Port.
6. When the workflow is done, Port's GitHub application reports back to Port about the status of the action run (`SUCCESS` or `FAILURE`), according to workflow's status.

:::info triggering workflow chains
A workflow triggered using the `workflow_dispatch` trigger is self-contained. This means its actions and effects over the repository cannot trigger other automatic workflows.

1. A developer invokes a "provision new microservice in monorepo" workflow.
2. The workflow opens a new PR in the target repository based on a pre-defined template.
3. The repository also has a workflow which is automatically triggered using the `on: pull_request: types: "opened"` trigger.
4. In this instance, the automatic PR workflow will not be triggered.

:::

## Configuration

When using this backend, you need to provide the GitHub organization and repository where the workflow is located, as well as the workflow name.
Expand All @@ -57,6 +47,24 @@ Additionally, you can define whether or not Port should automatically use the wo

By default, this is set to `true`. To disable this option, set the `reportWorkflowStatus` field to `true` in the `invocationMethod` object, or set the `Report workflow status` option to `No` if using the UI.

## Limitations

### Input limit

A GitHub workflow can have **up to 10** input parameters. Note this when defining your payloads.
If you need more than 10 inputs, you can use a JSON object as a single parameter.

### Workflow chains

A workflow triggered using the `workflow_dispatch` trigger is self-contained. This means its actions and effects over the repository cannot trigger other automatic workflows.

For example, take the following scenario:

1. A developer executes a "Create a new microservice in a monorepo" workflow.
2. The workflow opens a new pull request in the target repository based on a pre-defined template.
3. The repository also has a workflow which is automatically triggered using the `on: pull_request: types: "opened"` trigger.
4. In this instance, the automatic PR workflow **will not** be triggered.

## Examples

For complete examples of self-service actions using a GitHub workflow as the backend, check out the [guides section](/guides?tags=GitHub&tags=Actions).
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The process contains the following steps:
1. **The action is triggered in Port** - the trigger can either be a user executing a self-service action via the UI, or an automation triggering an action.
2. **The payload is sent to your backend** - the payload, as defined by the action's creator, is sent to your backend. The backend can be a URL, a dedicated Kafka topic or one of your CI/CD workflows/pipelines.
3. **Your backend receives the payload and handles the request** - depending on the action, your backend might open a PR, create a cloud resource, provision a new environment, or perform any other logic you would like.
4. **Your backend updates Port on the status of the execution** - You can [enrich the action run object](/actions-and-automations/reflect-action-progress/) in Port by adding logs, attaching links to other workflows or pipelines that help fullfil the request and add a final success/fail status once the action is complete.
4. **Your backend updates Port on the status of the execution** - You can [enrich the action run object](/actions-and-automations/reflect-action-progress/) in Port by adding logs, attaching links to other workflows or pipelines that help fulfill the request and add a final success/fail status once the action is complete.

## Supported backends

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ pip install -r requirements.txt --platform manylinux2014_x86_64 --target ./pytho
# Create a zip of the layer
zip -r layer.zip python
# Upload a new layer version to AWS
aws lambda publish-layer-version --layer-name lambda_port_execution_package_layer --description "Python pacakges layer for lambda Port execution example" --compatible-runtimes python3.6 python3.7 python3.8 python3.9 --zip-file fileb://layer.zip --region eu-west-1
aws lambda publish-layer-version --layer-name lambda_port_execution_package_layer --description "Python packages layer for lambda Port execution example" --compatible-runtimes python3.6 python3.7 python3.8 python3.9 --zip-file fileb://layer.zip --region eu-west-1
```

You should see output similar to the following:
Expand All @@ -323,7 +323,7 @@ You should see output similar to the following:
},
"LayerArn": "arn:aws:lambda:eu-west-1:123456789012:layer:lambda_port_execution_package_layer",
"LayerVersionArn": "arn:aws:lambda:eu-west-1:123456789012:layer:lambda_port_execution_package_layer:1",
"Description": "Python pacakges layer for lambda Port execution example",
"Description": "Python packages layer for lambda Port execution example",
"CreatedDate": "2018-11-14T23:03:52.894+0000",
"Version": 1,
"CompatibleArchitectures": ["x86_64"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Here is the mapping file schema:

### Mapping examples

Below you can find some mapping examples to demonstate how you can use JQ and the action payload sent from Port to change the payload sent to your target endpoint by the agent.
Below you can find some mapping examples to demonstrate how you can use JQ and the action payload sent from Port to change the payload sent to your target endpoint by the agent.
In each mapping, we will show the relevant fields.

#### Apply a filter to the mapping
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ALL_PROXY=http://my-proxy.com:3333

#### `NO_PROXY`

`NO_PROXY` allows blacklisting certain addresses from being handled through a proxy. This vairable accepts a comma-seperated list of hostnames or urls.
`NO_PROXY` allows blacklisting certain addresses from being handled through a proxy. This variable accepts a comma-seperated list of hostnames or urls.

For example:
```sh showLineNumbers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Depending on the backend type you choose, the available fields will be different

| Field | Type | Description | Example values |
| ---------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------- |
| `defaultRef` | `string` | The default ref (branch/tag name) we want the action to use. <br></br> `defaultRef` can be overriden dynamically, by adding `ref` as user input. <br></br> Can only be used if `type` is set to `GITLAB`. |
| `defaultRef` | `string` | The default ref (branch/tag name) we want the action to use. <br></br> `defaultRef` can be overridden dynamically, by adding `ref` as user input. <br></br> Can only be used if `type` is set to `GITLAB`. |
| `projectName` | `string` | The GitLab *project* name.<br></br>Can only be used if `type` is set to `GITLAB`. | `port` |
| `groupName` | `string` | The GitLab *group* name.<br></br>Can only be used if `type` is set to `GITLAB`. | `port-labs` |
| `pipelineVariables` | `object` | Defines the **payload** that will be sent to the backend upon execution of the action.<br/>An object containing `"key":"value"` pairs. | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Sensitive data such as tokens and passwords can be stored using [Port secrets](/sso-rbac/port-secrets/).

To use a secret in the payload, you can reference it using `{{ .secrets.<secret_name> }}`.
To use a secret in the payload, you can reference it using `{{ .secrets.<secret_name> }}`.

For example:

Expand Down Expand Up @@ -35,5 +35,6 @@ For example, the following expression will add the `ref` key to the payload only
```

:::warning Using jq in keys
Note that if a **key** in the payload evaluates to `null` for any reason, the entire expression (key + value) will be ommitted from the payload.
:::
Note that if a **key** in the payload evaluates to `null` for any reason, the entire expression (key + value) will be omitted from the payload.
:::

2 changes: 1 addition & 1 deletion docs/api-reference/add-a-log-to-an-action-run.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
hide_table_of_contents: true
api: eJztV0tv2zgQ/ivEXLYFFCspuhcjCOBms0DRAg3yOCxSI6XFscWaIlU+7HgN/ffFkJIlO07by2J72ItNk5zhPL75ZrwFga6wsvbSaBjDXSkdsyZ4ZFwps3ZsYwLzhjnUgnGmzIJV6BxfIJvxYklH18b6jK1LWZRsLZViM2RCulrxDQomNfMlMl7QC8wG/ZtjNV/giP1lAiu4Zlw5w4JD5vvHvWGhFpxWJbZSHm0lNY96nOc+OPbq9v7y8ur2Nv9z8v7j/c3Va8a1YIrPULHk2EzqRdSRJEbnM5tfxI87wxRyq1llLDI+M8EPrHQZK0osloy2Sf5BmCJUqH00YPqq9L524zwXpnCjBfraWD+SJi8sco8nDtX8xKFdyQJP8KlGK1EX6HKLc4WFP0lPndTWLCw6l78eQQaeLxyMH2CS7LgJ2sE0A4vfAjr/zogNjLdQGO1Re1ryulayiCblXx2lcAuuKLHitPKbGmEMZvYVCw8Z1NbUaL1EF0/7eN7G4AxEnLdSLyB7Bg88lgYzP8jxiF1yTThQOPdsprheMjmPWDJabdiaa38cVSlBkAHqUFEo2gxDBm2OYdpkkB7+SIn+sdWTFhHedKDAAST+BeubDNqNnwvpsKo6vcPq6tQ2GXAhJElydT1I5pwrhwkn0qKguHUGTBsS60+8DdhkUHPLK/RoCW9HMNNa22Qgycqa+xIy0LyiQxv0oxTwTO00A4dFsNJvotYZcosWxg/TJqLY1Ua7BL43p2f0dZAoIVAwF4oCnZsHpTZUFD8N9314m+XAHa43PabIVgKRDfqjWfy4UKQ4Ghgb9PvjJy8mv8kg8YN4t/ne6cQfA87c2Ip7GAMR44mXFcJ+bh8gZSUa1psxfHT4xPRQ2iyJbb4Lsf2EffoATcTX29O3z9P5SWNXXHND3YS4GK011jFTFMFaFOPP+rM+93ym8IIW9uKzZuzclxdXdPE89+Vu549ee7t/nkeBXkxcfNHGP85N0OLLee7Fbv9ur8TZWvoyWlZbs5IEOylQezmXaNmaO6aNZ1FNq6V7Ku9spXS9ffPmV3Fb6hVXUjy2veK584J73nsrDCYfK+6LFInUeVM5HTg9fIiKH59KHpzHgxhP+vhyZZGLDZtLLV2JguETFqH14cV4/n56+uvE06PVXD3Glw781Kw7Tobs7HjZuUgLvjSC2NS4yDJEqmPIV2d5QqbLafLIt4lfm1yZhQPiVLvqiDpYBWPohg9ey8HsAU127EJwe3cGJH1LuU4c11F1z5i1/ICbnvMnwZfGyr8j+ULbFkrkAm10juj4pp9Trp54VSt8Yc4YdPW9Tt5z3Y5C9zrR3ESF0pNmoNbIJtfvIQOKT0LL2eiU7lKIKx4bROeA6Jq1N4zGzh1YD3vyYML6fyD+jwfiBEaPTz6vFZeRJSLEt235PMDqDDJoCyh1P/oa74aUWEXTDEqquvEDbLcz7vDeqqah7W8BLY0r0wxW3Eoq2FhpQjpai+Otb4iRVzdtD33NXjJ5bwxZcRXoF2SwxE0/TzU0lLQlRRakw8v0zskdqeiFn41CVPxJYlIUWPvv3p0O2Oj60+0dZDBr/11URsQZj68pmHydDDV1iu94m/a2oLhehFSiSWccTwPlZEgiy0gi7YK8OhqKQ3ZJjtAnuXVUZLtNFNU0u/vp6EWJNrTdbcoMTcf/ABUBNqo=
sidebar_class_name: "post api-method"
info_path: api-reference-temp/port-api
info_path: api-reference/port-api
custom_edit_url: null
---

Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/approve-an-action-run.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
hide_table_of_contents: true
api: eJztWN9v2zYQ/lcI7qUF5CjpthcjCOC2GRa0aIMsHVCkhnsWzxYbiVT5w4lr+H8fjpQsKVbcFttDCywPjmzekd99/HS844YLtJmRlZNa8TG/zqVlRnuHDIpC31m21p45zaCqjF4h04YJzAqpkAEz+NmjdTSO95gFL8Ugo8mYy8EFC2nQ1v5QHJ3OTXoWPq41KxCMYqU2yGCuvWMlKA/FzpottKnnswnLcsxuGZm5HNmN0JkvUTmg4emT3LnKjtNU6MweLdFV2rgjqdPMIDgcWSwWI4tmJTMc4X2FRqLK0KYWXX+wXm9k5pClv2RaLeTSGxxFbKMG22ihTWP79Ign3MHS8vENn8T4r7yyfJrwmqTnWqz5eMMzrRwqR49QVYXMAvz0kyX+N9xmOZZAT25dIR9zPf+EmeMJr4yu0DiJNtg5cN527KwzUi15wlH5MsC4vLx6+/c5T/jL8xevL96c8+k26W/3vnNfDRPW+c5AiVQbZhCsVmFnaBuWcoWKRThxc/l2m3AQQpIXFJcd3AsoLEZKpEFBMOtAplvyagec8bhNeAUGSnRoiNkBdmrg24RLAlyBy3nCFZQ0aLyaSbEX1XWOTApUTi4kGqYXIY5atcarIPk7UK6j+7QWfR3hHtJpwi1m3ki3DkDnCAYNH99Mt0ECttLKxp17dnxC/x4wHZcRzTqCWZ9laO3CF8Wa1PXNuunrRN922AK1bgVCuEkRxquvy02KQdLnhcfKyAjrazM0jA/O5KQrsB25aSWpfFEE6cqsq9khC4EFOuxCnWtdICjeF9dNFw050he3/smDiAr+yYPoQ+0HEjZKoJi4odS10KYEx8dcULp3skRysNqbbDicetZpB9Ckzu1d+wZ46zCM8kAmfv2aJ3zy5j1luX70wYUQPJbPd0OvYY7FYdILqW67FmAM0AtfW04TLh2WQ4vQKr4swawHEcAALTtxxeUfcnLwnNkm3Fs0F+JwPBT4ALHhpKhgXWgQ34FoeJcIiikO6skbGUhYYi/P7QSdcLtWWW60kl+GJZ/wEl2uh3NojiDC+fa19/bq3ZvZxctH+JjX5cXhKagmmoWT5P4bUrbx6mIIc/xrj7XBXWzE1740jfjINRZl4vmw3nwlDozWvt+TBeoJv91lL0nxXX7tsTSQOnY5J+nUNv3p9C3xcbBE6pcHb1/xSPlvx7/uFw9vFTZVzEJT1S7VkqEx2lims8wbg2L8QX1Qpw7mBZ7Rgzn7oBg7dfnZORmepi7f/fKynb3+/TQNDq2bOPtYSmulWs4qNOFRK/vxNHViZ/FeewYGmdKOBSPnUHR7CUfNRmT1iP2hDVt443KkDsOBLGzCqgLBIiPFQuaoMDMMRClVvVCDK20C44Gj334UjpR2s4X2SvSZue7Xm3fS5QEZ0SIFim55egc2MBimORj2s2c/SthSraCQYla3PvvBC3DQRis0xhhLcFlkIragsah9EHR3IarwieM7kI60uNBm1hxW/VUnLd0yLlb7xBaz9jnE7+/Hxz8Ovw6NgmIWVnoQqGLNcASyw/F4cJ0DilqojHqo0EqNebo6SesmNzVe2XQTu6ptCp2Eh2bVtGjhNOVNMw6V7PTifJsMGXjbs+n0Un+RAOJh1HRUbTNTyVe4bru9iXe5NvIL1Fk6NITxcA0RUqd01fbi5/dQVrHQbWqvTsvc3+Vul7nQAUMskvmlNo5NLi94womBaH5ydEy2lbauhFD+NBDrxNdeklDztdeU71q9/69j/s11TJQJlTppVYBUnVovivuGr05253o4y334N95dHOw0Pk14rq0jn81mDhbfmWK7pZ8/e6Sq+Waa8BUYSe9UeA+EtPQshk/07iY/uapLg6fsP7maGAy8dwOwgsLTN57wW1y3NyXb6a4eDTHEwRcR6eiapmid924h6OWOHpMsw8odtJ12Us7l5PrFn7ytYUstwvUN3NGewF1Eqqu4TVSY0m8bXoBaeliSbZw0XDx52tpulrgNWaJ+oLAGuXiYPmIk9ElxDbpsNjEHbbc7+zj0qEfNbWNNW0MXX/8AH+SBSw==
sidebar_class_name: "patch api-method"
info_path: api-reference-temp/port-api
info_path: api-reference/port-api
custom_edit_url: null
---

Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/cancel-a-migration.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
hide_table_of_contents: true
api: eJy1VE2P0zAQ/SvWnEAyzS7HCCHBwgEhRLW7nKoKTZNp4t3E9tpOuyXyf0eTOP3awgVxaR372X7vzRv3UJIvnLJBGQ053NfKC2e6QAKbxmy92JlOBCMK1AU1AoXrtFa6Eq2qHPIuoTSDnJgbF4RxFWr1a1iZgYSAlYd8Ad8muIelBEdPHfnw0ZQ7yHsojA6kAw/R2kYVAzJ78MypB1/U1CKPws4S5GBWD1QEkGCdseSCIs+rjjDtSDgfnNIVyBciSYxYsTYuSWtYVKjpIGz2buWy9xCjBCxLxVPYzI9uXGPjKUYGWHTYUiDHYi8wTkyiBMUMLIYaJGhseXF/409VXiSrStJBrRU5YdanJIf6bFGHQ5ES79Fl5aiEPLiO4lKCp6JzKuwGkitCRw7yxTIOJfHWaD86+fbqiv9OmXyiNXZNELcJOTjTUqhNyZKMHyrCynLINtfZnqPP+mOJMRt5AvNxm8mzzjWQQx2C9XmWoVWzioI1LsyUgSgvATp/gjkSeMcFGLVMMve1QKu+0u5g/4cu1MalzEKqUE1YkhskcgxvD4H9/Iytbeg4cCflXZvhLhUYA0NTfJh/AQmsdHTyenbFWLasxSGwicrN1GV7v87zcNQs/6FZR4MCPYfMNqg0sxxs71NhF7C5BnlIrAcJ+Vl+U3WXEmrORL6Avl+hpx+uiZGnnzpyHMGlhA06hSt2atFDqTyPy9RZf1H+6jZF+7X4h/64KHcKieaEbLDp+AskPNLuvFXjMsopKMx/hNyMLN/c80GHI148bBzXfffMv9/dg4RVehBbU/Ieh1tuY9yOFIwdLefk8VwPDeqqw4qx45nDY9VxpY7j/jjEPQ2Y6UWR530wyuFf7r6LW/p+bKYY9/hx6Y87kl0Tmj1fxhh/A/AlQqc=
sidebar_class_name: "post api-method"
info_path: api-reference-temp/port-api
info_path: api-reference/port-api
custom_edit_url: null
---

Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/change-a-scorecard.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
hide_table_of_contents: true
api: eJztWFtv2zYU/ivE2YA1mGwnwYquwjos7Yqi2IAFafpSxyto6dhiQ5EKSdl1Df334ZC6+ZLGSfswbH0xaOnceC4fP2oNKdrEiMIJrSCGy0xYZnTpkHEp9dKylS6Z0yzXqZitGGe2wETMRMJsog0m3KRDdtb9YcKSEDqmZ8yUEi1zGXcsxZlQyFyG7KbkUrgVCXA2lSUWRig3/GVqRr/6n0vNJHKjWK4NMj7Vpesc2IglGSbXjJ6SuXGqkzJH5TjtYfIoc66w8WiU6sQO5+gKbdxQ6FFhdK4dDjpLo6MhROD43EI8hjftc5hEYPCmROue63QF8RoSrRwqR0teFFIk3tnog6WsrcEmGeacVm5VIMSgpx8wcRBBYXSBxgm09FakqJyYCTQ9WeuMUHOIdkqBTOGSdTqUMdpxl3mfLvLCnUNDWn+Pzwbv+ODT8eDpb++H8dXV1dXo2WDy4/dQReCEk3i4Zy9+m9MqgpmQbmMn7a437Z0ppv2ay6YzxolWqaBn9l4V+67TO6K2DCEwyhDlOPTaUkjJpshwwWXJHaZsurotcRvlSXQ+FYo7vbc8qMqcGoWrFCLQBiZVBF08PRVuDF9BBLlQrx3mFuKTCERYrYGr1V8ziMe7aavrA+chqhWbolsiKtZ6gdCZwmBKodThky9a+MgjoG0jNTFPgxaX5719zri0WEUHuKeu50LZM7V6WAgHeskLboT9eqYvUPr5vN20qSUeHjXmhbtfVg4L+fN298U9qSZVVW3K9Tp5o0epZT0qUyPuTv3Yv7vfRJLKACUSBNNQbqH97sxtDUk7F18XOndhkwK9CzGfEWA+AC43oLLnqNoSvsvWGev9ZzNt9hiUuEB5WFhjL3u/erbrgdOOy4E3MUi4TMrQe0d7E9qg4ystCR7fCLlAar7nRqtPfqjgpkSzurvS31D4Gwr/11F4S7AHbk0wzZw3Y+N1/KN9Pb47+nzBheRTiSwoNUNLxK4d8YghTzK2FC5jwlmml4opniPjKmWJltq0830gTN+HYpKjOiofYwdx3vVhVrwo49bqRHiu5zfT2ow8iC6EpUvHp1Bcodi5Nu4Hy96+3sEvupBQEUpzU2ph0YMMV3NaFKUpfGkKoa4hghXSHQkimBvE0CQESvMAgbaBwIJLfB7Mptxcvwolk2KeuXo9bUByqy+aVgj5CA32GTg5oKnC4b/dqs6UWFGghufo0FgPjDu3mrYMuVB/opq7DOKTKgJBxSi4yyACqiqJNi32fiOMQ87p7i5Jd88lV46YfpJREdpybcf+ZdG2t9D7R9uqsmWm7cOin0RgMSmNcCuf+ClyQzxnPKn8VdQWWtkwX6fHx7vU7Xec8VI6dlFLAlU3R5fplLZaukB4MohhtDgZtSHb0XrfzqtRjw+s91WyovZGs2g6pTQSYmhYBi9Ej2QAFWdXoLQbMr0UvKFCht02iejwrhB/4Kor3FnpMm3qwYa6thnyFI1PAl3QL7qr/MuPPC8CPvX5ZNcqzUHQPujuuH1aUrOPPu0Yr7vjpqcfDrN4DTOjc4jh9Pj0p8Hxk8Hp08uTx/Hjk/j05+Hxk5N35Ft/7n1FadznoT2BYugxhc71uBGdHGDhWafXvCet9sC7l5bSLjR4dJdbYV/SgbutdYfbVqt3qxkfXNnNEWof1+y64bEtZ/1W/n9x+Qk+Gm40Xu/WuuYT4XD37SLUTPf4ChAhYGfnr2kraGzwejI8JjZSaOty7m9vNey88HBOHzobcNxuqN4nw//lR9UA1w4/ulEhuVCUR38IrOuTaAyLE2I+7VkEEcS3nMOddRLaSy0mEWTaOrK7Xk+5xbdGVhU9rid4PKEmNYIosW+SVFhapy13urV+jy7q4/qIfQFj2ZuS5ljrTyxABNe4uo1E0ZB8xdgfxF8esJe9pfWjWB/XVJMg+iJEP7gkg52pnQ/vNPUtyzl/e0ntVH+vz3VKKoYTO6dfH0n4Cu2ZhX+2BsnVvORzkg0mPcMuqUH7nOPac4560ftmsLnXbTISdkO/vTvnpsp6HRhNVbXy4dWtGnW2GmlKPbH5fwBHP+sj
sidebar_class_name: "put api-method"
info_path: api-reference-temp/port-api
info_path: api-reference/port-api
custom_edit_url: null
---

Expand Down
2 changes: 1 addition & 1 deletion docs/api-reference/change-a-team.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ hide_title: true
hide_table_of_contents: true
api: eJzlVsFu4zYQ/RViLt0FGDvpUSgKZBd7WBRog21yMnwYi2OLG0nUkkM7rqF/L4aUY8VR3Oy5PsgyOTOceW/e0AcwFEpvO7auhQLuKxuUd5FJYV27XVB7FxU7VVbYbkihYsLml6AMMdo6zFTyKLFVK1IxkBHj2BlkUlzR0bzFhrTs+6AVtkaNjp39tvLz39Pj3qma0LeqcZ4UrlzkFCFoVVZUPqq0UJFaGFfGhlpGibD8UDF3oZjPjSvDbEPcOc8z6+YhuCu/wnIujyu3Jb+1tJt/nIEGxk2AYgH3cgAsNXj6ESnwJ2f2UBygdC1Ty/KKXVfbMp01/x4EqQOEsqIG5Y33HUEBbvWdSgYNnXcdebYUZFdKH1kF9rbdgH4FPKmWdgko5dbP2GVwoNeQwBsFQu9x/yrOXy0p5zN+dNWgrRUa4ykEChI3RRGO0CSqeDg3nZXJ3Nm6VgKVtyaTSE82sG03yVvVNvCQlgbL1ITX5fX9WWLvrX+0OgVDn1mynoxQl7Bd9i+X2UfqNXTosSFOoC0m6DpmqsFKAh1yBXpgK39N5njGT9LHDls+ieQZm7OUlhoCldFb3qeMVoSevJSR9VJwbsQ+tWLoXBtyB/16fS1fL5N5SD5GhViWFMI61vVeuvrdXfu+cJd72z2OG7KVdqQ2NlAspOJlr0Fq+m+NWDNJzLR0eg2lJ8n2lqcaa+18gwwFSEVXbBtK8skF/oxL593WGqFoIoWL3X1BrueCeQMREulOBl5bH/jPt5Cp8cJmZ0uOfnovMHKcVHL6vNRdYlUL/UsNaIwVGLC+G5WwxjrQ4NoQV86IyGKqVKRWwHx7M08tPz8I0T2IPvz2KNjoayjgONixs6O5Dr2eMojhhc1IcH9L22dkj7I7MdPZP2h/0v5t5Mp5+08SDgzjoSKUTpBqRErfTlfFlydsuppOo/7UVkMPLI4ry/OJMp5Ba5dysiyx4M55Vrd3X0GDIJLNb2bXiUYXuMF2dOLn8e18PrdGN9n/637P9DI98byr0bZJlj6pKrfgArY3kGdUAA1Fvk40VC6w7B4OKwz04Ou+l+UfkbyM7qWGLXqLK2FqcQBjg7yboekvwP/h2yCij+pnL5PJal5M3i3WUX6BhkfaHy+xXqbw0L2SbN76nFO6upcAJ9dXN4boLHvcliV1fNF2OVL63cM9aFgNf6UaZ8TF406uRdzlLF1CKIkyrR2gxnYTcSO2OaToDaNwNZbrY5Lr8CJFTeJwruNchzylqkmXwyEPg75/ts9bb3oMyB6thRb5P/IvrkrnxA==
sidebar_class_name: "put api-method"
info_path: api-reference-temp/port-api
info_path: api-reference/port-api
custom_edit_url: null
---

Expand Down
Loading

0 comments on commit b9826b2

Please sign in to comment.