Class: CldProvisioning::Models::Operations::GetProductEnvironmentsRequest
- Inherits:
-
Object
- Object
- CldProvisioning::Models::Operations::GetProductEnvironmentsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/cld_provisioning/models/operations/getproductenvironments_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(account_id: nil, enabled: nil, ids: nil, cloud_names: nil, prefix: nil) ⇒ GetProductEnvironmentsRequest
constructor
A new instance of GetProductEnvironmentsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(account_id: nil, enabled: nil, ids: nil, cloud_names: nil, prefix: nil) ⇒ GetProductEnvironmentsRequest
Returns a new instance of GetProductEnvironmentsRequest.
58 59 60 61 62 63 64 |
# File 'lib/cld_provisioning/models/operations/getproductenvironments_request.rb', line 58 def initialize(account_id: nil, enabled: nil, ids: nil, cloud_names: nil, prefix: nil) @account_id = account_id @enabled = enabled @ids = ids @cloud_names = cloud_names @prefix = prefix end |
Instance Method Details
#==(other) ⇒ Object
67 68 69 70 71 72 73 74 75 |
# File 'lib/cld_provisioning/models/operations/getproductenvironments_request.rb', line 67 def ==(other) return false unless other.is_a?(self.class) return false unless @account_id == other.account_id return false unless @enabled == other.enabled return false unless @ids == other.ids return false unless @cloud_names == other.cloud_names return false unless @prefix == other.prefix true end |