pulumi/tests/integration/construct_component/testcomponent-python/testcomponent.py
Anton Tayanovskyy b77f32930c
Remote component py SDK (#6715)
* Python support for authoring resource providers for multi-lang

* Support for passing prompt values to Python resource providers
2021-04-15 14:49:51 -04:00

72 lines
2.3 KiB
Python

# Copyright 2016-2021, Pulumi Corporation.
#
# 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.
from typing import Any, Optional
import sys
from pulumi import Input, Inputs, ComponentResource, ResourceOptions
import pulumi
import pulumi.dynamic as dynamic
import pulumi.provider as provider
_ID = 0
class MyDynamicProvider(dynamic.ResourceProvider):
def create(self, props: Any) -> dynamic.CreateResult:
global _ID
_ID = _ID + 1
return dynamic.CreateResult(id_=str(_ID))
class Resource(dynamic.Resource):
def __init__(self, name: str, echo: Input[any], opts: Optional[ResourceOptions]=None):
super().__init__(MyDynamicProvider(), name, {'echo': echo}, opts)
class Component(ComponentResource):
def __init__(self, name: str, echo: Input[any], opts: Optional[ResourceOptions]=None):
super().__init__('testcomponent:index:Component', name, {}, opts)
self.echo = pulumi.Output.from_input(echo)
resource = Resource('child-{}'.format(name), echo, ResourceOptions(parent=self))
self.child_id = resource.id
class Provider(provider.Provider):
VERSION = "0.0.1"
def __init__(self):
super().__init__(Provider.VERSION)
def construct(self, name: str, resource_type: str, inputs: Inputs,
options: Optional[ResourceOptions]=None) -> provider.ConstructResult:
if resource_type != 'testcomponent:index:Component':
raise Exception('unknown resource type {}'.format(resource_type))
component = Component(name, inputs['echo'], options)
return provider.ConstructResult(
urn=component.urn,
state={
'echo': component.echo,
'childId': component.child_id
})
if __name__ == '__main__':
provider.main(Provider(), sys.argv[1:])