class Google::Apis::GkehubV1beta1::ConnectAgentResource

ConnectAgentResource represents a Kubernetes resource manifest for Connect Agent deployment.

Attributes

manifest[RW]

YAML manifest of the resource. Corresponds to the JSON property `manifest` @return [String]

type[RW]

TypeMeta is the type information needed for content unmarshalling of Kubernetes resources in the manifest. Corresponds to the JSON property `type` @return [Google::Apis::GkehubV1beta1::TypeMeta]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1beta1/classes.rb, line 250
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gkehub_v1beta1/classes.rb, line 255
def update!(**args)
  @manifest = args[:manifest] if args.key?(:manifest)
  @type = args[:type] if args.key?(:type)
end