diff options
author | andre.schmid <andre.schmid@est.tech> | 2022-05-27 11:58:10 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-06-02 13:38:18 +0000 |
commit | e159dee791441b68d142323f7d951b0592841c7f (patch) | |
tree | 246064e0cc3151f7b2604cb77531fcc6d4394fbb /catalog-ui/src/app/models/tosca-get-function.ts | |
parent | 27cbc536b9a8f10e32b2189effc5466cbe571701 (diff) |
Support of get_property for instance properties
Support of get_property for INSTANCE properties, as currently only
SELF properties can be selected.
Change-Id: I80611002964a6ebb515134155c321f2d7f87811c
Issue-ID: SDC-4026
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-ui/src/app/models/tosca-get-function.ts')
-rw-r--r-- | catalog-ui/src/app/models/tosca-get-function.ts | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/tosca-get-function.ts b/catalog-ui/src/app/models/tosca-get-function.ts new file mode 100644 index 0000000000..0fe0831215 --- /dev/null +++ b/catalog-ui/src/app/models/tosca-get-function.ts @@ -0,0 +1,33 @@ +/* + * - + * ============LICENSE_START======================================================= + * Copyright (C) 2022 Nordix Foundation. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +import {PropertySource} from "./property-source"; +import {ToscaGetFunctionType} from "./tosca-get-function-type"; + +export class ToscaGetFunction { + propertyUniqueId: string; + propertyName: string; + propertySource: PropertySource; + sourceUniqueId: string; + sourceName: string; + functionType: ToscaGetFunctionType; + propertyPathFromSource: Array<string>; +}
\ No newline at end of file |