| <html><body> |
| <style> |
| |
| body, h1, h2, h3, div, span, p, pre, a { |
| margin: 0; |
| padding: 0; |
| border: 0; |
| font-weight: inherit; |
| font-style: inherit; |
| font-size: 100%; |
| font-family: inherit; |
| vertical-align: baseline; |
| } |
| |
| body { |
| font-size: 13px; |
| padding: 1em; |
| } |
| |
| h1 { |
| font-size: 26px; |
| margin-bottom: 1em; |
| } |
| |
| h2 { |
| font-size: 24px; |
| margin-bottom: 1em; |
| } |
| |
| h3 { |
| font-size: 20px; |
| margin-bottom: 1em; |
| margin-top: 1em; |
| } |
| |
| pre, code { |
| line-height: 1.5; |
| font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| } |
| |
| pre { |
| margin-top: 0.5em; |
| } |
| |
| h1, h2, h3, p { |
| font-family: Arial, sans serif; |
| } |
| |
| h1, h2, h3 { |
| border-bottom: solid #CCC 1px; |
| } |
| |
| .toc_element { |
| margin-top: 0.5em; |
| } |
| |
| .firstline { |
| margin-left: 2 em; |
| } |
| |
| .method { |
| margin-top: 1em; |
| border: solid 1px #CCC; |
| padding: 1em; |
| background: #EEE; |
| } |
| |
| .details { |
| font-weight: bold; |
| font-size: 14px; |
| } |
| |
| </style> |
| |
| <h1><a href="proximitybeacon_v1beta1.html">Proximity Beacon API</a> . <a href="proximitybeacon_v1beta1.namespaces.html">namespaces</a></h1> |
| <h2>Instance Methods</h2> |
| <p class="toc_element"> |
| <code><a href="#list">list(projectId=None, x__xgafv=None)</a></code></p> |
| <p class="firstline">Lists all attachment namespaces owned by your Google Developers Console</p> |
| <p class="toc_element"> |
| <code><a href="#update">update(namespaceName, body, projectId=None, x__xgafv=None)</a></code></p> |
| <p class="firstline">Updates the information about the specified namespace. Only the namespace</p> |
| <h3>Method Details</h3> |
| <div class="method"> |
| <code class="details" id="list">list(projectId=None, x__xgafv=None)</code> |
| <pre>Lists all attachment namespaces owned by your Google Developers Console |
| project. Attachment data associated with a beacon must include a |
| namespaced type, and the namespace must be owned by your project. |
| |
| Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) |
| from a signed-in user with **viewer**, **Is owner** or **Can edit** |
| permissions in the Google Developers Console project. |
| |
| Args: |
| projectId: string, The project id to list namespaces under. |
| Optional. |
| x__xgafv: string, V1 error format. |
| Allowed values |
| 1 - v1 error format |
| 2 - v2 error format |
| |
| Returns: |
| An object of the form: |
| |
| { # Response to ListNamespacesRequest that contains all the project's namespaces. |
| "namespaces": [ # The attachments that corresponded to the request params. |
| { # An attachment namespace defines read and write access for all the attachments |
| # created under it. Each namespace is globally unique, and owned by one |
| # project which is the only project that can create attachments under it. |
| "servingVisibility": "A String", # Specifies what clients may receive attachments under this namespace |
| # via `beaconinfo.getforobserved`. |
| "namespaceName": "A String", # Resource name of this namespace. Namespaces names have the format: |
| # <code>namespaces/<var>namespace</var></code>. |
| }, |
| ], |
| }</pre> |
| </div> |
| |
| <div class="method"> |
| <code class="details" id="update">update(namespaceName, body, projectId=None, x__xgafv=None)</code> |
| <pre>Updates the information about the specified namespace. Only the namespace |
| visibility can be updated. |
| |
| Args: |
| namespaceName: string, Resource name of this namespace. Namespaces names have the format: |
| <code>namespaces/<var>namespace</var></code>. (required) |
| body: object, The request body. (required) |
| The object takes the form of: |
| |
| { # An attachment namespace defines read and write access for all the attachments |
| # created under it. Each namespace is globally unique, and owned by one |
| # project which is the only project that can create attachments under it. |
| "servingVisibility": "A String", # Specifies what clients may receive attachments under this namespace |
| # via `beaconinfo.getforobserved`. |
| "namespaceName": "A String", # Resource name of this namespace. Namespaces names have the format: |
| # <code>namespaces/<var>namespace</var></code>. |
| } |
| |
| projectId: string, The project id of the namespace to update. If the project id is not |
| specified then the project making the request is used. The project id |
| must match the project that owns the beacon. |
| Optional. |
| x__xgafv: string, V1 error format. |
| Allowed values |
| 1 - v1 error format |
| 2 - v2 error format |
| |
| Returns: |
| An object of the form: |
| |
| { # An attachment namespace defines read and write access for all the attachments |
| # created under it. Each namespace is globally unique, and owned by one |
| # project which is the only project that can create attachments under it. |
| "servingVisibility": "A String", # Specifies what clients may receive attachments under this namespace |
| # via `beaconinfo.getforobserved`. |
| "namespaceName": "A String", # Resource name of this namespace. Namespaces names have the format: |
| # <code>namespaces/<var>namespace</var></code>. |
| }</pre> |
| </div> |
| |
| </body></html> |