body stringlengths 26 98.2k | body_hash int64 -9,222,864,604,528,158,000 9,221,803,474B | docstring stringlengths 1 16.8k | path stringlengths 5 230 | name stringlengths 1 96 | repository_name stringlengths 7 89 | lang stringclasses 1
value | body_without_docstring stringlengths 20 98.2k |
|---|---|---|---|---|---|---|---|
def _invert_complex(f, g_ys, symbol):
'Helper function for _invert.'
if (f == symbol):
return (f, g_ys)
n = Dummy('n')
if f.is_Add:
(g, h) = f.as_independent(symbol)
if (g is not S.Zero):
return _invert_complex(h, imageset(Lambda(n, (n - g)), g_ys), symbol)
if f.i... | -3,189,530,294,001,748,500 | Helper function for _invert. | sympy/solvers/solveset.py | _invert_complex | aktech/sympy | python | def _invert_complex(f, g_ys, symbol):
if (f == symbol):
return (f, g_ys)
n = Dummy('n')
if f.is_Add:
(g, h) = f.as_independent(symbol)
if (g is not S.Zero):
return _invert_complex(h, imageset(Lambda(n, (n - g)), g_ys), symbol)
if f.is_Mul:
(g, h) = f.as_i... |
def domain_check(f, symbol, p):
'Returns False if point p is infinite or any subexpression of f\n is infinite or becomes so after replacing symbol with p. If none of\n these conditions is met then True will be returned.\n\n Examples\n ========\n\n >>> from sympy import Mul, oo\n >>> from sympy.abc... | -3,833,105,999,056,127,500 | Returns False if point p is infinite or any subexpression of f
is infinite or becomes so after replacing symbol with p. If none of
these conditions is met then True will be returned.
Examples
========
>>> from sympy import Mul, oo
>>> from sympy.abc import x
>>> from sympy.solvers.solveset import domain_check
>>> g =... | sympy/solvers/solveset.py | domain_check | aktech/sympy | python | def domain_check(f, symbol, p):
'Returns False if point p is infinite or any subexpression of f\n is infinite or becomes so after replacing symbol with p. If none of\n these conditions is met then True will be returned.\n\n Examples\n ========\n\n >>> from sympy import Mul, oo\n >>> from sympy.abc... |
def _is_finite_with_finite_vars(f, domain=S.Complexes):
"\n Return True if the given expression is finite. For symbols that\n don't assign a value for `complex` and/or `real`, the domain will\n be used to assign a value; symbols that don't assign a value\n for `finite` will be made finite. All other ass... | 995,980,117,664,021,600 | Return True if the given expression is finite. For symbols that
don't assign a value for `complex` and/or `real`, the domain will
be used to assign a value; symbols that don't assign a value
for `finite` will be made finite. All other assumptions are
left unmodified. | sympy/solvers/solveset.py | _is_finite_with_finite_vars | aktech/sympy | python | def _is_finite_with_finite_vars(f, domain=S.Complexes):
"\n Return True if the given expression is finite. For symbols that\n don't assign a value for `complex` and/or `real`, the domain will\n be used to assign a value; symbols that don't assign a value\n for `finite` will be made finite. All other ass... |
def _is_function_class_equation(func_class, f, symbol):
' Tests whether the equation is an equation of the given function class.\n\n The given equation belongs to the given function class if it is\n comprised of functions of the function class which are multiplied by\n or added to expressions independent o... | -4,478,829,296,558,413,000 | Tests whether the equation is an equation of the given function class.
The given equation belongs to the given function class if it is
comprised of functions of the function class which are multiplied by
or added to expressions independent of the symbol. In addition, the
arguments of all such functions must be linear ... | sympy/solvers/solveset.py | _is_function_class_equation | aktech/sympy | python | def _is_function_class_equation(func_class, f, symbol):
' Tests whether the equation is an equation of the given function class.\n\n The given equation belongs to the given function class if it is\n comprised of functions of the function class which are multiplied by\n or added to expressions independent o... |
def _solve_as_rational(f, symbol, domain):
' solve rational functions'
f = together(f, deep=True)
(g, h) = fraction(f)
if (not h.has(symbol)):
return _solve_as_poly(g, symbol, domain)
else:
valid_solns = _solveset(g, symbol, domain)
invalid_solns = _solveset(h, symbol, domain... | 2,026,569,488,700,366,800 | solve rational functions | sympy/solvers/solveset.py | _solve_as_rational | aktech/sympy | python | def _solve_as_rational(f, symbol, domain):
' '
f = together(f, deep=True)
(g, h) = fraction(f)
if (not h.has(symbol)):
return _solve_as_poly(g, symbol, domain)
else:
valid_solns = _solveset(g, symbol, domain)
invalid_solns = _solveset(h, symbol, domain)
return (valid_... |
def _solve_trig(f, symbol, domain):
' Helper to solve trigonometric equations '
f = trigsimp(f)
f_original = f
f = f.rewrite(exp)
f = together(f)
(g, h) = fraction(f)
y = Dummy('y')
(g, h) = (g.expand(), h.expand())
(g, h) = (g.subs(exp((I * symbol)), y), h.subs(exp((I * symbol)), y)... | -5,411,093,422,298,752,000 | Helper to solve trigonometric equations | sympy/solvers/solveset.py | _solve_trig | aktech/sympy | python | def _solve_trig(f, symbol, domain):
' '
f = trigsimp(f)
f_original = f
f = f.rewrite(exp)
f = together(f)
(g, h) = fraction(f)
y = Dummy('y')
(g, h) = (g.expand(), h.expand())
(g, h) = (g.subs(exp((I * symbol)), y), h.subs(exp((I * symbol)), y))
if (g.has(symbol) or h.has(symbol... |
def _solve_as_poly(f, symbol, domain=S.Complexes):
'\n Solve the equation using polynomial techniques if it already is a\n polynomial equation or, with a change of variables, can be made so.\n '
result = None
if f.is_polynomial(symbol):
solns = roots(f, symbol, cubics=True, quartics=True, q... | -4,573,146,541,065,318,000 | Solve the equation using polynomial techniques if it already is a
polynomial equation or, with a change of variables, can be made so. | sympy/solvers/solveset.py | _solve_as_poly | aktech/sympy | python | def _solve_as_poly(f, symbol, domain=S.Complexes):
'\n Solve the equation using polynomial techniques if it already is a\n polynomial equation or, with a change of variables, can be made so.\n '
result = None
if f.is_polynomial(symbol):
solns = roots(f, symbol, cubics=True, quartics=True, q... |
def _has_rational_power(expr, symbol):
"\n Returns (bool, den) where bool is True if the term has a\n non-integer rational power and den is the denominator of the\n expression's exponent.\n\n Examples\n ========\n\n >>> from sympy.solvers.solveset import _has_rational_power\n >>> from sympy imp... | -2,331,732,730,696,701,000 | Returns (bool, den) where bool is True if the term has a
non-integer rational power and den is the denominator of the
expression's exponent.
Examples
========
>>> from sympy.solvers.solveset import _has_rational_power
>>> from sympy import sqrt
>>> from sympy.abc import x
>>> _has_rational_power(sqrt(x), x)
(True, 2)... | sympy/solvers/solveset.py | _has_rational_power | aktech/sympy | python | def _has_rational_power(expr, symbol):
"\n Returns (bool, den) where bool is True if the term has a\n non-integer rational power and den is the denominator of the\n expression's exponent.\n\n Examples\n ========\n\n >>> from sympy.solvers.solveset import _has_rational_power\n >>> from sympy imp... |
def _solve_radical(f, symbol, solveset_solver):
' Helper function to solve equations with radicals '
(eq, cov) = unrad(f)
if (not cov):
result = (solveset_solver(eq, symbol) - Union(*[solveset_solver(g, symbol) for g in denoms(f, [symbol])]))
else:
(y, yeq) = cov
if (not solveset... | -1,662,945,041,287,894,300 | Helper function to solve equations with radicals | sympy/solvers/solveset.py | _solve_radical | aktech/sympy | python | def _solve_radical(f, symbol, solveset_solver):
' '
(eq, cov) = unrad(f)
if (not cov):
result = (solveset_solver(eq, symbol) - Union(*[solveset_solver(g, symbol) for g in denoms(f, [symbol])]))
else:
(y, yeq) = cov
if (not solveset_solver((y - I), y)):
yreal = Dummy(... |
def _solve_abs(f, symbol, domain):
' Helper function to solve equation involving absolute value function '
if (not domain.is_subset(S.Reals)):
raise ValueError(filldedent('\n Absolute values cannot be inverted in the\n complex domain.'))
(p, q, r) = (Wild('p'), Wild('q'), Wild(... | -2,798,441,721,755,541,000 | Helper function to solve equation involving absolute value function | sympy/solvers/solveset.py | _solve_abs | aktech/sympy | python | def _solve_abs(f, symbol, domain):
' '
if (not domain.is_subset(S.Reals)):
raise ValueError(filldedent('\n Absolute values cannot be inverted in the\n complex domain.'))
(p, q, r) = (Wild('p'), Wild('q'), Wild('r'))
pattern_match = (f.match(((p * Abs(q)) + r)) or {})
i... |
def solve_decomposition(f, symbol, domain):
'\n Function to solve equations via the principle of "Decomposition\n and Rewriting".\n\n Examples\n ========\n >>> from sympy import exp, sin, Symbol, pprint, S\n >>> from sympy.solvers.solveset import solve_decomposition as sd\n >>> x = Symbol(\'x\'... | 997,600,514,692,112,900 | Function to solve equations via the principle of "Decomposition
and Rewriting".
Examples
========
>>> from sympy import exp, sin, Symbol, pprint, S
>>> from sympy.solvers.solveset import solve_decomposition as sd
>>> x = Symbol('x')
>>> f1 = exp(2*x) - 3*exp(x) + 2
>>> sd(f1, x, S.Reals)
{0, log(2)}
>>> f2 = sin(x)**2... | sympy/solvers/solveset.py | solve_decomposition | aktech/sympy | python | def solve_decomposition(f, symbol, domain):
'\n Function to solve equations via the principle of "Decomposition\n and Rewriting".\n\n Examples\n ========\n >>> from sympy import exp, sin, Symbol, pprint, S\n >>> from sympy.solvers.solveset import solve_decomposition as sd\n >>> x = Symbol(\'x\'... |
def _solveset(f, symbol, domain, _check=False):
"Helper for solveset to return a result from an expression\n that has already been sympify'ed and is known to contain the\n given symbol."
from sympy.simplify.simplify import signsimp
orig_f = f
f = together(f)
if f.is_Mul:
(_, f) = f.as_... | -617,146,554,266,846,500 | Helper for solveset to return a result from an expression
that has already been sympify'ed and is known to contain the
given symbol. | sympy/solvers/solveset.py | _solveset | aktech/sympy | python | def _solveset(f, symbol, domain, _check=False):
"Helper for solveset to return a result from an expression\n that has already been sympify'ed and is known to contain the\n given symbol."
from sympy.simplify.simplify import signsimp
orig_f = f
f = together(f)
if f.is_Mul:
(_, f) = f.as_... |
def solveset(f, symbol=None, domain=S.Complexes):
"Solves a given inequality or equation with set as output\n\n Parameters\n ==========\n\n f : Expr or a relational.\n The target equation or inequality\n symbol : Symbol\n The variable for which the equation is solved\n domain : Set\n ... | -4,553,008,390,556,071,400 | Solves a given inequality or equation with set as output
Parameters
==========
f : Expr or a relational.
The target equation or inequality
symbol : Symbol
The variable for which the equation is solved
domain : Set
The domain over which the equation is solved
Returns
=======
Set
A set of values for `... | sympy/solvers/solveset.py | solveset | aktech/sympy | python | def solveset(f, symbol=None, domain=S.Complexes):
"Solves a given inequality or equation with set as output\n\n Parameters\n ==========\n\n f : Expr or a relational.\n The target equation or inequality\n symbol : Symbol\n The variable for which the equation is solved\n domain : Set\n ... |
def solvify(f, symbol, domain):
'Solves an equation using solveset and returns the solution in accordance\n with the `solve` output API.\n\n Returns\n =======\n\n We classify the output based on the type of solution returned by `solveset`.\n\n Solution | Output\n ----------------------------... | 7,219,948,723,992,646,000 | Solves an equation using solveset and returns the solution in accordance
with the `solve` output API.
Returns
=======
We classify the output based on the type of solution returned by `solveset`.
Solution | Output
----------------------------------------
FiniteSet | list
ImageSet, | list (if `f` is periodi... | sympy/solvers/solveset.py | solvify | aktech/sympy | python | def solvify(f, symbol, domain):
'Solves an equation using solveset and returns the solution in accordance\n with the `solve` output API.\n\n Returns\n =======\n\n We classify the output based on the type of solution returned by `solveset`.\n\n Solution | Output\n ----------------------------... |
def linear_eq_to_matrix(equations, *symbols):
"\n Converts a given System of Equations into Matrix form.\n Here `equations` must be a linear system of equations in\n `symbols`. The order of symbols in input `symbols` will\n determine the order of coefficients in the returned\n Matrix.\n\n The Matr... | -8,302,918,135,174,498,000 | Converts a given System of Equations into Matrix form.
Here `equations` must be a linear system of equations in
`symbols`. The order of symbols in input `symbols` will
determine the order of coefficients in the returned
Matrix.
The Matrix form corresponds to the augmented matrix form.
For example:
.. math:: 4x + 2y +... | sympy/solvers/solveset.py | linear_eq_to_matrix | aktech/sympy | python | def linear_eq_to_matrix(equations, *symbols):
"\n Converts a given System of Equations into Matrix form.\n Here `equations` must be a linear system of equations in\n `symbols`. The order of symbols in input `symbols` will\n determine the order of coefficients in the returned\n Matrix.\n\n The Matr... |
def linsolve(system, *symbols):
'\n Solve system of N linear equations with M variables, which\n means both under - and overdetermined systems are supported.\n The possible number of solutions is zero, one or infinite.\n Zero solutions throws a ValueError, where as infinite\n solutions are represente... | 4,470,600,606,688,218,600 | Solve system of N linear equations with M variables, which
means both under - and overdetermined systems are supported.
The possible number of solutions is zero, one or infinite.
Zero solutions throws a ValueError, where as infinite
solutions are represented parametrically in terms of given
symbols. For unique solution... | sympy/solvers/solveset.py | linsolve | aktech/sympy | python | def linsolve(system, *symbols):
'\n Solve system of N linear equations with M variables, which\n means both under - and overdetermined systems are supported.\n The possible number of solutions is zero, one or infinite.\n Zero solutions throws a ValueError, where as infinite\n solutions are represente... |
def substitution(system, symbols, result=[{}], known_symbols=[], exclude=[], all_symbols=None):
"\n Solves the `system` using substitution method. It is used in\n `nonlinsolve`. This will be called from `nonlinsolve` when any\n equation(s) is non polynomial equation.\n\n Parameters\n ==========\n\... | -3,908,398,040,080,195,600 | Solves the `system` using substitution method. It is used in
`nonlinsolve`. This will be called from `nonlinsolve` when any
equation(s) is non polynomial equation.
Parameters
==========
system : list of equations
The target system of equations
symbols : list of symbols to be solved.
The variable(s) for whic... | sympy/solvers/solveset.py | substitution | aktech/sympy | python | def substitution(system, symbols, result=[{}], known_symbols=[], exclude=[], all_symbols=None):
"\n Solves the `system` using substitution method. It is used in\n `nonlinsolve`. This will be called from `nonlinsolve` when any\n equation(s) is non polynomial equation.\n\n Parameters\n ==========\n\... |
def nonlinsolve(system, *symbols):
"\n Solve system of N non linear equations with M variables, which means both\n under and overdetermined systems are supported. Positive dimensional\n system is also supported (A system with infinitely many solutions is said\n to be positive-dimensional). In Positive d... | 6,897,244,678,591,841,000 | Solve system of N non linear equations with M variables, which means both
under and overdetermined systems are supported. Positive dimensional
system is also supported (A system with infinitely many solutions is said
to be positive-dimensional). In Positive dimensional system solution will
be dependent on at least one ... | sympy/solvers/solveset.py | nonlinsolve | aktech/sympy | python | def nonlinsolve(system, *symbols):
"\n Solve system of N non linear equations with M variables, which means both\n under and overdetermined systems are supported. Positive dimensional\n system is also supported (A system with infinitely many solutions is said\n to be positive-dimensional). In Positive d... |
def _unsolved_syms(eq, sort=False):
'Returns the unsolved symbol present\n in the equation `eq`.\n '
free = eq.free_symbols
unsolved = ((free - set(known_symbols)) & set(all_symbols))
if sort:
unsolved = list(unsolved)
unsolved.sort(key=default_sort_key)
return unsolved | 3,910,959,993,474,881,000 | Returns the unsolved symbol present
in the equation `eq`. | sympy/solvers/solveset.py | _unsolved_syms | aktech/sympy | python | def _unsolved_syms(eq, sort=False):
'Returns the unsolved symbol present\n in the equation `eq`.\n '
free = eq.free_symbols
unsolved = ((free - set(known_symbols)) & set(all_symbols))
if sort:
unsolved = list(unsolved)
unsolved.sort(key=default_sort_key)
return unsolved |
def _extract_main_soln(sol, soln_imageset):
"separate the Complements, Intersections, ImageSet lambda expr\n and it's base_set.\n "
if isinstance(sol, Complement):
complements[sym] = sol.args[1]
sol = sol.args[0]
if isinstance(sol, Intersection):
if (sol.args[0]... | 5,009,555,416,651,553,000 | separate the Complements, Intersections, ImageSet lambda expr
and it's base_set. | sympy/solvers/solveset.py | _extract_main_soln | aktech/sympy | python | def _extract_main_soln(sol, soln_imageset):
"separate the Complements, Intersections, ImageSet lambda expr\n and it's base_set.\n "
if isinstance(sol, Complement):
complements[sym] = sol.args[1]
sol = sol.args[0]
if isinstance(sol, Intersection):
if (sol.args[0]... |
def _append_new_soln(rnew, sym, sol, imgset_yes, soln_imageset, original_imageset, newresult, eq=None):
'If `rnew` (A dict <symbol: soln>) contains valid soln\n append it to `newresult` list.\n `imgset_yes` is (base, dummy_var) if there was imageset in previously\n calculated result(otherwise ... | 1,804,431,466,947,199,000 | If `rnew` (A dict <symbol: soln>) contains valid soln
append it to `newresult` list.
`imgset_yes` is (base, dummy_var) if there was imageset in previously
calculated result(otherwise empty tuple). `original_imageset` is dict
of imageset expr and imageset from this result.
`soln_imageset` dict of imageset expr and ima... | sympy/solvers/solveset.py | _append_new_soln | aktech/sympy | python | def _append_new_soln(rnew, sym, sol, imgset_yes, soln_imageset, original_imageset, newresult, eq=None):
'If `rnew` (A dict <symbol: soln>) contains valid soln\n append it to `newresult` list.\n `imgset_yes` is (base, dummy_var) if there was imageset in previously\n calculated result(otherwise ... |
def _solve_using_known_values(result, solver):
'Solves the system using already known solution\n (result contains the dict <symbol: value>).\n solver is `solveset_complex` or `solveset_real`.\n '
soln_imageset = {}
total_solvest_call = 0
total_conditionst = 0
for (index, eq) in ... | 3,553,278,576,903,280,600 | Solves the system using already known solution
(result contains the dict <symbol: value>).
solver is `solveset_complex` or `solveset_real`. | sympy/solvers/solveset.py | _solve_using_known_values | aktech/sympy | python | def _solve_using_known_values(result, solver):
'Solves the system using already known solution\n (result contains the dict <symbol: value>).\n solver is `solveset_complex` or `solveset_real`.\n '
soln_imageset = {}
total_solvest_call = 0
total_conditionst = 0
for (index, eq) in ... |
def get_file_handle(file_path):
'Return a opened file'
if file_path.endswith('.gz'):
file_handle = getreader('utf-8')(gzip.open(file_path, 'r'), errors='replace')
else:
file_handle = open(file_path, 'r', encoding='utf-8')
return file_handle | -1,693,644,682,931,493,000 | Return a opened file | scout/utils/handle.py | get_file_handle | Clinical-Genomics/scout | python | def get_file_handle(file_path):
if file_path.endswith('.gz'):
file_handle = getreader('utf-8')(gzip.open(file_path, 'r'), errors='replace')
else:
file_handle = open(file_path, 'r', encoding='utf-8')
return file_handle |
def schedule(cron_schedule, pipeline_name, name=None, tags=None, tags_fn=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, execution_timezone=None):
"Create a schedule.\n\n The decorated function will be called as the ``run_config_fn`` of the underlying\n :py:class:`~dags... | -7,617,151,434,662,817,000 | Create a schedule.
The decorated function will be called as the ``run_config_fn`` of the underlying
:py:class:`~dagster.ScheduleDefinition` and should take a
:py:class:`~dagster.ScheduleExecutionContext` as its only argument, returning the environment
dict for the scheduled execution.
Args:
cron_schedule (str): A... | python_modules/dagster/dagster/core/definitions/decorators/schedule.py | schedule | alex-treebeard/dagster | python | def schedule(cron_schedule, pipeline_name, name=None, tags=None, tags_fn=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, execution_timezone=None):
"Create a schedule.\n\n The decorated function will be called as the ``run_config_fn`` of the underlying\n :py:class:`~dags... |
def monthly_schedule(pipeline_name, start_date, name=None, execution_day_of_month=1, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs monthly.\n\n The ... | -2,608,099,812,723,566,600 | Create a schedule that runs monthly.
The decorated function will be called as the ``run_config_fn`` of the underlying
:py:class:`~dagster.ScheduleDefinition` and should take a
:py:class:`~dagster.ScheduleExecutionContext` as its only argument, returning the environment
dict for the scheduled execution.
Args:
pipe... | python_modules/dagster/dagster/core/definitions/decorators/schedule.py | monthly_schedule | alex-treebeard/dagster | python | def monthly_schedule(pipeline_name, start_date, name=None, execution_day_of_month=1, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs monthly.\n\n The ... |
def weekly_schedule(pipeline_name, start_date, name=None, execution_day_of_week=0, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs weekly.\n\n The dec... | 7,615,266,254,079,671,000 | Create a schedule that runs weekly.
The decorated function will be called as the ``run_config_fn`` of the underlying
:py:class:`~dagster.ScheduleDefinition` and should take a
:py:class:`~dagster.ScheduleExecutionContext` as its only argument, returning the environment
dict for the scheduled execution.
Args:
pipel... | python_modules/dagster/dagster/core/definitions/decorators/schedule.py | weekly_schedule | alex-treebeard/dagster | python | def weekly_schedule(pipeline_name, start_date, name=None, execution_day_of_week=0, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs weekly.\n\n The dec... |
def daily_schedule(pipeline_name, start_date, name=None, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs daily.\n\n The decorated function will be cal... | 5,154,281,865,935,283,000 | Create a schedule that runs daily.
The decorated function will be called as the ``run_config_fn`` of the underlying
:py:class:`~dagster.ScheduleDefinition` and should take a
:py:class:`~dagster.ScheduleExecutionContext` as its only argument, returning the environment
dict for the scheduled execution.
Args:
pipeli... | python_modules/dagster/dagster/core/definitions/decorators/schedule.py | daily_schedule | alex-treebeard/dagster | python | def daily_schedule(pipeline_name, start_date, name=None, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs daily.\n\n The decorated function will be cal... |
def hourly_schedule(pipeline_name, start_date, name=None, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs hourly.\n\n The decorated function will be c... | -2,717,627,667,788,724,700 | Create a schedule that runs hourly.
The decorated function will be called as the ``run_config_fn`` of the underlying
:py:class:`~dagster.ScheduleDefinition` and should take a
:py:class:`~dagster.ScheduleExecutionContext` as its only argument, returning the environment
dict for the scheduled execution.
Args:
pipel... | python_modules/dagster/dagster/core/definitions/decorators/schedule.py | hourly_schedule | alex-treebeard/dagster | python | def hourly_schedule(pipeline_name, start_date, name=None, execution_time=datetime.time(0, 0), tags_fn_for_date=None, solid_selection=None, mode='default', should_execute=None, environment_vars=None, end_date=None, execution_timezone=None):
"Create a schedule that runs hourly.\n\n The decorated function will be c... |
def init_all_dbs():
'\n call it when creating database\n :return:\n '
conn = sqlite3.connect(DB_PATH)
cursor = conn.cursor()
exec_sql = 'create table Question (id INTEGER primary key, content text, user VARCHAR(20), date VARCHAR(30))'
cursor.execute(exec_sql)
exec_sql = 'create table Pe... | -5,197,294,188,878,423,000 | call it when creating database
:return: | store/store.py | init_all_dbs | mengfanShi/SpiderMan | python | def init_all_dbs():
'\n call it when creating database\n :return:\n '
conn = sqlite3.connect(DB_PATH)
cursor = conn.cursor()
exec_sql = 'create table Question (id INTEGER primary key, content text, user VARCHAR(20), date VARCHAR(30))'
cursor.execute(exec_sql)
exec_sql = 'create table Pe... |
@property
def BgpCustomAfiSafiv6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpcustomafisafiv6_31ae8bd98f331c2119281ac977022fca.BgpCustomAfiSafiv6): An instance of the BgpCustomAfiSafiv6 class\n\n Raises\n ------\n - ServerError... | -7,325,503,119,801,193,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpcustomafisafiv6_31ae8bd98f331c2119281ac977022fca.BgpCustomAfiSafiv6): An instance of the BgpCustomAfiSafiv6 class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpCustomAfiSafiv6 | rfrye-github/ixnetwork_restpy | python | @property
def BgpCustomAfiSafiv6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpcustomafisafiv6_31ae8bd98f331c2119281ac977022fca.BgpCustomAfiSafiv6): An instance of the BgpCustomAfiSafiv6 class\n\n Raises\n ------\n - ServerError... |
@property
def BgpEpePeerList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpepepeerlist_8e1fc47aa0221fde5418b0e01514b909.BgpEpePeerList): An instance of the BgpEpePeerList class\n\n Raises\n ------\n - ServerError: The server has... | -3,840,936,234,641,362,400 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpepepeerlist_8e1fc47aa0221fde5418b0e01514b909.BgpEpePeerList): An instance of the BgpEpePeerList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpEpePeerList | rfrye-github/ixnetwork_restpy | python | @property
def BgpEpePeerList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpepepeerlist_8e1fc47aa0221fde5418b0e01514b909.BgpEpePeerList): An instance of the BgpEpePeerList class\n\n Raises\n ------\n - ServerError: The server has... |
@property
def BgpEthernetSegmentV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.BgpEthernetSegmentV6): An instance of the BgpEthernetSegmentV6 class\n\n Raises\n ------\n - Ser... | 6,040,624,524,474,441,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.BgpEthernetSegmentV6): An instance of the BgpEthernetSegmentV6 class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpEthernetSegmentV6 | rfrye-github/ixnetwork_restpy | python | @property
def BgpEthernetSegmentV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpethernetsegmentv6_766c04a63efb3fe4eca969aac968fe4e.BgpEthernetSegmentV6): An instance of the BgpEthernetSegmentV6 class\n\n Raises\n ------\n - Ser... |
@property
def BgpFlowSpecRangesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class\n\n Raises\n ------\n -... | 3,712,483,164,783,856,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpFlowSpecRangesList | rfrye-github/ixnetwork_restpy | python | @property
def BgpFlowSpecRangesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslist_9ad7609645f425215665a5736cc73e84.BgpFlowSpecRangesList): An instance of the BgpFlowSpecRangesList class\n\n Raises\n ------\n -... |
@property
def BgpFlowSpecRangesListV4(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class\n\n Raises\n ------\n ... | 3,334,446,235,289,044,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpFlowSpecRangesListV4 | rfrye-github/ixnetwork_restpy | python | @property
def BgpFlowSpecRangesListV4(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv4_ab0c3185b027eff54394da27736dcb9a.BgpFlowSpecRangesListV4): An instance of the BgpFlowSpecRangesListV4 class\n\n Raises\n ------\n ... |
@property
def BgpFlowSpecRangesListV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class\n\n Raises\n ------\n ... | -5,145,287,172,163,459,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpFlowSpecRangesListV6 | rfrye-github/ixnetwork_restpy | python | @property
def BgpFlowSpecRangesListV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpflowspecrangeslistv6_305d65dd8b0f124660b13211ca670c20.BgpFlowSpecRangesListV6): An instance of the BgpFlowSpecRangesListV6 class\n\n Raises\n ------\n ... |
@property
def BgpIPv6EvpnEvi(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnevi_7148192f2f68b72a7e220fe51f91ee65.BgpIPv6EvpnEvi): An instance of the BgpIPv6EvpnEvi class\n\n Raises\n ------\n - ServerError: The server has... | 6,720,772,140,658,798,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnevi_7148192f2f68b72a7e220fe51f91ee65.BgpIPv6EvpnEvi): An instance of the BgpIPv6EvpnEvi class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIPv6EvpnEvi | rfrye-github/ixnetwork_restpy | python | @property
def BgpIPv6EvpnEvi(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnevi_7148192f2f68b72a7e220fe51f91ee65.BgpIPv6EvpnEvi): An instance of the BgpIPv6EvpnEvi class\n\n Raises\n ------\n - ServerError: The server has... |
@property
def BgpIPv6EvpnPbb(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.BgpIPv6EvpnPbb): An instance of the BgpIPv6EvpnPbb class\n\n Raises\n ------\n - ServerError: The server has... | -1,671,315,899,680,887,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.BgpIPv6EvpnPbb): An instance of the BgpIPv6EvpnPbb class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIPv6EvpnPbb | rfrye-github/ixnetwork_restpy | python | @property
def BgpIPv6EvpnPbb(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnpbb_7e3d31c960a96c76772f39596f4e0b6c.BgpIPv6EvpnPbb): An instance of the BgpIPv6EvpnPbb class\n\n Raises\n ------\n - ServerError: The server has... |
@property
def BgpIPv6EvpnVXLAN(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlan_58919d93e3f1d08f428277c92a21e890.BgpIPv6EvpnVXLAN): An instance of the BgpIPv6EvpnVXLAN class\n\n Raises\n ------\n - ServerError: The se... | 1,290,244,958,635,942,100 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlan_58919d93e3f1d08f428277c92a21e890.BgpIPv6EvpnVXLAN): An instance of the BgpIPv6EvpnVXLAN class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIPv6EvpnVXLAN | rfrye-github/ixnetwork_restpy | python | @property
def BgpIPv6EvpnVXLAN(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlan_58919d93e3f1d08f428277c92a21e890.BgpIPv6EvpnVXLAN): An instance of the BgpIPv6EvpnVXLAN class\n\n Raises\n ------\n - ServerError: The se... |
@property
def BgpIPv6EvpnVXLANVpws(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlanvpws_3f36e2b3e739d7ab9aec3577a508ada7.BgpIPv6EvpnVXLANVpws): An instance of the BgpIPv6EvpnVXLANVpws class\n\n Raises\n ------\n - Ser... | 8,252,743,323,883,794,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlanvpws_3f36e2b3e739d7ab9aec3577a508ada7.BgpIPv6EvpnVXLANVpws): An instance of the BgpIPv6EvpnVXLANVpws class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIPv6EvpnVXLANVpws | rfrye-github/ixnetwork_restpy | python | @property
def BgpIPv6EvpnVXLANVpws(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvxlanvpws_3f36e2b3e739d7ab9aec3577a508ada7.BgpIPv6EvpnVXLANVpws): An instance of the BgpIPv6EvpnVXLANVpws class\n\n Raises\n ------\n - Ser... |
@property
def BgpIPv6EvpnVpws(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.BgpIPv6EvpnVpws): An instance of the BgpIPv6EvpnVpws class\n\n Raises\n ------\n - ServerError: The server... | 491,731,151,166,504,600 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.BgpIPv6EvpnVpws): An instance of the BgpIPv6EvpnVpws class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIPv6EvpnVpws | rfrye-github/ixnetwork_restpy | python | @property
def BgpIPv6EvpnVpws(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6evpnvpws_7e7a3dec141df7b1c974f723df7f4814.BgpIPv6EvpnVpws): An instance of the BgpIPv6EvpnVpws class\n\n Raises\n ------\n - ServerError: The server... |
@property
def BgpIpv6AdL2Vpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.BgpIpv6AdL2Vpn): An instance of the BgpIpv6AdL2Vpn class\n\n Raises\n ------\n - ServerError: The server has... | 2,498,762,400,428,744,700 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.BgpIpv6AdL2Vpn): An instance of the BgpIpv6AdL2Vpn class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIpv6AdL2Vpn | rfrye-github/ixnetwork_restpy | python | @property
def BgpIpv6AdL2Vpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6adl2vpn_dfa30e45f6798c9ecc0ef8b85351cb5d.BgpIpv6AdL2Vpn): An instance of the BgpIpv6AdL2Vpn class\n\n Raises\n ------\n - ServerError: The server has... |
@property
def BgpIpv6L2Site(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.BgpIpv6L2Site): An instance of the BgpIpv6L2Site class\n\n Raises\n ------\n - ServerError: The server has enc... | -1,916,634,906,356,977,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.BgpIpv6L2Site): An instance of the BgpIpv6L2Site class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIpv6L2Site | rfrye-github/ixnetwork_restpy | python | @property
def BgpIpv6L2Site(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6l2site_91dde52dc0cc2c12360c0d436c8db2fe.BgpIpv6L2Site): An instance of the BgpIpv6L2Site class\n\n Raises\n ------\n - ServerError: The server has enc... |
@property
def BgpIpv6MVrf(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6mvrf_226a44af23e6291841522d3353c88b21.BgpIpv6MVrf): An instance of the BgpIpv6MVrf class\n\n Raises\n ------\n - ServerError: The server has encountered... | 6,978,177,364,024,046,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6mvrf_226a44af23e6291841522d3353c88b21.BgpIpv6MVrf): An instance of the BgpIpv6MVrf class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpIpv6MVrf | rfrye-github/ixnetwork_restpy | python | @property
def BgpIpv6MVrf(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpipv6mvrf_226a44af23e6291841522d3353c88b21.BgpIpv6MVrf): An instance of the BgpIpv6MVrf class\n\n Raises\n ------\n - ServerError: The server has encountered... |
@property
def BgpLsAsPathSegmentList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsaspathsegmentlist_fed4f671dbff6ccda8e8824fbe375856.BgpLsAsPathSegmentList): An instance of the BgpLsAsPathSegmentList class\n\n Raises\n ------\n ... | 2,239,986,300,212,686,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsaspathsegmentlist_fed4f671dbff6ccda8e8824fbe375856.BgpLsAsPathSegmentList): An instance of the BgpLsAsPathSegmentList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsAsPathSegmentList | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsAsPathSegmentList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsaspathsegmentlist_fed4f671dbff6ccda8e8824fbe375856.BgpLsAsPathSegmentList): An instance of the BgpLsAsPathSegmentList class\n\n Raises\n ------\n ... |
@property
def BgpLsClusterIdList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsclusteridlist_7b4bcec76ea98c69afbc1dcb2556f669.BgpLsClusterIdList): An instance of the BgpLsClusterIdList class\n\n Raises\n ------\n - ServerError... | -2,438,261,614,393,010,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsclusteridlist_7b4bcec76ea98c69afbc1dcb2556f669.BgpLsClusterIdList): An instance of the BgpLsClusterIdList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsClusterIdList | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsClusterIdList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsclusteridlist_7b4bcec76ea98c69afbc1dcb2556f669.BgpLsClusterIdList): An instance of the BgpLsClusterIdList class\n\n Raises\n ------\n - ServerError... |
@property
def BgpLsCommunitiesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplscommunitieslist_fdb216f1d4195f82ad738e19cb2b5d32.BgpLsCommunitiesList): An instance of the BgpLsCommunitiesList class\n\n Raises\n ------\n - Ser... | -7,831,585,676,460,029,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplscommunitieslist_fdb216f1d4195f82ad738e19cb2b5d32.BgpLsCommunitiesList): An instance of the BgpLsCommunitiesList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsCommunitiesList | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsCommunitiesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplscommunitieslist_fdb216f1d4195f82ad738e19cb2b5d32.BgpLsCommunitiesList): An instance of the BgpLsCommunitiesList class\n\n Raises\n ------\n - Ser... |
@property
def BgpLsExtendedCommunitiesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class\n\n Raise... | 4,599,853,937,210,486,300 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsExtendedCommunitiesList | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsExtendedCommunitiesList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgplsextendedcommunitieslist_835ffabe7ce10fa0b2a04b0ca4ed54d9.BgpLsExtendedCommunitiesList): An instance of the BgpLsExtendedCommunitiesList class\n\n Raise... |
@property
def BgpSRGBRangeSubObjectsList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrgbrangesubobjectslist_6e28159e439bbeffe19ca2de4c7f7879.BgpSRGBRangeSubObjectsList): An instance of the BgpSRGBRangeSubObjectsList class\n\n Raises\n ... | 3,278,076,265,471,277,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrgbrangesubobjectslist_6e28159e439bbeffe19ca2de4c7f7879.BgpSRGBRangeSubObjectsList): An instance of the BgpSRGBRangeSubObjectsList class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpSRGBRangeSubObjectsList | rfrye-github/ixnetwork_restpy | python | @property
def BgpSRGBRangeSubObjectsList(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrgbrangesubobjectslist_6e28159e439bbeffe19ca2de4c7f7879.BgpSRGBRangeSubObjectsList): An instance of the BgpSRGBRangeSubObjectsList class\n\n Raises\n ... |
@property
def BgpSRTEPoliciesListV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrtepolicieslistv6_4c4a356e5a00d2ddfa49e9cef396bffd.BgpSRTEPoliciesListV6): An instance of the BgpSRTEPoliciesListV6 class\n\n Raises\n ------\n -... | -2,489,453,630,538,092,500 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrtepolicieslistv6_4c4a356e5a00d2ddfa49e9cef396bffd.BgpSRTEPoliciesListV6): An instance of the BgpSRTEPoliciesListV6 class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpSRTEPoliciesListV6 | rfrye-github/ixnetwork_restpy | python | @property
def BgpSRTEPoliciesListV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpsrtepolicieslistv6_4c4a356e5a00d2ddfa49e9cef396bffd.BgpSRTEPoliciesListV6): An instance of the BgpSRTEPoliciesListV6 class\n\n Raises\n ------\n -... |
@property
def BgpV6Vrf(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpv6vrf_1d6029d380b737c5ce1f12d2ed82f3ed.BgpV6Vrf): An instance of the BgpV6Vrf class\n\n Raises\n ------\n - ServerError: The server has encountered an uncatego... | -3,337,457,177,840,421,400 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpv6vrf_1d6029d380b737c5ce1f12d2ed82f3ed.BgpV6Vrf): An instance of the BgpV6Vrf class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpV6Vrf | rfrye-github/ixnetwork_restpy | python | @property
def BgpV6Vrf(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.bgpv6vrf_1d6029d380b737c5ce1f12d2ed82f3ed.BgpV6Vrf): An instance of the BgpV6Vrf class\n\n Raises\n ------\n - ServerError: The server has encountered an uncatego... |
@property
def Connector(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class\n\n Raises\n ------\n - ServerError: The server has encountered an unca... | 6,783,369,117,556,820,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | Connector | rfrye-github/ixnetwork_restpy | python | @property
def Connector(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.connector_d0d942810e4010add7642d3914a1f29b.Connector): An instance of the Connector class\n\n Raises\n ------\n - ServerError: The server has encountered an unca... |
@property
def FlexAlgoColorMappingTemplate(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.flexalgocolormappingtemplate_8e0816b88fc7b32d81aaa2e2335895f1.FlexAlgoColorMappingTemplate): An instance of the FlexAlgoColorMappingTemplate class\n\n Raise... | 8,741,643,204,530,978,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.flexalgocolormappingtemplate_8e0816b88fc7b32d81aaa2e2335895f1.FlexAlgoColorMappingTemplate): An instance of the FlexAlgoColorMappingTemplate class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | FlexAlgoColorMappingTemplate | rfrye-github/ixnetwork_restpy | python | @property
def FlexAlgoColorMappingTemplate(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.flexalgocolormappingtemplate_8e0816b88fc7b32d81aaa2e2335895f1.FlexAlgoColorMappingTemplate): An instance of the FlexAlgoColorMappingTemplate class\n\n Raise... |
@property
def LearnedInfo(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.learnedinfo.learnedinfo_ff4d5e5643a63bccb40b6cf64fc58100.LearnedInfo): An instance of the LearnedInfo class\n\n Raises\n ------\n - ServerError: The server has... | 7,549,900,077,694,341,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.learnedinfo.learnedinfo_ff4d5e5643a63bccb40b6cf64fc58100.LearnedInfo): An instance of the LearnedInfo class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | LearnedInfo | rfrye-github/ixnetwork_restpy | python | @property
def LearnedInfo(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.learnedinfo.learnedinfo_ff4d5e5643a63bccb40b6cf64fc58100.LearnedInfo): An instance of the LearnedInfo class\n\n Raises\n ------\n - ServerError: The server has... |
@property
def TlvProfile(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.tlvprofile.tlvprofile_69db000d3ef3b060f5edc387b878736c.TlvProfile): An instance of the TlvProfile class\n\n Raises\n ------\n - ServerError: The server has enco... | 5,812,676,477,857,461,000 | Returns
-------
- obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.tlvprofile.tlvprofile_69db000d3ef3b060f5edc387b878736c.TlvProfile): An instance of the TlvProfile class
Raises
------
- ServerError: The server has encountered an uncategorized error condition | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | TlvProfile | rfrye-github/ixnetwork_restpy | python | @property
def TlvProfile(self):
'\n Returns\n -------\n - obj(uhd_restpy.testplatform.sessions.ixnetwork.topology.tlvprofile.tlvprofile_69db000d3ef3b060f5edc387b878736c.TlvProfile): An instance of the TlvProfile class\n\n Raises\n ------\n - ServerError: The server has enco... |
@property
def ActAsRestarted(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Act as restarted\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['ActAsRestarted'])) | -7,196,879,219,354,280,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Act as restarted | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | ActAsRestarted | rfrye-github/ixnetwork_restpy | python | @property
def ActAsRestarted(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Act as restarted\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['ActAsRestarted'])) |
@property
def Active(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Activate/Deactivate Configuration\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Active'])) | -8,614,067,439,674,340,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Activate/Deactivate Configuration | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | Active | rfrye-github/ixnetwork_restpy | python | @property
def Active(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Activate/Deactivate Configuration\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Active'])) |
@property
def AdvSrv6SidInIgp(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID in IGP\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvSrv6SidInIgp'])) | 7,843,939,858,331,869,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID in IGP | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AdvSrv6SidInIgp | rfrye-github/ixnetwork_restpy | python | @property
def AdvSrv6SidInIgp(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID in IGP\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvSrv6SidInIgp'])) |
@property
def AdvertiseEndOfRib(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise End-Of-RIB\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvertiseEndOfRib'])) | -568,183,110,144,396,500 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Advertise End-Of-RIB | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AdvertiseEndOfRib | rfrye-github/ixnetwork_restpy | python | @property
def AdvertiseEndOfRib(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise End-Of-RIB\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvertiseEndOfRib'])) |
@property
def AdvertiseEvpnRoutesForOtherVtep(self):
'\n Returns\n -------\n - bool: Advertise EVPN routes for other VTEPS\n '
return self._get_attribute(self._SDM_ATT_MAP['AdvertiseEvpnRoutesForOtherVtep']) | -327,058,035,595,677,000 | Returns
-------
- bool: Advertise EVPN routes for other VTEPS | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AdvertiseEvpnRoutesForOtherVtep | rfrye-github/ixnetwork_restpy | python | @property
def AdvertiseEvpnRoutesForOtherVtep(self):
'\n Returns\n -------\n - bool: Advertise EVPN routes for other VTEPS\n '
return self._get_attribute(self._SDM_ATT_MAP['AdvertiseEvpnRoutesForOtherVtep']) |
@property
def AdvertiseSRv6SID(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvertiseSRv6SID'])) | 1,427,049,423,402,907,600 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AdvertiseSRv6SID | rfrye-github/ixnetwork_restpy | python | @property
def AdvertiseSRv6SID(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise SRv6 SID\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AdvertiseSRv6SID'])) |
@property
def AdvertiseTunnelEncapsulationExtendedCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise Tunnel Encapsulation Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self.... | 2,813,584,264,658,598,400 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Advertise Tunnel Encapsulation Extended Community | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AdvertiseTunnelEncapsulationExtendedCommunity | rfrye-github/ixnetwork_restpy | python | @property
def AdvertiseTunnelEncapsulationExtendedCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Advertise Tunnel Encapsulation Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self.... |
@property
def AlwaysIncludeTunnelEncExtCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Always Include Tunnel Encapsulation Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_A... | -1,722,546,325,876,228,400 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Always Include Tunnel Encapsulation Extended Community | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AlwaysIncludeTunnelEncExtCommunity | rfrye-github/ixnetwork_restpy | python | @property
def AlwaysIncludeTunnelEncExtCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Always Include Tunnel Encapsulation Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_A... |
@property
def AsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AsSetMode'])) | 3,627,613,641,122,489,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AsSetMode | rfrye-github/ixnetwork_restpy | python | @property
def AsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['AsSetMode'])) |
@property
def Authentication(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Authentication Type\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Authentication'])) | -8,498,841,170,008,673,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Authentication Type | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | Authentication | rfrye-github/ixnetwork_restpy | python | @property
def Authentication(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Authentication Type\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Authentication'])) |
@property
def AutoGenSegmentLeftValue(self):
'\n Returns\n -------\n - bool: If enabled then Segment Left field value will be auto generated\n '
return self._get_attribute(self._SDM_ATT_MAP['AutoGenSegmentLeftValue']) | -2,350,733,040,861,744,000 | Returns
-------
- bool: If enabled then Segment Left field value will be auto generated | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | AutoGenSegmentLeftValue | rfrye-github/ixnetwork_restpy | python | @property
def AutoGenSegmentLeftValue(self):
'\n Returns\n -------\n - bool: If enabled then Segment Left field value will be auto generated\n '
return self._get_attribute(self._SDM_ATT_MAP['AutoGenSegmentLeftValue']) |
@property
def BgpFsmState(self):
'\n Returns\n -------\n - list(str[active | connect | error | established | idle | none | openConfirm | openSent]): Logs additional information about the BGP Peer State\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpFsmState']) | -7,621,347,124,457,967,000 | Returns
-------
- list(str[active | connect | error | established | idle | none | openConfirm | openSent]): Logs additional information about the BGP Peer State | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpFsmState | rfrye-github/ixnetwork_restpy | python | @property
def BgpFsmState(self):
'\n Returns\n -------\n - list(str[active | connect | error | established | idle | none | openConfirm | openSent]): Logs additional information about the BGP Peer State\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpFsmState']) |
@property
def BgpId(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): BGP ID\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpId'])) | 9,043,268,046,621,933,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): BGP ID | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpId | rfrye-github/ixnetwork_restpy | python | @property
def BgpId(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): BGP ID\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpId'])) |
@property
def BgpLsAsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsAsSetMode'])) | 319,127,661,016,352,300 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsAsSetMode | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsAsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsAsSetMode'])) |
@property
def BgpLsEnableAsPathSegments(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable AS Path Segments\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableAsPathSegments'])) | 2,265,162,943,682,732,500 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Enable AS Path Segments | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsEnableAsPathSegments | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsEnableAsPathSegments(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable AS Path Segments\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableAsPathSegments'])) |
@property
def BgpLsEnableCluster(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable Cluster\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableCluster'])) | 6,132,178,046,963,054,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Enable Cluster | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsEnableCluster | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsEnableCluster(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable Cluster\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableCluster'])) |
@property
def BgpLsEnableExtendedCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableExtendedCommunit... | 8,942,937,420,216,711,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Enable Extended Community | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsEnableExtendedCommunity | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsEnableExtendedCommunity(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Enable Extended Community\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsEnableExtendedCommunit... |
@property
def BgpLsNoOfASPathSegments(self):
'\n Returns\n -------\n - number: Number Of AS Path Segments Per Route Range\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfASPathSegments']) | -8,530,864,123,651,886,000 | Returns
-------
- number: Number Of AS Path Segments Per Route Range | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsNoOfASPathSegments | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsNoOfASPathSegments(self):
'\n Returns\n -------\n - number: Number Of AS Path Segments Per Route Range\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfASPathSegments']) |
@property
def BgpLsNoOfClusters(self):
'\n Returns\n -------\n - number: Number of Clusters\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfClusters']) | -3,051,049,339,947,409,000 | Returns
-------
- number: Number of Clusters | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsNoOfClusters | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsNoOfClusters(self):
'\n Returns\n -------\n - number: Number of Clusters\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfClusters']) |
@property
def BgpLsNoOfCommunities(self):
'\n Returns\n -------\n - number: Number of Communities\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfCommunities']) | -5,189,109,858,748,717,000 | Returns
-------
- number: Number of Communities | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsNoOfCommunities | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsNoOfCommunities(self):
'\n Returns\n -------\n - number: Number of Communities\n '
return self._get_attribute(self._SDM_ATT_MAP['BgpLsNoOfCommunities']) |
@property
def BgpLsOverridePeerAsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Override Peer AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsOverridePeerAsSetMode']... | -5,136,637,764,748,780,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Override Peer AS# Set Mode | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpLsOverridePeerAsSetMode | rfrye-github/ixnetwork_restpy | python | @property
def BgpLsOverridePeerAsSetMode(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Override Peer AS# Set Mode\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpLsOverridePeerAsSetMode']... |
@property
def BgpUnnumbered(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): If enabled, BGP local IP will be Link-local IP.\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpUnnumbered'])) | 3,803,989,257,556,558,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): If enabled, BGP local IP will be Link-local IP. | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | BgpUnnumbered | rfrye-github/ixnetwork_restpy | python | @property
def BgpUnnumbered(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): If enabled, BGP local IP will be Link-local IP.\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['BgpUnnumbered'])) |
@property
def CapabilityIpV4Mdt(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 BGP MDT: AFI = 1, SAFI = 66\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mdt'])) | 4,725,452,127,750,323,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 BGP MDT: AFI = 1, SAFI = 66 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4Mdt | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4Mdt(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 BGP MDT: AFI = 1, SAFI = 66\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mdt'])) |
@property
def CapabilityIpV4Mpls(self):
'DEPRECATED \n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mpls'])) | 2,653,988,765,480,852,000 | DEPRECATED
Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4Mpls | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4Mpls(self):
'DEPRECATED \n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mpls'])) |
@property
def CapabilityIpV4MplsVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS VPN Capability: AFI=1,SAFI=128\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4MplsV... | 7,705,672,281,504,060,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS VPN Capability: AFI=1,SAFI=128 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4MplsVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4MplsVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 MPLS VPN Capability: AFI=1,SAFI=128\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4MplsV... |
@property
def CapabilityIpV4Multicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Multicast Capability: AFI=1,SAFI=2\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mult... | -5,959,574,163,894,074,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 Multicast Capability: AFI=1,SAFI=2 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4Multicast | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4Multicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Multicast Capability: AFI=1,SAFI=2\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Mult... |
@property
def CapabilityIpV4MulticastVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IP MCAST-VPN: AFI = 1, SAFI = 5\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Multicast... | -1,670,850,077,124,506,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IP MCAST-VPN: AFI = 1, SAFI = 5 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4MulticastVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4MulticastVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IP MCAST-VPN: AFI = 1, SAFI = 5\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Multicast... |
@property
def CapabilityIpV4Unicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Capability: AFI=1,SAFI=1\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Unicast'... | -2,234,620,909,009,305,300 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Capability: AFI=1,SAFI=1 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV4Unicast | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV4Unicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Capability: AFI=1,SAFI=1\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV4Unicast'... |
@property
def CapabilityIpV6Mpls(self):
'DEPRECATED \n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Mpls'])) | 4,050,921,797,112,284,700 | DEPRECATED
Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV6Mpls | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV6Mpls(self):
'DEPRECATED \n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Mpls'])) |
@property
def CapabilityIpV6MplsVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS VPN Capability: AFI=2,SAFI=128\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6MplsV... | -7,248,043,999,864,903,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS VPN Capability: AFI=2,SAFI=128 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV6MplsVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV6MplsVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 MPLS VPN Capability: AFI=2,SAFI=128\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6MplsV... |
@property
def CapabilityIpV6Multicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 Multicast Capability: AFI=2,SAFI=2\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Mult... | 7,636,897,105,456,212,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv6 Multicast Capability: AFI=2,SAFI=2 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV6Multicast | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV6Multicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 Multicast Capability: AFI=2,SAFI=2\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Mult... |
@property
def CapabilityIpV6MulticastVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IP6 MCAST-VPN: AFI = 2, SAFI = 5\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Multicas... | 4,273,521,640,843,206,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IP6 MCAST-VPN: AFI = 2, SAFI = 5 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV6MulticastVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV6MulticastVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IP6 MCAST-VPN: AFI = 2, SAFI = 5\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Multicas... |
@property
def CapabilityIpV6Unicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 Unicast Capability: AFI=2,SAFI=1\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Unicast'... | 6,578,704,941,314,357,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv6 Unicast Capability: AFI=2,SAFI=1 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpV6Unicast | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpV6Unicast(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 Unicast Capability: AFI=2,SAFI=1\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpV6Unicast'... |
@property
def CapabilityIpv4MplsAddPath(self):
'\n Returns\n -------\n - bool: IPv4 MPLS Add Path Capability\n '
return self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv4MplsAddPath']) | 5,448,256,857,143,750,000 | Returns
-------
- bool: IPv4 MPLS Add Path Capability | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpv4MplsAddPath | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpv4MplsAddPath(self):
'\n Returns\n -------\n - bool: IPv4 MPLS Add Path Capability\n '
return self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv4MplsAddPath']) |
@property
def CapabilityIpv4UnicastAddPath(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Check box for IPv4 Unicast Add Path\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv4Uni... | 4,481,523,749,071,057,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Check box for IPv4 Unicast Add Path | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpv4UnicastAddPath | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpv4UnicastAddPath(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Check box for IPv4 Unicast Add Path\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv4Uni... |
@property
def CapabilityIpv6MplsAddPath(self):
'\n Returns\n -------\n - bool: IPv6 MPLS Add Path Capability\n '
return self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv6MplsAddPath']) | -468,016,014,134,343,900 | Returns
-------
- bool: IPv6 MPLS Add Path Capability | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpv6MplsAddPath | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpv6MplsAddPath(self):
'\n Returns\n -------\n - bool: IPv6 MPLS Add Path Capability\n '
return self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv6MplsAddPath']) |
@property
def CapabilityIpv6UnicastAddPath(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Check box for IPv6 Unicast Add Path\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv6Uni... | 6,929,437,793,636,300,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Check box for IPv6 Unicast Add Path | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityIpv6UnicastAddPath | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityIpv6UnicastAddPath(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Check box for IPv6 Unicast Add Path\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityIpv6Uni... |
@property
def CapabilityLinkStateNonVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Link State Non-VPN Capability: AFI=16388,SAFI=71\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Capabil... | -236,741,811,375,229,800 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Link State Non-VPN Capability: AFI=16388,SAFI=71 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityLinkStateNonVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityLinkStateNonVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Link State Non-VPN Capability: AFI=16388,SAFI=71\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Capabil... |
@property
def CapabilityLinkStateVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Select this check box to enable Link State VPN capability on the router.AFI=16388 and SAFI=72 values will be supported.\n '
from uhd_restpy.multivalue import Multivalue
re... | 9,103,111,205,149,441,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Select this check box to enable Link State VPN capability on the router.AFI=16388 and SAFI=72 values will be supported. | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityLinkStateVpn | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityLinkStateVpn(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Select this check box to enable Link State VPN capability on the router.AFI=16388 and SAFI=72 values will be supported.\n '
from uhd_restpy.multivalue import Multivalue
re... |
@property
def CapabilityNHEncodingCapabilities(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Extended Next Hop Encoding Capability which needs to be used when advertising IPv4 or VPN-IPv4 routes over IPv6 Core\n '
from uhd_restpy.multivalue import Multivalue... | 8,351,961,515,150,855,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Extended Next Hop Encoding Capability which needs to be used when advertising IPv4 or VPN-IPv4 routes over IPv6 Core | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityNHEncodingCapabilities | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityNHEncodingCapabilities(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Extended Next Hop Encoding Capability which needs to be used when advertising IPv4 or VPN-IPv4 routes over IPv6 Core\n '
from uhd_restpy.multivalue import Multivalue... |
@property
def CapabilityRouteConstraint(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Route Constraint Capability: AFI=1,SAFI=132\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityRo... | 7,900,999,350,622,410,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Route Constraint Capability: AFI=1,SAFI=132 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityRouteConstraint | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityRouteConstraint(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Route Constraint Capability: AFI=1,SAFI=132\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityRo... |
@property
def CapabilityRouteRefresh(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Route Refresh\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityRouteRefresh'])) | 5,150,408,324,567,939,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): Route Refresh | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityRouteRefresh | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityRouteRefresh(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): Route Refresh\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityRouteRefresh'])) |
@property
def CapabilitySRTEPoliciesV4(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 SR TE Policy Capability: AFI=1,SAFI=73\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilitySRT... | 4,357,890,466,959,535,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 SR TE Policy Capability: AFI=1,SAFI=73 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilitySRTEPoliciesV4 | rfrye-github/ixnetwork_restpy | python | @property
def CapabilitySRTEPoliciesV4(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 SR TE Policy Capability: AFI=1,SAFI=73\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilitySRT... |
@property
def CapabilitySRTEPoliciesV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 SR TE Policy Capability: AFI=2,SAFI=73\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilitySRT... | -281,317,356,902,695,460 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv6 SR TE Policy Capability: AFI=2,SAFI=73 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilitySRTEPoliciesV6 | rfrye-github/ixnetwork_restpy | python | @property
def CapabilitySRTEPoliciesV6(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv6 SR TE Policy Capability: AFI=2,SAFI=73\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilitySRT... |
@property
def CapabilityVpls(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): VPLS Capability: AFI = 25, SAFI = 65\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityVpls'])) | 2,527,981,225,844,211,000 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): VPLS Capability: AFI = 25, SAFI = 65 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | CapabilityVpls | rfrye-github/ixnetwork_restpy | python | @property
def CapabilityVpls(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): VPLS Capability: AFI = 25, SAFI = 65\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['CapabilityVpls'])) |
@property
def Capabilityipv4UnicastFlowSpec(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Flow Spec Capability: AFI=1,SAFI=133\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Ca... | 432,845,826,204,110,460 | Returns
-------
- obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Flow Spec Capability: AFI=1,SAFI=133 | uhd_restpy/testplatform/sessions/ixnetwork/topology/bgpipv6peer_d4ac277d9da759fd5a152b8e6eb0ab20.py | Capabilityipv4UnicastFlowSpec | rfrye-github/ixnetwork_restpy | python | @property
def Capabilityipv4UnicastFlowSpec(self):
'\n Returns\n -------\n - obj(uhd_restpy.multivalue.Multivalue): IPv4 Unicast Flow Spec Capability: AFI=1,SAFI=133\n '
from uhd_restpy.multivalue import Multivalue
return Multivalue(self, self._get_attribute(self._SDM_ATT_MAP['Ca... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.