Lines Matching full:resources
126 def update_obj_instance(self, endpoint: str, path: str, resources: dict):
128 data = self._define_obj_inst(path, resources)
131 def replace_obj_instance(self, endpoint: str, path: str, resources: dict):
133 data = self._define_obj_inst(path, resources)
136 def create_obj_instance(self, endpoint: str, path: str, resources: dict):
138 data = self._define_obj_inst(path, resources)
174 def _define_obj_inst(cls, path: str, resources: dict):
179 "resources": []
181 for key, value in resources.items():
186 data['resources'].append(cls._define_resource(key, value, kind))
238 resources = {}
239 for resource in content['resources']:
240 resources.update(cls._decode_resource(resource))
241 return {content['id']: resources}
327 def composite_write(self, endpoint: str, resources: dict):
331 Targeted resources are defined as a dictionary with the following structure:
347 for path, value in resources.items():