File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212
1313 steps :
1414 - name : Remove ticket prefixes from release notes
15- uses : actions/github-script@v8
15+ uses : actions/github-script@v9
1616 with :
1717 script : |
1818 const release = context.payload.release;
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123123 LINODE_CLI_OBJ_ACCESS_KEY : ${{ secrets.LINODE_CLI_OBJ_ACCESS_KEY }}
124124 LINODE_CLI_OBJ_SECRET_KEY : ${{ secrets.LINODE_CLI_OBJ_SECRET_KEY }}
125125
126- - uses : actions/github-script@v8
126+ - uses : actions/github-script@v9
127127 id : update-check-run
128128 if : ${{ inputs.pull_request_number != '' && fromJson(steps.commit-hash.outputs.data).repository.pullRequest.headRef.target.oid == inputs.sha }}
129129 env :
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def __call__(self, *filters):
2424
2525 locks = client.locks()
2626
27- API Documentation: TBD
27+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-resource-locks
2828
2929 :param filters: Any number of filters to apply to this query.
3030 See :doc:`Filtering Collections</linode_api4/objects/filtering>`
@@ -44,7 +44,7 @@ def create(
4444 """
4545 Creates a new Resource Lock for the specified entity.
4646
47- API Documentation: TBD
47+ API Documentation: https://techdocs.akamai.com/linode-api/reference/post-resource-lock
4848
4949 :param entity_type: The type of entity to lock (e.g., "linode").
5050 :type entity_type: str
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class LockType(StrEnum):
1010 """
1111 LockType defines valid values for resource lock types.
1212
13- API Documentation: TBD
13+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-resource-lock
1414 """
1515
1616 cannot_delete = "cannot_delete"
@@ -22,7 +22,7 @@ class LockEntity(JSONObject):
2222 """
2323 Represents the entity that is locked.
2424
25- API Documentation: TBD
25+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-resource-lock
2626 """
2727
2828 id : int = 0
@@ -35,7 +35,7 @@ class Lock(Base):
3535 """
3636 A resource lock that prevents deletion or modification of a resource.
3737
38- API Documentation: TBD
38+ API Documentation: https://techdocs.akamai.com/linode-api/reference/get-resource-lock
3939 """
4040
4141 api_endpoint = "/locks/{id}"
You can’t perform that action at this time.
0 commit comments