Skip to content

Commit

Permalink
upcoming: [M3-8452, M3-8603] - Add Resource Links & Fix Test Flake (#…
Browse files Browse the repository at this point in the history
…11047)

* upcoming: [M3-8452] - Add Resource Links & Fix Test Flake

* Review updates @mjac0bs

* Update pr-11047-upcoming-features-1728307120334.md

---------

Co-authored-by: Jaalah Ramos <jaalah.ramos@gmail.com>
  • Loading branch information
jaalah-akamai and jaalah authored Oct 7, 2024
1 parent b9f0379 commit 048d4df
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

Add OBJ Gen2 resource links and fix test flake for bucket creation ([#11047](https://github.com/linode/manager/pull/11047))
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,11 @@ export const AccessSelect = React.memo((props: Props) => {
})}
>
CORS (Cross Origin Sharing) is not available for endpoint types E2
and E3. <Link to="#">Learn more</Link>.
and E3.{' '}
<Link to="https://techdocs.akamai.com/cloud-computing/docs/define-access-and-permissions-using-acls-access-control-lists">
Learn more
</Link>
.
</Typography>
</Notice>
)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ export const BucketRateLimitTable = ({
) : (
'This endpoint type supports up to 750 Requests Per Second (RPS). '
)}
Understand <Link to="#">bucket rate limits</Link>.
Understand{' '}
<Link to="https://techdocs.akamai.com/cloud-computing/docs/create-and-manage-buckets">
bucket rate limits
</Link>
.
</Typography>

{isGen2EndpointType && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const OMC_CreateBucketDrawer = (props: Props) => {
};

const selectedRegion = watchRegion
? regions?.find((region) => watchRegion.includes(region.id))
? regions?.find((region) => watchRegion === region.id)
: undefined;

const filteredEndpoints = endpoints?.filter(
Expand Down Expand Up @@ -341,7 +341,10 @@ export const OMC_CreateBucketDrawer = (props: Props) => {
<Typography component="span">
Endpoint types impact the performance, capacity, and
rate limits for your bucket. Understand{' '}
<Link to="#">endpoint types</Link>.
<Link to="https://techdocs.akamai.com/cloud-computing/docs/object-storage">
endpoint types
</Link>
.
</Typography>
),
helperTextPosition: 'top',
Expand Down

0 comments on commit 048d4df

Please sign in to comment.