blob: 68c5d509103f2271ef83be3aa7347ca87bdb3b2c [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="analytics_v3.html">Google Analytics API</a> . <a href="analytics_v3.management.html">management</a> . <a href="analytics_v3.management.accountUserLinks.html">accountUserLinks</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
John Asmuth614db982014-04-24 15:46:26 -040081 <code><a href="#delete">delete(accountId, linkId)</a></code></p>
82<p class="firstline">Removes a user from the given account.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(accountId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Adds a new user to the given account.</p>
86<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#list">list(accountId, start_index=None, max_results=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Lists account-user links for a given account.</p>
89<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070090 <code><a href="#update">update(accountId, linkId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040091<p class="firstline">Updates permissions for an existing user on the given account.</p>
92<h3>Method Details</h3>
93<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 <code class="details" id="close">close()</code>
95 <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
John Asmuth614db982014-04-24 15:46:26 -040099 <code class="details" id="delete">delete(accountId, linkId)</code>
100 <pre>Removes a user from the given account.
101
102Args:
103 accountId: string, Account ID to delete the user link for. (required)
104 linkId: string, Link ID to delete the user link for. (required)
105</pre>
106</div>
107
108<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700109 <code class="details" id="insert">insert(accountId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400110 <pre>Adds a new user to the given account.
111
112Args:
113 accountId: string, Account ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700114 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400115 The object takes the form of:
116
117{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700118 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700119 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700120 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
121 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700122 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700123 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
124 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
125 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
126 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700127 },
128 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
129 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
130 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700131 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700132 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
133 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
134 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
135 },
136 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
137 &quot;name&quot;: &quot;A String&quot;, # Account name.
138 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
139 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
140 &quot;id&quot;: &quot;A String&quot;, # Account ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700141 },
142 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700143 &quot;permissions&quot;: { # Permissions the user has for this entity.
144 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
145 &quot;A String&quot;,
146 ],
147 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
148 &quot;A String&quot;,
149 ],
150 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700151 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
152 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
153 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
154 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
155 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
156 &quot;id&quot;: &quot;A String&quot;, # User ID.
157 &quot;kind&quot;: &quot;analytics#userRef&quot;,
158 },
John Asmuth614db982014-04-24 15:46:26 -0400159 }
160
161
162Returns:
163 An object of the form:
164
165 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700166 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700167 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700168 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
169 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700170 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700171 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
172 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
173 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
174 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700175 },
176 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
177 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
178 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700179 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700180 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
181 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
182 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
183 },
184 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
185 &quot;name&quot;: &quot;A String&quot;, # Account name.
186 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
187 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
188 &quot;id&quot;: &quot;A String&quot;, # Account ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700189 },
190 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700191 &quot;permissions&quot;: { # Permissions the user has for this entity.
192 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
193 &quot;A String&quot;,
194 ],
195 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
196 &quot;A String&quot;,
197 ],
198 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700199 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
200 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
201 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
202 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
203 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
204 &quot;id&quot;: &quot;A String&quot;, # User ID.
205 &quot;kind&quot;: &quot;analytics#userRef&quot;,
206 },
John Asmuth614db982014-04-24 15:46:26 -0400207 }</pre>
208</div>
209
210<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700211 <code class="details" id="list">list(accountId, start_index=None, max_results=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400212 <pre>Lists account-user links for a given account.
213
214Args:
215 accountId: string, Account ID to retrieve the user links for. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 start_index: integer, An index of the first account-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700217 max_results: integer, The maximum number of account-user links to include in this response.
John Asmuth614db982014-04-24 15:46:26 -0400218
219Returns:
220 An object of the form:
221
222 { # An entity user link collection provides a list of Analytics ACL links Each resource in this collection corresponds to a single link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700223 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700224 &quot;itemsPerPage&quot;: 42, # The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
225 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
226 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400228 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700229 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700230 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700231 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
232 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700233 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700234 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
235 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
236 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
237 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700238 },
239 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
240 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
241 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700242 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700243 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
244 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
245 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
246 },
247 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
248 &quot;name&quot;: &quot;A String&quot;, # Account name.
249 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
250 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
251 &quot;id&quot;: &quot;A String&quot;, # Account ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700252 },
253 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700254 &quot;permissions&quot;: { # Permissions the user has for this entity.
255 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
256 &quot;A String&quot;,
257 ],
258 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
259 &quot;A String&quot;,
260 ],
261 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700262 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
263 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
264 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
265 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
266 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
267 &quot;id&quot;: &quot;A String&quot;, # User ID.
268 &quot;kind&quot;: &quot;analytics#userRef&quot;,
269 },
John Asmuth614db982014-04-24 15:46:26 -0400270 },
271 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700272 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700273 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
John Asmuth614db982014-04-24 15:46:26 -0400274 }</pre>
275</div>
276
277<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700278 <code class="details" id="update">update(accountId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400279 <pre>Updates permissions for an existing user on the given account.
280
281Args:
282 accountId: string, Account ID to update the account-user link for. (required)
283 linkId: string, Link ID to update the account-user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700284 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400285 The object takes the form of:
286
287{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700288 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700289 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700290 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
291 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700292 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700293 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
294 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
295 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
296 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700297 },
298 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
299 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
300 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700301 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700302 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
303 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
304 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
305 },
306 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
307 &quot;name&quot;: &quot;A String&quot;, # Account name.
308 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
309 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
310 &quot;id&quot;: &quot;A String&quot;, # Account ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700311 },
312 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700313 &quot;permissions&quot;: { # Permissions the user has for this entity.
314 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
315 &quot;A String&quot;,
316 ],
317 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
318 &quot;A String&quot;,
319 ],
320 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700321 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
322 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
323 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
324 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
325 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
326 &quot;id&quot;: &quot;A String&quot;, # User ID.
327 &quot;kind&quot;: &quot;analytics#userRef&quot;,
328 },
John Asmuth614db982014-04-24 15:46:26 -0400329 }
330
331
332Returns:
333 An object of the form:
334
335 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700336 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700337 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700338 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
339 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700340 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700341 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
342 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
343 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
344 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700345 },
346 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
347 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
348 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700349 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700350 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
351 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
352 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
353 },
354 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
355 &quot;name&quot;: &quot;A String&quot;, # Account name.
356 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
357 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
358 &quot;id&quot;: &quot;A String&quot;, # Account ID.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700359 },
360 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700361 &quot;permissions&quot;: { # Permissions the user has for this entity.
362 &quot;local&quot;: [ # Permissions that a user has been assigned at this very level. Does not include any implied or inherited permissions. Local permissions are modifiable.
363 &quot;A String&quot;,
364 ],
365 &quot;effective&quot;: [ # Effective permissions represent all the permissions that a user has for this entity. These include any implied permissions (e.g., EDIT implies VIEW) or inherited permissions from the parent entity. Effective permissions are read-only.
366 &quot;A String&quot;,
367 ],
368 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700369 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
370 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
371 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
372 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
373 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
374 &quot;id&quot;: &quot;A String&quot;, # User ID.
375 &quot;kind&quot;: &quot;analytics#userRef&quot;,
376 },
John Asmuth614db982014-04-24 15:46:26 -0400377 }</pre>
378</div>
379
380</body></html>