Class: Google::Apis::GkebackupV1::NamespacedName
- Inherits:
-
Object
- Object
- Google::Apis::GkebackupV1::NamespacedName
- 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
-
#name ⇒ String
The name of the Kubernetes resource.
-
#namespace ⇒ String
The Namespace of the Kubernetes resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NamespacedName
constructor
A new instance of NamespacedName.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NamespacedName
Returns a new instance of NamespacedName.
1184 1185 1186 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the Kubernetes resource.
Corresponds to the JSON property name
1177 1178 1179 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1177 def name @name end |
#namespace ⇒ String
The Namespace of the Kubernetes resource.
Corresponds to the JSON property namespace
1182 1183 1184 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1182 def namespace @namespace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1189 1190 1191 1192 |
# File 'lib/google/apis/gkebackup_v1/classes.rb', line 1189 def update!(**args) @name = args[:name] if args.key?(:name) @namespace = args[:namespace] if args.key?(:namespace) end |