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 for Ruby authored and Nobody committed Feb 8, 2022
1 parent 5c0b516 commit 94aca0a
Show file tree
Hide file tree
Showing 33 changed files with 2,437 additions and 377 deletions.
197 changes: 191 additions & 6 deletions apis/apprunner/2020-05-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,20 @@
{"shape":"ServiceQuotaExceededException"}
]
},
"CreateVpcConnector":{
"name":"CreateVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateVpcConnectorRequest"},
"output":{"shape":"CreateVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ServiceQuotaExceededException"}
]
},
"DeleteAutoScalingConfiguration":{
"name":"DeleteAutoScalingConfiguration",
"http":{
Expand Down Expand Up @@ -112,6 +126,20 @@
{"shape":"InternalServiceErrorException"}
]
},
"DeleteVpcConnector":{
"name":"DeleteVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteVpcConnectorRequest"},
"output":{"shape":"DeleteVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ResourceNotFoundException"}
]
},
"DescribeAutoScalingConfiguration":{
"name":"DescribeAutoScalingConfiguration",
"http":{
Expand Down Expand Up @@ -154,6 +182,20 @@
{"shape":"InternalServiceErrorException"}
]
},
"DescribeVpcConnector":{
"name":"DescribeVpcConnector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeVpcConnectorRequest"},
"output":{"shape":"DescribeVpcConnectorResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"},
{"shape":"ResourceNotFoundException"}
]
},
"DisassociateCustomDomain":{
"name":"DisassociateCustomDomain",
"http":{
Expand Down Expand Up @@ -237,6 +279,19 @@
{"shape":"InvalidStateException"}
]
},
"ListVpcConnectors":{
"name":"ListVpcConnectors",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListVpcConnectorsRequest"},
"output":{"shape":"ListVpcConnectorsResponse"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceErrorException"}
]
},
"PauseService":{
"name":"PauseService",
"http":{
Expand Down Expand Up @@ -424,6 +479,7 @@
"Boolean":{"type":"boolean"},
"BuildCommand":{
"type":"string",
"pattern":"[^\\x0a\\x0d]+",
"sensitive":true
},
"CertificateValidationRecord":{
Expand Down Expand Up @@ -580,7 +636,8 @@
"Tags":{"shape":"TagList"},
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"}
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"CreateServiceResponse":{
Expand All @@ -594,6 +651,26 @@
"OperationId":{"shape":"UUID"}
}
},
"CreateVpcConnectorRequest":{
"type":"structure",
"required":[
"VpcConnectorName",
"Subnets"
],
"members":{
"VpcConnectorName":{"shape":"VpcConnectorName"},
"Subnets":{"shape":"StringList"},
"SecurityGroups":{"shape":"StringList"},
"Tags":{"shape":"TagList"}
}
},
"CreateVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"CustomDomain":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -669,6 +746,20 @@
"OperationId":{"shape":"UUID"}
}
},
"DeleteVpcConnectorRequest":{
"type":"structure",
"required":["VpcConnectorArn"],
"members":{
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"DeleteVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"DescribeAutoScalingConfigurationRequest":{
"type":"structure",
"required":["AutoScalingConfigurationArn"],
Expand Down Expand Up @@ -725,6 +816,20 @@
"Service":{"shape":"Service"}
}
},
"DescribeVpcConnectorRequest":{
"type":"structure",
"required":["VpcConnectorArn"],
"members":{
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"DescribeVpcConnectorResponse":{
"type":"structure",
"required":["VpcConnector"],
"members":{
"VpcConnector":{"shape":"VpcConnector"}
}
},
"DisassociateCustomDomainRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -752,7 +857,22 @@
"DomainName":{
"type":"string",
"max":255,
"min":1
"min":1,
"pattern":"[A-Za-z0-9*.-]{1,255}"
},
"EgressConfiguration":{
"type":"structure",
"members":{
"EgressType":{"shape":"EgressType"},
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"}
}
},
"EgressType":{
"type":"string",
"enum":[
"DEFAULT",
"VPC"
]
},
"EncryptionConfiguration":{
"type":"structure",
Expand Down Expand Up @@ -811,7 +931,7 @@
"type":"structure",
"members":{
"RuntimeEnvironmentVariables":{"shape":"RuntimeEnvironmentVariables"},
"StartCommand":{"shape":"String"},
"StartCommand":{"shape":"StartCommand"},
"Port":{"shape":"String"}
}
},
Expand Down Expand Up @@ -959,6 +1079,21 @@
"Tags":{"shape":"TagList"}
}
},
"ListVpcConnectorsRequest":{
"type":"structure",
"members":{
"MaxResults":{"shape":"MaxResults"},
"NextToken":{"shape":"NextToken"}
}
},
"ListVpcConnectorsResponse":{
"type":"structure",
"required":["VpcConnectors"],
"members":{
"VpcConnectors":{"shape":"VpcConnectors"},
"NextToken":{"shape":"NextToken"}
}
},
"MaxResults":{
"type":"integer",
"max":100,
Expand All @@ -970,6 +1105,12 @@
"min":4,
"pattern":"2048|3072|4096|(2|3|4) GB"
},
"NetworkConfiguration":{
"type":"structure",
"members":{
"EgressConfiguration":{"shape":"EgressConfiguration"}
}
},
"NextToken":{
"type":"string",
"max":1024,
Expand Down Expand Up @@ -1076,10 +1217,16 @@
},
"RuntimeEnvironmentVariablesKey":{
"type":"string",
"max":51200,
"min":1,
"pattern":".*",
"sensitive":true
},
"RuntimeEnvironmentVariablesValue":{
"type":"string",
"max":51200,
"min":0,
"pattern":".*",
"sensitive":true
},
"Service":{
Expand All @@ -1094,7 +1241,8 @@
"Status",
"SourceConfiguration",
"InstanceConfiguration",
"AutoScalingConfigurationSummary"
"AutoScalingConfigurationSummary",
"NetworkConfiguration"
],
"members":{
"ServiceName":{"shape":"ServiceName"},
Expand All @@ -1109,7 +1257,8 @@
"InstanceConfiguration":{"shape":"InstanceConfiguration"},
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"AutoScalingConfigurationSummary":{"shape":"AutoScalingConfigurationSummary"}
"AutoScalingConfigurationSummary":{"shape":"AutoScalingConfigurationSummary"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"ServiceId":{
Expand Down Expand Up @@ -1189,6 +1338,7 @@
},
"StartCommand":{
"type":"string",
"pattern":"[^\\x0a\\x0d]+",
"sensitive":true
},
"StartDeploymentRequest":{
Expand All @@ -1211,6 +1361,10 @@
"min":0,
"pattern":".*"
},
"StringList":{
"type":"list",
"member":{"shape":"String"}
},
"Tag":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1285,7 +1439,8 @@
"SourceConfiguration":{"shape":"SourceConfiguration"},
"InstanceConfiguration":{"shape":"InstanceConfiguration"},
"AutoScalingConfigurationArn":{"shape":"AppRunnerResourceArn"},
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"}
"HealthCheckConfiguration":{"shape":"HealthCheckConfiguration"},
"NetworkConfiguration":{"shape":"NetworkConfiguration"}
}
},
"UpdateServiceResponse":{
Expand All @@ -1298,6 +1453,36 @@
"Service":{"shape":"Service"},
"OperationId":{"shape":"UUID"}
}
},
"VpcConnector":{
"type":"structure",
"members":{
"VpcConnectorName":{"shape":"VpcConnectorName"},
"VpcConnectorArn":{"shape":"AppRunnerResourceArn"},
"VpcConnectorRevision":{"shape":"Integer"},
"Subnets":{"shape":"StringList"},
"SecurityGroups":{"shape":"StringList"},
"Status":{"shape":"VpcConnectorStatus"},
"CreatedAt":{"shape":"Timestamp"},
"DeletedAt":{"shape":"Timestamp"}
}
},
"VpcConnectorName":{
"type":"string",
"max":40,
"min":4,
"pattern":"[A-Za-z0-9][A-Za-z0-9\\-_]{3,39}"
},
"VpcConnectorStatus":{
"type":"string",
"enum":[
"ACTIVE",
"INACTIVE"
]
},
"VpcConnectors":{
"type":"list",
"member":{"shape":"VpcConnector"}
}
}
}
Loading

0 comments on commit 94aca0a

Please sign in to comment.