Re: attributes

2017-11-16 Thread DeWayne Filppi
I'm not sure there is any reason to mention it in TOSCA, but that's OK. It also would allow lazy evaluation by node types. Some rarely used attributes might cause slow performance in a non-lazy plugin. On Thu, Nov 16, 2017 at 12:36 PM, Tal Liron <t...@cloudify.co> wrote: > I do have s

Re: attributes

2017-11-16 Thread DeWayne Filppi
t; > > > > > > What I'm talking about has nothing to do with TOSCA. It only has to > do > > > > with the orchestrator. Accessing an attribute has nothing to do with > > > > operations. > > > > > > > > On Thu, Nov 16, 2017 at 11:46 AM, Tal Liron <t

Re: attributes

2017-11-16 Thread Tal Liron
; > > > > > On Thu, Nov 16, 2017 at 11:46 AM, Tal Liron <t...@cloudify.co> wrote: > > > > > > > DeWayne, what you asking for might be achievable via the > > > > "get_operation_output" function. This function is not very well > defined &g

Re: attributes

2017-11-16 Thread DeWayne Filppi
rote: > > > > > DeWayne, what you asking for might be achievable via the > > > "get_operation_output" function. This function is not very well defined > > in > > > TOSCA, but it seems that the expectation is that every operation can > > return > &g

Re: attributes

2017-11-16 Thread Tal Liron
wrote: > > > DeWayne, what you asking for might be achievable via the > > "get_operation_output" function. This function is not very well defined > in > > TOSCA, but it seems that the expectation is that every operation can > return > > an untyped key-value dict. This

Re: attributes

2017-11-16 Thread DeWayne Filppi
vable via the > "get_operation_output" function. This function is not very well defined in > TOSCA, but it seems that the expectation is that every operation can return > an untyped key-value dict. This has nothing to do with attributes per se, > but behind the scenes works quite similarly.

Re: attributes

2017-11-16 Thread DeWayne Filppi
). It is portable, because the plugin is in charge of attributes for the types it defines. Basic stuff. On Thu, Nov 16, 2017 at 11:25 AM, Steve Baillargeon < steve.baillarg...@ericsson.com> wrote: > Hi > A follow-up question. > I am trying to understand the meaning of

Re: attributes

2017-11-16 Thread Tal Liron
DeWayne, what you asking for might be achievable via the "get_operation_output" function. This function is not very well defined in TOSCA, but it seems that the expectation is that every operation can return an untyped key-value dict. This has nothing to do with attributes per se,

RE: attributes

2017-11-16 Thread Steve Baillargeon
e a calculated value or any function implemented by the plugin? Yes I agree this is not portable. Did I miss something? -Steve -Original Message- From: Tal Liron [mailto:t...@cloudify.co] Sent: Wednesday, November 15, 2017 4:24 PM To: dev@ariatosca.incubator.apache.org Subject:

Re: attributes

2017-11-15 Thread DeWayne Filppi
other use cases would benefit. Note that the default "getter" for attributes could simply fetch the value from ARIA storage. DeWayne On Wed, Nov 15, 2017 at 1:23 PM, Tal Liron <t...@cloudify.co> wrote: > Well, this is a bit complex. > > Attributes are ostensibly fil

Re: attributes

2017-11-15 Thread Tal Liron
Well, this is a bit complex. Attributes are ostensibly filled during runtime by other systems, for example during the install workflow an ip_address would get its real value. It's not really clear how another system would be able to insert a function here, but it's not impossible. In ARIA's case

attributes

2017-11-15 Thread DeWayne Filppi
General TOSCA question. Is there anything in the spec that requires attributes to be values rather than functions? IOW, is there anything in there that prevents an orchestrator from representing an attribute read as more of a "getter", rather than a database fetch? I ask because I've

Re: Attributes

2017-11-14 Thread Tal Liron
No. Because TOSCA doesn't: attributes must be declared at the type. But, you can always declare an "open" type (map of strings) to allow for arbitrary attributes. On Tue, Nov 14, 2017 at 6:55 PM, DeWayne Filppi <dewa...@cloudify.co> wrote: > Does Aria permit adhoc attributes

