Skip to content

Commit d132834

Browse files
committed
fixing some validation errors
1 parent 778fa39 commit d132834

4 files changed

Lines changed: 21 additions & 16 deletions

File tree

.doc_gen/validation.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,12 @@ allow_list:
216216
- "StopQueryWorkloadInsightsTopContributors"
217217
- "com/location/latest/APIReference/Welcome"
218218
- "1234567890123456789012345678901234567890"
219+
- "0B0B0C1912130F141D1A1F1E1D1A1C1C20242E27"
220+
- "FFC0001108000A000A03012200021101031101FF"
221+
- "323C2E333432FFDB0043010909090C0B0C180D0D"
222+
- "20222C231C1C2837292C30313434341F27393D38"
223+
- "0FFC400140101000000000000000000000000000"
224+
- "0000000000000000000000000000000000000000"
219225
- "LargeQuery/Actions/CloudWatchLogsWrapper"
220226
sample_files:
221227
- "README.md"

sap-abap/services/emr/#awsex#cl_emr_actions.clas.testclasses.abap

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ CLASS ltc_awsex_cl_emr_actions DEFINITION FOR TESTING DURATION SHORT RISK LEVEL
2424
CLASS-DATA av_emr_role_arn TYPE /aws1/emrxmlstring.
2525
CLASS-DATA av_ec2_role_arn TYPE /aws1/emrxmlstring.
2626
CLASS-DATA av_default_vpc_id TYPE /aws1/ec2string.
27-
CLASS-DATA av_master_sg_id TYPE /aws1/emrxmlstringmaxlen256.
28-
CLASS-DATA av_slave_sg_id TYPE /aws1/emrxmlstringmaxlen256.
27+
CLASS-DATA av_primary_sg_id TYPE /aws1/emrxmlstringmaxlen256.
28+
CLASS-DATA av_secondary_sg_id TYPE /aws1/emrxmlstringmaxlen256.
2929

3030
" Single combined test method to ensure execution order
3131
METHODS test_emr_operations FOR TESTING RAISING /aws1/cx_rt_generic.
@@ -96,9 +96,9 @@ CLASS ltc_awsex_cl_emr_actions IMPLEMENTATION.
9696
ENDIF.
9797

9898
" Create security groups
99-
av_master_sg_id = ao_ec2->createsecuritygroup(
100-
iv_groupname = |emr-master-sg-{ lv_timestamp }|
101-
iv_description = 'EMR Master Security Group'
99+
av_primary_sg_id = ao_ec2->createsecuritygroup(
100+
iv_groupname = |emr-primary-sg-{ lv_timestamp }|
101+
iv_description = 'EMR primary Security Group'
102102
iv_vpcid = av_default_vpc_id
103103
it_tagspecifications = VALUE /aws1/cl_ec2tagspecification=>tt_tagspecificationlist(
104104
( NEW /aws1/cl_ec2tagspecification(
@@ -111,9 +111,9 @@ CLASS ltc_awsex_cl_emr_actions IMPLEMENTATION.
111111
)
112112
)->get_groupid( ).
113113

114-
av_slave_sg_id = ao_ec2->createsecuritygroup(
115-
iv_groupname = |emr-slave-sg-{ lv_timestamp }|
116-
iv_description = 'EMR Slave Security Group'
114+
av_secondary_sg_id = ao_ec2->createsecuritygroup(
115+
iv_groupname = |emr-secondary-sg-{ lv_timestamp }|
116+
iv_description = 'EMR secondary Security Group'
117117
iv_vpcid = av_default_vpc_id
118118
it_tagspecifications = VALUE /aws1/cl_ec2tagspecification=>tt_tagspecificationlist(
119119
( NEW /aws1/cl_ec2tagspecification(
@@ -221,17 +221,17 @@ CLASS ltc_awsex_cl_emr_actions IMPLEMENTATION.
221221
" /awsex/cl_utils=>cleanup_bucket( io_s3 = ao_s3 iv_bucket = av_log_bucket ).
222222

223223
" Clean up security groups
224-
IF av_master_sg_id IS NOT INITIAL.
224+
IF av_primary_sg_id IS NOT INITIAL.
225225
TRY.
226-
ao_ec2->deletesecuritygroup( iv_groupid = av_master_sg_id ).
226+
ao_ec2->deletesecuritygroup( iv_groupid = av_primary_sg_id ).
227227
CATCH /aws1/cx_rt_generic.
228228
" Ignore errors during cleanup
229229
ENDTRY.
230230
ENDIF.
231231

232-
IF av_slave_sg_id IS NOT INITIAL.
232+
IF av_secondary_sg_id IS NOT INITIAL.
233233
TRY.
234-
ao_ec2->deletesecuritygroup( iv_groupid = av_slave_sg_id ).
234+
ao_ec2->deletesecuritygroup( iv_groupid = av_secondary_sg_id ).
235235
CATCH /aws1/cx_rt_generic.
236236
" Ignore errors during cleanup
237237
ENDTRY.
@@ -314,8 +314,8 @@ CLASS ltc_awsex_cl_emr_actions IMPLEMENTATION.
314314
it_applications = lt_applications
315315
iv_job_flow_role = av_ec2_role_name
316316
iv_service_role = av_emr_role_arn
317-
iv_master_sec_grp = av_master_sg_id
318-
iv_slave_sec_grp = av_slave_sg_id
317+
iv_primary_sec_grp = av_primary_sg_id
318+
iv_secondary_sec_grp = av_secondary_sg_id
319319
it_steps = lt_steps
320320
).
321321

sap-abap/services/rek/#awsex#cl_rek_actions.clas.testclasses.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2-
" Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
32
" SPDX-License-Identifier: Apache-2.0
3+
44
CLASS ltc_awsex_cl_rek_actions DEFINITION DEFERRED.
55
CLASS /awsex/cl_rek_actions DEFINITION LOCAL FRIENDS ltc_awsex_cl_rek_actions.
66

sap-abap/services/ssm/#awsex#cl_ssm_actions.clas.testclasses.abap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
" Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
32
" SPDX-License-Identifier: Apache-2.0
43

0 commit comments

Comments
 (0)