CreatePhysicalConnectionRequest.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright 2009-2017 Alibaba Cloud All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ALIBABACLOUD_VPC_MODEL_CREATEPHYSICALCONNECTIONREQUEST_H_
  17. #define ALIBABACLOUD_VPC_MODEL_CREATEPHYSICALCONNECTIONREQUEST_H_
  18. #include <string>
  19. #include <vector>
  20. #include <alibabacloud/vpc/VpcRequest.h>
  21. namespace AlibabaCloud
  22. {
  23. namespace Vpc
  24. {
  25. namespace Model
  26. {
  27. class ALIBABACLOUD_VPC_EXPORT CreatePhysicalConnectionRequest : public VpcRequest
  28. {
  29. public:
  30. CreatePhysicalConnectionRequest();
  31. ~CreatePhysicalConnectionRequest();
  32. std::string getAccessPointId()const;
  33. void setAccessPointId(const std::string& accessPointId);
  34. std::string getRedundantPhysicalConnectionId()const;
  35. void setRedundantPhysicalConnectionId(const std::string& redundantPhysicalConnectionId);
  36. std::string getPeerLocation()const;
  37. void setPeerLocation(const std::string& peerLocation);
  38. long getResourceOwnerId()const;
  39. void setResourceOwnerId(long resourceOwnerId);
  40. std::string getPortType()const;
  41. void setPortType(const std::string& portType);
  42. std::string getCircuitCode()const;
  43. void setCircuitCode(const std::string& circuitCode);
  44. int getBandwidth()const;
  45. void setBandwidth(int bandwidth);
  46. std::string getClientToken()const;
  47. void setClientToken(const std::string& clientToken);
  48. std::string getResourceOwnerAccount()const;
  49. void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
  50. std::string getOwnerAccount()const;
  51. void setOwnerAccount(const std::string& ownerAccount);
  52. std::string getDescription()const;
  53. void setDescription(const std::string& description);
  54. std::string getType()const;
  55. void setType(const std::string& type);
  56. long getOwnerId()const;
  57. void setOwnerId(long ownerId);
  58. std::string getLineOperator()const;
  59. void setLineOperator(const std::string& lineOperator);
  60. std::string getRegionId()const;
  61. void setRegionId(const std::string& regionId);
  62. std::string getName()const;
  63. void setName(const std::string& name);
  64. private:
  65. std::string accessPointId_;
  66. std::string redundantPhysicalConnectionId_;
  67. std::string peerLocation_;
  68. long resourceOwnerId_;
  69. std::string portType_;
  70. std::string circuitCode_;
  71. int bandwidth_;
  72. std::string clientToken_;
  73. std::string resourceOwnerAccount_;
  74. std::string ownerAccount_;
  75. std::string description_;
  76. std::string type_;
  77. long ownerId_;
  78. std::string lineOperator_;
  79. std::string regionId_;
  80. std::string name_;
  81. };
  82. }
  83. }
  84. }
  85. #endif // !ALIBABACLOUD_VPC_MODEL_CREATEPHYSICALCONNECTIONREQUEST_H_