Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
182 changes: 138 additions & 44 deletions .openapi-generator/FILES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.14.0
7.16.0-SNAPSHOT
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ serde_repr = "^0.1"
url = "^2.5"
uuid = { version = "^1.8", features = ["serde", "v4"] }
reqwest = { version = "^0.12", default-features = false, features = ["json", "multipart"] }

[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
126 changes: 103 additions & 23 deletions README.md

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions docs/ActivationStatus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ActivationStatus

## Enum Variants

| Name | Value |
|---- | -----|
| Pending | Pending |
| Activated | Activated |


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


193 changes: 193 additions & 0 deletions docs/BeamoOtelApi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
# \BeamoOtelApi

All URIs are relative to *https://api.beamable.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**api_beamo_otel_auth_reader_config_get**](BeamoOtelApi.md#api_beamo_otel_auth_reader_config_get) | **GET** /api/beamo/otel/auth/reader/config |
[**api_beamo_otel_auth_writer_config_get**](BeamoOtelApi.md#api_beamo_otel_auth_writer_config_get) | **GET** /api/beamo/otel/auth/writer/config |
[**api_beamo_otel_views_get**](BeamoOtelApi.md#api_beamo_otel_views_get) | **GET** /api/beamo/otel/views |
[**api_beamo_otel_views_post**](BeamoOtelApi.md#api_beamo_otel_views_post) | **POST** /api/beamo/otel/views |
[**api_beamo_otel_views_view_id_delete**](BeamoOtelApi.md#api_beamo_otel_views_view_id_delete) | **DELETE** /api/beamo/otel/views/{viewId} |
[**api_beamo_otel_views_view_id_put**](BeamoOtelApi.md#api_beamo_otel_views_view_id_put) | **PUT** /api/beamo/otel/views/{viewId} |



## api_beamo_otel_auth_reader_config_get

> models::OtelAuthConfig api_beamo_otel_auth_reader_config_get(x_beam_scope, x_beam_gamertag)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |

### Return type

[**models::OtelAuthConfig**](OtelAuthConfig.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain, application/json, text/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## api_beamo_otel_auth_writer_config_get

> models::OtelAuthConfig api_beamo_otel_auth_writer_config_get(x_beam_scope, x_beam_gamertag)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |

### Return type

[**models::OtelAuthConfig**](OtelAuthConfig.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain, application/json, text/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## api_beamo_otel_views_get

> models::OtelViewsResponse api_beamo_otel_views_get(x_beam_scope, x_beam_gamertag, player_id)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |
**player_id** | Option<**String**> | | |

### Return type

[**models::OtelViewsResponse**](OtelViewsResponse.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain, application/json, text/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## api_beamo_otel_views_post

> models::OtelView api_beamo_otel_views_post(x_beam_scope, x_beam_gamertag, otel_view)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |
**otel_view** | Option<[**OtelView**](OtelView.md)> | | |

### Return type

[**models::OtelView**](OtelView.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: text/plain, application/json, text/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## api_beamo_otel_views_view_id_delete

> serde_json::Value api_beamo_otel_views_view_id_delete(view_id, x_beam_scope, x_beam_gamertag)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**view_id** | **String** | | [required] |
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |

### Return type

[**serde_json::Value**](serde_json::Value.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## api_beamo_otel_views_view_id_put

> models::OtelView api_beamo_otel_views_view_id_put(view_id, x_beam_scope, x_beam_gamertag, update_otel_view_request)


### Parameters


Name | Type | Description | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**view_id** | **String** | | [required] |
**x_beam_scope** | Option<**String**> | Customer and project scope. This should be in the form of '{customerId}.{projectId}'. This is only necessary when not using a JWT bearer token | |
**x_beam_gamertag** | Option<**String**> | Override the playerId of the requester. This is only necessary when not using a JWT bearer token. | |
**update_otel_view_request** | Option<[**UpdateOtelViewRequest**](UpdateOtelViewRequest.md)> | | |

### Return type

[**models::OtelView**](OtelView.md)

### Authorization

No authorization required

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: text/plain, application/json, text/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

2 changes: 2 additions & 0 deletions docs/ClientContentInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**updated_at** | Option<**i64**> | | [optional]
**tags** | **Vec<String>** | |
**uri** | **String** | |
**version** | **String** | |
**checksum** | Option<**String**> | | [optional]
**created_at** | Option<**i64**> | | [optional]
**content_id** | **String** | |
**r#type** | [**models::ContentType**](ContentType.md) | |

Expand Down
2 changes: 2 additions & 0 deletions docs/ClientContentInfoJson.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**updated_at** | Option<**i64**> | | [optional]
**tags** | **Vec<String>** | |
**uri** | **String** | |
**version** | **String** | |
**checksum** | Option<**String**> | | [optional]
**created_at** | Option<**i64**> | | [optional]
**content_id** | **String** | |
**r#type** | [**models::ContentType**](ContentType.md) | |

Expand Down
1 change: 1 addition & 0 deletions docs/ClientManifestJsonResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**uid** | Option<**String**> | | [optional]
**entries** | [**Vec<models::ClientContentInfoJson>**](ClientContentInfoJson.md) | |
**publisher_account_id** | Option<**i64**> | | [optional]
**created_at** | Option<**i64**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 2 additions & 0 deletions docs/ClientManifestResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**items** | [**Vec<models::ClientContentInfo>**](ClientContentInfo.md) | |
**created_at** | Option<**i64**> | | [optional]
**latest_update** | Option<**i64**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 2 additions & 0 deletions docs/ContentBasicManifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**archived** | Option<**bool**> | | [optional]
**diff_object_key** | Option<**String**> | | [optional]
**references** | [**Vec<models::ContentBasicManifestReferencesInner>**](ContentBasicManifest_references_inner.md) | |
**publisher_account_id** | Option<**i64**> | | [optional]
**id** | **String** | |
**checksum** | **String** | |
**last_changed** | Option<**i64**> | | [optional]
**uid** | Option<**String**> | | [optional]
**created** | **i64** | |

Expand Down
13 changes: 13 additions & 0 deletions docs/CreateAccountWithCredsApiResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CreateAccountWithCredsApiResponse

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**account** | Option<[**models::AccountPlayerView**](AccountPlayerView.md)> | | [optional]
**challenge_token** | Option<**String**> | | [optional]
**token** | Option<[**models::TokenResponse**](TokenResponse.md)> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


17 changes: 17 additions & 0 deletions docs/CreateAccountWithCredsRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# CreateAccountWithCredsRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**username** | Option<**String**> | | [optional]
**provider_namespace** | Option<**String**> | | [optional]
**challenge_solution** | Option<[**models::ChallengeSolution**](ChallengeSolution.md)> | | [optional]
**external_token** | Option<**String**> | | [optional]
**init_properties** | Option<**std::collections::HashMap<String, String>**> | | [optional]
**provider_service** | Option<**String**> | | [optional]
**password** | Option<**String**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 1 addition & 1 deletion docs/CreatePlanRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Type | Description | Notes
**sharded** | **bool** | |
**mongo_hosts** | **String** | |
**message_bus_common** | Option<**Vec<String>**> | | [optional]
**redis_shards** | [**Vec<models::RedisShardRequest>**](RedisShardRequest.md) | |
**redis_shards** | [**Vec<models::RealmsBasicRedisShardRequest>**](RealmsBasicRedisShardRequest.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
14 changes: 14 additions & 0 deletions docs/CreateRealmRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# CreateRealmRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | |
**plan** | Option<**String**> | | [optional]
**sharded** | Option<**bool**> | | [optional]
**parent** | Option<**String**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


18 changes: 18 additions & 0 deletions docs/CreateServicePlanRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# CreateServicePlanRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **String** | |
**mongo_hosts** | Option<**String**> | | [optional]
**mongo_sharded** | Option<**bool**> | | [optional]
**mongo_tls** | Option<**bool**> | | [optional]
**redis_shards** | Option<[**Vec<models::ServicePlanActorRedisShardRequest>**](ServicePlanActorRedisShardRequest.md)> | | [optional]
**message_bus_analytics** | Option<**Vec<String>**> | | [optional]
**message_bus_common** | Option<**Vec<String>**> | | [optional]
**mongo_srv_address** | Option<**String**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


13 changes: 13 additions & 0 deletions docs/CustomerActorAliasAvailableResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CustomerActorAliasAvailableResponse

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**alias** | **String** | |
**available** | **bool** | |
**customer_id** | Option<**String**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


19 changes: 19 additions & 0 deletions docs/CustomerActorCustomer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# CustomerActorCustomer

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**customer_id** | **i64** | |
**name** | **String** | |
**alias** | Option<**String**> | | [optional]
**realms** | Option<[**Vec<models::Realm>**](Realm.md)> | | [optional]
**payment_status** | Option<[**models::PaymentStatus**](PaymentStatus.md)> | | [optional]
**activation_status** | Option<[**models::ActivationStatus**](ActivationStatus.md)> | | [optional]
**contact** | Option<**String**> | | [optional]
**created** | Option<**i64**> | | [optional]
**updated** | Option<**i64**> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


14 changes: 14 additions & 0 deletions docs/CustomerActorCustomerView.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# CustomerActorCustomerView

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**customer_id** | **String** | |
**name** | **String** | |
**alias** | Option<**String**> | | [optional]
**realms** | Option<[**Vec<models::RealmView>**](RealmView.md)> | | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Loading