Class BuildUploadResult
Represents the result of a Build upload
Implements
Inherited Members
Namespace: Unity.Services.Multiplay.Authoring.Core.Deployment
Assembly: Unity.Services.Multiplayer.Multiplay.Authoring.Core.dll
Syntax
public record BuildUploadResult : IEquatable<BuildUploadResult>
Constructors
BuildUploadResult(BuildItem, BuildId, CloudBucketId, int)
Represents the result of a Build upload
Declaration
public BuildUploadResult(BuildItem BuildItem, BuildId BuildId, CloudBucketId CloudBucketId, int Changes)
Parameters
Type | Name | Description |
---|---|---|
Build |
BuildItem | The Build Item uploaded |
Build |
BuildId | The new Build ID associated with the build uploaded |
Cloud |
CloudBucketId | The cloud bucket where the direct file as uploaded to |
int | Changes | Number of changes introduced by the upload |
Properties
BuildId
The new Build ID associated with the build uploaded
Declaration
public BuildId BuildId { get; init; }
Property Value
Type | Description |
---|---|
Build |
BuildItem
The Build Item uploaded
Declaration
public BuildItem BuildItem { get; init; }
Property Value
Type | Description |
---|---|
Build |
Changes
Number of changes introduced by the upload
Declaration
public int Changes { get; init; }
Property Value
Type | Description |
---|---|
int |
CloudBucketId
The cloud bucket where the direct file as uploaded to
Declaration
public CloudBucketId CloudBucketId { get; init; }
Property Value
Type | Description |
---|---|
Cloud |