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,294 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appmesh/AppMesh_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/appmesh/model/HttpMethod.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/appmesh/model/HttpScheme.h>
#include <aws/appmesh/model/HttpRouteHeader.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace AppMesh
{
namespace Model
{
/**
* <p>An object that represents the requirements for a route to match HTTP requests
* for a
virtual router.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/HttpRouteMatch">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API HttpRouteMatch
{
public:
HttpRouteMatch();
HttpRouteMatch(Aws::Utils::Json::JsonView jsonValue);
HttpRouteMatch& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline const Aws::Vector<HttpRouteHeader>& GetHeaders() const{ return m_headers; }
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline bool HeadersHasBeenSet() const { return m_headersHasBeenSet; }
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline void SetHeaders(const Aws::Vector<HttpRouteHeader>& value) { m_headersHasBeenSet = true; m_headers = value; }
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline void SetHeaders(Aws::Vector<HttpRouteHeader>&& value) { m_headersHasBeenSet = true; m_headers = std::move(value); }
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline HttpRouteMatch& WithHeaders(const Aws::Vector<HttpRouteHeader>& value) { SetHeaders(value); return *this;}
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline HttpRouteMatch& WithHeaders(Aws::Vector<HttpRouteHeader>&& value) { SetHeaders(std::move(value)); return *this;}
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline HttpRouteMatch& AddHeaders(const HttpRouteHeader& value) { m_headersHasBeenSet = true; m_headers.push_back(value); return *this; }
/**
* <p>An object that represents the client request headers to match on.</p>
*/
inline HttpRouteMatch& AddHeaders(HttpRouteHeader&& value) { m_headersHasBeenSet = true; m_headers.push_back(std::move(value)); return *this; }
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline const HttpMethod& GetMethod() const{ return m_method; }
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline bool MethodHasBeenSet() const { return m_methodHasBeenSet; }
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline void SetMethod(const HttpMethod& value) { m_methodHasBeenSet = true; m_method = value; }
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline void SetMethod(HttpMethod&& value) { m_methodHasBeenSet = true; m_method = std::move(value); }
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline HttpRouteMatch& WithMethod(const HttpMethod& value) { SetMethod(value); return *this;}
/**
* <p>The client request method to match on. Specify only one.</p>
*/
inline HttpRouteMatch& WithMethod(HttpMethod&& value) { SetMethod(std::move(value)); return *this;}
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline const Aws::String& GetPrefix() const{ return m_prefix; }
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline bool PrefixHasBeenSet() const { return m_prefixHasBeenSet; }
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline void SetPrefix(const Aws::String& value) { m_prefixHasBeenSet = true; m_prefix = value; }
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline void SetPrefix(Aws::String&& value) { m_prefixHasBeenSet = true; m_prefix = std::move(value); }
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline void SetPrefix(const char* value) { m_prefixHasBeenSet = true; m_prefix.assign(value); }
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline HttpRouteMatch& WithPrefix(const Aws::String& value) { SetPrefix(value); return *this;}
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline HttpRouteMatch& WithPrefix(Aws::String&& value) { SetPrefix(std::move(value)); return *this;}
/**
* <p>Specifies the path to match requests with. This parameter must always start
* with
<code>/</code>, which by itself matches all requests to the
* virtual service name. You
can also match for path-based routing of
* requests. For example, if your virtual service
name is
* <code>my-service.local</code> and you want the route to match requests to
* <code>my-service.local/metrics</code>, your prefix should be
* <code>/metrics</code>.</p>
*/
inline HttpRouteMatch& WithPrefix(const char* value) { SetPrefix(value); return *this;}
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline const HttpScheme& GetScheme() const{ return m_scheme; }
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline bool SchemeHasBeenSet() const { return m_schemeHasBeenSet; }
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline void SetScheme(const HttpScheme& value) { m_schemeHasBeenSet = true; m_scheme = value; }
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline void SetScheme(HttpScheme&& value) { m_schemeHasBeenSet = true; m_scheme = std::move(value); }
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline HttpRouteMatch& WithScheme(const HttpScheme& value) { SetScheme(value); return *this;}
/**
* <p>The client request scheme to match on. Specify only one.</p>
*/
inline HttpRouteMatch& WithScheme(HttpScheme&& value) { SetScheme(std::move(value)); return *this;}
private:
Aws::Vector<HttpRouteHeader> m_headers;
bool m_headersHasBeenSet;
HttpMethod m_method;
bool m_methodHasBeenSet;
Aws::String m_prefix;
bool m_prefixHasBeenSet;
HttpScheme m_scheme;
bool m_schemeHasBeenSet;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws