Show / Hide Table of Contents

Class ServiceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Projects
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ServiceArgs : ResourceArgs

Constructors

View Source

ServiceArgs()

Declaration
public ServiceArgs()

Properties

View Source

DisableDependentServices

If true, services that are enabled and which depend on this service should also be disabled when this service is destroyed. If false or unset, an error will be generated if any enabled services depend on this service when destroying it.

Declaration
public Input<bool> DisableDependentServices { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

DisableOnDestroy

If true, disable the service when the resource is destroyed. Defaults to true. May be useful in the event that a project is long-lived but the infrastructure running in that project changes frequently.

Declaration
public Input<bool> DisableOnDestroy { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Project

The project ID. If not provided, the provider project is used.

Declaration
public Input<string> Project { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ServiceName

The service to enable.

Declaration
public Input<string> ServiceName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.