Octopus.Client.OctopusRepository.OctopusRepository C# (CSharp) Method

OctopusRepository() public method

public OctopusRepository ( IOctopusClient client ) : Octopus.Client.Repositories
client IOctopusClient
return Octopus.Client.Repositories
        public OctopusRepository(IOctopusClient client)
        {
            this.Client = client;
            Feeds = new FeedRepository(client);
            Backups = new BackupRepository(client);
            Machines = new MachineRepository(client);
            MachineRoles = new MachineRoleRepository(client);
            MachinePolicies = new MachinePolicyRepository(client);
            Subscriptions = new SubscriptionRepository(client);
            Environments = new EnvironmentRepository(client);
            Events = new EventRepository(client);
            FeaturesConfiguration = new FeaturesConfigurationRepository(client);
            ProjectGroups = new ProjectGroupRepository(client);
            Projects = new ProjectRepository(client);
            Proxies = new ProxyRepository(client);
            Tasks = new TaskRepository(client);
            Users = new UserRepository(client);
            VariableSets = new VariableSetRepository(client);
            LibraryVariableSets = new LibraryVariableSetRepository(client);
            DeploymentProcesses = new DeploymentProcessRepository(client);
            Releases = new ReleaseRepository(client);
            Deployments = new DeploymentRepository(client);
            Certificates = new CertificateRepository(client);
            Dashboards = new DashboardRepository(client);
            DashboardConfigurations = new DashboardConfigurationRepository(client);
            Artifacts = new ArtifactRepository(client);
            Interruptions = new InterruptionRepository(client);
            ServerStatus = new ServerStatusRepository(client);
            UserRoles = new UserRolesRepository(client);
            Teams = new TeamsRepository(client);
            RetentionPolicies = new RetentionPolicyRepository(client);
            Accounts = new AccountRepository(client);
            Defects = new DefectsRepository(client);
            Lifecycles = new LifecyclesRepository(client);
            OctopusServerNodes = new OctopusServerNodeRepository(client);
            Channels = new ChannelRepository(client);
            ProjectTriggers = new ProjectTriggerRepository(client);
            Schedulers = new SchedulerRepository(client);
            Tenants = new TenantRepository(client);
            TagSets = new TagSetRepository(client);
            BuiltInPackageRepository = new BuiltInPackageRepositoryRepository(client);
            ActionTemplates = new ActionTemplateRepository(client);
            CommunityActionTemplates = new CommunityActionTemplateRepository(client);
        }

Same methods

OctopusRepository::OctopusRepository ( OctopusServerEndpoint endpoint ) : Octopus.Client.Repositories
OctopusRepository