├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── categories.json ├── categories_gen.go ├── channels.go ├── channels_test.go ├── client.go ├── client_options.go ├── client_test.go ├── compile_examples.go ├── examples ├── README.txt └── leap-client │ ├── README.md │ ├── client.js │ ├── client_websocket.go │ ├── http_router.go │ ├── index.html │ └── main.go ├── fs.go ├── generate_categories.go ├── go.mod ├── go.sum ├── helpers_for_test.go ├── ignite.go ├── ignite_test.go ├── leap ├── README.md ├── client.go ├── event_waiter.go ├── logger.go └── queue_dispatcher.go ├── pipe.go ├── pipe_test.go ├── projects.go ├── projects_test.go ├── registry.go ├── registry_test.go ├── types ├── channels.go ├── errors.go ├── generate_stringer.go ├── generate_time_types.go ├── ignite.go ├── ignite_test.go ├── json_schemas │ └── preset_form.schema.json ├── leap.go ├── pipe.go ├── projects.go ├── registry.go ├── stringer.go ├── stringer_gen.go ├── stringer_test.go ├── testdata │ ├── json │ │ └── TestPresetForm_JSONMarshalling │ │ │ ├── blank_input_object │ │ │ └── input.json │ │ │ ├── check_marshal_also_uses_schema │ │ │ └── input.json │ │ │ ├── fields_empty_object │ │ │ └── input.json │ │ │ ├── invalid_autogen_input_object │ │ │ └── input.json │ │ │ ├── invalid_field_map_to │ │ │ └── input.json │ │ │ ├── invalid_version_unmarshal │ │ │ └── input.json │ │ │ ├── root_fields_missing │ │ │ └── input.json │ │ │ ├── valid │ │ │ ├── input.json │ │ │ └── output.json │ │ │ ├── version_defaults │ │ │ ├── input.json │ │ │ └── output.json │ │ │ └── version_wrong │ │ │ └── input.json │ ├── types.BadRequest.json │ ├── types.Build.json │ ├── types.BuildMetadata.json │ ├── types.BuildMethod.json │ ├── types.BuildState.json │ ├── types.Channel.json │ ├── types.ChannelPartial.json │ ├── types.ChannelToken.json │ ├── types.ChannelType.json │ ├── types.Container.json │ ├── types.ContainerLog.json │ ├── types.ContainerMetadata.json │ ├── types.ContainerMetrics.json │ ├── types.ContainerState.json │ ├── types.ContainerStrategy.json │ ├── types.ContainerUptime.json │ ├── types.DefaultQuotas.json │ ├── types.DeliveryProtocol.json │ ├── types.Deployment.json │ ├── types.DeploymentConfig.json │ ├── types.DeploymentConfigPartial.json │ ├── types.DeploymentMetadata.json │ ├── types.DeploymentRollout.json │ ├── types.DeploymentStorageInfo.json │ ├── types.DeploymentStorageSize.json │ ├── types.DockerAuth.json │ ├── types.Domain.json │ ├── types.DomainState.json │ ├── types.GPUType.json │ ├── types.Gateway.json │ ├── types.GatewayCreationOptions.json │ ├── types.GatewayProtocol.json │ ├── types.GatewayType.json │ ├── types.HLSConfig.json │ ├── types.HealthCheck.json │ ├── types.HealthCheckCreateOpts.json │ ├── types.HealthCheckProtocol.json │ ├── types.HealthCheckState.json │ ├── types.HealthCheckStatus.json │ ├── types.HealthCheckType.json │ ├── types.HealthCheckUpdateOpts.json │ ├── types.IgniteDeploymentUpdateOpts.json │ ├── types.IgniteGatewayUpdateOpts.json │ ├── types.Image.json │ ├── types.ImageDigest.json │ ├── types.ImageGHInfo.json │ ├── types.ImageManifest.json │ ├── types.IngestProtocol.json │ ├── types.LeapConnectionState.json │ ├── types.LeapScope.json │ ├── types.LoggingLevel.json │ ├── types.Project.json │ ├── types.ProjectMember.json │ ├── types.ProjectPermission.json │ ├── types.ProjectRole.json │ ├── types.ProjectSecret.json │ ├── types.ProjectTier.json │ ├── types.ProjectToken.json │ ├── types.ProjectType.json │ ├── types.QuotaUsage.json │ ├── types.Region.json │ ├── types.Resources.json │ ├── types.RestartPolicy.json │ ├── types.RolloutState.json │ ├── types.Room.json │ ├── types.RoomCreationOptions.json │ ├── types.RoomState.json │ ├── types.RuntimeType.json │ ├── types.SelfUser.json │ ├── types.Stats.json │ ├── types.UnknownServerError.json │ ├── types.User.json │ ├── types.UserMeInfo.json │ ├── types.UserPat.json │ ├── types.VGPU.json │ ├── types.VolumeDefinition.json │ └── types.VolumeFormat.json ├── time_types_gen.go ├── types_test.go ├── users.go ├── utils.go └── utils_test.go ├── users.go ├── users_test.go ├── utils.go ├── utils_test.go └── version.go /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | test_project/ 4 | examples/bin/ 5 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/README.md -------------------------------------------------------------------------------- /categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/categories.json -------------------------------------------------------------------------------- /categories_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/categories_gen.go -------------------------------------------------------------------------------- /channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/channels.go -------------------------------------------------------------------------------- /channels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/channels_test.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/client.go -------------------------------------------------------------------------------- /client_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/client_options.go -------------------------------------------------------------------------------- /client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/client_test.go -------------------------------------------------------------------------------- /compile_examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/compile_examples.go -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/leap-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/README.md -------------------------------------------------------------------------------- /examples/leap-client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/client.js -------------------------------------------------------------------------------- /examples/leap-client/client_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/client_websocket.go -------------------------------------------------------------------------------- /examples/leap-client/http_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/http_router.go -------------------------------------------------------------------------------- /examples/leap-client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/index.html -------------------------------------------------------------------------------- /examples/leap-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/examples/leap-client/main.go -------------------------------------------------------------------------------- /fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/fs.go -------------------------------------------------------------------------------- /generate_categories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/generate_categories.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/go.sum -------------------------------------------------------------------------------- /helpers_for_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/helpers_for_test.go -------------------------------------------------------------------------------- /ignite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/ignite.go -------------------------------------------------------------------------------- /ignite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/ignite_test.go -------------------------------------------------------------------------------- /leap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/leap/README.md -------------------------------------------------------------------------------- /leap/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/leap/client.go -------------------------------------------------------------------------------- /leap/event_waiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/leap/event_waiter.go -------------------------------------------------------------------------------- /leap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/leap/logger.go -------------------------------------------------------------------------------- /leap/queue_dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/leap/queue_dispatcher.go -------------------------------------------------------------------------------- /pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/pipe.go -------------------------------------------------------------------------------- /pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/pipe_test.go -------------------------------------------------------------------------------- /projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/projects.go -------------------------------------------------------------------------------- /projects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/projects_test.go -------------------------------------------------------------------------------- /registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/registry.go -------------------------------------------------------------------------------- /registry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/registry_test.go -------------------------------------------------------------------------------- /types/channels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/channels.go -------------------------------------------------------------------------------- /types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/errors.go -------------------------------------------------------------------------------- /types/generate_stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/generate_stringer.go -------------------------------------------------------------------------------- /types/generate_time_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/generate_time_types.go -------------------------------------------------------------------------------- /types/ignite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/ignite.go -------------------------------------------------------------------------------- /types/ignite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/ignite_test.go -------------------------------------------------------------------------------- /types/json_schemas/preset_form.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/json_schemas/preset_form.schema.json -------------------------------------------------------------------------------- /types/leap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/leap.go -------------------------------------------------------------------------------- /types/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/pipe.go -------------------------------------------------------------------------------- /types/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/projects.go -------------------------------------------------------------------------------- /types/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/registry.go -------------------------------------------------------------------------------- /types/stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/stringer.go -------------------------------------------------------------------------------- /types/stringer_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/stringer_gen.go -------------------------------------------------------------------------------- /types/stringer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/stringer_test.go -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/blank_input_object/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/blank_input_object/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/check_marshal_also_uses_schema/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/check_marshal_also_uses_schema/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/fields_empty_object/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/fields_empty_object/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/invalid_autogen_input_object/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/invalid_autogen_input_object/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/invalid_field_map_to/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/invalid_field_map_to/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/invalid_version_unmarshal/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/invalid_version_unmarshal/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/root_fields_missing/input.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/valid/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/valid/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/valid/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/valid/output.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/version_defaults/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/version_defaults/input.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/version_defaults/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/json/TestPresetForm_JSONMarshalling/version_defaults/output.json -------------------------------------------------------------------------------- /types/testdata/json/TestPresetForm_JSONMarshalling/version_wrong/input.json: -------------------------------------------------------------------------------- 1 | { 2 | "fields": [] 3 | } 4 | -------------------------------------------------------------------------------- /types/testdata/types.BadRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.BadRequest.json -------------------------------------------------------------------------------- /types/testdata/types.Build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Build.json -------------------------------------------------------------------------------- /types/testdata/types.BuildMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.BuildMetadata.json -------------------------------------------------------------------------------- /types/testdata/types.BuildMethod.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.BuildState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Channel.json -------------------------------------------------------------------------------- /types/testdata/types.ChannelPartial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ChannelPartial.json -------------------------------------------------------------------------------- /types/testdata/types.ChannelToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ChannelToken.json -------------------------------------------------------------------------------- /types/testdata/types.ChannelType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Container.json -------------------------------------------------------------------------------- /types/testdata/types.ContainerLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ContainerLog.json -------------------------------------------------------------------------------- /types/testdata/types.ContainerMetadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "last_exit_code": 0 3 | } -------------------------------------------------------------------------------- /types/testdata/types.ContainerMetrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ContainerMetrics.json -------------------------------------------------------------------------------- /types/testdata/types.ContainerState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.ContainerStrategy.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.ContainerUptime.json: -------------------------------------------------------------------------------- 1 | { 2 | "last_start": "abc" 3 | } -------------------------------------------------------------------------------- /types/testdata/types.DefaultQuotas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DefaultQuotas.json -------------------------------------------------------------------------------- /types/testdata/types.DeliveryProtocol.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Deployment.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentConfig.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentConfigPartial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentConfigPartial.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentMetadata.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentRollout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentRollout.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentStorageInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentStorageInfo.json -------------------------------------------------------------------------------- /types/testdata/types.DeploymentStorageSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DeploymentStorageSize.json -------------------------------------------------------------------------------- /types/testdata/types.DockerAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.DockerAuth.json -------------------------------------------------------------------------------- /types/testdata/types.Domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Domain.json -------------------------------------------------------------------------------- /types/testdata/types.DomainState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.GPUType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Gateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Gateway.json -------------------------------------------------------------------------------- /types/testdata/types.GatewayCreationOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.GatewayCreationOptions.json -------------------------------------------------------------------------------- /types/testdata/types.GatewayProtocol.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.GatewayType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.HLSConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.HLSConfig.json -------------------------------------------------------------------------------- /types/testdata/types.HealthCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.HealthCheck.json -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckCreateOpts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.HealthCheckCreateOpts.json -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckProtocol.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.HealthCheckState.json -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckStatus.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.HealthCheckUpdateOpts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.HealthCheckUpdateOpts.json -------------------------------------------------------------------------------- /types/testdata/types.IgniteDeploymentUpdateOpts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.IgniteDeploymentUpdateOpts.json -------------------------------------------------------------------------------- /types/testdata/types.IgniteGatewayUpdateOpts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.IgniteGatewayUpdateOpts.json -------------------------------------------------------------------------------- /types/testdata/types.Image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Image.json -------------------------------------------------------------------------------- /types/testdata/types.ImageDigest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ImageDigest.json -------------------------------------------------------------------------------- /types/testdata/types.ImageGHInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ImageGHInfo.json -------------------------------------------------------------------------------- /types/testdata/types.ImageManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ImageManifest.json -------------------------------------------------------------------------------- /types/testdata/types.IngestProtocol.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.LeapConnectionState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.LeapScope.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.LoggingLevel.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Project.json -------------------------------------------------------------------------------- /types/testdata/types.ProjectMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ProjectMember.json -------------------------------------------------------------------------------- /types/testdata/types.ProjectPermission.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.ProjectRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ProjectRole.json -------------------------------------------------------------------------------- /types/testdata/types.ProjectSecret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ProjectSecret.json -------------------------------------------------------------------------------- /types/testdata/types.ProjectTier.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.ProjectToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.ProjectToken.json -------------------------------------------------------------------------------- /types/testdata/types.ProjectType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.QuotaUsage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.QuotaUsage.json -------------------------------------------------------------------------------- /types/testdata/types.Region.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Resources.json -------------------------------------------------------------------------------- /types/testdata/types.RestartPolicy.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.RolloutState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.Room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.Room.json -------------------------------------------------------------------------------- /types/testdata/types.RoomCreationOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.RoomCreationOptions.json -------------------------------------------------------------------------------- /types/testdata/types.RoomState.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.RuntimeType.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/testdata/types.SelfUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.SelfUser.json -------------------------------------------------------------------------------- /types/testdata/types.Stats.json: -------------------------------------------------------------------------------- 1 | { 2 | "online_count": 0 3 | } -------------------------------------------------------------------------------- /types/testdata/types.UnknownServerError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.UnknownServerError.json -------------------------------------------------------------------------------- /types/testdata/types.User.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.User.json -------------------------------------------------------------------------------- /types/testdata/types.UserMeInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.UserMeInfo.json -------------------------------------------------------------------------------- /types/testdata/types.UserPat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.UserPat.json -------------------------------------------------------------------------------- /types/testdata/types.VGPU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.VGPU.json -------------------------------------------------------------------------------- /types/testdata/types.VolumeDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/testdata/types.VolumeDefinition.json -------------------------------------------------------------------------------- /types/testdata/types.VolumeFormat.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /types/time_types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/time_types_gen.go -------------------------------------------------------------------------------- /types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/types_test.go -------------------------------------------------------------------------------- /types/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/users.go -------------------------------------------------------------------------------- /types/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/utils.go -------------------------------------------------------------------------------- /types/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/types/utils_test.go -------------------------------------------------------------------------------- /users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/users.go -------------------------------------------------------------------------------- /users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/users_test.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/utils.go -------------------------------------------------------------------------------- /utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/utils_test.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hopinc/go/HEAD/version.go --------------------------------------------------------------------------------