:py:mod:`vendor_fabric.secrets_sync.tools` ========================================== .. py:module:: vendor_fabric.secrets_sync.tools .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools :parser: myst :allowtitles: Module Contents --------------- Classes ~~~~~~~ .. list-table:: :class: autosummary longtable :align: left * - :py:obj:`ValidateConfigSchema ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.ValidateConfigSchema :parser: myst :summary: * - :py:obj:`RunPipelineSchema ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema :parser: myst :summary: * - :py:obj:`GetConfigInfoSchema ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema :parser: myst :summary: Functions ~~~~~~~~~ .. list-table:: :class: autosummary longtable :align: left * - :py:obj:`validate_config ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.validate_config :parser: myst :summary: * - :py:obj:`run_pipeline ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.run_pipeline :parser: myst :summary: * - :py:obj:`dry_run ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.dry_run :parser: myst :summary: * - :py:obj:`get_config_info ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_config_info :parser: myst :summary: * - :py:obj:`get_targets ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_targets :parser: myst :summary: * - :py:obj:`get_sources ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_sources :parser: myst :summary: Data ~~~~ .. list-table:: :class: autosummary longtable :align: left * - :py:obj:`TOOL_DEFINITIONS ` - .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.TOOL_DEFINITIONS :parser: myst :summary: API ~~~ .. py:class:: ValidateConfigSchema(/, **data: typing.Any) :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema Bases: :py:obj:`pydantic.BaseModel` .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.ValidateConfigSchema :parser: myst .. rubric:: Initialization .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.__init__ :parser: myst .. py:attribute:: config_path :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.config_path :type: str :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.config_path :parser: myst .. py:attribute:: model_config :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_config :type: typing.ClassVar[pydantic.config.ConfigDict] :value: 'ConfigDict(...)' .. py:method:: model_fields() -> dict[str, pydantic.fields.FieldInfo] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_fields :classmethod: .. py:method:: model_computed_fields() -> dict[str, pydantic.fields.ComputedFieldInfo] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_computed_fields :classmethod: .. py:property:: model_extra :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_extra :type: dict[str, typing.Any] | None .. py:property:: model_fields_set :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_fields_set :type: set[str] .. py:method:: model_construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_construct :classmethod: .. py:method:: model_copy(*, update: collections.abc.Mapping[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_copy .. py:method:: model_dump(*, mode: typing.Literal[json, python] | str = 'python', include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_dump .. py:method:: model_dump_json(*, indent: int | None = None, ensure_ascii: bool = False, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> str :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_dump_json .. py:method:: model_json_schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, schema_generator: type[pydantic.json_schema.GenerateJsonSchema] = GenerateJsonSchema, mode: pydantic.json_schema.JsonSchemaMode = 'validation', *, union_format: typing.Literal[any_of, primitive_type_array] = 'any_of') -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_json_schema :classmethod: .. py:method:: model_parametrized_name(params: tuple[type[typing.Any], ...]) -> str :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_parametrized_name :classmethod: .. py:method:: model_post_init(context: typing.Any, /) -> None :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_post_init .. py:method:: model_rebuild(*, force: bool = False, raise_errors: bool = True, _parent_namespace_depth: int = 2, _types_namespace: pydantic._internal._namespace_utils.MappingNamespace | None = None) -> bool | None :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_rebuild :classmethod: .. py:method:: model_validate(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, from_attributes: bool | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_validate :classmethod: .. py:method:: model_validate_json(json_data: str | bytes | bytearray, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_validate_json :classmethod: .. py:method:: model_validate_strings(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.model_validate_strings :classmethod: .. py:method:: dict(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.dict .. py:method:: json(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, encoder: typing.Callable[[typing.Any], typing.Any] | None = PydanticUndefined, models_as_dict: bool = PydanticUndefined, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.json .. py:method:: parse_obj(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.parse_obj :classmethod: .. py:method:: parse_raw(b: str | bytes, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.parse_raw :classmethod: .. py:method:: parse_file(path: str | pathlib.Path, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.parse_file :classmethod: .. py:method:: from_orm(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.from_orm :classmethod: .. py:method:: construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.construct :classmethod: .. py:method:: copy(*, include: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, exclude: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, update: typing.Dict[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.copy .. py:method:: schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.schema :classmethod: .. py:method:: schema_json(*, by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.schema_json :classmethod: .. py:method:: validate(value: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.validate :classmethod: .. py:method:: update_forward_refs(**localns: typing.Any) -> None :canonical: vendor_fabric.secrets_sync.tools.ValidateConfigSchema.update_forward_refs :classmethod: .. py:class:: RunPipelineSchema(/, **data: typing.Any) :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema Bases: :py:obj:`pydantic.BaseModel` .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema :parser: myst .. rubric:: Initialization .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.__init__ :parser: myst .. py:attribute:: config_path :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.config_path :type: str :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.config_path :parser: myst .. py:attribute:: dry_run :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.dry_run :type: bool :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.dry_run :parser: myst .. py:attribute:: operation :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.operation :type: str :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.operation :parser: myst .. py:attribute:: targets :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.targets :type: str | None :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.targets :parser: myst .. py:attribute:: continue_on_error :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.continue_on_error :type: bool :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.RunPipelineSchema.continue_on_error :parser: myst .. py:attribute:: model_config :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_config :type: typing.ClassVar[pydantic.config.ConfigDict] :value: 'ConfigDict(...)' .. py:method:: model_fields() -> dict[str, pydantic.fields.FieldInfo] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_fields :classmethod: .. py:method:: model_computed_fields() -> dict[str, pydantic.fields.ComputedFieldInfo] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_computed_fields :classmethod: .. py:property:: model_extra :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_extra :type: dict[str, typing.Any] | None .. py:property:: model_fields_set :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_fields_set :type: set[str] .. py:method:: model_construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_construct :classmethod: .. py:method:: model_copy(*, update: collections.abc.Mapping[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_copy .. py:method:: model_dump(*, mode: typing.Literal[json, python] | str = 'python', include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_dump .. py:method:: model_dump_json(*, indent: int | None = None, ensure_ascii: bool = False, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> str :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_dump_json .. py:method:: model_json_schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, schema_generator: type[pydantic.json_schema.GenerateJsonSchema] = GenerateJsonSchema, mode: pydantic.json_schema.JsonSchemaMode = 'validation', *, union_format: typing.Literal[any_of, primitive_type_array] = 'any_of') -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_json_schema :classmethod: .. py:method:: model_parametrized_name(params: tuple[type[typing.Any], ...]) -> str :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_parametrized_name :classmethod: .. py:method:: model_post_init(context: typing.Any, /) -> None :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_post_init .. py:method:: model_rebuild(*, force: bool = False, raise_errors: bool = True, _parent_namespace_depth: int = 2, _types_namespace: pydantic._internal._namespace_utils.MappingNamespace | None = None) -> bool | None :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_rebuild :classmethod: .. py:method:: model_validate(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, from_attributes: bool | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_validate :classmethod: .. py:method:: model_validate_json(json_data: str | bytes | bytearray, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_validate_json :classmethod: .. py:method:: model_validate_strings(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.model_validate_strings :classmethod: .. py:method:: dict(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.dict .. py:method:: json(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, encoder: typing.Callable[[typing.Any], typing.Any] | None = PydanticUndefined, models_as_dict: bool = PydanticUndefined, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.json .. py:method:: parse_obj(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.parse_obj :classmethod: .. py:method:: parse_raw(b: str | bytes, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.parse_raw :classmethod: .. py:method:: parse_file(path: str | pathlib.Path, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.parse_file :classmethod: .. py:method:: from_orm(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.from_orm :classmethod: .. py:method:: construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.construct :classmethod: .. py:method:: copy(*, include: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, exclude: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, update: typing.Dict[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.copy .. py:method:: schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.schema :classmethod: .. py:method:: schema_json(*, by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.schema_json :classmethod: .. py:method:: validate(value: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.validate :classmethod: .. py:method:: update_forward_refs(**localns: typing.Any) -> None :canonical: vendor_fabric.secrets_sync.tools.RunPipelineSchema.update_forward_refs :classmethod: .. py:class:: GetConfigInfoSchema(/, **data: typing.Any) :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema Bases: :py:obj:`pydantic.BaseModel` .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema :parser: myst .. rubric:: Initialization .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.__init__ :parser: myst .. py:attribute:: config_path :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.config_path :type: str :value: 'Field(...)' .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.config_path :parser: myst .. py:attribute:: model_config :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_config :type: typing.ClassVar[pydantic.config.ConfigDict] :value: 'ConfigDict(...)' .. py:method:: model_fields() -> dict[str, pydantic.fields.FieldInfo] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_fields :classmethod: .. py:method:: model_computed_fields() -> dict[str, pydantic.fields.ComputedFieldInfo] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_computed_fields :classmethod: .. py:property:: model_extra :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_extra :type: dict[str, typing.Any] | None .. py:property:: model_fields_set :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_fields_set :type: set[str] .. py:method:: model_construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_construct :classmethod: .. py:method:: model_copy(*, update: collections.abc.Mapping[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_copy .. py:method:: model_dump(*, mode: typing.Literal[json, python] | str = 'python', include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_dump .. py:method:: model_dump_json(*, indent: int | None = None, ensure_ascii: bool = False, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, context: typing.Any | None = None, by_alias: bool | None = None, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, exclude_computed_fields: bool = False, round_trip: bool = False, warnings: bool | typing.Literal[none, warn, error] = True, fallback: typing.Callable[[typing.Any], typing.Any] | None = None, serialize_as_any: bool = False, polymorphic_serialization: bool | None = None) -> str :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_dump_json .. py:method:: model_json_schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, schema_generator: type[pydantic.json_schema.GenerateJsonSchema] = GenerateJsonSchema, mode: pydantic.json_schema.JsonSchemaMode = 'validation', *, union_format: typing.Literal[any_of, primitive_type_array] = 'any_of') -> dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_json_schema :classmethod: .. py:method:: model_parametrized_name(params: tuple[type[typing.Any], ...]) -> str :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_parametrized_name :classmethod: .. py:method:: model_post_init(context: typing.Any, /) -> None :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_post_init .. py:method:: model_rebuild(*, force: bool = False, raise_errors: bool = True, _parent_namespace_depth: int = 2, _types_namespace: pydantic._internal._namespace_utils.MappingNamespace | None = None) -> bool | None :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_rebuild :classmethod: .. py:method:: model_validate(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, from_attributes: bool | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_validate :classmethod: .. py:method:: model_validate_json(json_data: str | bytes | bytearray, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_validate_json :classmethod: .. py:method:: model_validate_strings(obj: typing.Any, *, strict: bool | None = None, extra: pydantic.config.ExtraValues | None = None, context: typing.Any | None = None, by_alias: bool | None = None, by_name: bool | None = None) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.model_validate_strings :classmethod: .. py:method:: dict(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.dict .. py:method:: json(*, include: pydantic.main.IncEx | None = None, exclude: pydantic.main.IncEx | None = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False, exclude_none: bool = False, encoder: typing.Callable[[typing.Any], typing.Any] | None = PydanticUndefined, models_as_dict: bool = PydanticUndefined, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.json .. py:method:: parse_obj(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.parse_obj :classmethod: .. py:method:: parse_raw(b: str | bytes, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.parse_raw :classmethod: .. py:method:: parse_file(path: str | pathlib.Path, *, content_type: str | None = None, encoding: str = 'utf8', proto: pydantic.deprecated.parse.Protocol | None = None, allow_pickle: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.parse_file :classmethod: .. py:method:: from_orm(obj: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.from_orm :classmethod: .. py:method:: construct(_fields_set: set[str] | None = None, **values: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.construct :classmethod: .. py:method:: copy(*, include: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, exclude: pydantic._internal._utils.AbstractSetIntStr | pydantic._internal._utils.MappingIntStrAny | None = None, update: typing.Dict[str, typing.Any] | None = None, deep: bool = False) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.copy .. py:method:: schema(by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE) -> typing.Dict[str, typing.Any] :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.schema :classmethod: .. py:method:: schema_json(*, by_alias: bool = True, ref_template: str = DEFAULT_REF_TEMPLATE, **dumps_kwargs: typing.Any) -> str :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.schema_json :classmethod: .. py:method:: validate(value: typing.Any) -> typing_extensions.Self :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.validate :classmethod: .. py:method:: update_forward_refs(**localns: typing.Any) -> None :canonical: vendor_fabric.secrets_sync.tools.GetConfigInfoSchema.update_forward_refs :classmethod: .. py:function:: validate_config(config_path: str) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.validate_config .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.validate_config :parser: myst .. py:function:: run_pipeline(config_path: str, dry_run: bool = False, operation: str = 'pipeline', targets: str | None = None, continue_on_error: bool = True) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.run_pipeline .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.run_pipeline :parser: myst .. py:function:: dry_run(config_path: str) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.dry_run .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.dry_run :parser: myst .. py:function:: get_config_info(config_path: str) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.get_config_info .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_config_info :parser: myst .. py:function:: get_targets(config_path: str) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.get_targets .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_targets :parser: myst .. py:function:: get_sources(config_path: str) -> extended_data.containers.ExtendedDict :canonical: vendor_fabric.secrets_sync.tools.get_sources .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.get_sources :parser: myst .. py:data:: TOOL_DEFINITIONS :canonical: vendor_fabric.secrets_sync.tools.TOOL_DEFINITIONS :value: None .. autodoc2-docstring:: vendor_fabric.secrets_sync.tools.TOOL_DEFINITIONS :parser: myst