mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-03 12:21:35 +00:00
Added commands to display Analytic UA properties.
This commit is contained in:
@@ -1460,6 +1460,17 @@ gam print alias|aliases [todrive <ToDriveAttribute>*]
|
||||
|
||||
gam whatis <EmailItem> [noinfo] [noinivitablecheck]
|
||||
|
||||
# Analytics UA
|
||||
|
||||
gam <UserTypeEntity> print analyticuaproperties [todrive <ToDriveAttribute>*]
|
||||
accountid [accounts/]<String>
|
||||
[maxresults <Integer>]
|
||||
[formatjson [quotechar <Character>]]
|
||||
gam <UserTypeEntity> show analyticuaproperties
|
||||
accountid [accounts/]<String>
|
||||
[maxresults <Integer>]
|
||||
[formatjson]
|
||||
|
||||
# Analytics Admin
|
||||
|
||||
gam <UserTypeEntity> print analyticaccounts [todrive <ToDriveAttribute>*]
|
||||
|
||||
@@ -2,6 +2,20 @@
|
||||
|
||||
Merged GAM-Team version
|
||||
|
||||
6.61.13
|
||||
|
||||
Added commands to display Analytic UA properties.
|
||||
```
|
||||
gam <UserTypeEntity> print analyticuaproperties [todrive <ToDriveAttribute>*]
|
||||
accountid [accounts/]<String>
|
||||
[maxresults <Integer>]
|
||||
[formatjson [quotechar <Character>]]
|
||||
gam <UserTypeEntity> show analyticuaproperties
|
||||
accountid [accounts/]<String>
|
||||
[maxresults <Integer>]
|
||||
[formatjson]
|
||||
```
|
||||
|
||||
6.61.12
|
||||
|
||||
Updated `gam print|show vaultexports|vaultholds|vaultqueries` to handle the case
|
||||
|
||||
@@ -14823,7 +14823,7 @@ def printShowAnalyticItems(users, entityType):
|
||||
elif entityType == Ent.ANALYTIC_PROPERTY and myarg == 'filter':
|
||||
kwargs['filter'] = getString(Cmd.OB_STRING)
|
||||
elif entityType == Ent.ANALYTIC_UA_PROPERTY and myarg == 'accountid':
|
||||
kwargs['accountId'] = getString(Cmd.OB_STRING)
|
||||
kwargs['accountId'] = getString(Cmd.OB_STRING).replace('accounts/', '')
|
||||
elif entityType == Ent.ANALYTIC_DATASTREAM and myarg == 'parent':
|
||||
kwargs['parent'] = getString(Cmd.OB_STRING)
|
||||
else:
|
||||
@@ -14935,11 +14935,11 @@ def printShowAnalyticProperties(users):
|
||||
printShowAnalyticItems(users, Ent.ANALYTIC_PROPERTY)
|
||||
|
||||
# gam <UserTypeEntity> print analyticuaproperties [todrive <ToDriveAttribute>*]
|
||||
# accountid <String>
|
||||
# accountid [accounts/]<String>
|
||||
# [maxresults <Integer>]
|
||||
# [formatjson [quotechar <Character>]]
|
||||
# gam <UserTypeEntity> show analyticuaproperties
|
||||
# accountid <String>
|
||||
# accountid [accounts/]<String>
|
||||
# [maxresults <Integer>]
|
||||
# [formatjson]
|
||||
def printShowAnalyticUAProperties(users):
|
||||
|
||||
Reference in New Issue
Block a user