aboutsummaryrefslogtreecommitdiffstats
path: root/releases/2.4.1-container.yaml
diff options
context:
space:
mode:
authorrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-10-14 16:09:34 +0100
committerrameshiyer27 <ramesh.murugan.iyer@est.tech>2024-10-22 21:08:59 +0100
commit6b164a94d894c969811c9388b6af8c9a1fca2be2 (patch)
treeb62eb7be108d5eb7faa9986c500c30fa7d653594 /releases/2.4.1-container.yaml
parent85f95e93a19c778e72b6022a713f0eea55002585 (diff)
Improve coverage on apex-pdp
Issue-ID: POLICY-5059 Signed-off-by: rameshiyer27 <ramesh.murugan.iyer@est.tech> Change-Id: I3d8d71f4ee9db10fe43bfe51586156cf768a8560
Diffstat (limited to 'releases/2.4.1-container.yaml')
0 files changed, 0 insertions, 0 deletions
/* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright 2020 Intel Corporation, Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package module

// Client for using the services in the orchestrator
type Client struct {
	LogicalCloud   *LogicalCloudClient
	Cluster        *ClusterClient
	Quota          *QuotaClient
	UserPermission *UserPermissionClient
	KeyValue       *KeyValueClient
	// Add Clients for API's here
}

// NewClient creates a new client for using the services
func NewClient() *Client {
	c := &Client{}
	c.LogicalCloud = NewLogicalCloudClient()
	c.Cluster = NewClusterClient()
	c.Quota = NewQuotaClient()
	c.UserPermission = NewUserPermissionClient()
	c.KeyValue = NewKeyValueClient()
	// Add Client API handlers here
	return c
}