Class: Google::Apis::GkebackupV1::NamespacedName

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

Overview

A reference to a namespaced resource in Kubernetes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NamespacedName

Returns a new instance of NamespacedName.



1134
1135
1136
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1134

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

Instance Attribute Details

#nameString

The name of the Kubernetes resource. Corresponds to the JSON property name

Returns:

  • (String)


1127
1128
1129
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1127

def name
  @name
end

#namespaceString

The Namespace of the Kubernetes resource. Corresponds to the JSON property namespace

Returns:

  • (String)


1132
1133
1134
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1132

def namespace
  @namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1139
1140
1141
1142
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1139

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @namespace = args[:namespace] if args.key?(:namespace)
end