Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelbm committed Jun 6, 2024
1 parent 6ed0f70 commit e883582
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,12 +626,21 @@ components:
name:
type: string
example: "my-s3-credential-all-permissions"
maxLength: 200
minLength: 1
pattern: ".*"
access_key:
type: string
example: "s3_credential_access_key"
maxLength: 200
minLength: 1
pattern: ".*"
secret_key:
type: string
example: "s3_credential_secret_key"
maxLength: 200
minLength: 1
pattern: ".*"
capabilities:
type: array
items:
Expand All @@ -648,20 +657,32 @@ components:
bucket:
type: string
example: "s3-credentials-bucket"
maxLength: 200
minLength: 1
pattern: ".*"
expiration_date:
type: string
format: date-time
example: "2025-01-31T10:57:00Z"
maxLength: 30
minLength: 10
pattern: ".*"
created_at:
type: string
format: date-time
example: "2024-03-04T16:54:14.782211Z"
maxLength: 30
minLength: 10
pattern: ".*"
S3CredentialCreate:
type: object
properties:
name:
type: string
example: "my-s3-credential-all-permissions"
maxLength: 200
minLength: 1
pattern: ".*"
capabilities:
type: array
items:
Expand All @@ -678,10 +699,16 @@ components:
bucket:
type: string
example: "s3-credentials-bucket"
maxLength: 200
minLength: 1
pattern: ".*"
expiration_date:
type: string
format: date-time
example: "2025-01-31T10:57:00Z"
maxLength: 30
minLength: 10
pattern: ".*"
EdgeAccessEnum:
enum:
- read_only
Expand Down Expand Up @@ -747,6 +774,8 @@ components:
count:
type: integer
example: 123
minimum: 0
maximum: 1000
next:
type: string
nullable: true
Expand Down

0 comments on commit e883582

Please sign in to comment.