From 8f3d9394f02133d9642b92107ef8863db15104fa Mon Sep 17 00:00:00 2001 From: harshitsrivastava97 Date: Wed, 20 Nov 2024 15:33:50 +0530 Subject: [PATCH] fix: [CDS-102292]: Added SessionTokenRef to AWS Manual Config (#599) --- harness/nextgen/docs/AwsManualConfigSpec.md | 1 + harness/nextgen/model_aws_manual_config_spec.go | 1 + 2 files changed, 2 insertions(+) diff --git a/harness/nextgen/docs/AwsManualConfigSpec.md b/harness/nextgen/docs/AwsManualConfigSpec.md index e22650c3..f6396b09 100644 --- a/harness/nextgen/docs/AwsManualConfigSpec.md +++ b/harness/nextgen/docs/AwsManualConfigSpec.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes **AccessKey** | **string** | | [optional] [default to null] **AccessKeyRef** | **string** | | [optional] [default to null] **SecretKeyRef** | **string** | | [default to null] +**SessionTokenRef** | **string** | | [optional] [default to null] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/harness/nextgen/model_aws_manual_config_spec.go b/harness/nextgen/model_aws_manual_config_spec.go index 5425c724..73771d11 100644 --- a/harness/nextgen/model_aws_manual_config_spec.go +++ b/harness/nextgen/model_aws_manual_config_spec.go @@ -14,4 +14,5 @@ type AwsManualConfigSpec struct { AccessKey string `json:"accessKey,omitempty"` AccessKeyRef string `json:"accessKeyRef,omitempty"` SecretKeyRef string `json:"secretKeyRef"` + SessionTokenRef string `json:"sessionTokenRef,omitempty"` }