Skip to content

Commit e7328bf

Browse files
Increase minimum length of Threat Actor IP 'userAgent' to 1.
1 parent 75a3fda commit e7328bf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

generator/ServiceModels/security-ir/security-ir-2018-05-10.api.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1696,7 +1696,7 @@
16961696
"UserAgent":{
16971697
"type":"string",
16981698
"max":500,
1699-
"min":0
1699+
"min":1
17001700
},
17011701
"ValidationException":{
17021702
"type":"structure",

generator/ServiceModels/security-ir/security-ir-2018-05-10.normal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,7 @@
22442244
"UserAgent":{
22452245
"type":"string",
22462246
"max":500,
2247-
"min":0
2247+
"min":1
22482248
},
22492249
"ValidationException":{
22502250
"type":"structure",

sdk/code-analysis/ServiceAnalysis/SecurityIR/Generated/PropertyValueRules.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@
429429
</property-value-rule>
430430
<property-value-rule>
431431
<property>Amazon.SecurityIR.Model.ThreatActorIp.UserAgent</property>
432-
<min>0</min>
432+
<min>1</min>
433433
<max>500</max>
434434
</property-value-rule>
435435
<property-value-rule>

sdk/src/Services/SecurityIR/Generated/Model/ThreatActorIp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ internal bool IsSetIpAddress()
5656
/// <summary>
5757
/// Gets and sets the property UserAgent.
5858
/// </summary>
59-
[AWSProperty(Min=0, Max=500)]
59+
[AWSProperty(Min=1, Max=500)]
6060
public string UserAgent
6161
{
6262
get { return this._userAgent; }

0 commit comments

Comments
 (0)