Skip to content

Commit b0bce8c

Browse files
authored
Merge branch 'main' into hold-new-service-smoke-tests
2 parents 5b780db + 450a7b4 commit b0bce8c

File tree

85 files changed

+7006
-954
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+7006
-954
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.647
1+
1.11.648

generated/src/aws-cpp-sdk-ce/include/aws/ce/model/CostDriver.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ namespace Model
4646
* <p>The category or classification of the cost driver.</p> <p>Values include:
4747
* BUNDLED_DISCOUNT, CREDIT, OUT_OF_CYCLE_CHARGE, REFUND,
4848
* RECURRING_RESERVATION_FEE, RESERVATION_USAGE, RI_VOLUME_DISCOUNT,
49-
* SAVINGS_PLAN_USAGE, SAVINGS_PLAN_NEGATION, SAVINGS_PLAN_RECURRING_FEE,
50-
* SUPPORT_FEE, TAX, UPFRONT_RESERVATION_FEE, USAGE_CHANGE, COMMITMENT</p>
49+
* SAVINGS_PLAN_USAGE, SAVINGS_PLAN_RECURRING_FEE, SUPPORT_FEE, TAX,
50+
* UPFRONT_RESERVATION_FEE, USAGE_CHANGE, COMMITMENT</p>
5151
*/
5252
inline const Aws::String& GetType() const { return m_type; }
5353
inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }

generated/src/aws-cpp-sdk-ce/include/aws/ce/model/TagResourceRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ namespace Model
6363
* values can only contain alphanumeric characters, spaces, and any of the
6464
* following: <code>_.:/=+@-</code> </p> </li> <li> <p>Keys and values are case
6565
* sensitive</p> </li> <li> <p>Keys and values are trimmed for any leading or
66-
* trailing whitespaces</p> </li> <li> <p>Don���t use <code>aws:</code> as a prefix
66+
* trailing whitespaces</p> </li> <li> <p>Dont use <code>aws:</code> as a prefix
6767
* for your keys. This prefix is reserved for Amazon Web Services use</p> </li>
6868
* </ul>
6969
*/

generated/src/aws-cpp-sdk-ce/source/CostExplorerEndpointRules.cpp

Lines changed: 115 additions & 98 deletions
Large diffs are not rendered by default.

generated/src/aws-cpp-sdk-medical-imaging/include/aws/medical-imaging/model/CreateDatastoreRequest.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ namespace Model
8686
template<typename KmsKeyArnT = Aws::String>
8787
CreateDatastoreRequest& WithKmsKeyArn(KmsKeyArnT&& value) { SetKmsKeyArn(std::forward<KmsKeyArnT>(value)); return *this;}
8888
///@}
89+
90+
///@{
91+
/**
92+
* <p>The ARN of the authorizer's Lambda function.</p>
93+
*/
94+
inline const Aws::String& GetLambdaAuthorizerArn() const { return m_lambdaAuthorizerArn; }
95+
inline bool LambdaAuthorizerArnHasBeenSet() const { return m_lambdaAuthorizerArnHasBeenSet; }
96+
template<typename LambdaAuthorizerArnT = Aws::String>
97+
void SetLambdaAuthorizerArn(LambdaAuthorizerArnT&& value) { m_lambdaAuthorizerArnHasBeenSet = true; m_lambdaAuthorizerArn = std::forward<LambdaAuthorizerArnT>(value); }
98+
template<typename LambdaAuthorizerArnT = Aws::String>
99+
CreateDatastoreRequest& WithLambdaAuthorizerArn(LambdaAuthorizerArnT&& value) { SetLambdaAuthorizerArn(std::forward<LambdaAuthorizerArnT>(value)); return *this;}
100+
///@}
89101
private:
90102

91103
Aws::String m_datastoreName;
@@ -99,6 +111,9 @@ namespace Model
99111

100112
Aws::String m_kmsKeyArn;
101113
bool m_kmsKeyArnHasBeenSet = false;
114+
115+
Aws::String m_lambdaAuthorizerArn;
116+
bool m_lambdaAuthorizerArnHasBeenSet = false;
102117
};
103118

104119
} // namespace Model

generated/src/aws-cpp-sdk-medical-imaging/include/aws/medical-imaging/model/DatastoreProperties.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ namespace Model
8686
DatastoreProperties& WithKmsKeyArn(KmsKeyArnT&& value) { SetKmsKeyArn(std::forward<KmsKeyArnT>(value)); return *this;}
8787
///@}
8888

