blob: 4cbf81d0d5d8fd189a6adec52a7ca053559674e2 [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.webpropertyUserLinks.html">webpropertyUserLinks</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, webPropertyId, linkId)</a></code></p>
82<p class="firstline">Removes a user from the given web property.</p>
83<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070084 <code><a href="#insert">insert(accountId, webPropertyId, body=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Adds a new user to the given web property.</p>
86<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#list">list(accountId, webPropertyId, start_index=None, max_results=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Lists webProperty-user links for a given web property.</p>
89<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070090 <code><a href="#update">update(accountId, webPropertyId, 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 web property.</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, webPropertyId, linkId)</code>
100 <pre>Removes a user from the given web property.
101
102Args:
103 accountId: string, Account ID to delete the user link for. (required)
104 webPropertyId: string, Web Property ID to delete the user link for. (required)
105 linkId: string, Link ID to delete the user link for. (required)
106</pre>
107</div>
108
109<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 <code class="details" id="insert">insert(accountId, webPropertyId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400111 <pre>Adds a new user to the given web property.
112
113Args:
114 accountId: string, Account ID to create the user link for. (required)
115 webPropertyId: string, Web Property ID to create the user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700116 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400117 The object takes the form of:
118
119{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700120 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
121 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
122 &quot;kind&quot;: &quot;analytics#userRef&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700123 &quot;id&quot;: &quot;A String&quot;, # User ID.
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700125 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
126 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
127 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
128 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
129 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
130 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
131 &quot;name&quot;: &quot;A String&quot;, # Account name.
132 &quot;id&quot;: &quot;A String&quot;, # Account ID.
133 },
134 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
135 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
136 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
137 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
138 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
139 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
140 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
141 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
142 },
143 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
144 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
145 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
146 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
147 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
148 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
149 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
150 },
151 },
152 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700153 &quot;permissions&quot;: { # Permissions the user has for this entity.
154 &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.
155 &quot;A String&quot;,
156 ],
157 &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.
158 &quot;A String&quot;,
159 ],
160 },
John Asmuth614db982014-04-24 15:46:26 -0400161 }
162
163
164Returns:
165 An object of the form:
166
167 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700168 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
169 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
170 &quot;kind&quot;: &quot;analytics#userRef&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700171 &quot;id&quot;: &quot;A String&quot;, # User ID.
Bu Sun Kim65020912020-05-20 12:08:20 -0700172 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700173 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
174 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
175 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
176 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
177 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
178 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
179 &quot;name&quot;: &quot;A String&quot;, # Account name.
180 &quot;id&quot;: &quot;A String&quot;, # Account ID.
181 },
182 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
183 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
184 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
185 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
186 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
187 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
188 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
189 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
190 },
191 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
192 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
193 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
194 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
195 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
196 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
197 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
198 },
199 },
200 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700201 &quot;permissions&quot;: { # Permissions the user has for this entity.
202 &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.
203 &quot;A String&quot;,
204 ],
205 &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.
206 &quot;A String&quot;,
207 ],
208 },
John Asmuth614db982014-04-24 15:46:26 -0400209 }</pre>
210</div>
211
212<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700213 <code class="details" id="list">list(accountId, webPropertyId, start_index=None, max_results=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400214 <pre>Lists webProperty-user links for a given web property.
215
216Args:
217 accountId: string, Account ID which the given web property belongs to. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700218 webPropertyId: string, Web Property ID for the webProperty-user links to retrieve. Can either be a specific web property ID or &#x27;~all&#x27;, which refers to all the web properties that user has access to. (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700219 start_index: integer, An index of the first webProperty-user link to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700220 max_results: integer, The maximum number of webProperty-user Links to include in this response.
John Asmuth614db982014-04-24 15:46:26 -0400221
222Returns:
223 An object of the form:
224
225 { # 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 -0700226 &quot;previousLink&quot;: &quot;A String&quot;, # Previous link for this account collection.
227 &quot;nextLink&quot;: &quot;A String&quot;, # Next link for this account collection.
228 &quot;totalResults&quot;: 42, # The total number of results for the query, regardless of the number of results in the response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700229 &quot;items&quot;: [ # A list of entity user links.
John Asmuth614db982014-04-24 15:46:26 -0400230 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700231 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
232 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
233 &quot;kind&quot;: &quot;analytics#userRef&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700234 &quot;id&quot;: &quot;A String&quot;, # User ID.
Bu Sun Kim65020912020-05-20 12:08:20 -0700235 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700236 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
237 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
238 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
239 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
240 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
241 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
242 &quot;name&quot;: &quot;A String&quot;, # Account name.
243 &quot;id&quot;: &quot;A String&quot;, # Account ID.
244 },
245 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
246 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
247 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
248 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
249 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
250 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
251 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
252 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
253 },
254 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
255 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
256 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
257 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
258 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
259 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
260 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
261 },
262 },
263 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700264 &quot;permissions&quot;: { # Permissions the user has for this entity.
265 &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.
266 &quot;A String&quot;,
267 ],
268 &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.
269 &quot;A String&quot;,
270 ],
271 },
John Asmuth614db982014-04-24 15:46:26 -0400272 },
273 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700274 &quot;kind&quot;: &quot;analytics#entityUserLinks&quot;, # Collection type.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700275 &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.
276 &quot;startIndex&quot;: 42, # The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
John Asmuth614db982014-04-24 15:46:26 -0400277 }</pre>
278</div>
279
280<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700281 <code class="details" id="update">update(accountId, webPropertyId, linkId, body=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400282 <pre>Updates permissions for an existing user on the given web property.
283
284Args:
285 accountId: string, Account ID to update the account-user link for. (required)
286 webPropertyId: string, Web property ID to update the account-user link for. (required)
287 linkId: string, Link ID to update the account-user link for. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700288 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400289 The object takes the form of:
290
291{ # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
293 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
294 &quot;kind&quot;: &quot;analytics#userRef&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700295 &quot;id&quot;: &quot;A String&quot;, # User ID.
Bu Sun Kim65020912020-05-20 12:08:20 -0700296 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700297 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
298 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
299 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
300 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
301 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
302 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
303 &quot;name&quot;: &quot;A String&quot;, # Account name.
304 &quot;id&quot;: &quot;A String&quot;, # Account ID.
305 },
306 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
307 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
308 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
309 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
310 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
311 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
312 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
313 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
314 },
315 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
316 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
317 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
318 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
319 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
320 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
321 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
322 },
323 },
324 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700325 &quot;permissions&quot;: { # Permissions the user has for this entity.
326 &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.
327 &quot;A String&quot;,
328 ],
329 &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.
330 &quot;A String&quot;,
331 ],
332 },
John Asmuth614db982014-04-24 15:46:26 -0400333 }
334
335
336Returns:
337 An object of the form:
338
339 { # JSON template for an Analytics Entity-User Link. Returns permissions that a user has for an entity.
Bu Sun Kim65020912020-05-20 12:08:20 -0700340 &quot;userRef&quot;: { # JSON template for a user reference. # User reference.
341 &quot;email&quot;: &quot;A String&quot;, # Email ID of this user.
342 &quot;kind&quot;: &quot;analytics#userRef&quot;,
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700343 &quot;id&quot;: &quot;A String&quot;, # User ID.
Bu Sun Kim65020912020-05-20 12:08:20 -0700344 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700345 &quot;selfLink&quot;: &quot;A String&quot;, # Self link for this resource.
346 &quot;kind&quot;: &quot;analytics#entityUserLink&quot;, # Resource type for entity user link.
347 &quot;entity&quot;: { # Entity for this link. It can be an account, a web property, or a view (profile).
348 &quot;accountRef&quot;: { # JSON template for a linked account. # Account for this link.
349 &quot;href&quot;: &quot;A String&quot;, # Link for this account.
350 &quot;kind&quot;: &quot;analytics#accountRef&quot;, # Analytics account reference.
351 &quot;name&quot;: &quot;A String&quot;, # Account name.
352 &quot;id&quot;: &quot;A String&quot;, # Account ID.
353 },
354 &quot;profileRef&quot;: { # JSON template for a linked view (profile). # View (Profile) for this link.
355 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for the web property to which this view (profile) belongs.
356 &quot;kind&quot;: &quot;analytics#profileRef&quot;, # Analytics view (profile) reference.
357 &quot;name&quot;: &quot;A String&quot;, # Name of this view (profile).
358 &quot;href&quot;: &quot;A String&quot;, # Link for this view (profile).
359 &quot;webPropertyId&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY to which this view (profile) belongs.
360 &quot;id&quot;: &quot;A String&quot;, # View (Profile) ID.
361 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this view (profile) belongs.
362 },
363 &quot;webPropertyRef&quot;: { # JSON template for a web property reference. # Web property for this link.
364 &quot;internalWebPropertyId&quot;: &quot;A String&quot;, # Internal ID for this web property.
365 &quot;href&quot;: &quot;A String&quot;, # Link for this web property.
366 &quot;accountId&quot;: &quot;A String&quot;, # Account ID to which this web property belongs.
367 &quot;id&quot;: &quot;A String&quot;, # Web property ID of the form UA-XXXXX-YY.
368 &quot;name&quot;: &quot;A String&quot;, # Name of this web property.
369 &quot;kind&quot;: &quot;analytics#webPropertyRef&quot;, # Analytics web property reference.
370 },
371 },
372 &quot;id&quot;: &quot;A String&quot;, # Entity user link ID
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700373 &quot;permissions&quot;: { # Permissions the user has for this entity.
374 &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.
375 &quot;A String&quot;,
376 ],
377 &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.
378 &quot;A String&quot;,
379 ],
380 },
John Asmuth614db982014-04-24 15:46:26 -0400381 }</pre>
382</div>
383
384</body></html>