Skip to content

Commit d2e04d6

Browse files
chore(internal): codegen related update (#196)
1 parent 42ffeeb commit d2e04d6

199 files changed

Lines changed: 2353 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/orb/models/alert.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ class Alert < Orb::BaseModel
8686

8787
# def initialize: (Hash | Orb::BaseModel) -> void
8888

89+
# @see Orb::Models::Alert#customer
8990
class Customer < Orb::BaseModel
9091
# @!attribute id
9192
#
@@ -108,6 +109,7 @@ class Customer < Orb::BaseModel
108109
# def initialize: (Hash | Orb::BaseModel) -> void
109110
end
110111

112+
# @see Orb::Models::Alert#metric
111113
class Metric < Orb::BaseModel
112114
# @!attribute id
113115
#
@@ -124,6 +126,7 @@ class Metric < Orb::BaseModel
124126
# def initialize: (Hash | Orb::BaseModel) -> void
125127
end
126128

129+
# @see Orb::Models::Alert#plan
127130
class Plan < Orb::BaseModel
128131
# @!attribute id
129132
#
@@ -161,6 +164,7 @@ class Plan < Orb::BaseModel
161164
# def initialize: (Hash | Orb::BaseModel) -> void
162165
end
163166

167+
# @see Orb::Models::Alert#subscription
164168
class Subscription < Orb::BaseModel
165169
# @!attribute id
166170
#
@@ -198,6 +202,8 @@ class Threshold < Orb::BaseModel
198202
end
199203

200204
# The type of alert. This must be a valid alert type.
205+
#
206+
# @see Orb::Models::Alert#type
201207
module Type
202208
extend Orb::Enum
203209

lib/orb/models/alert_create_for_customer_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#create_for_customer
56
class AlertCreateForCustomerParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_create_for_external_customer_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#create_for_external_customer
56
class AlertCreateForExternalCustomerParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_create_for_subscription_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#create_for_subscription
56
class AlertCreateForSubscriptionParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_disable_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#disable
56
class AlertDisableParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_enable_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#enable
56
class AlertEnableParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_list_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#list
56
class AlertListParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_retrieve_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#retrieve
56
class AlertRetrieveParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/alert_update_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module Orb
44
module Models
5+
# @see Orb::Resources::Alerts#update
56
class AlertUpdateParams < Orb::BaseModel
67
# @!parse
78
# extend Orb::Type::RequestParameters::Converter

lib/orb/models/amount_discount.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class AmountDiscount < Orb::BaseModel
3636

3737
# def initialize: (Hash | Orb::BaseModel) -> void
3838

39+
# @see Orb::Models::AmountDiscount#discount_type
3940
module DiscountType
4041
extend Orb::Enum
4142

0 commit comments

Comments
 (0)