feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,151 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appconfig/AppConfig_EXPORTS.h>
#include <aws/appconfig/AppConfigRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace AppConfig
{
namespace Model
{
/**
*/
class AWS_APPCONFIG_API GetDeploymentRequest : public AppConfigRequest
{
public:
GetDeploymentRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetDeployment"; }
Aws::String SerializePayload() const override;
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline const Aws::String& GetApplicationId() const{ return m_applicationId; }
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; }
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; }
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); }
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); }
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;}
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;}
/**
* <p>The ID of the application that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;}
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline const Aws::String& GetEnvironmentId() const{ return m_environmentId; }
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline void SetEnvironmentId(const Aws::String& value) { m_environmentIdHasBeenSet = true; m_environmentId = value; }
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline void SetEnvironmentId(Aws::String&& value) { m_environmentIdHasBeenSet = true; m_environmentId = std::move(value); }
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline void SetEnvironmentId(const char* value) { m_environmentIdHasBeenSet = true; m_environmentId.assign(value); }
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithEnvironmentId(const Aws::String& value) { SetEnvironmentId(value); return *this;}
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithEnvironmentId(Aws::String&& value) { SetEnvironmentId(std::move(value)); return *this;}
/**
* <p>The ID of the environment that includes the deployment you want to get. </p>
*/
inline GetDeploymentRequest& WithEnvironmentId(const char* value) { SetEnvironmentId(value); return *this;}
/**
* <p>The sequence number of the deployment.</p>
*/
inline int GetDeploymentNumber() const{ return m_deploymentNumber; }
/**
* <p>The sequence number of the deployment.</p>
*/
inline bool DeploymentNumberHasBeenSet() const { return m_deploymentNumberHasBeenSet; }
/**
* <p>The sequence number of the deployment.</p>
*/
inline void SetDeploymentNumber(int value) { m_deploymentNumberHasBeenSet = true; m_deploymentNumber = value; }
/**
* <p>The sequence number of the deployment.</p>
*/
inline GetDeploymentRequest& WithDeploymentNumber(int value) { SetDeploymentNumber(value); return *this;}
private:
Aws::String m_applicationId;
bool m_applicationIdHasBeenSet;
Aws::String m_environmentId;
bool m_environmentIdHasBeenSet;
int m_deploymentNumber;
bool m_deploymentNumberHasBeenSet;
};
} // namespace Model
} // namespace AppConfig
} // namespace Aws