File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -669,7 +669,6 @@ async def put_component_template(
669
669
* ,
670
670
name : str ,
671
671
template : t .Optional [t .Mapping [str , t .Any ]] = None ,
672
- cause : t .Optional [str ] = None ,
673
672
create : t .Optional [bool ] = None ,
674
673
deprecated : t .Optional [bool ] = None ,
675
674
error_trace : t .Optional [bool ] = None ,
@@ -699,7 +698,6 @@ async def put_component_template(
699
698
update settings API.
700
699
:param template: The template to be applied which includes mappings, settings,
701
700
or aliases configuration.
702
- :param cause:
703
701
:param create: If `true`, this request cannot replace or update existing component
704
702
templates.
705
703
:param deprecated: Marks this index template as deprecated. When creating or
@@ -724,8 +722,6 @@ async def put_component_template(
724
722
__path = f'/_component_template/{ __path_parts ["name" ]} '
725
723
__query : t .Dict [str , t .Any ] = {}
726
724
__body : t .Dict [str , t .Any ] = body if body is not None else {}
727
- if cause is not None :
728
- __query ["cause" ] = cause
729
725
if create is not None :
730
726
__query ["create" ] = create
731
727
if error_trace is not None :
Original file line number Diff line number Diff line change @@ -669,7 +669,6 @@ def put_component_template(
669
669
* ,
670
670
name : str ,
671
671
template : t .Optional [t .Mapping [str , t .Any ]] = None ,
672
- cause : t .Optional [str ] = None ,
673
672
create : t .Optional [bool ] = None ,
674
673
deprecated : t .Optional [bool ] = None ,
675
674
error_trace : t .Optional [bool ] = None ,
@@ -699,7 +698,6 @@ def put_component_template(
699
698
update settings API.
700
699
:param template: The template to be applied which includes mappings, settings,
701
700
or aliases configuration.
702
- :param cause:
703
701
:param create: If `true`, this request cannot replace or update existing component
704
702
templates.
705
703
:param deprecated: Marks this index template as deprecated. When creating or
@@ -724,8 +722,6 @@ def put_component_template(
724
722
__path = f'/_component_template/{ __path_parts ["name" ]} '
725
723
__query : t .Dict [str , t .Any ] = {}
726
724
__body : t .Dict [str , t .Any ] = body if body is not None else {}
727
- if cause is not None :
728
- __query ["cause" ] = cause
729
725
if create is not None :
730
726
__query ["create" ] = create
731
727
if error_trace is not None :
You can’t perform that action at this time.
0 commit comments