89+
///@{
90+
/**
91+
* <p>The ARN of the authorizer's Lambda function.</p>
92+
*/
93+
inline const Aws::String& GetLambdaAuthorizerArn() const { return m_lambdaAuthorizerArn; }
94+
inline bool LambdaAuthorizerArnHasBeenSet() const { return m_lambdaAuthorizerArnHasBeenSet; }
95+
template<typename LambdaAuthorizerArnT = Aws::String>
96+
void SetLambdaAuthorizerArn(LambdaAuthorizerArnT&& value) { m_lambdaAuthorizerArnHasBeenSet = true; m_lambdaAuthorizerArn = std::forward<LambdaAuthorizerArnT>(value); }
97+
template<typename LambdaAuthorizerArnT = Aws::String>
98+
DatastoreProperties& WithLambdaAuthorizerArn(LambdaAuthorizerArnT&& value) { SetLambdaAuthorizerArn(std::forward<LambdaAuthorizerArnT>(value)); return *this;}
99+
///@}
100+
89101
///@{
90102
/**
91103
* <p>The Amazon Resource Name (ARN) for the data store.</p>
@@ -135,6 +147,9 @@ namespace Model
135147
Aws::String m_kmsKeyArn;
136148
bool m_kmsKeyArnHasBeenSet = false;
137149

150+
Aws::String m_lambdaAuthorizerArn;
151+
bool m_lambdaAuthorizerArnHasBeenSet = false;
152+
138153
Aws::String m_datastoreArn;
139154
bool m_datastoreArnHasBeenSet = false;
140155

generated/src/aws-cpp-sdk-medical-imaging/include/aws/medical-imaging/model/ImageSetWorkflowStatus.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ namespace Model
2525
UPDATED,
2626
UPDATE_FAILED,
2727
DELETING,
28-
DELETED
28+
DELETED,
29+
IMPORTING,
30+
IMPORTED,
31+
IMPORT_FAILED
2932
};
3033

3134
namespace ImageSetWorkflowStatusMapper

generated/src/aws-cpp-sdk-medical-imaging/source/model/CreateDatastoreRequest.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ Aws::String CreateDatastoreRequest::SerializePayload() const
4545

4646
}
4747

48+
if(m_lambdaAuthorizerArnHasBeenSet)
49+
{
50+
payload.WithString("lambdaAuthorizerArn", m_lambdaAuthorizerArn);
51+
52+
}
53+
4854
return payload.View().WriteReadable();
4955
}
5056

generated/src/aws-cpp-sdk-medical-imaging/source/model/DatastoreProperties.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ DatastoreProperties& DatastoreProperties::operator =(JsonView jsonValue)
4545
m_kmsKeyArn = jsonValue.GetString("kmsKeyArn");
4646
m_kmsKeyArnHasBeenSet = true;
4747
}
48+
if(jsonValue.ValueExists("lambdaAuthorizerArn"))
49+
{
50+
m_lambdaAuthorizerArn = jsonValue.GetString("lambdaAuthorizerArn");
51+
m_lambdaAuthorizerArnHasBeenSet = true;
52+
}
4853
if(jsonValue.ValueExists("datastoreArn"))
4954
{
5055
m_datastoreArn = jsonValue.GetString("datastoreArn");
@@ -90,6 +95,12 @@ JsonValue DatastoreProperties::Jsonize() const
9095

9196
}
9297

98+
if(m_lambdaAuthorizerArnHasBeenSet)
99+
{
100+
payload.WithString("lambdaAuthorizerArn", m_lambdaAuthorizerArn);
101+
102+
}
103+
93104
if(m_datastoreArnHasBeenSet)
94105
{
95106
payload.WithString("datastoreArn", m_datastoreArn);

generated/src/aws-cpp-sdk-medical-imaging/source/model/ImageSetWorkflowStatus.cpp

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ namespace Aws
3030
static const int UPDATE_FAILED_HASH = HashingUtils::HashString("UPDATE_FAILED");
3131
static const int DELETING_HASH = HashingUtils::HashString("DELETING");
3232
static const int DELETED_HASH = HashingUtils::HashString("DELETED");
33+
static const int IMPORTING_HASH = HashingUtils::HashString("IMPORTING");
34+
static const int IMPORTED_HASH = HashingUtils::HashString("IMPORTED");
35+
static const int IMPORT_FAILED_HASH = HashingUtils::HashString("IMPORT_FAILED");
3336

3437

3538
ImageSetWorkflowStatus GetImageSetWorkflowStatusForName(const Aws::String& name)
@@ -75,6 +78,18 @@ namespace Aws
7578
{
7679
return ImageSetWorkflowStatus::DELETED;
7780
}
81+
else if (hashCode == IMPORTING_HASH)
82+
{
83+
return ImageSetWorkflowStatus::IMPORTING;
84+
}
85+
else if (hashCode == IMPORTED_HASH)
86+
{
87+
return ImageSetWorkflowStatus::IMPORTED;
88+
}
89+
else if (hashCode == IMPORT_FAILED_HASH)
90+
{
91+
return ImageSetWorkflowStatus::IMPORT_FAILED;
92+
}
7893
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
7994
if(overflowContainer)
8095
{
@@ -111,6 +126,12 @@ namespace Aws
111126
return "DELETING";
112127
case ImageSetWorkflowStatus::DELETED:
113128
return "DELETED";
129+
case ImageSetWorkflowStatus::IMPORTING:
130+
return "IMPORTING";
131+
case ImageSetWorkflowStatus::IMPORTED:
132+
return "IMPORTED";
133+
case ImageSetWorkflowStatus::IMPORT_FAILED:
134+
return "IMPORT_FAILED";
114135
default:
115136
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
116137
if(overflowContainer)

0 commit comments

Comments
 (0)