Skip to content

Instantly share code, notes, and snippets.

@cben
Last active April 18, 2016 12:18
Show Gist options
  • Save cben/2619583f777ddb480a10 to your computer and use it in GitHub Desktop.
Save cben/2619583f777ddb480a10 to your computer and use it in GitHub Desktop.
ManageIQ labels and tags examples
irb(main):050:0> pp ContainerBuildPod.all.map{|p| {name: p.name,
build_pod_labels: p.labels.pluck(:name, :value),
pod_labels: p.container_group && p.container_group.labels.pluck(:name, :value)}}
[{:name=>"ruby-sample-build-1",
:build_pod_labels=>
[["app", "ruby-sample-build"],
["buildconfig", "ruby-sample-build"],
["name", "ruby-sample-build"],
["openshift.io/build-config.name", "ruby-sample-build"],
["template", "application-template-stibuild"]],
:pod_labels=>[["openshift.io/build.name", "ruby-sample-build-1"]]},
{:name=>"ruby-ex-1",
:build_pod_labels=>
[["app", "ruby-ex"],
["buildconfig", "ruby-ex"],
["openshift.io/build-config.name", "ruby-ex"]],
:pod_labels=>nil},
{:name=>"ruby-ex-2",
:build_pod_labels=>
[["app", "ruby-ex"],
["buildconfig", "ruby-ex"],
["openshift.io/build-config.name", "ruby-ex"]],
:pod_labels=>nil},
{:name=>"ruby-ex-3",
:build_pod_labels=>
[["app", "ruby-ex"],
["buildconfig", "ruby-ex"],
["openshift.io/build-config.name", "ruby-ex"]],
:pod_labels=>nil},
{:name=>"ruby-ex-4",
:build_pod_labels=>
[["app", "ruby-ex"],
["buildconfig", "ruby-ex"],
["openshift.io/build-config.name", "ruby-ex"]],
:pod_labels=>[["openshift.io/build.name", "ruby-ex-4"]]},
{:name=>"cakephp-ex-1",
:build_pod_labels=>
[["app", "cakephp-ex"],
["buildconfig", "cakephp-ex"],
["openshift.io/build-config.name", "cakephp-ex"]],
:pod_labels=>nil}]
# Some random exploration
irb(main):070:0> pp london.classification
#<Classification:0x00555870c513e0
id: 4,
description: "London",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 6,
parent_id: 1,
show: true,
default: true,
perf_by_tag: nil>
irb(main):072:0> Classification.tag2human('/managed/location/london')
Tag Load (0.4ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location"], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Classification Load (0.4ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 3], ["LIMIT", 1]]
Classification Inst Including Associations (0.3ms - 1rows)
Tag Load (1.7ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location/london"], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Classification Load (0.2ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 6], ["LIMIT", 1]]
Classification Inst Including Associations (0.2ms - 1rows)
=> "Location: London"
irb(main):075:0> pp Classification.tag_to_model_hash(london)
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location"], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Classification Load (0.3ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 3], ["LIMIT", 1]]
Classification Inst Including Associations (0.2ms - 1rows)
Tag Load (0.8ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Tag Load (0.3ms) SELECT "tags".* FROM "tags" WHERE ("tags"."id" BETWEEN $1 AND $2) AND "tags"."name" = $3 LIMIT $4 [["id", 0], ["id", 999999999999], ["name", "/managed/location/london"], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
Classification Load (1.9ms) SELECT "classifications".* FROM "classifications" WHERE "classifications"."tag_id" = $1 LIMIT $2 [["tag_id", 6], ["LIMIT", 1]]
Classification Inst Including Associations (0.2ms - 1rows)
Tag Load (0.2ms) SELECT "tags".* FROM "tags" WHERE "tags"."id" = $1 LIMIT $2 [["id", 6], ["LIMIT", 1]]
Tag Inst Including Associations (0.1ms - 1rows)
{:id=>6,
:name=>"/managed/location/london",
:namespace=>"managed",
:category_id=>1,
:category_name=>"location",
:category_description=>"Location",
:category_single_value=>true,
:entry_id=>4,
:entry_name=>"london",
:entry_description=>"London"}
=> {:id=>6, :name=>"/managed/location/london", :namespace=>"managed", :category_id=>1, :category_name=>"location", :category_description=>"Location", :category_single_value=>true, :entry_id=>4, :entry_name=>"london", :entry_description=>"London"}
irb(main):080:0> pp Classification.all.sort
Classification Load (0.4ms) SELECT "classifications".* FROM "classifications"
Classification Inst Including Associations (3.6ms - 123rows)
[#<Classification:0x0055586af99ff8
id: 1,
description: "Location",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text:
"The geographic location of the resource, such as New York, Chicago, or London.",
tag_id: 3,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af99aa8
id: 2,
description: "New York",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 4,
parent_id: 1,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af99468
id: 3,
description: "Chicago",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 5,
parent_id: 1,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af98e28
id: 4,
description: "London",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 6,
parent_id: 1,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af98860
id: 5,
description: "Paris",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 7,
parent_id: 1,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af98450
id: 6,
description: "Workload",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text:
"The workloads a resource provides, such as Web Server, Database, or Firewall.",
tag_id: 8,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7fe50
id: 7,
description: "Desktop",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 9,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7f6a8
id: 8,
description: "Active Directory Server",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 10,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7f090
id: 9,
description: "Application Servers",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 11,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7e910
id: 10,
description: "Database",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 12,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7e3c0
id: 11,
description: "DHCP Server",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 13,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7d998
id: 12,
description: "EVM Appliance",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 14,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7d2b8
id: 13,
description: "Virtual Infrastructure Management",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 15,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7cc50
id: 14,
description: "Messaging",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 16,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7c610
id: 15,
description: "Security",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 17,
parent_id: 6,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7c048
id: 16,
description: "Owner",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "The individual or group that owns the resource.",
tag_id: 18,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7b8f0
id: 17,
description: "Production Linux Team",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 19,
parent_id: 16,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7b440
id: 18,
description: "Production Operations Team",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 20,
parent_id: 16,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7afe0
id: 19,
description: "Windows 2008 Test Team",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 21,
parent_id: 16,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7aba8
id: 20,
description: "Environment",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text:
"The resource environment, such as Development, QA, Test, or Production",
tag_id: 22,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af7a568
id: 21,
description: "Development",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 23,
parent_id: 20,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af79f00
id: 22,
description: "Production",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 24,
parent_id: 20,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af798c0
id: 23,
description: "Quarantine",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 25,
parent_id: 20,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af793c0
id: 24,
description: "Test",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 26,
parent_id: 20,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af78ec0
id: 25,
description: "Quality Assurance",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 27,
parent_id: 20,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af78998
id: 26,
description: "User roles",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 28,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af78308
id: 27,
description: "Administrator",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 29,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5fe98
id: 28,
description: "Super Administrator",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 30,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5f808
id: 29,
description: "Helpdesk / Support",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 31,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5f3f8
id: 30,
description: "Auditor",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 32,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5ef20
id: 31,
description: "Approver",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 33,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5eae8
id: 32,
description: "User",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 34,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5e6d8
id: 33,
description: "Operator",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 35,
parent_id: 26,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5e2a0
id: 34,
description: "Service Level",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "The level of service associated with this resource.",
tag_id: 36,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5de40
id: 35,
description: "Silver",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 37,
parent_id: 34,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5da30
id: 36,
description: "Gold",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 38,
parent_id: 34,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5d620
id: 37,
description: "Platinum",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 39,
parent_id: 34,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5d210
id: 38,
description: "Customer",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "The name of the customer associated with this resource.",
tag_id: 40,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5cdb0
id: 39,
description: "Line of Business",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text:
"The Line of Business the resource is assigned to, such as Retail, Trading, or Manufacturing.",
tag_id: 41,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5c7c0
id: 40,
description: "Department",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text:
"The department the resource is assigned to, such as HR, Accounting, or Sales.",
tag_id: 42,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af5c298
id: 41,
description: "Accounting",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 43,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af57cc0
id: 42,
description: "Automotive",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 44,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af57568
id: 43,
description: "Communication",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 45,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af57130
id: 44,
description: "Defense Systems",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 46,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af56cd0
id: 45,
description: "Engineering",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 47,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af568c0
id: 46,
description: "Financial Services",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 48,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af56488
id: 47,
description: "Human Resources",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 49,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af55e70
id: 48,
description: "Presales",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 50,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af55830
id: 49,
description: "Retail Operations",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 51,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af553f8
id: 50,
description: "Support",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 52,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af54fc0
id: 51,
description: "Trading Floor",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 53,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af549d0
id: 52,
description: "Healthcare",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 54,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af54368
id: 53,
description: "Marketing",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 55,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3ff08
id: 54,
description: "Purchasing",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 56,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3fad0
id: 55,
description: "VI Operations",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 57,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3f648
id: 56,
description: "Retail Operations Test",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 58,
parent_id: 40,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3f0f8
id: 57,
description: "Cost Center",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Cost Center",
tag_id: 59,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3ecc0
id: 58,
description: "Cost Center 001",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 60,
parent_id: 57,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3e888
id: 59,
description: "Cost Center 002",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 61,
parent_id: 57,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3e3d8
id: 60,
description: "Network Location",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text:
"The network location the resource is to be used, such as DMZ, Internal network or Cloud",
tag_id: 62,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3df28
id: 61,
description: "DMZ",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 63,
parent_id: 60,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3da78
id: 62,
description: "Internal",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 64,
parent_id: 60,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3d5a0
id: 63,
description: "Cloud",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 65,
parent_id: 60,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3d078
id: 64,
description: "Exclusions",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text:
"Operations that the resource may be excluded from, such as Analysis or Cloning.",
tag_id: 66,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3cc40
id: 65,
description: "Do not Analyze",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 67,
parent_id: 64,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3c808
id: 66,
description: "Do not Clone",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 68,
parent_id: 64,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af3c308
id: 67,
description: "Provisioning Scope",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: "Provisioning Scope",
tag_id: 69,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af37e48
id: 68,
description: "All",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 70,
parent_id: 67,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af37a38
id: 69,
description: "EvmGroup-user_self_service",
icon: nil,
read_only: false,
syntax: "string",
single_value: false,
example_text: nil,
tag_id: 71,
parent_id: 67,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af374e8
id: 70,
description: "EVM Operations",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Operations",
tag_id: 72,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af36db8
id: 71,
description: "Analysis Failed",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 73,
parent_id: 70,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af36890
id: 72,
description: "Analysis Required",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 74,
parent_id: 70,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af36430
id: 73,
description: "Analysis Successful",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 75,
parent_id: 70,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af35fa8
id: 74,
description: "Quota - Max CPUs",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum number of CPUs allowed by Quota",
tag_id: 76,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af358f0
id: 75,
description: "1",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 77,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af35440
id: 76,
description: "2",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 78,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af34f90
id: 77,
description: "3",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 79,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af34b58
id: 78,
description: "4",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 80,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af346d0
id: 79,
description: "5",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 81,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af340b8
id: 80,
description: "10",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 82,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2fbd0
id: 81,
description: "20",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 83,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2f608
id: 82,
description: "30",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 84,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2f018
id: 83,
description: "40",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 85,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2eb40
id: 84,
description: "50",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 86,
parent_id: 74,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2e690
id: 85,
description: "Auto Approve - Max CPU",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum number of CPUs allowed by Auto Approval",
tag_id: 87,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2e280
id: 86,
description: "1",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 88,
parent_id: 85,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2de20
id: 87,
description: "2",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 89,
parent_id: 85,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2d9c0
id: 88,
description: "3",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 90,
parent_id: 85,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2d5b0
id: 89,
description: "4",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 91,
parent_id: 85,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2d100
id: 90,
description: "5",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 92,
parent_id: 85,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2ca70
id: 91,
description: "Auto Approve - Max VM",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum number of VMs allowed by Auto Approval",
tag_id: 93,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2c638
id: 92,
description: "1",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 94,
parent_id: 91,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af2c138
id: 93,
description: "2",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 95,
parent_id: 91,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af23c40
id: 94,
description: "3",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 96,
parent_id: 91,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af23808
id: 95,
description: "4",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 97,
parent_id: 91,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af233a8
id: 96,
description: "5",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 98,
parent_id: 91,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af22cc8
id: 97,
description: "Quota - Max Memory",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum Memory allowed by Quota (GB)",
tag_id: 99,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af22638
id: 98,
description: "1GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 100,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af22200
id: 99,
description: "2GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 101,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af21da0
id: 100,
description: "4GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 102,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af21828
id: 101,
description: "8GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 103,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af211c0
id: 102,
description: "10GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 104,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af20d38
id: 103,
description: "20GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 105,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af20860
id: 104,
description: "40GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 106,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af20428
id: 105,
description: "80GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 107,
parent_id: 97,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af17f30
id: 106,
description: "Auto Approve - Max Memory",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum Memory allowed by Auto Approval (GB)",
tag_id: 108,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af17ad0
id: 107,
description: "1GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 109,
parent_id: 106,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af17698
id: 108,
description: "2GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 110,
parent_id: 106,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af17260
id: 109,
description: "4GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 111,
parent_id: 106,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af16e00
id: 110,
description: "8GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 112,
parent_id: 106,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af16900
id: 111,
description: "Quota - Max Storage",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum Storage allowed by Quota (GB)",
tag_id: 113,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af16220
id: 112,
description: "10GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 114,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af15e10
id: 113,
description: "20GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 115,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af15a00
id: 114,
description: "40GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 116,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af15500
id: 115,
description: "100GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 117,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af15078
id: 116,
description: "200GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 118,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af14c18
id: 117,
description: "400GB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 119,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af147e0
id: 118,
description: "1TB",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 120,
parent_id: 111,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af14308
id: 119,
description: "Auto Approve - Max Retirement Days",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: "Maximum Days for Retirement allowed by Auto Approval",
tag_id: 121,
parent_id: 0,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af0be60
id: 120,
description: "30",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 122,
parent_id: 119,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af0b820
id: 121,
description: "60",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 123,
parent_id: 119,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af0b370
id: 122,
description: "90",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 124,
parent_id: 119,
show: true,
default: true,
perf_by_tag: nil>,
#<Classification:0x0055586af0aee8
id: 123,
description: "180",
icon: nil,
read_only: false,
syntax: "string",
single_value: true,
example_text: nil,
tag_id: 125,
parent_id: 119,
show: true,
default: true,
perf_by_tag: nil>]
irb(main):015:0> pp CustomAttribute.where(section: "labels").map{|x| [x.resource_type, x.name, x.value]}.sort.uniq; nil
CustomAttribute Load (0.4ms) SELECT "custom_attributes".* FROM "custom_attributes" WHERE "custom_attributes"."section" = $1 [["section", "labels"]]
CustomAttribute Inst Including Associations (1.8ms - 154rows)
[["ContainerBuild", "app", "ruby-ex"],
["ContainerBuild", "app", "ruby-sample-build"],
["ContainerBuild", "name", "ruby-sample-build"],
["ContainerBuild", "template", "application-template-stibuild"],
["ContainerBuildPod", "app", "ruby-ex"],
["ContainerBuildPod", "app", "ruby-sample-build"],
["ContainerBuildPod", "buildconfig", "ruby-ex"],
["ContainerBuildPod", "buildconfig", "ruby-sample-build"],
["ContainerBuildPod", "name", "ruby-sample-build"],
["ContainerBuildPod", "openshift.io/build-config.name", "ruby-ex"],
["ContainerBuildPod", "openshift.io/build-config.name", "ruby-sample-build"],
["ContainerBuildPod", "template", "application-template-stibuild"],
["ContainerGroup", "app", "ruby-ex"],
["ContainerGroup", "app", "ruby-sample-build"],
["ContainerGroup", "component", "deployer"],
["ContainerGroup", "deployment", "database-1"],
["ContainerGroup", "deployment", "docker-registry-1"],
["ContainerGroup", "deployment", "frontend-1"],
["ContainerGroup", "deployment", "management-metrics-1"],
["ContainerGroup", "deployment", "master-router-1"],
["ContainerGroup", "deployment", "router-1"],
["ContainerGroup", "deployment", "ruby-ex-2"],
["ContainerGroup", "deploymentconfig", "database"],
["ContainerGroup", "deploymentconfig", "docker-registry"],
["ContainerGroup", "deploymentconfig", "frontend"],
["ContainerGroup", "deploymentconfig", "management-metrics"],
["ContainerGroup", "deploymentconfig", "master-router"],
["ContainerGroup", "deploymentconfig", "router"],
["ContainerGroup", "deploymentconfig", "ruby-ex"],
["ContainerGroup", "docker-registry", "default"],
["ContainerGroup", "metrics-infra", "deployer"],
["ContainerGroup", "metrics-infra", "hawkular-cassandra"],
["ContainerGroup", "metrics-infra", "hawkular-metrics"],
["ContainerGroup", "metrics-infra", "heapster"],
["ContainerGroup", "name", "database"],
["ContainerGroup", "name", "frontend"],
["ContainerGroup", "name", "hawkular-cassandra-1"],
["ContainerGroup", "name", "hawkular-metrics"],
["ContainerGroup", "name", "heapster"],
["ContainerGroup", "openshift.io/build.name", "ruby-ex-2"],
["ContainerGroup", "openshift.io/build.name", "ruby-ex-3"],
["ContainerGroup", "openshift.io/build.name", "ruby-sample-build-1"],
["ContainerGroup", "provider", "openshift"],
["ContainerGroup", "router", "management-metrics"],
["ContainerGroup", "router", "master-router"],
["ContainerGroup", "router", "router"],
["ContainerGroup", "type", "hawkular-cassandra"],
["ContainerNode",
"kubernetes.io/hostname",
"oshift01.eng.lab.tlv.redhat.com"],
["ContainerNode",
"kubernetes.io/hostname",
"oshift02.eng.lab.tlv.redhat.com"],
["ContainerNode",
"kubernetes.io/hostname",
"oshift03.eng.lab.tlv.redhat.com"],
["ContainerNode",
"kubernetes.io/hostname",
"oshift04.eng.lab.tlv.redhat.com"],
["ContainerNode", "kubernetes.io/hostname", "vm-test-02.example.com"],
["ContainerNode", "kubernetes.io/hostname", "vm-test-03.example.com"],
["ContainerNode", "region", "infra"],
["ContainerNode", "region", "primary"],
["ContainerNode", "zone", "default"],
["ContainerNode", "zone", "west"],
["ContainerReplicator", "app", "ruby-ex"],
["ContainerReplicator", "app", "ruby-sample-build"],
["ContainerReplicator", "docker-registry", "default"],
["ContainerReplicator", "metrics-infra", "hawkular-cassandra"],
["ContainerReplicator", "metrics-infra", "hawkular-metrics"],
["ContainerReplicator", "metrics-infra", "heapster"],
["ContainerReplicator", "name", "hawkular-cassandra"],
["ContainerReplicator", "name", "hawkular-metrics"],
["ContainerReplicator", "name", "heapster"],
["ContainerReplicator", "openshift.io/deployment-config.name", "database"],
["ContainerReplicator",
"openshift.io/deployment-config.name",
"docker-registry"],
["ContainerReplicator", "openshift.io/deployment-config.name", "frontend"],
["ContainerReplicator",
"openshift.io/deployment-config.name",
"management-metrics"],
["ContainerReplicator",
"openshift.io/deployment-config.name",
"master-router"],
["ContainerReplicator", "openshift.io/deployment-config.name", "router"],
["ContainerReplicator", "openshift.io/deployment-config.name", "ruby-ex"],
["ContainerReplicator", "router", "management-metrics"],
["ContainerReplicator", "router", "master-router"],
["ContainerReplicator", "router", "router"],
["ContainerReplicator", "template", "application-template-stibuild"],
["ContainerReplicator", "type", "hawkular-cassandra"],
["ContainerRoute", "app", "ruby-ex"],
["ContainerRoute", "app", "ruby-sample-build"],
["ContainerRoute", "metrics-infra", "support"],
["ContainerRoute", "template", "application-template-stibuild"],
["ContainerService", "app", "ruby-ex"],
["ContainerService", "app", "ruby-sample-build"],
["ContainerService", "component", "apiserver"],
["ContainerService", "docker-registry", "default"],
["ContainerService", "metrics-infra", "hawkular-cassandra"],
["ContainerService", "metrics-infra", "hawkular-metrics"],
["ContainerService", "metrics-infra", "heapster"],
["ContainerService", "name", "hawkular-cassandra"],
["ContainerService", "name", "hawkular-metrics"],
["ContainerService", "name", "heapster"],
["ContainerService", "provider", "kubernetes"],
["ContainerService", "router", "management-metrics"],
["ContainerService", "router", "master-router"],
["ContainerService", "router", "router"],
["ContainerService", "template", "application-template-stibuild"]]
=> nil
irb(main):065:0> pp Tag.all
Tag Load (0.3ms) SELECT "tags".* FROM "tags"
Tag Inst Including Associations (1.3ms - 125rows)
[#<Tag:0x0055587156c8d0 id: 1, name: "/managed/roles/change_managers">,
#<Tag:0x0055587156c740 id: 2, name: "/managed/roles/operators">,
#<Tag:0x0055587156c5d8 id: 3, name: "/managed/location">,
#<Tag:0x0055587156c470 id: 4, name: "/managed/location/ny">,
#<Tag:0x0055587156c308 id: 5, name: "/managed/location/chicago">,
#<Tag:0x0055587156c150 id: 6, name: "/managed/location/london">,
#<Tag:0x0055587156bf70 id: 7, name: "/managed/location/paris">,
#<Tag:0x0055587156be08 id: 8, name: "/managed/function">,
#<Tag:0x0055587156bcc8 id: 9, name: "/managed/function/desktop">,
#<Tag:0x0055587156bb88 id: 10, name: "/managed/function/active_directory">,
#<Tag:0x0055587156ba48 id: 11, name: "/managed/function/application_servers">,
#<Tag:0x0055587156b8e0 id: 12, name: "/managed/function/database">,
#<Tag:0x0055587156b7a0 id: 13, name: "/managed/function/dhcp">,
#<Tag:0x0055587156b610 id: 14, name: "/managed/function/evm_appliance">,
#<Tag:0x0055587156b430 id: 15, name: "/managed/function/infrastructure">,
#<Tag:0x0055587156b2a0 id: 16, name: "/managed/function/messaging">,
#<Tag:0x0055587156b098 id: 17, name: "/managed/function/security">,
#<Tag:0x0055587156ae40 id: 18, name: "/managed/owner">,
#<Tag:0x0055587156ac88 id: 19, name: "/managed/owner/prod_linux">,
#<Tag:0x0055587156aaa8 id: 20, name: "/managed/owner/prod_ops">,
#<Tag:0x0055587156a968 id: 21, name: "/managed/owner/win2008_test">,
#<Tag:0x0055587156a828 id: 22, name: "/managed/environment">,
#<Tag:0x0055587156a6c0 id: 23, name: "/managed/environment/dev">,
#<Tag:0x0055587156a558 id: 24, name: "/managed/environment/prod">,
#<Tag:0x0055587156a3c8 id: 25, name: "/managed/environment/quar">,
#<Tag:0x0055587156a288 id: 26, name: "/managed/environment/test">,
#<Tag:0x0055587156a148 id: 27, name: "/managed/environment/qa">,
#<Tag:0x00555871569fb8 id: 28, name: "/managed/user/role">,
#<Tag:0x00555871569d60 id: 29, name: "/managed/user/role/administrator">,
#<Tag:0x00555871569b58
id: 30,
name: "/managed/user/role/super_administrator">,
#<Tag:0x00555871569950 id: 31, name: "/managed/user/role/support">,
#<Tag:0x00555871569748 id: 32, name: "/managed/user/role/auditor">,
#<Tag:0x00555871569608 id: 33, name: "/managed/user/role/approver">,
#<Tag:0x005558715694c8 id: 34, name: "/managed/user/role/user">,
#<Tag:0x00555871569388 id: 35, name: "/managed/user/role/operator">,
#<Tag:0x005558715691f8 id: 36, name: "/managed/service_level">,
#<Tag:0x00555871569090 id: 37, name: "/managed/service_level/silver">,
#<Tag:0x00555871568f50 id: 38, name: "/managed/service_level/gold">,
#<Tag:0x00555871568e10 id: 39, name: "/managed/service_level/platinum">,
#<Tag:0x00555871568cd0 id: 40, name: "/managed/customer">,
#<Tag:0x00555871568b90 id: 41, name: "/managed/lob">,
#<Tag:0x00555871568a28 id: 42, name: "/managed/department">,
#<Tag:0x005558715688e8 id: 43, name: "/managed/department/accounting">,
#<Tag:0x00555871568708 id: 44, name: "/managed/department/automotive">,
#<Tag:0x00555871568528 id: 45, name: "/managed/department/communication">,
#<Tag:0x00555871568320 id: 46, name: "/managed/department/defense">,
#<Tag:0x005558715680c8 id: 47, name: "/managed/department/engineering">,
#<Tag:0x00555871563e10 id: 48, name: "/managed/department/finance">,
#<Tag:0x00555871563b90 id: 49, name: "/managed/department/hr">,
#<Tag:0x00555871563938 id: 50, name: "/managed/department/presales">,
#<Tag:0x00555871563640 id: 51, name: "/managed/department/retail">,
#<Tag:0x00555871563500 id: 52, name: "/managed/department/support">,
#<Tag:0x00555871563398 id: 53, name: "/managed/department/trading">,
#<Tag:0x00555871563208 id: 54, name: "/managed/department/healthcare">,
#<Tag:0x00555871563078 id: 55, name: "/managed/department/marketing">,
#<Tag:0x00555871562f38 id: 56, name: "/managed/department/purchasing">,
#<Tag:0x00555871562ce0 id: 57, name: "/managed/department/vi_operations">,
#<Tag:0x00555871562b78 id: 58, name: "/managed/department/retail_test">,
#<Tag:0x00555871562a10 id: 59, name: "/managed/cc">,
#<Tag:0x00555871562808 id: 60, name: "/managed/cc/001">,
#<Tag:0x005558715626a0 id: 61, name: "/managed/cc/002">,
#<Tag:0x00555871562560 id: 62, name: "/managed/network_location">,
#<Tag:0x005558715623f8 id: 63, name: "/managed/network_location/dmz">,
#<Tag:0x00555871562240 id: 64, name: "/managed/network_location/internal">,
#<Tag:0x00555871562100 id: 65, name: "/managed/network_location/cloud">,
#<Tag:0x00555871561fc0 id: 66, name: "/managed/exclusions">,
#<Tag:0x00555871561e08 id: 67, name: "/managed/exclusions/do_not_analyze">,
#<Tag:0x00555871561ca0 id: 68, name: "/managed/exclusions/do_not_clone">,
#<Tag:0x00555871561b60 id: 69, name: "/managed/prov_scope">,
#<Tag:0x005558715619d0 id: 70, name: "/managed/prov_scope/all">,
#<Tag:0x00555871561890
id: 71,
name: "/managed/prov_scope/evmgroup_user_self_service">,
#<Tag:0x00555871561750 id: 72, name: "/managed/operations">,
#<Tag:0x005558715615e8 id: 73, name: "/managed/operations/analysis_failed">,
#<Tag:0x00555871561480 id: 74, name: "/managed/operations/analysis_required">,
#<Tag:0x00555871561340 id: 75, name: "/managed/operations/analysis_success">,
#<Tag:0x005558715611d8 id: 76, name: "/managed/quota_max_cpu">,
#<Tag:0x00555871561098 id: 77, name: "/managed/quota_max_cpu/1">,
#<Tag:0x00555871560f08 id: 78, name: "/managed/quota_max_cpu/2">,
#<Tag:0x00555871560da0 id: 79, name: "/managed/quota_max_cpu/3">,
#<Tag:0x00555871560c60 id: 80, name: "/managed/quota_max_cpu/4">,
#<Tag:0x00555871560af8 id: 81, name: "/managed/quota_max_cpu/5">,
#<Tag:0x005558715608a0 id: 82, name: "/managed/quota_max_cpu/10">,
#<Tag:0x00555871560580 id: 83, name: "/managed/quota_max_cpu/20">,
#<Tag:0x00555871560170 id: 84, name: "/managed/quota_max_cpu/30">,
#<Tag:0x0055587155bf80 id: 85, name: "/managed/quota_max_cpu/40">,
#<Tag:0x0055587155bd50 id: 86, name: "/managed/quota_max_cpu/50">,
#<Tag:0x0055587155bbe8 id: 87, name: "/managed/prov_max_cpu">,
#<Tag:0x0055587155baa8 id: 88, name: "/managed/prov_max_cpu/1">,
#<Tag:0x0055587155b968 id: 89, name: "/managed/prov_max_cpu/2">,
#<Tag:0x0055587155b828 id: 90, name: "/managed/prov_max_cpu/3">,
#<Tag:0x0055587155b6c0 id: 91, name: "/managed/prov_max_cpu/4">,
#<Tag:0x0055587155b580 id: 92, name: "/managed/prov_max_cpu/5">,
#<Tag:0x0055587155b440 id: 93, name: "/managed/prov_max_vm">,
#<Tag:0x0055587155b288 id: 94, name: "/managed/prov_max_vm/1">,
#<Tag:0x0055587155b080 id: 95, name: "/managed/prov_max_vm/2">,
#<Tag:0x0055587155aec8 id: 96, name: "/managed/prov_max_vm/3">,
#<Tag:0x0055587155abf8 id: 97, name: "/managed/prov_max_vm/4">,
#<Tag:0x0055587155aa18 id: 98, name: "/managed/prov_max_vm/5">,
#<Tag:0x0055587155a8d8 id: 99, name: "/managed/quota_max_memory">,
#<Tag:0x0055587155a798 id: 100, name: "/managed/quota_max_memory/1024">,
#<Tag:0x0055587155a658 id: 101, name: "/managed/quota_max_memory/2048">,
#<Tag:0x0055587155a4c8 id: 102, name: "/managed/quota_max_memory/4096">,
#<Tag:0x0055587155a388 id: 103, name: "/managed/quota_max_memory/8192">,
#<Tag:0x0055587155a248 id: 104, name: "/managed/quota_max_memory/10240">,
#<Tag:0x0055587155a108 id: 105, name: "/managed/quota_max_memory/20480">,
#<Tag:0x00555871559fc8 id: 106, name: "/managed/quota_max_memory/40960">,
#<Tag:0x00555871559e88 id: 107, name: "/managed/quota_max_memory/81920">,
#<Tag:0x00555871559d48 id: 108, name: "/managed/prov_max_memory">,
#<Tag:0x00555871559c08 id: 109, name: "/managed/prov_max_memory/1024">,
#<Tag:0x00555871559a78 id: 110, name: "/managed/prov_max_memory/2048">,
#<Tag:0x00555871559898 id: 111, name: "/managed/prov_max_memory/4096">,
#<Tag:0x00555871559708 id: 112, name: "/managed/prov_max_memory/8192">,
#<Tag:0x005558715594b0 id: 113, name: "/managed/quota_max_storage">,
#<Tag:0x005558715592a8 id: 114, name: "/managed/quota_max_storage/10">,
#<Tag:0x005558715590a0 id: 115, name: "/managed/quota_max_storage/20">,
#<Tag:0x00555871558f10 id: 116, name: "/managed/quota_max_storage/40">,
#<Tag:0x00555871558dd0 id: 117, name: "/managed/quota_max_storage/100">,
#<Tag:0x00555871558c90 id: 118, name: "/managed/quota_max_storage/200">,
#<Tag:0x00555871558b50 id: 119, name: "/managed/quota_max_storage/400">,
#<Tag:0x005558715589e8 id: 120, name: "/managed/quota_max_storage/1000">,
#<Tag:0x005558715588a8 id: 121, name: "/managed/prov_max_retirement_days">,
#<Tag:0x00555871558768 id: 122, name: "/managed/prov_max_retirement_days/30">,
#<Tag:0x00555871558600 id: 123, name: "/managed/prov_max_retirement_days/60">,
#<Tag:0x00555871558420 id: 124, name: "/managed/prov_max_retirement_days/90">,
#<Tag:0x00555871558268
id: 125,
name: "/managed/prov_max_retirement_days/180">]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment