Best Python code snippet using localstack_python
get_vpc_link.py
Source:get_vpc_link.py  
...97            status=self.status,98            status_message=self.status_message,99            tags=self.tags,100            target_arns=self.target_arns)101def get_vpc_link(name: Optional[str] = None,102                 tags: Optional[Mapping[str, str]] = None,103                 opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetVpcLinkResult:104    """105    Use this data source to get the id of a VPC Link in106    API Gateway. To fetch the VPC Link you must provide a name to match against.107    As there is no unique name constraint on API Gateway VPC Links this data source will108    error if there is more than one match.109    ## Example Usage110    ```python111    import pulumi112    import pulumi_aws as aws113    my_api_gateway_vpc_link = aws.apigateway.get_vpc_link(name="my-vpc-link")114    ```115    :param str name: The name of the API Gateway VPC Link to look up. If no API Gateway VPC Link is found with this name, an error will be returned.116           If multiple API Gateway VPC Links are found with this name, an error will be returned.117    :param Mapping[str, str] tags: Key-value map of resource tags118    """119    __args__ = dict()120    __args__['name'] = name121    __args__['tags'] = tags122    if opts is None:123        opts = pulumi.InvokeOptions()124    if opts.version is None:125        opts.version = _utilities.get_version()126    __ret__ = pulumi.runtime.invoke('aws:apigateway/getVpcLink:getVpcLink', __args__, opts=opts, typ=GetVpcLinkResult).value127    return AwaitableGetVpcLinkResult(128        description=__ret__.description,129        id=__ret__.id,130        name=__ret__.name,131        status=__ret__.status,132        status_message=__ret__.status_message,133        tags=__ret__.tags,134        target_arns=__ret__.target_arns)135@_utilities.lift_output_func(get_vpc_link)136def get_vpc_link_output(name: Optional[pulumi.Input[str]] = None,137                        tags: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,138                        opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetVpcLinkResult]:139    """140    Use this data source to get the id of a VPC Link in141    API Gateway. To fetch the VPC Link you must provide a name to match against.142    As there is no unique name constraint on API Gateway VPC Links this data source will143    error if there is more than one match.144    ## Example Usage145    ```python146    import pulumi147    import pulumi_aws as aws148    my_api_gateway_vpc_link = aws.apigateway.get_vpc_link(name="my-vpc-link")149    ```150    :param str name: The name of the API Gateway VPC Link to look up. If no API Gateway VPC Link is found with this name, an error will be returned.151           If multiple API Gateway VPC Links are found with this name, an error will be returned.152    :param Mapping[str, str] tags: Key-value map of resource tags153    """...vpclink.py
Source:vpclink.py  
...62        VpclinkID = vpclink["id"]63        output={64            "VpclinkID":VpclinkID65        }66        describevpclink = apigwclient.get_vpc_link(67            vpcLinkId=VpclinkID68        )69        vpclinkstatus=describevpclink["status"]70        while vpclinkstatus in ["PENDING"]:71            describevpclink = apigwclient.get_vpc_link(72                vpcLinkId=VpclinkID73            )74            vpclinkstatus=describevpclink["status"]75        with open(templatepath+"/output.json","a") as f:76            f.write(output)77        status={"status":"success","body":VpclinkID}78        return(status)79    except Exception as e:80        status={"status":"error","errorMessage":str(e)}81        return(status)82def main():83    status=getloadbalancer()84    if status["status"] == "error":85        message={"status":"error","errorMessage":status["errorMessage"]}...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
