signadot_sdk.models package

Submodules

signadot_sdk.models.apierrs_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.apierrs_response.ApierrsResponse(error=None, request_id=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'error': 'error', 'request_id': 'requestID'}
property error

Gets the error of this ApierrsResponse. # noqa: E501

Returns

The error of this ApierrsResponse. # noqa: E501

Return type

str

property request_id

Gets the request_id of this ApierrsResponse. # noqa: E501

Returns

The request_id of this ApierrsResponse. # noqa: E501

Return type

str

swagger_types = {'error': 'str', 'request_id': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.branch module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.branch.Branch(head_commit=None, pull_request=None, vcs_name=None, vcs_repo=None, vcs_type=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'head_commit': 'headCommit', 'pull_request': 'pullRequest', 'vcs_name': 'vcsName', 'vcs_repo': 'vcsRepo', 'vcs_type': 'vcsType'}
property head_commit

Gets the head_commit of this Branch. # noqa: E501

Returns

The head_commit of this Branch. # noqa: E501

Return type

str

property pull_request

Gets the pull_request of this Branch. # noqa: E501

Returns

The pull_request of this Branch. # noqa: E501

Return type

int

swagger_types = {'head_commit': 'str', 'pull_request': 'int', 'vcs_name': 'str', 'vcs_repo': 'str', 'vcs_type': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property vcs_name

Gets the vcs_name of this Branch. # noqa: E501

Returns

The vcs_name of this Branch. # noqa: E501

Return type

str

property vcs_repo

Gets the vcs_repo of this Branch. # noqa: E501

Returns

The vcs_repo of this Branch. # noqa: E501

Return type

str

property vcs_type

Gets the vcs_type of this Branch. # noqa: E501

Returns

The vcs_type of this Branch. # noqa: E501

Return type

str

signadot_sdk.models.cluster module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.cluster.Cluster(created_at=None, id=None, name=None, operator_version=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'created_at': 'createdAt', 'id': 'id', 'name': 'name', 'operator_version': 'operatorVersion'}
property created_at

Gets the created_at of this Cluster. # noqa: E501

The time when this cluster was registered with Signadot. # noqa: E501

Returns

The created_at of this Cluster. # noqa: E501

Return type

str

property id

Gets the id of this Cluster. # noqa: E501

The ID of the cluster. # noqa: E501

Returns

The id of this Cluster. # noqa: E501

Return type

str

property name

Gets the name of this Cluster. # noqa: E501

The name of the cluster. # noqa: E501

Returns

The name of this Cluster. # noqa: E501

Return type

str

property operator_version

Gets the operator_version of this Cluster. # noqa: E501

The operator version of the cluster. This may be nil if the cluster has not yet connected to Signadot. # noqa: E501

Returns

The operator_version of this Cluster. # noqa: E501

Return type

str

swagger_types = {'created_at': 'str', 'id': 'str', 'name': 'str', 'operator_version': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.connect_cluster_request module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.connect_cluster_request.ConnectClusterRequest(name=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'name': 'name'}
property name

Gets the name of this ConnectClusterRequest. # noqa: E501

Name for the new cluster you want to create # noqa: E501

Returns

The name of this ConnectClusterRequest. # noqa: E501

Return type

str

swagger_types = {'name': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.connect_cluster_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.connect_cluster_response.ConnectClusterResponse(id=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'id': 'id'}
property id

Gets the id of this ConnectClusterResponse. # noqa: E501

Returns

The id of this ConnectClusterResponse. # noqa: E501

Return type

str

swagger_types = {'id': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.create_cluster_token_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.create_cluster_token_response.CreateClusterTokenResponse(id=None, token=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'id': 'id', 'token': 'token'}
property id

Gets the id of this CreateClusterTokenResponse. # noqa: E501

Returns

The id of this CreateClusterTokenResponse. # noqa: E501

Return type

str

swagger_types = {'id': 'str', 'token': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property token

Gets the token of this CreateClusterTokenResponse. # noqa: E501

Returns

The token of this CreateClusterTokenResponse. # noqa: E501

Return type

str

signadot_sdk.models.create_preview_endpoint_request module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.create_preview_endpoint_request.CreatePreviewEndpointRequest(fork_of=None, host=None, name=None, port=None, protocol=None, route_type=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'fork_of': 'forkOf', 'host': 'host', 'name': 'name', 'port': 'port', 'protocol': 'protocol', 'route_type': 'routeType'}
property fork_of

Gets the fork_of of this CreatePreviewEndpointRequest. # noqa: E501

Returns

The fork_of of this CreatePreviewEndpointRequest. # noqa: E501

Return type

ForkOf

property host

Gets the host of this CreatePreviewEndpointRequest. # noqa: E501

Host is the host-name of a service within Kubernetes of the form service-name.namespace.svc. Only required when RouteType is ‘static’ # noqa: E501

Returns

The host of this CreatePreviewEndpointRequest. # noqa: E501

Return type

str

property name

Gets the name of this CreatePreviewEndpointRequest. # noqa: E501

Name of this endpoint. If not specified, a name will be generated automatically. # noqa: E501

Returns

The name of this CreatePreviewEndpointRequest. # noqa: E501

Return type

str

property port

Gets the port of this CreatePreviewEndpointRequest. # noqa: E501

Port is the port on the above host that the preview will point to. Only required when RouteType is ‘static’ # noqa: E501

Returns

The port of this CreatePreviewEndpointRequest. # noqa: E501

Return type

int

property protocol

Gets the protocol of this CreatePreviewEndpointRequest. # noqa: E501

Protocol of the endpoint that we will be connecting to for this preview URL. One of ‘http’, ‘https’, or ‘grpc’. If not specified, the default is ‘http’. # noqa: E501

Returns

The protocol of this CreatePreviewEndpointRequest. # noqa: E501

Return type

str

property route_type

Gets the route_type of this CreatePreviewEndpointRequest. # noqa: E501

RouteType is one of ‘static’ or ‘fork’. If you choose a route of type ‘static’, this preview endpoint will route traffic to the Host / Port specified. If you choose a route of type ‘fork’, this preview endpoint will route traffic to a forked entity as specified in forkOf. # noqa: E501

Returns

The route_type of this CreatePreviewEndpointRequest. # noqa: E501

Return type

str

swagger_types = {'fork_of': 'ForkOf', 'host': 'str', 'name': 'str', 'port': 'int', 'protocol': 'str', 'route_type': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.create_sandbox_request module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.create_sandbox_request.CreateSandboxRequest(cluster=None, description=None, endpoints=None, forks=None, name=None, resources=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'cluster': 'cluster', 'description': 'description', 'endpoints': 'endpoints', 'forks': 'forks', 'name': 'name', 'resources': 'resources'}
property cluster

Gets the cluster of this CreateSandboxRequest. # noqa: E501

Cluster within which this sandbox should be created # noqa: E501

Returns

The cluster of this CreateSandboxRequest. # noqa: E501

Return type

str

property description

Gets the description of this CreateSandboxRequest. # noqa: E501

Description of the purpose of this sandbox # noqa: E501

Returns

The description of this CreateSandboxRequest. # noqa: E501

Return type

str

property endpoints

Gets the endpoints of this CreateSandboxRequest. # noqa: E501

Endpoints that can be used to point to external DNS names or ingress gateways # noqa: E501

Returns

The endpoints of this CreateSandboxRequest. # noqa: E501

Return type

list[SandboxEndpoint]

property forks

Gets the forks of this CreateSandboxRequest. # noqa: E501

Forks is the specification of each forked entity # noqa: E501

Returns

The forks of this CreateSandboxRequest. # noqa: E501

Return type

list[SandboxFork]

property name

Gets the name of this CreateSandboxRequest. # noqa: E501

Human-readable name of this sandbox # noqa: E501

Returns

The name of this CreateSandboxRequest. # noqa: E501

Return type

str

property resources

Gets the resources of this CreateSandboxRequest. # noqa: E501

Resources specifies each required resource to spin up the sandbox # noqa: E501

Returns

The resources of this CreateSandboxRequest. # noqa: E501

Return type

list[SandboxResource]

swagger_types = {'cluster': 'str', 'description': 'str', 'endpoints': 'list[SandboxEndpoint]', 'forks': 'list[SandboxFork]', 'name': 'str', 'resources': 'list[SandboxResource]'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.create_sandbox_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.create_sandbox_response.CreateSandboxResponse(preview_endpoints=None, sandbox_id=None, warnings=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'preview_endpoints': 'previewEndpoints', 'sandbox_id': 'sandboxID', 'warnings': 'warnings'}
property preview_endpoints

Gets the preview_endpoints of this CreateSandboxResponse. # noqa: E501

Returns

The preview_endpoints of this CreateSandboxResponse. # noqa: E501

Return type

list[PreviewEndpoint]

property sandbox_id

Gets the sandbox_id of this CreateSandboxResponse. # noqa: E501

Returns

The sandbox_id of this CreateSandboxResponse. # noqa: E501

Return type

str

swagger_types = {'preview_endpoints': 'list[PreviewEndpoint]', 'sandbox_id': 'str', 'warnings': 'list[str]'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property warnings

Gets the warnings of this CreateSandboxResponse. # noqa: E501

Returns

The warnings of this CreateSandboxResponse. # noqa: E501

Return type

list[str]

signadot_sdk.models.custom_patch module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.custom_patch.CustomPatch(type=None, value=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'type': 'type', 'value': 'value'}
swagger_types = {'type': 'str', 'value': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property type

Gets the type of this CustomPatch. # noqa: E501

Returns

The type of this CustomPatch. # noqa: E501

Return type

str

property value

Gets the value of this CustomPatch. # noqa: E501

Returns

The value of this CustomPatch. # noqa: E501

Return type

str

signadot_sdk.models.env_op module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.env_op.EnvOp(container=None, name=None, operation=None, value=None, value_from=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'container': 'container', 'name': 'name', 'operation': 'operation', 'value': 'value', 'value_from': 'valueFrom'}
property container

Gets the container of this EnvOp. # noqa: E501

name of container to which it applies # noqa: E501

Returns

The container of this EnvOp. # noqa: E501

Return type

str

property name

Gets the name of this EnvOp. # noqa: E501

environmental variable name # noqa: E501

Returns

The name of this EnvOp. # noqa: E501

Return type

str

property operation

Gets the operation of this EnvOp. # noqa: E501

upsert or delete # noqa: E501

Returns

The operation of this EnvOp. # noqa: E501

Return type

str

swagger_types = {'container': 'str', 'name': 'str', 'operation': 'str', 'value': 'str', 'value_from': 'EnvValueFrom'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property value

Gets the value of this EnvOp. # noqa: E501

environmental variable value # noqa: E501

Returns

The value of this EnvOp. # noqa: E501

Return type

str

property value_from

Gets the value_from of this EnvOp. # noqa: E501

Returns

The value_from of this EnvOp. # noqa: E501

Return type

EnvValueFrom

signadot_sdk.models.env_value_from module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.env_value_from.EnvValueFrom(fork=None, resource=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'fork': 'fork', 'resource': 'resource'}
property fork

Gets the fork of this EnvValueFrom. # noqa: E501

Returns

The fork of this EnvValueFrom. # noqa: E501

Return type

EnvValueFromFork

property resource

Gets the resource of this EnvValueFrom. # noqa: E501

Returns

The resource of this EnvValueFrom. # noqa: E501

Return type

EnvValueFromResource

swagger_types = {'fork': 'EnvValueFromFork', 'resource': 'EnvValueFromResource'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.env_value_from_fork module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.env_value_from_fork.EnvValueFromFork(expression=None, fork_of=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'expression': 'expression', 'fork_of': 'forkOf'}
property expression

Gets the expression of this EnvValueFromFork. # noqa: E501

Returns

The expression of this EnvValueFromFork. # noqa: E501

Return type

str

property fork_of

Gets the fork_of of this EnvValueFromFork. # noqa: E501

Returns

The fork_of of this EnvValueFromFork. # noqa: E501

Return type

ForkOf

swagger_types = {'expression': 'str', 'fork_of': 'ForkOf'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.env_value_from_resource module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.env_value_from_resource.EnvValueFromResource(name=None, output_key=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'name': 'name', 'output_key': 'outputKey'}
property name

Gets the name of this EnvValueFromResource. # noqa: E501

Returns

The name of this EnvValueFromResource. # noqa: E501

Return type

str

property output_key

Gets the output_key of this EnvValueFromResource. # noqa: E501

Returns

The output_key of this EnvValueFromResource. # noqa: E501

Return type

str

swagger_types = {'name': 'str', 'output_key': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.fork_endpoint module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.fork_endpoint.ForkEndpoint(name=None, port=None, protocol=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'name': 'name', 'port': 'port', 'protocol': 'protocol'}
property name

Gets the name of this ForkEndpoint. # noqa: E501

Name of the endpoint # noqa: E501

Returns

The name of this ForkEndpoint. # noqa: E501

Return type

str

property port

Gets the port of this ForkEndpoint. # noqa: E501

Port it will map to on the forked workload # noqa: E501

Returns

The port of this ForkEndpoint. # noqa: E501

Return type

int

property protocol

Gets the protocol of this ForkEndpoint. # noqa: E501

Protocol that this endpoint uses # noqa: E501

Returns

The protocol of this ForkEndpoint. # noqa: E501

Return type

str

swagger_types = {'name': 'str', 'port': 'int', 'protocol': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.fork_of module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.fork_of.ForkOf(kind=None, name=None, namespace=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'kind': 'kind', 'name': 'name', 'namespace': 'namespace'}
property kind

Gets the kind of this ForkOf. # noqa: E501

Kind of entity that we want to route to. One of (Service or Deployment or Rollout). # noqa: E501

Returns

The kind of this ForkOf. # noqa: E501

Return type

str

property name

Gets the name of this ForkOf. # noqa: E501

Name of the entity within the Kubernetes cluster. # noqa: E501

Returns

The name of this ForkOf. # noqa: E501

Return type

str

property namespace

Gets the namespace of this ForkOf. # noqa: E501

Namespace within which the entity lives in the Kubernetes cluster. # noqa: E501

Returns

The namespace of this ForkOf. # noqa: E501

Return type

str

swagger_types = {'kind': 'str', 'name': 'str', 'namespace': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.get_clusters_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.get_clusters_response.GetClustersResponse(clusters=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'clusters': 'clusters'}
property clusters

Gets the clusters of this GetClustersResponse. # noqa: E501

Returns

The clusters of this GetClustersResponse. # noqa: E501

Return type

list[Cluster]

swagger_types = {'clusters': 'list[Cluster]'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.get_sandbox_by_id_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.get_sandbox_by_id_response.GetSandboxByIdResponse(sandbox=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'sandbox': 'sandbox'}
property sandbox

Gets the sandbox of this GetSandboxByIdResponse. # noqa: E501

Returns

The sandbox of this GetSandboxByIdResponse. # noqa: E501

Return type

SandboxDetails

swagger_types = {'sandbox': 'SandboxDetails'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.get_sandboxes_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.get_sandboxes_response.GetSandboxesResponse(sandboxes=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'sandboxes': 'sandboxes'}
property sandboxes

Gets the sandboxes of this GetSandboxesResponse. # noqa: E501

Returns

The sandboxes of this GetSandboxesResponse. # noqa: E501

Return type

list[SandboxInfo]

swagger_types = {'sandboxes': 'list[SandboxInfo]'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.handler_empty_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.handler_empty_response.HandlerEmptyResponse(_configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {}
swagger_types = {}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.image module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.image.Image(container=None, image=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'container': 'container', 'image': 'image'}
property container

Gets the container of this Image. # noqa: E501

Container is the container this image must apply to in the forked workload # noqa: E501

Returns

The container of this Image. # noqa: E501

Return type

str

property image

Gets the image of this Image. # noqa: E501

Name of the image (e.g. gcr.io/my-image/repo:my-tag) # noqa: E501

Returns

The image of this Image. # noqa: E501

Return type

str

swagger_types = {'container': 'str', 'image': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.preview_endpoint module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.preview_endpoint.PreviewEndpoint(baseline_preview_url=None, cluster=None, cluster_id=None, fork_of=None, host=None, id=None, name=None, port=None, preview_url=None, protocol=None, route_type=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'baseline_preview_url': 'baselinePreviewURL', 'cluster': 'cluster', 'cluster_id': 'clusterID', 'fork_of': 'forkOf', 'host': 'host', 'id': 'id', 'name': 'name', 'port': 'port', 'preview_url': 'previewURL', 'protocol': 'protocol', 'route_type': 'routeType'}
property baseline_preview_url

Gets the baseline_preview_url of this PreviewEndpoint. # noqa: E501

Returns

The baseline_preview_url of this PreviewEndpoint. # noqa: E501

Return type

str

property cluster

Gets the cluster of this PreviewEndpoint. # noqa: E501

Returns

The cluster of this PreviewEndpoint. # noqa: E501

Return type

str

property cluster_id

Gets the cluster_id of this PreviewEndpoint. # noqa: E501

Returns

The cluster_id of this PreviewEndpoint. # noqa: E501

Return type

str

property fork_of

Gets the fork_of of this PreviewEndpoint. # noqa: E501

Returns

The fork_of of this PreviewEndpoint. # noqa: E501

Return type

ForkOf

property host

Gets the host of this PreviewEndpoint. # noqa: E501

Returns

The host of this PreviewEndpoint. # noqa: E501

Return type

str

property id

Gets the id of this PreviewEndpoint. # noqa: E501

Returns

The id of this PreviewEndpoint. # noqa: E501

Return type

str

property name

Gets the name of this PreviewEndpoint. # noqa: E501

Returns

The name of this PreviewEndpoint. # noqa: E501

Return type

str

property port

Gets the port of this PreviewEndpoint. # noqa: E501

Returns

The port of this PreviewEndpoint. # noqa: E501

Return type

int

property preview_url

Gets the preview_url of this PreviewEndpoint. # noqa: E501

Returns

The preview_url of this PreviewEndpoint. # noqa: E501

Return type

str

property protocol

Gets the protocol of this PreviewEndpoint. # noqa: E501

Returns

The protocol of this PreviewEndpoint. # noqa: E501

Return type

str

property route_type

Gets the route_type of this PreviewEndpoint. # noqa: E501

Returns

The route_type of this PreviewEndpoint. # noqa: E501

Return type

str

swagger_types = {'baseline_preview_url': 'str', 'cluster': 'str', 'cluster_id': 'str', 'fork_of': 'ForkOf', 'host': 'str', 'id': 'str', 'name': 'str', 'port': 'int', 'preview_url': 'str', 'protocol': 'str', 'route_type': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_customizations module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_customizations.SandboxCustomizations(env=None, images=None, patch=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'env': 'env', 'images': 'images', 'patch': 'patch'}
property env

Gets the env of this SandboxCustomizations. # noqa: E501

Env var modifications that will be applied to the forked workload # noqa: E501

Returns

The env of this SandboxCustomizations. # noqa: E501

Return type

list[EnvOp]

property images

Gets the images of this SandboxCustomizations. # noqa: E501

One or more docker images that will be applied to the forked workload # noqa: E501

Returns

The images of this SandboxCustomizations. # noqa: E501

Return type

list[Image]

property patch

Gets the patch of this SandboxCustomizations. # noqa: E501

Returns

The patch of this SandboxCustomizations. # noqa: E501

Return type

CustomPatch

swagger_types = {'env': 'list[EnvOp]', 'images': 'list[Image]', 'patch': 'CustomPatch'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_details module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_details.SandboxDetails(branches=None, cluster_name=None, created_at=None, default_service=None, default_service_port=None, description=None, id=None, name=None, namespace=None, preview_endpoints=None, preview_url=None, updated_at=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'branches': 'branches', 'cluster_name': 'clusterName', 'created_at': 'createdAt', 'default_service': 'defaultService', 'default_service_port': 'defaultServicePort', 'description': 'description', 'id': 'id', 'name': 'name', 'namespace': 'namespace', 'preview_endpoints': 'previewEndpoints', 'preview_url': 'previewURL', 'updated_at': 'updatedAt'}
property branches

Gets the branches of this SandboxDetails. # noqa: E501

Returns

The branches of this SandboxDetails. # noqa: E501

Return type

list[Branch]

property cluster_name

Gets the cluster_name of this SandboxDetails. # noqa: E501

Returns

The cluster_name of this SandboxDetails. # noqa: E501

Return type

str

property created_at

Gets the created_at of this SandboxDetails. # noqa: E501

Returns

The created_at of this SandboxDetails. # noqa: E501

Return type

str

property default_service

Gets the default_service of this SandboxDetails. # noqa: E501

Returns

The default_service of this SandboxDetails. # noqa: E501

Return type

str

property default_service_port

Gets the default_service_port of this SandboxDetails. # noqa: E501

Returns

The default_service_port of this SandboxDetails. # noqa: E501

Return type

int

property description

Gets the description of this SandboxDetails. # noqa: E501

Returns

The description of this SandboxDetails. # noqa: E501

Return type

str

property id

Gets the id of this SandboxDetails. # noqa: E501

Returns

The id of this SandboxDetails. # noqa: E501

Return type

str

property name

Gets the name of this SandboxDetails. # noqa: E501

Returns

The name of this SandboxDetails. # noqa: E501

Return type

str

property namespace

Gets the namespace of this SandboxDetails. # noqa: E501

Returns

The namespace of this SandboxDetails. # noqa: E501

Return type

str

property preview_endpoints

Gets the preview_endpoints of this SandboxDetails. # noqa: E501

Returns

The preview_endpoints of this SandboxDetails. # noqa: E501

Return type

list[PreviewEndpoint]

property preview_url

Gets the preview_url of this SandboxDetails. # noqa: E501

Returns

The preview_url of this SandboxDetails. # noqa: E501

Return type

str

swagger_types = {'branches': 'list[Branch]', 'cluster_name': 'str', 'created_at': 'str', 'default_service': 'str', 'default_service_port': 'int', 'description': 'str', 'id': 'str', 'name': 'str', 'namespace': 'str', 'preview_endpoints': 'list[PreviewEndpoint]', 'preview_url': 'str', 'updated_at': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property updated_at

Gets the updated_at of this SandboxDetails. # noqa: E501

Returns

The updated_at of this SandboxDetails. # noqa: E501

Return type

str

signadot_sdk.models.sandbox_endpoint module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_endpoint.SandboxEndpoint(host=None, name=None, port=None, protocol=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'host': 'host', 'name': 'name', 'port': 'port', 'protocol': 'protocol'}
property host

Gets the host of this SandboxEndpoint. # noqa: E501

Hostname that this endpoint points to # noqa: E501

Returns

The host of this SandboxEndpoint. # noqa: E501

Return type

str

property name

Gets the name of this SandboxEndpoint. # noqa: E501

Name of the endpoint # noqa: E501

Returns

The name of this SandboxEndpoint. # noqa: E501

Return type

str

property port

Gets the port of this SandboxEndpoint. # noqa: E501

Port it will map to on the specified host # noqa: E501

Returns

The port of this SandboxEndpoint. # noqa: E501

Return type

int

property protocol

Gets the protocol of this SandboxEndpoint. # noqa: E501

Protocol that this endpoint uses # noqa: E501

Returns

The protocol of this SandboxEndpoint. # noqa: E501

Return type

str

swagger_types = {'host': 'str', 'name': 'str', 'port': 'int', 'protocol': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_fork module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_fork.SandboxFork(customizations=None, endpoints=None, fork_of=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'customizations': 'customizations', 'endpoints': 'endpoints', 'fork_of': 'forkOf'}
property customizations

Gets the customizations of this SandboxFork. # noqa: E501

Returns

The customizations of this SandboxFork. # noqa: E501

Return type

SandboxCustomizations

property endpoints

Gets the endpoints of this SandboxFork. # noqa: E501

Endpoints that correspond to this forked workload # noqa: E501

Returns

The endpoints of this SandboxFork. # noqa: E501

Return type

list[ForkEndpoint]

property fork_of

Gets the fork_of of this SandboxFork. # noqa: E501

Returns

The fork_of of this SandboxFork. # noqa: E501

Return type

ForkOf

swagger_types = {'customizations': 'SandboxCustomizations', 'endpoints': 'list[ForkEndpoint]', 'fork_of': 'ForkOf'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_info module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_info.SandboxInfo(cluster_name=None, created_at=None, default_service=None, default_service_port=None, description=None, id=None, name=None, namespace=None, preview_endpoints=None, preview_url=None, updated_at=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'cluster_name': 'clusterName', 'created_at': 'createdAt', 'default_service': 'defaultService', 'default_service_port': 'defaultServicePort', 'description': 'description', 'id': 'id', 'name': 'name', 'namespace': 'namespace', 'preview_endpoints': 'previewEndpoints', 'preview_url': 'previewURL', 'updated_at': 'updatedAt'}
property cluster_name

Gets the cluster_name of this SandboxInfo. # noqa: E501

Returns

The cluster_name of this SandboxInfo. # noqa: E501

Return type

str

property created_at

Gets the created_at of this SandboxInfo. # noqa: E501

Returns

The created_at of this SandboxInfo. # noqa: E501

Return type

str

property default_service

Gets the default_service of this SandboxInfo. # noqa: E501

Returns

The default_service of this SandboxInfo. # noqa: E501

Return type

str

property default_service_port

Gets the default_service_port of this SandboxInfo. # noqa: E501

Returns

The default_service_port of this SandboxInfo. # noqa: E501

Return type

int

property description

Gets the description of this SandboxInfo. # noqa: E501

Returns

The description of this SandboxInfo. # noqa: E501

Return type

str

property id

Gets the id of this SandboxInfo. # noqa: E501

Returns

The id of this SandboxInfo. # noqa: E501

Return type

str

property name

Gets the name of this SandboxInfo. # noqa: E501

Returns

The name of this SandboxInfo. # noqa: E501

Return type

str

property namespace

Gets the namespace of this SandboxInfo. # noqa: E501

Returns

The namespace of this SandboxInfo. # noqa: E501

Return type

str

property preview_endpoints

Gets the preview_endpoints of this SandboxInfo. # noqa: E501

Returns

The preview_endpoints of this SandboxInfo. # noqa: E501

Return type

list[PreviewEndpoint]

property preview_url

Gets the preview_url of this SandboxInfo. # noqa: E501

Returns

The preview_url of this SandboxInfo. # noqa: E501

Return type

str

swagger_types = {'cluster_name': 'str', 'created_at': 'str', 'default_service': 'str', 'default_service_port': 'int', 'description': 'str', 'id': 'str', 'name': 'str', 'namespace': 'str', 'preview_endpoints': 'list[PreviewEndpoint]', 'preview_url': 'str', 'updated_at': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property updated_at

Gets the updated_at of this SandboxInfo. # noqa: E501

Returns

The updated_at of this SandboxInfo. # noqa: E501

Return type

str

signadot_sdk.models.sandbox_ready_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_ready_response.SandboxReadyResponse(ready=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'ready': 'ready'}
property ready

Gets the ready of this SandboxReadyResponse. # noqa: E501

Returns

The ready of this SandboxReadyResponse. # noqa: E501

Return type

bool

swagger_types = {'ready': 'bool'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_resource module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_resource.SandboxResource(name=None, params=None, plugin=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'name': 'name', 'params': 'params', 'plugin': 'plugin'}
property name

Gets the name of this SandboxResource. # noqa: E501

Returns

The name of this SandboxResource. # noqa: E501

Return type

str

property params

Gets the params of this SandboxResource. # noqa: E501

Returns

The params of this SandboxResource. # noqa: E501

Return type

dict(str, str)

property plugin

Gets the plugin of this SandboxResource. # noqa: E501

Returns

The plugin of this SandboxResource. # noqa: E501

Return type

str

swagger_types = {'name': 'str', 'params': 'dict(str, str)', 'plugin': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_status module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_status.SandboxStatus(id=None, message=None, ready=None, reason=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'id': 'id', 'message': 'message', 'ready': 'ready', 'reason': 'reason'}
property id

Gets the id of this SandboxStatus. # noqa: E501

The id of the sandbox. # noqa: E501

Returns

The id of this SandboxStatus. # noqa: E501

Return type

str

property message

Gets the message of this SandboxStatus. # noqa: E501

Message is a human readable explanation of why the sandbox is healthy or not. # noqa: E501

Returns

The message of this SandboxStatus. # noqa: E501

Return type

str

property ready

Gets the ready of this SandboxStatus. # noqa: E501

Ready indicates whether the sandbox is ready, meaning that it can be used for testing. # noqa: E501

Returns

The ready of this SandboxStatus. # noqa: E501

Return type

bool

property reason

Gets the reason of this SandboxStatus. # noqa: E501

Reason is a machine readable explanation of why the sandbox is healthy or not. # noqa: E501

Returns

The reason of this SandboxStatus. # noqa: E501

Return type

str

swagger_types = {'id': 'str', 'message': 'str', 'ready': 'bool', 'reason': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.sandbox_status_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.sandbox_status_response.SandboxStatusResponse(status=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'status': 'status'}
property status

Gets the status of this SandboxStatusResponse. # noqa: E501

Returns

The status of this SandboxStatusResponse. # noqa: E501

Return type

SandboxStatus

swagger_types = {'status': 'SandboxStatus'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.upsert_pr_workspaces_request module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.upsert_pr_workspaces_request.UpsertPRWorkspacesRequest(cluster=None, default_service=None, default_service_port=None, description=None, endpoints=None, head_commit=None, images=None, name=None, namespace=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'cluster': 'cluster', 'default_service': 'defaultService', 'default_service_port': 'defaultServicePort', 'description': 'description', 'endpoints': 'endpoints', 'head_commit': 'headCommit', 'images': 'images', 'name': 'name', 'namespace': 'namespace'}
property cluster

Gets the cluster of this UpsertPRWorkspacesRequest. # noqa: E501

Cluster within which this workspace should be created # noqa: E501

Returns

The cluster of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

property default_service

Gets the default_service of this UpsertPRWorkspacesRequest. # noqa: E501

Deprecated. use endpoints instead. # noqa: E501

Returns

The default_service of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

property default_service_port

Gets the default_service_port of this UpsertPRWorkspacesRequest. # noqa: E501

Deprecated. use endpoints instead. # noqa: E501

Returns

The default_service_port of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

int

property description

Gets the description of this UpsertPRWorkspacesRequest. # noqa: E501

Description of the purpose of this workspace. # noqa: E501

Returns

The description of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

property endpoints

Gets the endpoints of this UpsertPRWorkspacesRequest. # noqa: E501

Each endpoint specifies a target service or workload corresponding to which a preview URL will be generated. # noqa: E501

Returns

The endpoints of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

list[CreatePreviewEndpointRequest]

property head_commit

Gets the head_commit of this UpsertPRWorkspacesRequest. # noqa: E501

HeadCommit is the commit hash of the current HEAD of the PR branch. It is automatically computed if not specified but it is recommended that you specify this. # noqa: E501

Returns

The head_commit of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

property images

Gets the images of this UpsertPRWorkspacesRequest. # noqa: E501

Image replacement rules that are used to create the workspace. # noqa: E501

Returns

The images of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

list[V1ImageReplacement]

property name

Gets the name of this UpsertPRWorkspacesRequest. # noqa: E501

Human-readable name of this workspace # noqa: E501

Returns

The name of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

property namespace

Gets the namespace of this UpsertPRWorkspacesRequest. # noqa: E501

Namespace within which this workspace should be created # noqa: E501

Returns

The namespace of this UpsertPRWorkspacesRequest. # noqa: E501

Return type

str

swagger_types = {'cluster': 'str', 'default_service': 'str', 'default_service_port': 'int', 'description': 'str', 'endpoints': 'list[CreatePreviewEndpointRequest]', 'head_commit': 'str', 'images': 'list[V1ImageReplacement]', 'name': 'str', 'namespace': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

signadot_sdk.models.upsert_workspace_response module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.upsert_workspace_response.UpsertWorkspaceResponse(preview_endpoints=None, preview_ur_ls=None, warnings=None, workspace_i_ds=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'preview_endpoints': 'previewEndpoints', 'preview_ur_ls': 'previewURLs', 'warnings': 'warnings', 'workspace_i_ds': 'workspaceIDs'}
property preview_endpoints

Gets the preview_endpoints of this UpsertWorkspaceResponse. # noqa: E501

Returns

The preview_endpoints of this UpsertWorkspaceResponse. # noqa: E501

Return type

list[PreviewEndpoint]

property preview_ur_ls

Gets the preview_ur_ls of this UpsertWorkspaceResponse. # noqa: E501

Returns

The preview_ur_ls of this UpsertWorkspaceResponse. # noqa: E501

Return type

list[str]

swagger_types = {'preview_endpoints': 'list[PreviewEndpoint]', 'preview_ur_ls': 'list[str]', 'warnings': 'list[str]', 'workspace_i_ds': 'list[str]'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property warnings

Gets the warnings of this UpsertWorkspaceResponse. # noqa: E501

Returns

The warnings of this UpsertWorkspaceResponse. # noqa: E501

Return type

list[str]

property workspace_i_ds

Gets the workspace_i_ds of this UpsertWorkspaceResponse. # noqa: E501

Returns

The workspace_i_ds of this UpsertWorkspaceResponse. # noqa: E501

Return type

list[str]

signadot_sdk.models.v1_image_replacement module

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git

class signadot_sdk.models.v1_image_replacement.V1ImageReplacement(name=None, namespace=None, new_name=None, new_tag=None, _configuration=None)

Bases: object

NOTE: This class is auto generated by the swagger code generator program.

Do not edit the class manually.

attribute_map = {'name': 'name', 'namespace': 'namespace', 'new_name': 'newName', 'new_tag': 'newTag'}
property name

Gets the name of this V1ImageReplacement. # noqa: E501

Name specifies which image name in live workloads will be replaced. Example: us.gcr.io/my-staging-registry/widget # noqa: E501

Returns

The name of this V1ImageReplacement. # noqa: E501

Return type

str

property namespace

Gets the namespace of this V1ImageReplacement. # noqa: E501

Namespace optionally specifies which namespace will be searched. # noqa: E501

Returns

The namespace of this V1ImageReplacement. # noqa: E501

Return type

str

property new_name

Gets the new_name of this V1ImageReplacement. # noqa: E501

NewName provides a replacement for the image name (the part before the tag). If this is left unset, the image name will not be changed. Example: us.gcr.io/my-dev-registry/username/widget # noqa: E501

Returns

The new_name of this V1ImageReplacement. # noqa: E501

Return type

str

property new_tag

Gets the new_tag of this V1ImageReplacement. # noqa: E501

NewTag provides a replacement tag for the image. If this is left unset, the image tag will not be changed. Example: v1.0.0-snapshot-abc123 # noqa: E501

Returns

The new_tag of this V1ImageReplacement. # noqa: E501

Return type

str

swagger_types = {'name': 'str', 'namespace': 'str', 'new_name': 'str', 'new_tag': 'str'}
to_dict()

Returns the model properties as a dict

to_str()

Returns the string representation of the model

Module contents

Signadot API

API for Signadot Sandboxes # noqa: E501

OpenAPI spec version: 1.0

Generated by: https://github.com/swagger-api/swagger-codegen.git