Class: Google::Apis::CloudbillingV1beta::InteropLink
- Inherits:
-
Object
- Object
- Google::Apis::CloudbillingV1beta::InteropLink
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbilling_v1beta/classes.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb
Overview
A link to interoperable tools (e.g., pre-filtered Cost Reports, BQE queries).
Instance Attribute Summary collapse
-
#label ⇒ String
Output only.
-
#link_type ⇒ String
Output only.
-
#url ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InteropLink
constructor
A new instance of InteropLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InteropLink
Returns a new instance of InteropLink.
1965 1966 1967 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1965 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label ⇒ String
Output only. The label of the link, suitable for UI rendering.
Corresponds to the JSON property label
1952 1953 1954 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1952 def label @label end |
#link_type ⇒ String
Output only. The type of the interop link, e.g., "COST_REPORT", "BQE_QUERY",
etc.
Corresponds to the JSON property linkType
1958 1959 1960 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1958 def link_type @link_type end |
#url ⇒ String
Output only. The URL of the link.
Corresponds to the JSON property url
1963 1964 1965 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1963 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1970 1971 1972 1973 1974 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1970 def update!(**args) @label = args[:label] if args.key?(:label) @link_type = args[:link_type] if args.key?(:link_type) @url = args[:url] if args.key?(:url) end |