class Fog::ContainerInfra::HuaweiCloud::ClusterTemplates
Public Instance Methods
all()
click to toggle source
# File lib/fog/container_infra/huaweicloud/models/cluster_templates.rb, line 11 def all load_response(service.list_cluster_templates, 'clustertemplates') end
get(cluster_template_uuid_or_name)
click to toggle source
# File lib/fog/container_infra/huaweicloud/models/cluster_templates.rb, line 15 def get(cluster_template_uuid_or_name) resource = service.get_cluster_template(cluster_template_uuid_or_name).body new(resource) rescue Fog::ContainerInfra::HuaweiCloud::NotFound nil end