Skip to content

Commit 7e35fcd

Browse files
This release adds the RESOURCE_NOT_FOUND error code as a possible value in responses to the following operations: BatchGetStandardsControlAssociations, BatchUpdateStandardsControlAssociations, and BatchGetSecurityControls.
1 parent 4e51d0a commit 7e35fcd

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

generator/ServiceModels/securityhub/securityhub-2018-10-26.api.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12356,6 +12356,7 @@
1235612356
"INVALID_INPUT",
1235712357
"ACCESS_DENIED",
1235812358
"NOT_FOUND",
12359+
"RESOURCE_NOT_FOUND",
1235912360
"LIMIT_EXCEEDED"
1236012361
]
1236112362
},

generator/ServiceModels/securityhub/securityhub-2018-10-26.normal.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24009,6 +24009,7 @@
2400924009
"INVALID_INPUT",
2401024010
"ACCESS_DENIED",
2401124011
"NOT_FOUND",
24012+
"RESOURCE_NOT_FOUND",
2401224013
"LIMIT_EXCEEDED"
2401324014
]
2401424015
},

sdk/src/Services/SecurityHub/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3500,6 +3500,10 @@ public class UnprocessedErrorCode : ConstantClass
35003500
/// Constant NOT_FOUND for UnprocessedErrorCode
35013501
/// </summary>
35023502
public static readonly UnprocessedErrorCode NOT_FOUND = new UnprocessedErrorCode("NOT_FOUND");
3503+
/// <summary>
3504+
/// Constant RESOURCE_NOT_FOUND for UnprocessedErrorCode
3505+
/// </summary>
3506+
public static readonly UnprocessedErrorCode RESOURCE_NOT_FOUND = new UnprocessedErrorCode("RESOURCE_NOT_FOUND");
35033507

35043508
/// <summary>
35053509
/// This constant constructor does not need to be called if the constant

0 commit comments

Comments
 (0)