mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
Added support for plan free in gam create resoldsubscription.
This commit is contained in:
@@ -4564,7 +4564,7 @@ gam update resoldcustomer <CustomerID> <ResoldCustomerAttribues>+
|
|||||||
gam info resoldcustomer <CustomerID> [formatjson]
|
gam info resoldcustomer <CustomerID> [formatjson]
|
||||||
|
|
||||||
gam create|add resoldsubscription <CustomerID> (sku <SKUID>)
|
gam create|add resoldsubscription <CustomerID> (sku <SKUID>)
|
||||||
(plan annual_monthly_pay|annual_yearly_pay|flexible|trial) (seats <Number>)
|
(plan annual_monthly_pay|annual_yearly_pay|flexible|trial|free) (seats <Number>)
|
||||||
[customer_auth_token <String>] [deal <String>] [purchaseorderid <String>]
|
[customer_auth_token <String>] [deal <String>] [purchaseorderid <String>]
|
||||||
gam update resoldsubscription <CustomerID> <SKUID>
|
gam update resoldsubscription <CustomerID> <SKUID>
|
||||||
activate|suspend|startpaidservice|
|
activate|suspend|startpaidservice|
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
7.12.01
|
||||||
|
|
||||||
|
Added support for `plan free` in `gam create resoldsubscription`.
|
||||||
|
|
||||||
|
* The free plan is exclusive to the Cloud Identity SKU and does not incur any billing.
|
||||||
|
|
||||||
7.12.00
|
7.12.00
|
||||||
|
|
||||||
Started updated handling of missing scopes messages in client access commands;
|
Started updated handling of missing scopes messages in client access commands;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
||||||
__version__ = '7.12.00'
|
__version__ = '7.12.01'
|
||||||
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
||||||
|
|
||||||
#pylint: disable=wrong-import-position
|
#pylint: disable=wrong-import-position
|
||||||
@@ -15329,6 +15329,7 @@ PLAN_NAME_MAP = {
|
|||||||
'annualmonthlypay': 'ANNUAL_MONTHLY_PAY',
|
'annualmonthlypay': 'ANNUAL_MONTHLY_PAY',
|
||||||
'annualyearlypay': 'ANNUAL_YEARLY_PAY',
|
'annualyearlypay': 'ANNUAL_YEARLY_PAY',
|
||||||
'flexible': 'FLEXIBLE',
|
'flexible': 'FLEXIBLE',
|
||||||
|
'free': 'FREE',
|
||||||
'trial': 'TRIAL',
|
'trial': 'TRIAL',
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -15412,7 +15413,7 @@ RENEWAL_TYPE_MAP = {
|
|||||||
# activate|suspend|startpaidservice|
|
# activate|suspend|startpaidservice|
|
||||||
# (renewal auto_renew_monthly_pay|auto_renew_yearly_pay|cancel|renew_current_users_monthly_pay|renew_current_users_yearly_pay|switch_to_pay_as_you_go)|
|
# (renewal auto_renew_monthly_pay|auto_renew_yearly_pay|cancel|renew_current_users_monthly_pay|renew_current_users_yearly_pay|switch_to_pay_as_you_go)|
|
||||||
# (seats <Number>)|
|
# (seats <Number>)|
|
||||||
# (plan annual_monthly_pay|annual_yearly_pay|flexible|trial [deal <String>] [purchaseorderid <String>] [seats <Number>])
|
# (plan annual_monthly_pay|annual_yearly_pay|flexible|trial|free [deal <String>] [purchaseorderid <String>] [seats <Number>])
|
||||||
def doUpdateResoldSubscription():
|
def doUpdateResoldSubscription():
|
||||||
def _getSeats():
|
def _getSeats():
|
||||||
seats1 = getInteger(minVal=0)
|
seats1 = getInteger(minVal=0)
|
||||||
|
|||||||
Reference in New Issue
Block a user