How to use the pulumi.get function in pulumi

To help you get started, we’ve selected a few pulumi examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pulumi / pulumi-google-native / sdk / python / pulumi_google_native / bigqueryconnection / v1beta1 / connection.py View on Github external
def description(self) -> pulumi.Output[str]:
        """
        User provided description.
        """
        return pulumi.get(self, "description")
github pulumi / pulumi-google-native / sdk / python / pulumi_google_native / ml / v1 / model_version.py View on Github external
def container(self) -> Optional[pulumi.Input['GoogleCloudMlV1__ContainerSpecArgs']]:
        """
        Optional. Specifies a custom container to use for serving predictions. If you specify this field, then `machineType` is required. If you specify this field, then `deploymentUri` is optional. If you specify this field, then you must not specify `runtimeVersion`, `packageUris`, `framework`, `pythonVersion`, or `predictionClass`.
        """
        return pulumi.get(self, "container")
github pulumi / pulumi-aws / sdk / python / pulumi_aws / rds / cluster_snapshot.py View on Github external
def snapshot_type(self) -> pulumi.Output[str]:
        return pulumi.get(self, "snapshot_type")
github pulumi / pulumi-google-native / sdk / python / pulumi_google_cloud / firebaseml / v1beta2 / model.py View on Github external
def create_time(self) -> pulumi.Output[str]:
        """
        Timestamp when this model was created in Firebase ML.
        """
        return pulumi.get(self, "create_time")
github pulumi / pulumi-aws / sdk / python / pulumi_aws / lb / _inputs.py View on Github external
def weight(self) -> Optional[pulumi.Input[int]]:
        """
        The weight. The range is 0 to 999.
        """
        return pulumi.get(self, "weight")
github pulumi / pulumi-google-native / sdk / python / pulumi_google_native / compute / beta / router.py View on Github external
def interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RouterInterfaceArgs']]]]:
        """
        Router interfaces. Each interface requires either one linked resource, (for example, linkedVpnTunnel), or IP address and IP address range (for example, ipRange), or both.
        """
        return pulumi.get(self, "interfaces")
github pulumi / pulumi-google-native / sdk / python / pulumi_google_cloud / compute / alpha / reservation.py View on Github external
def satisfies_pzs(self) -> pulumi.Output[bool]:
        """
        [Output Only] Reserved for future use.
        """
        return pulumi.get(self, "satisfies_pzs")
github pulumi / pulumi-kubernetes / sdk / python / pulumi_kubernetes / extensions / v1beta1 / DaemonSet.py View on Github external
def spec(self) -> Optional[pulumi.Input['DaemonSetSpecArgs']]:
        """
        The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
        """
        return pulumi.get(self, "spec")
github pulumi / pulumi-aws / sdk / python / pulumi_aws / elastictranscoder / _inputs.py View on Github external
def aspect_ratio(self) -> Optional[pulumi.Input[str]]:
        """
        The display aspect ratio of the video in the output file. Valid values are: `auto`, `1:1`, `4:3`, `3:2`, `16:9`. (Note; to better control resolution and aspect ratio of output videos, we recommend that you use the values `max_width`, `max_height`, `sizing_policy`, `padding_policy`, and `display_aspect_ratio` instead of `resolution` and `aspect_ratio`.)
        """
        return pulumi.get(self, "aspect_ratio")
github pulumi / pulumi-aws / sdk / python / pulumi_aws / config / outputs.py View on Github external
def cloudformation(self) -> Optional[str]:
        return pulumi.get(self, "cloudformation")