Re: Attributes

2017-11-14 Thread DeWayne Filppi
Does Aria permit adhoc attributes created in plugins? DeWayne On Nov 14, 2017 3:04 PM, "Tal Liron" <t...@cloudify.co> wrote: Thanks, Steve. It seems that you are looking at the table at 5.8.2.2. The "required" column here seems poorly named: what they seem to mean is

Re: Attributes

2017-11-14 Thread Tal Liron
Thanks, Steve. It seems that you are looking at the table at 5.8.2.2. The "required" column here seems poorly named: what they seem to mean is that when required is "yes" the orchestrator *must* fill in a value. Indeed all the attributes I mentioned earlier, that ARIA

Attributes

2017-11-14 Thread Steve Baillargeon
The required column for attributes is below. Required = yes --> Mandatory to fill in ? Required = no --> Optional to fill in ? [cid:image001.png@01D35D72.28B74270]

Re: Attributes

2017-11-14 Thread Tal Liron
> Sent: Tuesday, November 14, 2017 5:27 PM > To: dev@ariatosca.incubator.apache.org > Subject: Re: Attributes > > ARIA exposes all defined attributes, even if they have no default value > (in which case they will be null). > > Note that three attributes (tosca_id, tosca_name, st

RE: Attributes

2017-11-14 Thread Steve Baillargeon
Tal Liron [mailto:t...@cloudify.co] Sent: Tuesday, November 14, 2017 5:27 PM To: dev@ariatosca.incubator.apache.org Subject: Re: Attributes ARIA exposes all defined attributes, even if they have no default value (in which case they will be null). Note that three attributes (tosca_id, tosca_n

Re: Attributes

2017-11-14 Thread Tal Liron
ARIA exposes all defined attributes, even if they have no default value (in which case they will be null). Note that three attributes (tosca_id, tosca_name, state) are automatically filled by ARIA, if they are available. Any node type inheriting from tosca.nodes.Root will have them. I'm not sure

Attributes

2017-11-14 Thread Steve Baillargeon
that the YAML spec does not support a REQUIRED keyname for the attribute definition. Then how do we go about declaring an optional vs mandatory attribute definition in custom type definitions? For now, I am almost ready to conclude that all attributes SHOULD be exposed by the TOSCA orchestrator regardless

[2/6] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-12 Thread ran
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

[4/5] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread emblemparade
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

[02/13] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread avia
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

[4/5] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread emblemparade
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

[2/3] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread emblemparade
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/master e4d003680 -> 180e0a1cf ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly f

[2/2] incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior

2017-06-06 Thread mxmrlv
ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behavior instrumented attributes only if they were accessed directly from the parent model. Traversing the storage made the access to an attribute inconsistent. The new

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior [Forced Update!]

2017-06-06 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-262-Inconsistent-node-attributes-behavior 5e10681d2 -> 3510ff793 (forced update) ARIA-262 Inconsistent node attributes behavior Inroduced a more comprehensive way to instrument relationship attributes. Old behav

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior [Forced Update!]

2017-06-06 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-262-Inconsistent-node-attributes-behavior 79a1f761f -> 5e10681d2 (forced update) ARIA-262 Inconsistent node attributes behavior Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior [Forced Update!]

2017-06-06 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-262-Inconsistent-node-attributes-behavior 1b86b08c6 -> 79a1f761f (forced update) ARIA-262 Inconsistent node attributes behavior Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior [Forced Update!]

2017-06-04 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-262-Inconsistent-node-attributes-behavior a96167e90 -> 94c6063ad (forced update) ARIA-262 Inconsistent node attributes behavior Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-

incubator-ariatosca git commit: ARIA-262 Inconsistent node attributes behavior [Forced Update!]

2017-06-04 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-262-Inconsistent-node-attributes-behavior 225971037 -> 81dbad76c (forced update) ARIA-262 Inconsistent node attributes behavior Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-

[01/16] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-06-01 Thread avia
ion, -inputs=inputs) +expected_initial = context.model.node.get_by_name(mock.models.DEPENDENCY_NODE_NAME).attributes +out = _run_workflow( +context=context, executor=executor, op_func=_mock_updating_operation, inputs=inputs) expected_after_update = expected_initial.c

[02/16] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-06-01 Thread avia
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/50b997e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/50b997e3 Diff: http

[3/7] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-26 Thread emblemparade
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/50b997e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/50b997e3 Diff: http

[1/3] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-05-25 Thread ran
ion, -inputs=inputs) +expected_initial = context.model.node.get_by_name(mock.models.DEPENDENCY_NODE_NAME).attributes +out = _run_workflow( +context=context, executor=executor, op_func=_mock_updating_operation, inputs=inputs) expected_after_update = expected_initial.c

