batchDelete(beaconName, namespacedType=None, projectId=None, x__xgafv=None)
Deletes multiple attachments on a given beacon. This operation is
create(beaconName, body, projectId=None, x__xgafv=None)
Associates the given data with the specified beacon. Attachment data must
delete(attachmentName, projectId=None, x__xgafv=None)
Deletes the specified attachment for the given beacon. Each attachment has
list(beaconName, namespacedType=None, projectId=None, x__xgafv=None)
Returns the attachments for the specified beacon that match the specified
batchDelete(beaconName, namespacedType=None, projectId=None, x__xgafv=None)
Deletes multiple attachments on a given beacon. This operation is permanent and cannot be undone. You can optionally specify `namespacedType` to choose which attachments should be deleted. If you do not specify `namespacedType`, all your attachments on the given beacon will be deleted. You also may explicitly specify `*/*` to delete all. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project. Args: beaconName: string, The beacon whose attachments should be deleted. A beacon name has the format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast by the beacon and N is a code for the beacon's type. Possible values are `3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5` for AltBeacon. For Eddystone-EID beacons, you may use either the current EID or the beacon's "stable" UID. Required. (required) namespacedType: string, Specifies the namespace and type of attachments to delete in `namespace/type` format. Accepts `*/*` to specify "all types in all namespaces". Optional. projectId: string, The project id to delete beacon attachments under. This field can be used when "*" is specified to mean all attachment namespaces. Projects may have multiple attachments with multiple namespaces. If "*" is specified and the projectId string is empty, then the project making the request is used. Optional. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # Response for a request to delete attachments. "numDeleted": 42, # The number of attachments that were deleted. }
create(beaconName, body, projectId=None, x__xgafv=None)
Associates the given data with the specified beacon. Attachment data must contain two parts:
beacons/beacon_id/attachments/attachment_id
.
# Leave this empty on creation.
"namespacedType": "A String", # Specifies what kind of attachment this is. Tells a client how to
# interpret the `data` field. Format is namespace/type. Namespace
# provides type separation between clients. Type describes the type of
# `data`, for use by the client when parsing the `data` field.
# Required.
}
projectId: string, The project id of the project the attachment will belong to. If
the project id is not specified then the project making the request
is used.
Optional.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Project-specific data associated with a beacon.
"data": "A String", # An opaque data container for client-provided data. Must be
# [base64](http://tools.ietf.org/html/rfc4648#section-4) encoded in HTTP
# requests, and will be so encoded (with padding) in responses.
# Required.
"creationTimeMs": "A String", # The UTC time when this attachment was created, in milliseconds since the
# UNIX epoch.
"attachmentName": "A String", # Resource name of this attachment. Attachment names have the format:
# beacons/beacon_id/attachments/attachment_id
.
# Leave this empty on creation.
"namespacedType": "A String", # Specifies what kind of attachment this is. Tells a client how to
# interpret the `data` field. Format is namespace/type. Namespace
# provides type separation between clients. Type describes the type of
# `data`, for use by the client when parsing the `data` field.
# Required.
}
delete(attachmentName, projectId=None, x__xgafv=None)
Deletes the specified attachment for the given beacon. Each attachment has a unique attachment name (`attachmentName`) which is returned when you fetch the attachment data via this API. You specify this with the delete request to control which attachment is removed. This operation cannot be undone. Authenticate using an [OAuth access token](https://developers.google.com/identity/protocols/OAuth2) from a signed-in user with **Is owner** or **Can edit** permissions in the Google Developers Console project. Args: attachmentName: string, The attachment name (`attachmentName`) of the attachment to remove. For example: `beacons/3!893737abc9/attachments/c5e937-af0-494-959-ec49d12738`. For Eddystone-EID beacons, the beacon ID portion (`3!893737abc9`) may be the beacon's current EID, or its "stable" Eddystone-UID. Required. (required) projectId: string, The project id of the attachment to delete. If not provided, the project that is making the request is used. Optional. x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # A generic empty message that you can re-use to avoid defining duplicated # empty messages in your APIs. A typical example is to use it as the request # or the response type of an API method. For instance: # # service Foo { # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); # } # # The JSON representation for `Empty` is empty JSON object `{}`. }
list(beaconName, namespacedType=None, projectId=None, x__xgafv=None)
Returns the attachments for the specified beacon that match the specified
namespaced-type pattern.
To control which namespaced types are returned, you add the
`namespacedType` query parameter to the request. You must either use
`*/*`, to return all attachments, or the namespace must be one of
the ones returned from the `namespaces` endpoint.
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:
beaconName: string, Beacon whose attachments should be fetched. A beacon name has the
format "beacons/N!beaconId" where the beaconId is the base16 ID broadcast
by the beacon and N is a code for the beacon's type. Possible values are
`3` for Eddystone-UID, `4` for Eddystone-EID, `1` for iBeacon, or `5`
for AltBeacon. For Eddystone-EID beacons, you may use either the
current EID or the beacon's "stable" UID.
Required. (required)
namespacedType: string, Specifies the namespace and type of attachment to include in response in
namespace/type format. Accepts `*/*` to specify
"all types in all namespaces".
projectId: string, The project id to list beacon attachments under. This field can be
used when "*" is specified to mean all attachment namespaces. Projects
may have multiple attachments with multiple namespaces. If "*" is
specified and the projectId string is empty, then the project
making the request is used.
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 `ListBeaconAttachments` that contains the requested attachments.
"attachments": [ # The attachments that corresponded to the request params.
{ # Project-specific data associated with a beacon.
"data": "A String", # An opaque data container for client-provided data. Must be
# [base64](http://tools.ietf.org/html/rfc4648#section-4) encoded in HTTP
# requests, and will be so encoded (with padding) in responses.
# Required.
"creationTimeMs": "A String", # The UTC time when this attachment was created, in milliseconds since the
# UNIX epoch.
"attachmentName": "A String", # Resource name of this attachment. Attachment names have the format:
# beacons/beacon_id/attachments/attachment_id
.
# Leave this empty on creation.
"namespacedType": "A String", # Specifies what kind of attachment this is. Tells a client how to
# interpret the `data` field. Format is namespace/type. Namespace
# provides type separation between clients. Type describes the type of
# `data`, for use by the client when parsing the `data` field.
# Required.
},
],
}