Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed Apr 4, 2024
1 parent a703da0 commit 79a59dc
Show file tree
Hide file tree
Showing 65 changed files with 1,428 additions and 222 deletions.
28 changes: 26 additions & 2 deletions apis/b2bi/2022-06-23/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1561,15 +1561,39 @@
"X12_945",
"X12_990",
"X12_997",
"X12_999"
"X12_999",
"X12_270_X279",
"X12_271_X279",
"X12_275_X210",
"X12_275_X211",
"X12_276_X212",
"X12_277_X212",
"X12_277_X214",
"X12_277_X364",
"X12_278_X217",
"X12_820_X218",
"X12_820_X306",
"X12_824_X186",
"X12_834_X220",
"X12_834_X307",
"X12_834_X318",
"X12_835_X221",
"X12_837_X222",
"X12_837_X223",
"X12_837_X224",
"X12_837_X291",
"X12_837_X292",
"X12_837_X298",
"X12_999_X231"
]
},
"X12Version":{
"type":"string",
"enum":[
"VERSION_4010",
"VERSION_4030",
"VERSION_5010"
"VERSION_5010",
"VERSION_5010_HIPAA"
]
}
}
Expand Down
169 changes: 161 additions & 8 deletions apis/cleanrooms/2022-02-17/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,23 @@
{"shape":"AccessDeniedException"}
]
},
"BatchGetSchemaAnalysisRule":{
"name":"BatchGetSchemaAnalysisRule",
"http":{
"method":"POST",
"requestUri":"/collaborations/{collaborationIdentifier}/batch-schema-analysis-rule",
"responseCode":200
},
"input":{"shape":"BatchGetSchemaAnalysisRuleInput"},
"output":{"shape":"BatchGetSchemaAnalysisRuleOutput"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServerException"},
{"shape":"ValidationException"},
{"shape":"ThrottlingException"},
{"shape":"AccessDeniedException"}
]
},
"CreateAnalysisTemplate":{
"name":"CreateAnalysisTemplate",
"http":{
Expand Down Expand Up @@ -1466,6 +1483,53 @@
"errors":{"shape":"BatchGetCollaborationAnalysisTemplateErrorList"}
}
},
"BatchGetSchemaAnalysisRuleError":{
"type":"structure",
"required":[
"name",
"type",
"code",
"message"
],
"members":{
"name":{"shape":"TableAlias"},
"type":{"shape":"AnalysisRuleType"},
"code":{"shape":"String"},
"message":{"shape":"String"}
}
},
"BatchGetSchemaAnalysisRuleErrorList":{
"type":"list",
"member":{"shape":"BatchGetSchemaAnalysisRuleError"},
"max":25,
"min":0
},
"BatchGetSchemaAnalysisRuleInput":{
"type":"structure",
"required":[
"collaborationIdentifier",
"schemaAnalysisRuleRequests"
],
"members":{
"collaborationIdentifier":{
"shape":"CollaborationIdentifier",
"location":"uri",
"locationName":"collaborationIdentifier"
},
"schemaAnalysisRuleRequests":{"shape":"SchemaAnalysisRuleRequestList"}
}
},
"BatchGetSchemaAnalysisRuleOutput":{
"type":"structure",
"required":[
"analysisRules",
"errors"
],
"members":{
"analysisRules":{"shape":"SchemaAnalysisRuleList"},
"errors":{"shape":"BatchGetSchemaAnalysisRuleErrorList"}
}
},
"BatchGetSchemaError":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4268,19 +4332,30 @@
"ScalarFunctions":{
"type":"string",
"enum":[
"TRUNC",
"ABS",
"CAST",
"CEILING",
"COALESCE",
"CONVERT",
"CURRENT_DATE",
"DATEADD",
"EXTRACT",
"FLOOR",
"GETDATE",
"LN",
"LOG",
"ROUND",
"SQRT",
"CAST",
"LOWER",
"ROUND",
"RTRIM",
"UPPER",
"COALESCE"
"SQRT",
"SUBSTRING",
"TO_CHAR",
"TO_DATE",
"TO_NUMBER",
"TO_TIMESTAMP",
"TRIM",
"TRUNC",
"UPPER"
]
},
"ScalarFunctionsList":{
Expand All @@ -4300,7 +4375,8 @@
"description",
"createTime",
"updateTime",
"type"
"type",
"schemaStatusDetails"
],
"members":{
"columns":{"shape":"ColumnList"},
Expand All @@ -4314,15 +4390,92 @@
"description":{"shape":"TableDescription"},
"createTime":{"shape":"Timestamp"},
"updateTime":{"shape":"Timestamp"},
"type":{"shape":"SchemaType"}
"type":{"shape":"SchemaType"},
"schemaStatusDetails":{"shape":"SchemaStatusDetailList"}
}
},
"SchemaAnalysisRuleList":{
"type":"list",
"member":{"shape":"AnalysisRule"},
"max":25,
"min":0
},
"SchemaAnalysisRuleRequest":{
"type":"structure",
"required":[
"name",
"type"
],
"members":{
"name":{"shape":"TableAlias"},
"type":{"shape":"AnalysisRuleType"}
}
},
"SchemaAnalysisRuleRequestList":{
"type":"list",
"member":{"shape":"SchemaAnalysisRuleRequest"},
"max":25,
"min":1
},
"SchemaConfiguration":{
"type":"string",
"enum":["DIFFERENTIAL_PRIVACY"]
},
"SchemaConfigurationList":{
"type":"list",
"member":{"shape":"SchemaConfiguration"}
},
"SchemaList":{
"type":"list",
"member":{"shape":"Schema"},
"max":25,
"min":0
},
"SchemaStatus":{
"type":"string",
"enum":[
"READY",
"NOT_READY"
]
},
"SchemaStatusDetail":{
"type":"structure",
"required":["status"],
"members":{
"status":{"shape":"SchemaStatus"},
"reasons":{"shape":"SchemaStatusReasonList"},
"analysisRuleType":{"shape":"AnalysisRuleType"},
"configurations":{"shape":"SchemaConfigurationList"}
}
},
"SchemaStatusDetailList":{
"type":"list",
"member":{"shape":"SchemaStatusDetail"}
},
"SchemaStatusReason":{
"type":"structure",
"required":[
"code",
"message"
],
"members":{
"code":{"shape":"SchemaStatusReasonCode"},
"message":{"shape":"String"}
}
},
"SchemaStatusReasonCode":{
"type":"string",
"enum":[
"ANALYSIS_RULE_MISSING",
"ANALYSIS_TEMPLATES_NOT_CONFIGURED",
"ANALYSIS_PROVIDERS_NOT_CONFIGURED",
"DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED"
]
},
"SchemaStatusReasonList":{
"type":"list",
"member":{"shape":"SchemaStatusReason"}
},
"SchemaSummary":{
"type":"structure",
"required":[
Expand Down
Loading

0 comments on commit 79a59dc

Please sign in to comment.