action linode_get_longview_subscription { label: "Longview Subscription View" description: "Get the Longview plan details as a single `LongviewSubscription` object for the provided subscription ID. This is a public endpoint and requires no authentication.\n" provider: linode method: GET path: "/longview/subscriptions/{subscriptionId}" encoding: json output: { type: "object" description: "A Longview Subscription represents a tier of Longview service you can subscribe to.\n" properties: { clients_included: { type: "integer" description: "The number of Longview Clients that may be created with this Subscription tier.\n" } id: { type: "string" description: "The unique ID of this Subscription tier.\n" enum: ["longview-3", "longview-10", "longview-40", "longview-100"] } label: { type: "string" description: "A display name for this Subscription tier.\n" } price: { type: "object" description: "Pricing information about this Subscription tier.\n" properties: { hourly: { type: "number" description: "The hourly price, in US dollars, for this Subscription tier.\n" } monthly: { type: "number" description: "The maximum monthly price in US Dollars for this Subscription tier. You will never be charged more than this amount per month for this subscription.\n" } } } } } }