[2/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-25 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/50b997e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/50b997e3 Diff: http

[2/3] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-25 Thread ran
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/50b997e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/50b997e3 Diff: http

[1/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-25 Thread mxmrlv
ial = context.model.node.get_by_name(mock.models.DEPENDENCY_NODE_NAME).attributes +out = _run_workflow( +context=context, executor=executor, op_func=_mock_updating_operation, inputs=inputs) expected_after_update = expected_initial.copy() expected_after_update.update(inputs['commit

[1/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-05-25 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes 7c1367a28 -> 50b997e3b (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/50b997e3/tests/orchestrator/workflows/execu

[2/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-25 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/50b997e3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/50b997e3 Diff: http

[2/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-25 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/7c1367a2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/7c1367a2 Diff: http

[1/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-05-25 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes efb0d3d18 -> 7c1367a28 (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/7c1367a2/tests/orchestrator/workflows/execu

[2/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-24 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/ec3b064c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/ec3b064c Diff: http

[1/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-05-24 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes 953620020 -> ec3b064c9 (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/ec3b064c/tests/orchestrator/workflows/execu

[3/3] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-24 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/95362002 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/95362002 Diff: http

[2/3] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-24 Thread mxmrlv
( -mock.models.DEPENDENCY_NODE_NAME).runtime_properties - -out = _run_workflow(context=context, executor=executor, op_func=_mock_updating_operation, -inputs=inputs) +expected_initial = context.model.node.get_by_name(mock.models.DEPENDENCY_NODE_NAME).attributes +out = _run_workflow

[5/6] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-23 Thread mxmrlv
( -mock.models.DEPENDENCY_NODE_NAME).runtime_properties - -out = _run_workflow(context=context, executor=executor, op_func=_mock_updating_operation, -inputs=inputs) +expected_initial = context.model.node.get_by_name(mock.models.DEPENDENCY_NODE_NAME).attributes +out = _run_workflow

[14/19] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-22 Thread ran
%s" in modelable entity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), -locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -

[15/19] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-22 Thread ran
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[13/19] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-22 Thread ran
esentation): return FrozenDict(get_assigned_and_defined_property_values(context, self)) @cachedmethod +def _get_attribute_default_values(self, context): +return FrozenDict(get_assigned_and_defined_property_values(context, self, +

[2/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes

2017-05-17 Thread mxmrlv
ARIA-258 Convert runtime_properties to attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/9786090d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/9786090d Diff: http

[1/2] incubator-ariatosca git commit: ARIA-258 Convert runtime_properties to attributes [Forced Update!]

2017-05-17 Thread mxmrlv
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-258-Convert-runtime-properties-to-attributes 5f1bfacf4 -> 9786090d0 (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/9786090d/tests/storage/test_instrumentation

[jira] [Updated] (ARIA-69) Disable ability of modifying other attributes than runtime properties in an operation

2017-05-14 Thread Ran Ziv (JIRA)
of an error) as they won't be persisted either way. > Disable ability of modifying other attributes than runtime properties in an > operation > - > > Key: ARIA-69 >

[jira] [Resolved] (ARIA-84) Attributes handling in parser

2017-05-14 Thread Ran Ziv (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-84?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ran Ziv resolved ARIA-84. - Resolution: Duplicate > Attributes handling in parser > - > >

[jira] [Closed] (ARIA-84) Attributes handling in parser

2017-05-14 Thread Ran Ziv (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-84?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ran Ziv closed ARIA-84. --- > Attributes handling in parser > - > > Key: ARIA-84 >

[jira] [Assigned] (ARIA-84) Attributes handling in parser

2017-05-14 Thread Ran Ziv (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-84?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ran Ziv reassigned ARIA-84: --- Assignee: Tal Liron > Attributes handling in parser > - > >

[jira] [Reopened] (ARIA-139) TOSCA attributes

2017-05-11 Thread Ran Ziv (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ran Ziv reopened ARIA-139: -- > TOSCA attributes > > > Key: ARIA-139 >

[jira] [Resolved] (ARIA-139) TOSCA attributes

2017-05-11 Thread Ran Ziv (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ran Ziv resolved ARIA-139. -- Resolution: Fixed Fix Version/s: 0.1.0 > TOSCA attributes > > >

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-11 Thread ASF subversion and git services (JIRA)
60ea3ebb21e762d36115db26563a93dd3cb72003 in incubator-ariatosca's branch refs/heads/ARIA-148-extra-cli-commands from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=60ea3eb ] ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function

[4/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
%s" in modelable entity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), -locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -

[3/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
esentation): return FrozenDict(get_assigned_and_defined_property_values(context, self)) @cachedmethod +def _get_attribute_default_values(self, context): +return FrozenDict(get_assigned_and_defined_property_values(context, self, +

[5/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[jira] [Closed] (ARIA-139) TOSCA attributes

2017-05-11 Thread Tal Liron (JIRA)
[ https://issues.apache.org/jira/browse/ARIA-139?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tal Liron closed ARIA-139. -- Resolution: Done > TOSCA attributes > > > Key: ARIA-139 >

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-11 Thread ASF GitHub Bot (JIRA)
://github.com/apache/incubator-ariatosca/pull/118 > TOSCA attributes > > > Key: ARIA-139 > URL: https://issues.apache.org/jira/browse/ARIA-139 > Project: AriaTosca > Issue Type: Story >

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-11 Thread ASF subversion and git services (JIRA)
60ea3ebb21e762d36115db26563a93dd3cb72003 in incubator-ariatosca's branch refs/heads/master from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=60ea3eb ] ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism

[3/3] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[2/3] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
%s" in modelable entity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), -locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -

[GitHub] incubator-ariatosca pull request #118: ARIA-139 Support attributes

2017-05-11 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/incubator-ariatosca/pull/118 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[1/3] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
self, context): +return FrozenDict(get_assigned_and_defined_property_values(context, self, + 'attribute', 'attributes')) + +@cachedmethod def _get_requirements(self, context): return FrozenList(get_template_requirements(context, self)) @@

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-11 Thread ASF subversion and git services (JIRA)
60ea3ebb21e762d36115db26563a93dd3cb72003 in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=60ea3eb ] ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation

[5/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
%s" in modelable entity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), -locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -

[6/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[4/6] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-11 Thread emblemparade
esentation): return FrozenDict(get_assigned_and_defined_property_values(context, self)) @cachedmethod +def _get_attribute_default_values(self, context): +return FrozenDict(get_assigned_and_defined_property_values(context, self, +

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-09 Thread ASF subversion and git services (JIRA)
b9ca7381be05ba87d9a6d9ec24aa60bff227589a in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=b9ca738 ] ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation

[1/2] incubator-ariatosca git commit: ARIA-139 Support attributes [Forced Update!]

2017-05-09 Thread emblemparade
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-139-attributes b940419b6 -> b9ca7381b (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/b9ca7381/extensions/aria_extension_tosca/simple_v1_0/functions

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-09 Thread emblemparade
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-09 Thread ASF subversion and git services (JIRA)
b940419b6a40db83d7c34d7f908c7b10d27863f5 in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=b940419 ] ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation

[3/3] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-09 Thread emblemparade
ARIA-139 Support attributes * Fully implement attribute support in parser * New intrinsic function evaluation mechanism * Implemented more intrinsic functions, including get_attribute * Fix to one-on-one relationship back population * Fixes to TOSCA use case examples * Indirectly related: re

[2/3] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-09 Thread emblemparade
tity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), - locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -The :code:`get

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-09 Thread ASF subversion and git services (JIRA)
d06a0165552b510fbf2534bd4a3f2083260d in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=d06a016 ] ARIA-139 Support attributes > TOSCA attributes > > > K

[10/10] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-09 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/d06a0165 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/d06a0165 Diff: http://git-wip

[09/10] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-09 Thread emblemparade
tity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), - locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -The :code:`get

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-05 Thread ASF subversion and git services (JIRA)
936feaf1f74287375e43da6f2ac58ac254f0501b in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=936feaf ] ARIA-139 Support attributes > TOSCA attributes > > > K

[3/4] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-05 Thread emblemparade
tity "%s"' \ -% ('.'.join(self.nested_property_name_or_index), self.modelable_entity_name), - locator=self.locator) - -# -# Attribute -# - -@dsl_specification('4.5.1', 'tosca-simple-1.0') -class GetAttribute(Function): -""" -The :code:`get

[4/4] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-05 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/936feaf1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/936feaf1 Diff: http://git-wip

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-03 Thread ASF subversion and git services (JIRA)
b3ee51f787d50bdc0fd370f8554c80b2370b5400 in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=b3ee51f ] ARIA-139 Support attributes > TOSCA attributes > > > K

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-03 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/b3ee51f7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/b3ee51f7 Diff: http://git-wip

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-03 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/ac779a3c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/ac779a3c Diff: http://git-wip

[1/2] incubator-ariatosca git commit: ARIA-139 Support attributes [Forced Update!]

2017-05-03 Thread emblemparade
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-139-attributes 81eda83a1 -> ac779a3c7 (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/ac779a3c/extensions/aria_extension_tosca/simple_v1_0/modeling/__init__

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-02 Thread ASF subversion and git services (JIRA)
81eda83a1a6c53f38746d098be83c3153f62ca6e in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=81eda83 ] ARIA-139 Support attributes > TOSCA attributes > > > K

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-02 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/81eda83a Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/81eda83a Diff: http://git-wip

[1/2] incubator-ariatosca git commit: ARIA-139 Support attributes [Forced Update!]

2017-05-02 Thread emblemparade
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-139-attributes 3271378ca -> 81eda83a1 (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/81eda83a/extensions/aria_extension_tosca/simple_v1_0/functions

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-02 Thread ASF subversion and git services (JIRA)
3271378ca0696a023b68ad452c3709d399e61e72 in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=3271378 ] ARIA-139 Support attributes > TOSCA attributes > > > K

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-02 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/3271378c Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/3271378c Diff: http://git-wip

[1/2] incubator-ariatosca git commit: ARIA-139 Support attributes [Forced Update!]

2017-05-02 Thread emblemparade
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-139-attributes 36c91913a -> 3271378ca (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/3271378c/extensions/aria_extension_tosca/simple_v1_0/functions

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-01 Thread ASF subversion and git services (JIRA)
36c91913afd586df9e6664f61d81a52eef339102 in incubator-ariatosca's branch refs/heads/ARIA-139-attributes from [~emblemparade] [ https://git-wip-us.apache.org/repos/asf?p=incubator-ariatosca.git;h=36c9191 ] ARIA-139 Support attributes > TOSCA attributes > > > K

[1/2] incubator-ariatosca git commit: ARIA-139 Support attributes [Forced Update!]

2017-05-01 Thread emblemparade
Repository: incubator-ariatosca Updated Branches: refs/heads/ARIA-139-attributes b7e1836d8 -> 36c91913a (forced update) http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/36c91913/extensions/aria_extension_tosca/simple_v1_0/functions

[2/2] incubator-ariatosca git commit: ARIA-139 Support attributes

2017-05-01 Thread emblemparade
ARIA-139 Support attributes Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/36c91913 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/36c91913 Diff: http://git-wip

[jira] [Commented] (ARIA-139) TOSCA attributes

2017-05-01 Thread ASF GitHub Bot (JIRA)
/apache/incubator-ariatosca/pull/118 ARIA-139 Support attributes Areas this PR addresses: - Refactored TOSCA functions - Refactored {{Parameter}} model to use a property for value, and similar for coercion - Added utility properties to {{Parameter}} model: container

  1   2   >