Skip to content

Commit

Permalink
patch specs
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong committed Oct 11, 2024
1 parent 345ce9b commit 7bc6d07
Show file tree
Hide file tree
Showing 544 changed files with 4,699 additions and 338 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,15 @@
],
"properties": {
"Category": {
"enum": [
"Approval",
"Build",
"Compute",
"Deploy",
"Invoke",
"Source",
"Test"
],
"type": "string"
},
"ConfigurationProperties": {
Expand All @@ -123,6 +132,7 @@
"$ref": "#/definitions/ArtifactDetails"
},
"Provider": {
"pattern": "[0-9A-Za-z_-]+",
"type": "string"
},
"Settings": {
Expand All @@ -136,6 +146,7 @@
"uniqueItems": false
},
"Version": {
"pattern": "[0-9A-Za-z_-]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"type": "string"
},
"ConnectionArn": {
"pattern": "^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:connection\\/[\\.\\-_A-Za-z0-9]+\\/[\\-A-Za-z0-9]+$",
"type": "string"
},
"Description": {
Expand All @@ -30,6 +31,7 @@
"type": "string"
},
"InvocationEndpoint": {
"pattern": "^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$",
"type": "string"
},
"InvocationRateLimitPerSecond": {
Expand All @@ -39,6 +41,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
},
"SecretArn": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,11 @@
"type": "string"
},
"ServerLaunchParameters": {
"pattern": "[A-Za-z0-9_:.+\\/\\\\\\- =@;{},?'\\[\\]\"]+",
"type": "string"
},
"ServerLaunchPath": {
"pattern": "[A-Za-z0-9_:.+\\/\\\\\\- ]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
},
"PolicyDocument": {
"maxLength": 6144,
"pattern": "[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+",
"type": [
"object",
"string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"type": "string"
},
"CertificateSigningRequest": {
"pattern": "[\\s\\S]*",
"type": "string"
},
"Id": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@
},
"PolicyDocument": {
"format": "json",
"pattern": "[\\s\\S]*",
"type": [
"object",
"string"
]
},
"PolicyName": {
"pattern": "[\\w+=,.@-]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -600,6 +600,7 @@
"type": "string"
},
"RuleName": {
"pattern": "^[a-zA-Z0-9_]+$",
"type": "string"
},
"TopicRulePayload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,28 +120,46 @@
"$ref": "#/definitions/ImageArn"
},
"ImageName": {
"$ref": "#/definitions/ImageName"
"$ref": "#/definitions/ImageName",
"pattern": "^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$"
},
"ImageVersionArn": {
"$ref": "#/definitions/ImageVersionArn"
},
"JobType": {
"$ref": "#/definitions/JobType"
"$ref": "#/definitions/JobType",
"enum": [
"INFERENCE",
"NOTEBOOK_KERNEL",
"TRAINING"
]
},
"MLFramework": {
"$ref": "#/definitions/MLFramework"
"$ref": "#/definitions/MLFramework",
"pattern": "^[a-zA-Z]+ ?\\d+\\.\\d+(\\.\\d+)?$"
},
"Processor": {
"$ref": "#/definitions/Processor"
"$ref": "#/definitions/Processor",
"enum": [
"CPU",
"GPU"
]
},
"ProgrammingLang": {
"$ref": "#/definitions/ProgrammingLang"
"$ref": "#/definitions/ProgrammingLang",
"pattern": "^[a-zA-Z]+ ?\\d+\\.\\d+(\\.\\d+)?$"
},
"ReleaseNotes": {
"$ref": "#/definitions/ReleaseNotes"
},
"VendorGuidance": {
"$ref": "#/definitions/VendorGuidance"
"$ref": "#/definitions/VendorGuidance",
"enum": [
"ARCHIVED",
"NOT_PROVIDED",
"STABLE",
"TO_BE_ARCHIVED"
]
},
"Version": {
"$ref": "#/definitions/Version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"type": "string"
},
"ConnectionArn": {
"pattern": "^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:connection\\/[\\.\\-_A-Za-z0-9]+\\/[\\-A-Za-z0-9]+$",
"type": "string"
},
"Description": {
Expand All @@ -30,6 +31,7 @@
"type": "string"
},
"InvocationEndpoint": {
"pattern": "^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$",
"type": "string"
},
"InvocationRateLimitPerSecond": {
Expand All @@ -39,6 +41,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
},
"SecretArn": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,11 @@
"type": "string"
},
"ServerLaunchParameters": {
"pattern": "[A-Za-z0-9_:.+\\/\\\\\\- =@;{},?'\\[\\]\"]+",
"type": "string"
},
"ServerLaunchPath": {
"pattern": "[A-Za-z0-9_:.+\\/\\\\\\- ]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,28 +120,46 @@
"$ref": "#/definitions/ImageArn"
},
"ImageName": {
"$ref": "#/definitions/ImageName"
"$ref": "#/definitions/ImageName",
"pattern": "^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$"
},
"ImageVersionArn": {
"$ref": "#/definitions/ImageVersionArn"
},
"JobType": {
"$ref": "#/definitions/JobType"
"$ref": "#/definitions/JobType",
"enum": [
"INFERENCE",
"NOTEBOOK_KERNEL",
"TRAINING"
]
},
"MLFramework": {
"$ref": "#/definitions/MLFramework"
"$ref": "#/definitions/MLFramework",
"pattern": "^[a-zA-Z]+ ?\\d+\\.\\d+(\\.\\d+)?$"
},
"Processor": {
"$ref": "#/definitions/Processor"
"$ref": "#/definitions/Processor",
"enum": [
"CPU",
"GPU"
]
},
"ProgrammingLang": {
"$ref": "#/definitions/ProgrammingLang"
"$ref": "#/definitions/ProgrammingLang",
"pattern": "^[a-zA-Z]+ ?\\d+\\.\\d+(\\.\\d+)?$"
},
"ReleaseNotes": {
"$ref": "#/definitions/ReleaseNotes"
},
"VendorGuidance": {
"$ref": "#/definitions/VendorGuidance"
"$ref": "#/definitions/VendorGuidance",
"enum": [
"ARCHIVED",
"NOT_PROVIDED",
"STABLE",
"TO_BE_ARCHIVED"
]
},
"Version": {
"$ref": "#/definitions/Version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"type": "string"
},
"ConnectionArn": {
"pattern": "^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:connection\\/[\\.\\-_A-Za-z0-9]+\\/[\\-A-Za-z0-9]+$",
"type": "string"
},
"Description": {
Expand All @@ -30,6 +31,7 @@
"type": "string"
},
"InvocationEndpoint": {
"pattern": "^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$",
"type": "string"
},
"InvocationRateLimitPerSecond": {
Expand All @@ -39,6 +41,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
},
"SecretArn": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"type": "string"
},
"ConnectionArn": {
"pattern": "^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:connection\\/[\\.\\-_A-Za-z0-9]+\\/[\\-A-Za-z0-9]+$",
"type": "string"
},
"Description": {
Expand All @@ -30,6 +31,7 @@
"type": "string"
},
"InvocationEndpoint": {
"pattern": "^((%[0-9A-Fa-f]{2}|[-()_.!~*';/?:@\\x26=+$,A-Za-z0-9])+)([).!';/?:,])?$",
"type": "string"
},
"InvocationRateLimitPerSecond": {
Expand All @@ -39,6 +41,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@
"Name": {
"maxLength": 64,
"minLength": 1,
"pattern": "[\\.\\-_A-Za-z0-9]+",
"type": "string"
},
"SecretArn": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
},
"PolicyDocument": {
"maxLength": 6144,
"pattern": "[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+",
"type": [
"object",
"string"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
],
"properties": {
"AccessString": {
"pattern": ".*\\S.*",
"type": "string"
},
"Arn": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"type": "string"
},
"Fleet": {
"pattern": "arn:.*",
"type": "string"
},
"GreengrassGroupId": {
Expand All @@ -23,6 +24,7 @@
"type": "string"
},
"Name": {
"pattern": "[a-zA-Z0-9_\\-]*",
"type": "string"
},
"Tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"type": "string"
},
"Name": {
"pattern": "[a-zA-Z0-9_\\-]*",
"type": "string"
},
"RobotSoftwareSuite": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
],
"properties": {
"Application": {
"pattern": "arn:.*",
"type": "string"
},
"CurrentRevisionId": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
],
"properties": {
"Application": {
"pattern": "arn:.*",
"type": "string"
},
"CurrentRevisionId": {
Expand Down
Loading

0 comments on commit 7bc6d07

Please sign in to comment.