Skip to content

Commit 5cdfc30

Browse files
author
AWS SDK for Go v2 automation user
committed
Update API model
1 parent 90e7778 commit 5cdfc30

10 files changed

+2057
-865
lines changed

codegen/sdk-codegen/aws-models/api-gateway.json

+28-5
Original file line numberDiff line numberDiff line change
@@ -2688,7 +2688,7 @@
26882688
"endpointConfiguration": {
26892689
"target": "com.amazonaws.apigateway#EndpointConfiguration",
26902690
"traits": {
2691-
"smithy.api#documentation": "<p>The endpoint configuration of this DomainName showing the endpoint types of the domain name. </p>"
2691+
"smithy.api#documentation": "<p>The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name. </p>"
26922692
}
26932693
},
26942694
"tags": {
@@ -3030,7 +3030,7 @@
30303030
"endpointConfiguration": {
30313031
"target": "com.amazonaws.apigateway#EndpointConfiguration",
30323032
"traits": {
3033-
"smithy.api#documentation": "<p>The endpoint configuration of this RestApi showing the endpoint types of the API. </p>"
3033+
"smithy.api#documentation": "<p>The endpoint configuration of this RestApi showing the endpoint types and IP address types of the API. </p>"
30343034
}
30353035
},
30363036
"policy": {
@@ -5100,7 +5100,7 @@
51005100
"endpointConfiguration": {
51015101
"target": "com.amazonaws.apigateway#EndpointConfiguration",
51025102
"traits": {
5103-
"smithy.api#documentation": "<p>The endpoint configuration of this DomainName showing the endpoint types of the domain name. </p>"
5103+
"smithy.api#documentation": "<p>The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name. </p>"
51045104
}
51055105
},
51065106
"domainNameStatus": {
@@ -5285,6 +5285,12 @@
52855285
"smithy.api#documentation": "<p>A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). For an edge-optimized API and its custom domain name, the endpoint type is <code>\"EDGE\"</code>. For a regional API and its custom domain name, the endpoint type is <code>REGIONAL</code>. For a private API, the endpoint type is <code>PRIVATE</code>.</p>"
52865286
}
52875287
},
5288+
"ipAddressType": {
5289+
"target": "com.amazonaws.apigateway#IpAddressType",
5290+
"traits": {
5291+
"smithy.api#documentation": "<p>The IP address types that can invoke an API (RestApi) or a DomainName. Use <code>ipv4</code> to allow only IPv4 addresses to\n invoke an API or DomainName, or use <code>dualstack</code> to allow both IPv4 and IPv6 addresses to invoke an API or a DomainName. For the\n <code>PRIVATE</code> endpoint type, only <code>dualstack</code> is supported.</p>"
5292+
}
5293+
},
52885294
"vpcEndpointIds": {
52895295
"target": "com.amazonaws.apigateway#ListOfString",
52905296
"traits": {
@@ -5293,7 +5299,7 @@
52935299
}
52945300
},
52955301
"traits": {
5296-
"smithy.api#documentation": "<p>The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has. </p>"
5302+
"smithy.api#documentation": "<p>The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has and the IP address types that can invoke it. </p>"
52975303
}
52985304
},
52995305
"com.amazonaws.apigateway#EndpointType": {
@@ -9078,6 +9084,23 @@
90789084
"smithy.api#documentation": "<p>The integration type. The valid value is <code>HTTP</code> for integrating an API method with an HTTP backend; <code>AWS</code> with any Amazon Web Services service endpoints; <code>MOCK</code> for testing without actually invoking the backend; <code>HTTP_PROXY</code> for integrating with the HTTP proxy integration; <code>AWS_PROXY</code> for integrating with the Lambda proxy integration. </p>"
90799085
}
90809086
},
9087+
"com.amazonaws.apigateway#IpAddressType": {
9088+
"type": "enum",
9089+
"members": {
9090+
"ipv4": {
9091+
"target": "smithy.api#Unit",
9092+
"traits": {
9093+
"smithy.api#enumValue": "ipv4"
9094+
}
9095+
},
9096+
"dualstack": {
9097+
"target": "smithy.api#Unit",
9098+
"traits": {
9099+
"smithy.api#enumValue": "dualstack"
9100+
}
9101+
}
9102+
}
9103+
},
90819104
"com.amazonaws.apigateway#LimitExceededException": {
90829105
"type": "structure",
90839106
"members": {
@@ -10737,7 +10760,7 @@
1073710760
"endpointConfiguration": {
1073810761
"target": "com.amazonaws.apigateway#EndpointConfiguration",
1073910762
"traits": {
10740-
"smithy.api#documentation": "<p>The endpoint configuration of this RestApi showing the endpoint types of the API. </p>"
10763+
"smithy.api#documentation": "<p>The endpoint configuration of this RestApi showing the endpoint types and IP address types of the API. </p>"
1074110764
}
1074210765
},
1074310766
"policy": {

codegen/sdk-codegen/aws-models/apigatewayv2.json

+83
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@
139139
"smithy.api#jsonName": "importInfo"
140140
}
141141
},
142+
"IpAddressType": {
143+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
144+
"traits": {
145+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
146+
"smithy.api#jsonName": "ipAddressType"
147+
}
148+
},
142149
"Name": {
143150
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
144151
"traits": {
@@ -1876,6 +1883,13 @@
18761883
"smithy.api#jsonName": "disableExecuteApiEndpoint"
18771884
}
18781885
},
1886+
"IpAddressType": {
1887+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
1888+
"traits": {
1889+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
1890+
"smithy.api#jsonName": "ipAddressType"
1891+
}
1892+
},
18791893
"Name": {
18801894
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
18811895
"traits": {
@@ -2008,6 +2022,13 @@
20082022
"smithy.api#jsonName": "importInfo"
20092023
}
20102024
},
2025+
"IpAddressType": {
2026+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
2027+
"traits": {
2028+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
2029+
"smithy.api#jsonName": "ipAddressType"
2030+
}
2031+
},
20112032
"Name": {
20122033
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
20132034
"traits": {
@@ -4767,6 +4788,13 @@
47674788
"smithy.api#jsonName": "hostedZoneId"
47684789
}
47694790
},
4791+
"IpAddressType": {
4792+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
4793+
"traits": {
4794+
"smithy.api#documentation": "<p>The IP address types that can invoke the domain name. Use ipv4 to allow only IPv4 addresses to invoke your domain name, or use dualstack to allow both IPv4 and IPv6 addresses to invoke your domain name.</p>",
4795+
"smithy.api#jsonName": "ipAddressType"
4796+
}
4797+
},
47704798
"SecurityPolicy": {
47714799
"target": "com.amazonaws.apigatewayv2#SecurityPolicy",
47724800
"traits": {
@@ -5230,6 +5258,13 @@
52305258
"smithy.api#jsonName": "importInfo"
52315259
}
52325260
},
5261+
"IpAddressType": {
5262+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
5263+
"traits": {
5264+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
5265+
"smithy.api#jsonName": "ipAddressType"
5266+
}
5267+
},
52335268
"Name": {
52345269
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
52355270
"traits": {
@@ -7650,6 +7685,13 @@
76507685
"smithy.api#jsonName": "importInfo"
76517686
}
76527687
},
7688+
"IpAddressType": {
7689+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
7690+
"traits": {
7691+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
7692+
"smithy.api#jsonName": "ipAddressType"
7693+
}
7694+
},
76537695
"Name": {
76547696
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
76557697
"traits": {
@@ -7977,6 +8019,26 @@
79778019
"smithy.api#documentation": "<p>Represents an API method integration type.</p>"
79788020
}
79798021
},
8022+
"com.amazonaws.apigatewayv2#IpAddressType": {
8023+
"type": "enum",
8024+
"members": {
8025+
"ipv4": {
8026+
"target": "smithy.api#Unit",
8027+
"traits": {
8028+
"smithy.api#enumValue": "ipv4"
8029+
}
8030+
},
8031+
"dualstack": {
8032+
"target": "smithy.api#Unit",
8033+
"traits": {
8034+
"smithy.api#enumValue": "dualstack"
8035+
}
8036+
}
8037+
},
8038+
"traits": {
8039+
"smithy.api#documentation": "<p>The IP address types that can invoke your API or domain name.</p>"
8040+
}
8041+
},
79808042
"com.amazonaws.apigatewayv2#JWTConfiguration": {
79818043
"type": "structure",
79828044
"members": {
@@ -8350,6 +8412,13 @@
83508412
"smithy.api#jsonName": "importInfo"
83518413
}
83528414
},
8415+
"IpAddressType": {
8416+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
8417+
"traits": {
8418+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
8419+
"smithy.api#jsonName": "ipAddressType"
8420+
}
8421+
},
83538422
"Name": {
83548423
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
83558424
"traits": {
@@ -9302,6 +9371,13 @@
93029371
"smithy.api#jsonName": "disableExecuteApiEndpoint"
93039372
}
93049373
},
9374+
"IpAddressType": {
9375+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
9376+
"traits": {
9377+
"smithy.api#documentation": "<p>The IP address types that can invoke your API or domain name.</p>",
9378+
"smithy.api#jsonName": "ipAddressType"
9379+
}
9380+
},
93059381
"Name": {
93069382
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
93079383
"traits": {
@@ -9416,6 +9492,13 @@
94169492
"smithy.api#jsonName": "importInfo"
94179493
}
94189494
},
9495+
"IpAddressType": {
9496+
"target": "com.amazonaws.apigatewayv2#IpAddressType",
9497+
"traits": {
9498+
"smithy.api#documentation": "<p>The IP address types that can invoke the API.</p>",
9499+
"smithy.api#jsonName": "ipAddressType"
9500+
}
9501+
},
94199502
"Name": {
94209503
"target": "com.amazonaws.apigatewayv2#StringWithLengthBetween1And128",
94219504
"traits": {

codegen/sdk-codegen/aws-models/bedrock-runtime.json

+9
Original file line numberDiff line numberDiff line change
@@ -2301,6 +2301,9 @@
23012301
"smithy.api#documentation": "<p>An assessment of a content policy for a guardrail.</p>"
23022302
}
23032303
},
2304+
"com.amazonaws.bedrockruntime#GuardrailContentPolicyImageUnitsProcessed": {
2305+
"type": "integer"
2306+
},
23042307
"com.amazonaws.bedrockruntime#GuardrailContentPolicyUnitsProcessed": {
23052308
"type": "integer"
23062309
},
@@ -3386,6 +3389,12 @@
33863389
"smithy.api#documentation": "<p>The contextual grounding policy units processed by the guardrail.</p>",
33873390
"smithy.api#required": {}
33883391
}
3392+
},
3393+
"contentPolicyImageUnits": {
3394+
"target": "com.amazonaws.bedrockruntime#GuardrailContentPolicyImageUnitsProcessed",
3395+
"traits": {
3396+
"smithy.api#documentation": "<p>The content policy image units processed by the guardrail.</p>"
3397+
}
33893398
}
33903399
},
33913400
"traits": {

codegen/sdk-codegen/aws-models/codebuild.json

+6
Original file line numberDiff line numberDiff line change
@@ -6504,6 +6504,12 @@
65046504
"traits": {
65056505
"smithy.api#documentation": "<p>An array of strings that specify the local cache modes. You can use one or more local\n cache modes at the same time. This is only used for <code>LOCAL</code> cache\n types.</p>\n <p>Possible values are:</p>\n <dl>\n <dt>LOCAL_SOURCE_CACHE</dt>\n <dd>\n <p>Caches Git metadata for primary and secondary sources. After the cache is\n created, subsequent builds pull only the change between commits. This mode\n is a good choice for projects with a clean working directory and a source\n that is a large Git repository. If you choose this option and your project\n does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the\n option is ignored. </p>\n </dd>\n <dt>LOCAL_DOCKER_LAYER_CACHE</dt>\n <dd>\n <p>Caches existing Docker layers. This mode is a good choice for projects\n that build or pull large Docker images. It can prevent the performance\n issues caused by pulling large Docker images down from the network. </p>\n <note>\n <ul>\n <li>\n <p>You can use a Docker layer cache in the Linux environment\n only. </p>\n </li>\n <li>\n <p>The <code>privileged</code> flag must be set so that your\n project has the required Docker permissions. </p>\n </li>\n <li>\n <p>You should consider the security implications before you use a\n Docker layer cache. </p>\n </li>\n </ul>\n </note>\n </dd>\n <dt>LOCAL_CUSTOM_CACHE</dt>\n <dd>\n <p>Caches directories you specify in the buildspec file. This mode is a good\n choice if your build scenario is not suited to one of the other three local\n cache modes. If you use a custom cache: </p>\n <ul>\n <li>\n <p>Only directories can be specified for caching. You cannot specify\n individual files. </p>\n </li>\n <li>\n <p>Symlinks are used to reference cached directories. </p>\n </li>\n <li>\n <p>Cached directories are linked to your build before it downloads\n its project sources. Cached items are overridden if a source item\n has the same name. Directories are specified using cache paths in\n the buildspec file. </p>\n </li>\n </ul>\n </dd>\n </dl>"
65066506
}
6507+
},
6508+
"cacheNamespace": {
6509+
"target": "com.amazonaws.codebuild#String",
6510+
"traits": {
6511+
"smithy.api#documentation": "<p>Defines the scope of the cache. You can use this namespace to share a cache across \n multiple projects. For more information, see <a href=\"https://docs.aws.amazon.com/codebuild/latest/userguide/caching-s3.html#caching-s3-sharing\">Cache sharing \n between projects</a> in the <i>CodeBuild User Guide</i>.</p>"
6512+
}
65076513
}
65086514
},
65096515
"traits": {

0 commit comments

Comments
 (0)