Documentation
¶
Index ¶
- type DomainMapping
- func (r *DomainMapping) ID() *pulumi.IDOutput
- func (r *DomainMapping) Location() *pulumi.StringOutput
- func (r *DomainMapping) Metadata() *pulumi.Output
- func (r *DomainMapping) Name() *pulumi.StringOutput
- func (r *DomainMapping) Project() *pulumi.StringOutput
- func (r *DomainMapping) Spec() *pulumi.Output
- func (r *DomainMapping) Status() *pulumi.Output
- func (r *DomainMapping) URN() *pulumi.URNOutput
- type DomainMappingArgs
- type DomainMappingState
- type Service
- func (r *Service) ID() *pulumi.IDOutput
- func (r *Service) Location() *pulumi.StringOutput
- func (r *Service) Metadata() *pulumi.Output
- func (r *Service) Name() *pulumi.StringOutput
- func (r *Service) Project() *pulumi.StringOutput
- func (r *Service) Spec() *pulumi.Output
- func (r *Service) Status() *pulumi.Output
- func (r *Service) URN() *pulumi.URNOutput
- type ServiceArgs
- type ServiceState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DomainMapping ¶
type DomainMapping struct {
// contains filtered or unexported fields
}
Resource to hold the state and status of a user's domain mapping.
**Note:** Cloud Run as a product is in beta, however the REST API is currently still an alpha. Please use this with caution as it may change when the API moves to beta.
To get more information about DomainMapping, see:
* [API documentation](https://cloud.google.com/run/docs/reference/rest/v1alpha1/projects.locations.domainmappings) * How-to Guides
- [Official Documentation](https://cloud.google.com/run/docs/mapping-custom-domains)
> This content is derived from https://github.com/terraform-providers/terraform-provider-google/blob/master/website/docs/r/cloud_run_domain_mapping.html.markdown.
func GetDomainMapping ¶
func GetDomainMapping(ctx *pulumi.Context, name string, id pulumi.ID, state *DomainMappingState, opts ...pulumi.ResourceOpt) (*DomainMapping, error)
GetDomainMapping gets an existing DomainMapping resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewDomainMapping ¶
func NewDomainMapping(ctx *pulumi.Context, name string, args *DomainMappingArgs, opts ...pulumi.ResourceOpt) (*DomainMapping, error)
NewDomainMapping registers a new resource with the given unique name, arguments, and options.
func (*DomainMapping) ID ¶
func (r *DomainMapping) ID() *pulumi.IDOutput
ID is this resource's unique identifier assigned by its provider.
func (*DomainMapping) Location ¶
func (r *DomainMapping) Location() *pulumi.StringOutput
func (*DomainMapping) Metadata ¶
func (r *DomainMapping) Metadata() *pulumi.Output
func (*DomainMapping) Name ¶
func (r *DomainMapping) Name() *pulumi.StringOutput
func (*DomainMapping) Project ¶
func (r *DomainMapping) Project() *pulumi.StringOutput
func (*DomainMapping) Spec ¶
func (r *DomainMapping) Spec() *pulumi.Output
func (*DomainMapping) Status ¶
func (r *DomainMapping) Status() *pulumi.Output
func (*DomainMapping) URN ¶
func (r *DomainMapping) URN() *pulumi.URNOutput
URN is this resource's unique name assigned by Pulumi.
type DomainMappingArgs ¶
type DomainMappingArgs struct { Location interface{} Metadata interface{} Name interface{} Project interface{} Spec interface{} }
The set of arguments for constructing a DomainMapping resource.
type DomainMappingState ¶
type DomainMappingState struct { Location interface{} Metadata interface{} Name interface{} Project interface{} Spec interface{} Status interface{} }
Input properties used for looking up and filtering DomainMapping resources.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
**Note:** Cloud Run as a product is in beta, however the REST API is currently still an alpha. Please use this with caution as it may change when the API moves to beta.
Service acts as a top-level container that manages a set of Routes and Configurations which implement a network service. Service exists to provide a singular abstraction which can be access controlled, reasoned about, and which encapsulates software lifecycle decisions such as rollout policy and team resource ownership. Service acts only as an orchestrator of the underlying Routes and Configurations (much as a kubernetes Deployment orchestrates ReplicaSets).
The Service's controller will track the statuses of its owned Configuration and Route, reflecting their statuses and conditions as its own.
See also: https://github.com/knative/serving/blob/master/docs/spec/overview.md#service
To get more information about Service, see:
* [API documentation](https://cloud.google.com/run/docs/reference/rest/v1alpha1/projects.locations.services) * How-to Guides
- [Official Documentation](https://cloud.google.com/run/docs/)
> This content is derived from https://github.com/terraform-providers/terraform-provider-google/blob/master/website/docs/r/cloud_run_service.html.markdown.
func GetService ¶
func GetService(ctx *pulumi.Context, name string, id pulumi.ID, state *ServiceState, opts ...pulumi.ResourceOpt) (*Service, error)
GetService gets an existing Service resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewService ¶
func NewService(ctx *pulumi.Context, name string, args *ServiceArgs, opts ...pulumi.ResourceOpt) (*Service, error)
NewService registers a new resource with the given unique name, arguments, and options.
func (*Service) Location ¶
func (r *Service) Location() *pulumi.StringOutput
func (*Service) Name ¶
func (r *Service) Name() *pulumi.StringOutput
func (*Service) Project ¶
func (r *Service) Project() *pulumi.StringOutput
type ServiceArgs ¶
type ServiceArgs struct { Location interface{} Metadata interface{} Name interface{} Project interface{} Spec interface{} }
The set of arguments for constructing a Service resource.
type ServiceState ¶
type ServiceState struct { Location interface{} Metadata interface{} Name interface{} Project interface{} Spec interface{} Status interface{} }
Input properties used for looking up and filtering Service resources.