Ejemplo n.º 1
0
 def _get_property_values(self, context):
     return FrozenDict(
         get_assigned_and_defined_property_values(context, self))
Ejemplo n.º 2
0
 def _get_output_values(self, context):
     return FrozenDict(get_parameter_values(context, self, 'outputs'))
Ejemplo n.º 3
0
 def _get_interfaces(self, context):
     return FrozenDict(
         get_template_interfaces(context, self, 'relationship template'))
Ejemplo n.º 4
0
 def _get_interfaces(self, context):
     return FrozenDict(
         get_template_interfaces(context, self, 'group definition'))
Ejemplo n.º 5
0
 def _get_interfaces(self, context):
     return FrozenDict(
         get_template_interfaces(context, self, 'node template'))
Ejemplo n.º 6
0
 def _get_artifacts(self, context):
     return FrozenDict(get_inherited_artifact_definitions(context, self))
Ejemplo n.º 7
0
 def _get_operations(self, context):
     return FrozenDict(
         get_and_override_operation_definitions_from_type(context, self))
Ejemplo n.º 8
0
 def _get_capabilities(self, context):
     return FrozenDict(get_template_capabilities(context, self))
Ejemplo n.º 9
0
 def _get_properties(self, context):
     return FrozenDict(
         get_inherited_property_definitions(context, self, 'properties'))
Ejemplo n.º 10
0
 def _get_inputs(self, context):
     return FrozenDict(
         get_and_override_input_definitions_from_type(context, self))
Ejemplo n.º 11
0
 def _get_interfaces(self, context):
     return FrozenDict(
         get_inherited_interface_definitions(context, self, 'group type'))
Ejemplo n.º 12
0
 def _get_capabilities(self, context):
     return FrozenDict(get_inherited_capability_definitions(context, self))
Ejemplo n.º 13
0
 def _get_operations(self, context):
     return FrozenDict(get_inherited_operations(context, self))
Ejemplo n.º 14
0
 def _get_target_interfaces(self, context):
     return FrozenDict(
         get_inherited_interface_definitions(context, self,
                                             'relationship type',
                                             'target_interfaces'))
Ejemplo n.º 15
0
 def _get_properties(self, context):
     return FrozenDict(
         get_relationship_inherited_property_definitions(context, self))