Skip to content

Commit

Permalink
Supported Jumbo for HDENI and LENI.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 24, 2024
1 parent d2ea70d commit 27a5160
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 8 deletions.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-eflo/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-24 Version: 1.0.18
- Supported Jumbo for HDENI and LENI.

2024-06-26 Version: 1.0.17
- Supported AssumeRoleProxyChain for CreateHighDensityElasticNetworkInterface.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-eflo/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Aliyun Python SDK is the official software development kit. It makes things easy

This module works on Python versions:

2.6.5 and greater
3.7 and greater

**Documentation:**

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-eflo/aliyunsdkeflo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.17'
__version__ = '1.0.18'
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ def get_NodeId(self): # String

def set_NodeId(self, NodeId): # String
self.add_body_params('NodeId', NodeId)
def get_EnableJumboFrame(self): # Boolean
return self.get_body_params().get('EnableJumboFrame')

def set_EnableJumboFrame(self, EnableJumboFrame): # Boolean
self.add_body_params('EnableJumboFrame', EnableJumboFrame)
def get_VSwitchId(self): # String
return self.get_body_params().get('VSwitchId')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ def get_CenOwnerId(self): # String

def set_CenOwnerId(self, CenOwnerId): # String
self.add_body_params('CenOwnerId', CenOwnerId)
def get_BgpAsn(self): # Long
return self.get_body_params().get('BgpAsn')

def set_BgpAsn(self, BgpAsn): # Long
self.add_body_params('BgpAsn', BgpAsn)
def get_AccessCouldService(self): # Boolean
return self.get_body_params().get('AccessCouldService')

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest

class ListVccFlowInfosRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'eflo', '2022-05-30', 'ListVccFlowInfos','eflo')
self.set_method('POST')

def get_From(self): # Long
return self.get_body_params().get('From')

def set_From(self, _From): # Long
self.add_body_params('From', _From)
def get_To(self): # Long
return self.get_body_params().get('To')

def set_To(self, To): # Long
self.add_body_params('To', To)
def get_VccId(self): # String
return self.get_body_params().get('VccId')

def set_VccId(self, VccId): # String
self.add_body_params('VccId', VccId)
def get_MetricName(self): # String
return self.get_body_params().get('MetricName')

def set_MetricName(self, MetricName): # String
self.add_body_params('MetricName', MetricName)
def get_Direction(self): # String
return self.get_body_params().get('Direction')

def set_Direction(self, Direction): # String
self.add_body_params('Direction', Direction)
12 changes: 6 additions & 6 deletions aliyun-python-sdk-eflo/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
)

Expand Down

0 comments on commit 27a5160

Please sign in to comment.