Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1RenewalSettings

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb

Overview

Renewal settings for renewable Offers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1alpha1RenewalSettings

Returns a new instance of GoogleCloudChannelV1alpha1RenewalSettings.



2782
2783
2784
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2782

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disable_commitmentBoolean Also known as: disable_commitment?

If true, disables commitment-based offer on renewal and switches to flexible or pay as you go. Deprecated: Use payment_plan instead. Corresponds to the JSON property disableCommitment

Returns:

  • (Boolean)


2751
2752
2753
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2751

def disable_commitment
  @disable_commitment
end

#enable_renewalBoolean Also known as: enable_renewal?

If false, the plan will be completed at the end date. Corresponds to the JSON property enableRenewal

Returns:

  • (Boolean)


2757
2758
2759
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2757

def enable_renewal
  @enable_renewal
end

#payment_cycleGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Period

Represents period in days/months/years. Corresponds to the JSON property paymentCycle



2763
2764
2765
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2763

def payment_cycle
  @payment_cycle
end

#payment_optionString

Set if enable_renewal=true. Deprecated: Use payment_cycle instead. Corresponds to the JSON property paymentOption

Returns:

  • (String)


2768
2769
2770
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2768

def payment_option
  @payment_option
end

#payment_planString

Describes how a reseller will be billed. Corresponds to the JSON property paymentPlan

Returns:

  • (String)


2773
2774
2775
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2773

def payment_plan
  @payment_plan
end

#resize_unit_countBoolean Also known as: resize_unit_count?

If true and enable_renewal = true, the unit (for example seats or licenses) will be set to the number of active units at renewal time. Corresponds to the JSON property resizeUnitCount

Returns:

  • (Boolean)


2779
2780
2781
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2779

def resize_unit_count
  @resize_unit_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2787
2788
2789
2790
2791
2792
2793
2794
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2787

def update!(**args)
  @disable_commitment = args[:disable_commitment] if args.key?(:disable_commitment)
  @enable_renewal = args[:enable_renewal] if args.key?(:enable_renewal)
  @payment_cycle = args[:payment_cycle] if args.key?(:payment_cycle)
  @payment_option = args[:payment_option] if args.key?(:payment_option)
  @payment_plan = args[:payment_plan] if args.key?(:payment_plan)
  @resize_unit_count = args[:resize_unit_count] if args.key?(:resize_unit_count)
end