Skip to content

Commit 205c40b

Browse files
author
AWS SDK for Go v2 automation user
committed
Update API model
1 parent f0d143d commit 205c40b

File tree

5 files changed

+267
-10
lines changed

5 files changed

+267
-10
lines changed

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

+6
Original file line numberDiff line numberDiff line change
@@ -1035,6 +1035,12 @@
10351035
"traits": {
10361036
"smithy.api#documentation": "<p>Specifies if session debugging is enabled for this batch build. For more information, see\n <a href=\"https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html\">Viewing a running build in Session Manager</a>. Batch session debugging is not supported for matrix batch builds.</p>"
10371037
}
1038+
},
1039+
"reportArns": {
1040+
"target": "com.amazonaws.codebuild#BuildReportArns",
1041+
"traits": {
1042+
"smithy.api#documentation": "<p>An array that contains the ARNs of reports created by merging reports from builds associated with this batch build.</p>"
1043+
}
10381044
}
10391045
},
10401046
"traits": {

codegen/sdk-codegen/aws-models/device-farm.json

+66
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,12 @@
934934
"traits": {
935935
"smithy.api#documentation": "<p>An array of ARNs included in the VPC endpoint configuration.</p>"
936936
}
937+
},
938+
"deviceProxy": {
939+
"target": "com.amazonaws.devicefarm#DeviceProxy",
940+
"traits": {
941+
"smithy.api#documentation": "<p>The device proxy to be configured on the device for the remote access session.</p>"
942+
}
937943
}
938944
},
939945
"traits": {
@@ -3334,6 +3340,48 @@
33343340
"target": "com.amazonaws.devicefarm#DevicePool"
33353341
}
33363342
},
3343+
"com.amazonaws.devicefarm#DeviceProxy": {
3344+
"type": "structure",
3345+
"members": {
3346+
"host": {
3347+
"target": "com.amazonaws.devicefarm#DeviceProxyHost",
3348+
"traits": {
3349+
"smithy.api#documentation": "<p>Hostname or IPv4 address of the proxy.</p>",
3350+
"smithy.api#required": {}
3351+
}
3352+
},
3353+
"port": {
3354+
"target": "com.amazonaws.devicefarm#DeviceProxyPort",
3355+
"traits": {
3356+
"smithy.api#default": 3128,
3357+
"smithy.api#documentation": "<p>The port number on which the http/s proxy is listening.</p>",
3358+
"smithy.api#required": {}
3359+
}
3360+
}
3361+
},
3362+
"traits": {
3363+
"smithy.api#documentation": "<p>Represents the http/s proxy configuration that will be applied to a device during a run.</p>"
3364+
}
3365+
},
3366+
"com.amazonaws.devicefarm#DeviceProxyHost": {
3367+
"type": "string",
3368+
"traits": {
3369+
"smithy.api#length": {
3370+
"min": 1,
3371+
"max": 255
3372+
},
3373+
"smithy.api#pattern": "^([a-zA-Z0-9])([a-zA-Z0-9-.]+)([a-zA-Z0-9])$"
3374+
}
3375+
},
3376+
"com.amazonaws.devicefarm#DeviceProxyPort": {
3377+
"type": "integer",
3378+
"traits": {
3379+
"smithy.api#range": {
3380+
"min": 1,
3381+
"max": 65535
3382+
}
3383+
}
3384+
},
33373385
"com.amazonaws.devicefarm#DeviceSelectionConfiguration": {
33383386
"type": "structure",
33393387
"members": {
@@ -7991,6 +8039,12 @@
79918039
"traits": {
79928040
"smithy.api#documentation": "<p>The VPC security groups and subnets that are attached to a project.</p>"
79938041
}
8042+
},
8043+
"deviceProxy": {
8044+
"target": "com.amazonaws.devicefarm#DeviceProxy",
8045+
"traits": {
8046+
"smithy.api#documentation": "<p>The device proxy configured for the remote access session.</p>"
8047+
}
79948048
}
79958049
},
79968050
"traits": {
@@ -8304,6 +8358,12 @@
83048358
"smithy.api#documentation": "<p>The network profile being used for a test run.</p>"
83058359
}
83068360
},
8361+
"deviceProxy": {
8362+
"target": "com.amazonaws.devicefarm#DeviceProxy",
8363+
"traits": {
8364+
"smithy.api#documentation": "<p>The device proxy configured for the devices in the run.</p>"
8365+
}
8366+
},
83078367
"parsingResultUrl": {
83088368
"target": "com.amazonaws.devicefarm#String",
83098369
"traits": {
@@ -8630,6 +8690,12 @@
86308690
"smithy.api#documentation": "<p>An array of ARNs for your VPC endpoint configurations.</p>"
86318691
}
86328692
},
8693+
"deviceProxy": {
8694+
"target": "com.amazonaws.devicefarm#DeviceProxy",
8695+
"traits": {
8696+
"smithy.api#documentation": "<p>The device proxy to be configured on the device for the run.</p>"
8697+
}
8698+
},
86338699
"customerArtifactPaths": {
86348700
"target": "com.amazonaws.devicefarm#CustomerArtifactPaths",
86358701
"traits": {

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

+9-3
Original file line numberDiff line numberDiff line change
@@ -14697,6 +14697,12 @@
1469714697
"smithy.api#xmlName": "TagSpecification"
1469814698
}
1469914699
},
14700+
"SnapshotCopyCompletionDurationMinutes": {
14701+
"target": "com.amazonaws.ec2#Long",
14702+
"traits": {
14703+
"smithy.api#documentation": "<p>Specify a completion duration, in 15 minute increments, to initiate a time-based \n AMI copy. The specified completion duration applies to each of the snapshots associated \n with the AMI. Each snapshot associated with the AMI will be completed within the \n specified completion duration, regardless of their size.</p>\n <p>If you do not specify a value, the AMI copy operation is completed on a best-effort \n basis.</p>\n <p>For more information, see <a href=\"https://docs.aws.amazon.com/ebs/latest/userguide/time-based-copies.html\">\n Time-based copies</a>.</p>"
14704+
}
14705+
},
1470014706
"DryRun": {
1470114707
"target": "com.amazonaws.ec2#Boolean",
1470214708
"traits": {
@@ -21762,7 +21768,7 @@
2176221768
"SubnetIds": {
2176321769
"target": "com.amazonaws.ec2#CreateVerifiedAccessEndpointSubnetIdList",
2176421770
"traits": {
21765-
"smithy.api#documentation": "<p>The IDs of the subnets.</p>",
21771+
"smithy.api#documentation": "<p>The IDs of the subnets. You can specify only one subnet per Availability Zone.</p>",
2176621772
"smithy.api#xmlName": "SubnetId"
2176721773
}
2176821774
},
@@ -21849,7 +21855,7 @@
2184921855
"SubnetIds": {
2185021856
"target": "com.amazonaws.ec2#CreateVerifiedAccessEndpointSubnetIdList",
2185121857
"traits": {
21852-
"smithy.api#documentation": "<p>The IDs of the subnets.</p>",
21858+
"smithy.api#documentation": "<p>The IDs of the subnets. You can specify only one subnet per Availability Zone.</p>",
2185321859
"smithy.api#xmlName": "SubnetId"
2185421860
}
2185521861
}
@@ -99857,7 +99863,7 @@
9985799863
"target": "com.amazonaws.ec2#String",
9985899864
"traits": {
9985999865
"aws.protocols#ec2QueryName": "TransitGatewayId",
99860-
"smithy.api#documentation": "<note>\n <p>This parameter is in preview and may not be available for your account.</p>\n </note>\n <p>The ID of the transit gateway (if applicable).</p>",
99866+
"smithy.api#documentation": "<p>The ID of the transit gateway (if applicable).</p>",
9986199867
"smithy.api#xmlName": "transitGatewayId"
9986299868
}
9986399869
}

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

+41
Original file line numberDiff line numberDiff line change
@@ -3346,6 +3346,12 @@
33463346
"smithy.api#default": false,
33473347
"smithy.api#documentation": "<p>True if this audit check is enabled for this account.</p>"
33483348
}
3349+
},
3350+
"configuration": {
3351+
"target": "com.amazonaws.iot#CheckCustomConfiguration",
3352+
"traits": {
3353+
"smithy.api#documentation": "<p>A structure containing the configName and corresponding configValue for configuring audit checks.</p>"
3354+
}
33493355
}
33503356
},
33513357
"traits": {
@@ -5943,6 +5949,15 @@
59435949
"com.amazonaws.iot#CheckCompliant": {
59445950
"type": "boolean"
59455951
},
5952+
"com.amazonaws.iot#CheckCustomConfiguration": {
5953+
"type": "map",
5954+
"key": {
5955+
"target": "com.amazonaws.iot#ConfigName"
5956+
},
5957+
"value": {
5958+
"target": "com.amazonaws.iot#ConfigValue"
5959+
}
5960+
},
59465961
"com.amazonaws.iot#Cidr": {
59475962
"type": "string",
59485963
"traits": {
@@ -6767,6 +6782,32 @@
67676782
}
67686783
}
67696784
},
6785+
"com.amazonaws.iot#ConfigName": {
6786+
"type": "enum",
6787+
"members": {
6788+
"CERT_AGE_THRESHOLD_IN_DAYS": {
6789+
"target": "smithy.api#Unit",
6790+
"traits": {
6791+
"smithy.api#enumValue": "CERT_AGE_THRESHOLD_IN_DAYS"
6792+
}
6793+
},
6794+
"CERT_EXPIRATION_THRESHOLD_IN_DAYS": {
6795+
"target": "smithy.api#Unit",
6796+
"traits": {
6797+
"smithy.api#enumValue": "CERT_EXPIRATION_THRESHOLD_IN_DAYS"
6798+
}
6799+
}
6800+
}
6801+
},
6802+
"com.amazonaws.iot#ConfigValue": {
6803+
"type": "string",
6804+
"traits": {
6805+
"smithy.api#length": {
6806+
"min": 1,
6807+
"max": 64
6808+
}
6809+
}
6810+
},
67706811
"com.amazonaws.iot#Configuration": {
67716812
"type": "structure",
67726813
"members": {

0 commit comments

Comments
 (0)