Class: Google::Apis::GkehubV1beta::MembershipFeatureSpec

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1beta/classes.rb,
lib/google/apis/gkehub_v1beta/representations.rb,
lib/google/apis/gkehub_v1beta/representations.rb

Overview

MembershipFeatureSpec contains configuration information for a single Membership.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MembershipFeatureSpec

Returns a new instance of MembershipFeatureSpec.



2466
2467
2468
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2466

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#anthosobservabilityGoogle::Apis::GkehubV1beta::AnthosObservabilityMembershipSpec

Anthosobservability: Per-Membership Feature spec. Corresponds to the JSON property anthosobservability



2425
2426
2427
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2425

def anthosobservability
  @anthosobservability
end

#cloudbuildGoogle::Apis::GkehubV1beta::MembershipSpec

Cloud Build: Configurations for each Cloud Build enabled cluster. Corresponds to the JSON property cloudbuild



2430
2431
2432
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2430

def cloudbuild
  @cloudbuild
end

#configmanagementGoogle::Apis::GkehubV1beta::ConfigManagementMembershipSpec

Anthos Config Management: Configuration for a single cluster. Intended to parallel the ConfigManagement CR. Corresponds to the JSON property configmanagement



2436
2437
2438
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2436

def configmanagement
  @configmanagement
end

#fleet_inheritedBoolean Also known as: fleet_inherited?

True if value of feature_spec was inherited from a fleet-level default. Corresponds to the JSON property fleetInherited

Returns:

  • (Boolean)


2441
2442
2443
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2441

def fleet_inherited
  @fleet_inherited
end

#fleetobservabilityGoogle::Apis::GkehubV1beta::FleetObservabilityMembershipSpec

FleetObservability: The membership-specific input for FleetObservability feature. Corresponds to the JSON property fleetobservability



2448
2449
2450
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2448

def fleetobservability
  @fleetobservability
end

#identityserviceGoogle::Apis::GkehubV1beta::IdentityServiceMembershipSpec

Anthos Identity Service: Configuration for a single Membership. Corresponds to the JSON property identityservice



2453
2454
2455
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2453

def identityservice
  @identityservice
end

#meshGoogle::Apis::GkehubV1beta::ServiceMeshMembershipSpec

Service Mesh: Spec for a single Membership for the servicemesh feature Corresponds to the JSON property mesh



2458
2459
2460
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2458

def mesh
  @mesh
end

#policycontrollerGoogle::Apis::GkehubV1beta::PolicyControllerMembershipSpec

Policy Controller: Configuration for a single cluster. Intended to parallel the PolicyController CR. Corresponds to the JSON property policycontroller



2464
2465
2466
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2464

def policycontroller
  @policycontroller
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
# File 'lib/google/apis/gkehub_v1beta/classes.rb', line 2471

def update!(**args)
  @anthosobservability = args[:anthosobservability] if args.key?(:anthosobservability)
  @cloudbuild = args[:cloudbuild] if args.key?(:cloudbuild)
  @configmanagement = args[:configmanagement] if args.key?(:configmanagement)
  @fleet_inherited = args[:fleet_inherited] if args.key?(:fleet_inherited)
  @fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
  @identityservice = args[:identityservice] if args.key?(:identityservice)
  @mesh = args[:mesh] if args.key?(:mesh)
  @policycontroller = args[:policycontroller] if args.key?(:policycontroller)
end