178 lines
7.8 KiB
C
178 lines
7.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/ecs/ECS_EXPORTS.h>
|
|||
|
|
#include <aws/ecs/ECSRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ECS
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_ECS_API DiscoverPollEndpointRequest : public ECSRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DiscoverPollEndpointRequest();
|
|||
|
|
|
|||
|
|
// 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 "DiscoverPollEndpoint"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetContainerInstance() const{ return m_containerInstance; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ContainerInstanceHasBeenSet() const { return m_containerInstanceHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContainerInstance(const Aws::String& value) { m_containerInstanceHasBeenSet = true; m_containerInstance = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContainerInstance(Aws::String&& value) { m_containerInstanceHasBeenSet = true; m_containerInstance = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetContainerInstance(const char* value) { m_containerInstanceHasBeenSet = true; m_containerInstance.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithContainerInstance(const Aws::String& value) { SetContainerInstance(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithContainerInstance(Aws::String&& value) { SetContainerInstance(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The container instance ID or full ARN of the container instance. The ARN
|
|||
|
|
* contains the <code>arn:aws:ecs</code> namespace, followed by the Region of the
|
|||
|
|
* container instance, the AWS account ID of the container instance owner, the
|
|||
|
|
* <code>container-instance</code> namespace, and then the container instance ID.
|
|||
|
|
* For example,
|
|||
|
|
* <code>arn:aws:ecs:region:aws_account_id:container-instance/container_instance_ID</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithContainerInstance(const char* value) { SetContainerInstance(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetCluster() const{ return m_cluster; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ClusterHasBeenSet() const { return m_clusterHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCluster(const Aws::String& value) { m_clusterHasBeenSet = true; m_cluster = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCluster(Aws::String&& value) { m_clusterHasBeenSet = true; m_cluster = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCluster(const char* value) { m_clusterHasBeenSet = true; m_cluster.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithCluster(const Aws::String& value) { SetCluster(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithCluster(Aws::String&& value) { SetCluster(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The short name or full Amazon Resource Name (ARN) of the cluster to which the
|
|||
|
|
* container instance belongs.</p>
|
|||
|
|
*/
|
|||
|
|
inline DiscoverPollEndpointRequest& WithCluster(const char* value) { SetCluster(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_containerInstance;
|
|||
|
|
bool m_containerInstanceHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_cluster;
|
|||
|
|
bool m_clusterHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ECS
|
|||
|
|
} // namespace Aws
|