Exemplo n.º 1
0
 def _get_operations(self, context):
     return FrozenDict(
         get_and_override_operation_definitions_from_type(context, self))
Exemplo n.º 2
0
 def _get_output_values(self, context):
     return FrozenDict(get_parameter_values(context, self, 'outputs'))
Exemplo n.º 3
0
 def _get_inputs(self, context):
     return FrozenDict(
         get_and_override_input_definitions_from_type(context, self))
Exemplo n.º 4
0
 def _get_interfaces(self, context):
     return FrozenDict(get_template_interfaces(context, self, 'group definition'))
Exemplo n.º 5
0
 def _get_property_values(self, context):
     return FrozenDict(get_assigned_and_defined_parameter_values(context, self, 'property'))
Exemplo n.º 6
0
 def _get_attribute_default_values(self, context):
     return FrozenDict(get_assigned_and_defined_parameter_values(context, self, 'attribute'))
Exemplo n.º 7
0
 def _get_interfaces(self, context):
     return FrozenDict(get_template_interfaces(context, self, 'relationship template'))
Exemplo n.º 8
0
 def _get_interfaces(self, context):
     return FrozenDict(get_template_interfaces(context, self, 'node template'))
Exemplo n.º 9
0
 def _get_artifacts(self, context):
     return FrozenDict(get_inherited_artifact_definitions(context, self))
Exemplo n.º 10
0
 def _get_properties(self, context):
     return FrozenDict(
         get_inherited_parameter_definitions(context, self, 'properties'))
Exemplo n.º 11
0
 def _get_capabilities(self, context):
     return FrozenDict(get_template_capabilities(context, self))
Exemplo n.º 12
0
 def _get_interfaces(self, context):
     return FrozenDict(
         get_inherited_interface_definitions(context, self, 'group type'))
Exemplo n.º 13
0
 def _get_capabilities(self, context):
     return FrozenDict(get_inherited_capability_definitions(context, self))
Exemplo n.º 14
0
 def _get_attributes(self, context):
     return FrozenDict(
         get_inherited_parameter_definitions(context, self, 'attributes'))
Exemplo n.º 15
0
 def _get_operations(self, context):
     return FrozenDict(get_inherited_operations(context, self))
Exemplo n.º 16
0
 def _get_inputs(self, context):
     return FrozenDict(
         get_inherited_parameter_definitions(context, self, 'inputs'))