1<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="sasportal_v1alpha1.html">SAS Portal API</a> . <a href="sasportal_v1alpha1.customers.html">customers</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="sasportal_v1alpha1.customers.deployments.html">deployments()</a></code>
79</p>
80<p class="firstline">Returns the deployments Resource.</p>
81
82<p class="toc_element">
83  <code><a href="sasportal_v1alpha1.customers.devices.html">devices()</a></code>
84</p>
85<p class="firstline">Returns the devices Resource.</p>
86
87<p class="toc_element">
88  <code><a href="sasportal_v1alpha1.customers.nodes.html">nodes()</a></code>
89</p>
90<p class="firstline">Returns the nodes Resource.</p>
91
92<p class="toc_element">
93  <code><a href="#close">close()</a></code></p>
94<p class="firstline">Close httplib2 connections.</p>
95<p class="toc_element">
96  <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
97<p class="firstline">Returns a requested customer.</p>
98<p class="toc_element">
99  <code><a href="#list">list(pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
100<p class="firstline">Returns a list of requested customers.</p>
101<p class="toc_element">
102  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
103<p class="firstline">Retrieves the next page of results.</p>
104<p class="toc_element">
105  <code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
106<p class="firstline">Updates an existing customer.</p>
107<h3>Method Details</h3>
108<div class="method">
109    <code class="details" id="close">close()</code>
110  <pre>Close httplib2 connections.</pre>
111</div>
112
113<div class="method">
114    <code class="details" id="get">get(name, x__xgafv=None)</code>
115  <pre>Returns a requested customer.
116
117Args:
118  name: string, Required. The name of the customer. (required)
119  x__xgafv: string, V1 error format.
120    Allowed values
121      1 - v1 error format
122      2 - v2 error format
123
124Returns:
125  An object of the form:
126
127    { # Entity representing a SAS customer.
128  &quot;displayName&quot;: &quot;A String&quot;, # Required. Name of the organization that the customer entity represents.
129  &quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the customer.
130  &quot;sasUserIds&quot;: [ # User IDs used by the devices belonging to this customer.
131    &quot;A String&quot;,
132  ],
133}</pre>
134</div>
135
136<div class="method">
137    <code class="details" id="list">list(pageSize=None, pageToken=None, x__xgafv=None)</code>
138  <pre>Returns a list of requested customers.
139
140Args:
141  pageSize: integer, The maximum number of customers to return in the response.
142  pageToken: string, A pagination token returned from a previous call to ListCustomers that indicates where this listing should continue from.
143  x__xgafv: string, V1 error format.
144    Allowed values
145      1 - v1 error format
146      2 - v2 error format
147
148Returns:
149  An object of the form:
150
151    { # Response for `ListCustomers`.
152  &quot;customers&quot;: [ # The list of customers that match the request.
153    { # Entity representing a SAS customer.
154      &quot;displayName&quot;: &quot;A String&quot;, # Required. Name of the organization that the customer entity represents.
155      &quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the customer.
156      &quot;sasUserIds&quot;: [ # User IDs used by the devices belonging to this customer.
157        &quot;A String&quot;,
158      ],
159    },
160  ],
161  &quot;nextPageToken&quot;: &quot;A String&quot;, # A pagination token returned from a previous call to ListCustomers that indicates from where listing should continue. If the field is missing or empty, it means there are no more customers.
162}</pre>
163</div>
164
165<div class="method">
166    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
167  <pre>Retrieves the next page of results.
168
169Args:
170  previous_request: The request for the previous page. (required)
171  previous_response: The response from the request for the previous page. (required)
172
173Returns:
174  A request object that you can call &#x27;execute()&#x27; on to request the next
175  page. Returns None if there are no more items in the collection.
176    </pre>
177</div>
178
179<div class="method">
180    <code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
181  <pre>Updates an existing customer.
182
183Args:
184  name: string, Output only. Resource name of the customer. (required)
185  body: object, The request body.
186    The object takes the form of:
187
188{ # Entity representing a SAS customer.
189  &quot;displayName&quot;: &quot;A String&quot;, # Required. Name of the organization that the customer entity represents.
190  &quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the customer.
191  &quot;sasUserIds&quot;: [ # User IDs used by the devices belonging to this customer.
192    &quot;A String&quot;,
193  ],
194}
195
196  updateMask: string, Fields to be updated.
197  x__xgafv: string, V1 error format.
198    Allowed values
199      1 - v1 error format
200      2 - v2 error format
201
202Returns:
203  An object of the form:
204
205    { # Entity representing a SAS customer.
206  &quot;displayName&quot;: &quot;A String&quot;, # Required. Name of the organization that the customer entity represents.
207  &quot;name&quot;: &quot;A String&quot;, # Output only. Resource name of the customer.
208  &quot;sasUserIds&quot;: [ # User IDs used by the devices belonging to this customer.
209    &quot;A String&quot;,
210  ],
211}</pre>
212</div>
213
214</body></html>