1. Packages
  2. Qovery
  3. API Docs
  4. AnnotationsGroup
Qovery v0.41.0 published on Saturday, Sep 28, 2024 by dirien

qovery.AnnotationsGroup

Explore with Pulumi AI

# qovery.AnnotationsGroup (Resource)

Provides a Qovery annotations group resource

Example

import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@ediri/qovery";

const annotationsGroup1 = new qovery.AnnotationsGroup("annotationsGroup1", {
    organizationId: qovery_organization.my_organization.id,
    annotations: {
        key1: "value1",
        key2: "value2",
    },
    scopes: [
        "PODS",
        "DEPLOYMENTS",
    ],
});
Copy
import pulumi
import ediri_qovery as qovery

annotations_group1 = qovery.AnnotationsGroup("annotationsGroup1",
    organization_id=qovery_organization["my_organization"]["id"],
    annotations={
        "key1": "value1",
        "key2": "value2",
    },
    scopes=[
        "PODS",
        "DEPLOYMENTS",
    ])
Copy
package main

import (
	"github.com/dirien/pulumi-qovery/sdk/go/qovery"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := qovery.NewAnnotationsGroup(ctx, "annotationsGroup1", &qovery.AnnotationsGroupArgs{
			OrganizationId: pulumi.Any(qovery_organization.My_organization.Id),
			Annotations: pulumi.StringMap{
				"key1": pulumi.String("value1"),
				"key2": pulumi.String("value2"),
			},
			Scopes: pulumi.StringArray{
				pulumi.String("PODS"),
				pulumi.String("DEPLOYMENTS"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = ediri.Qovery;

return await Deployment.RunAsync(() => 
{
    var annotationsGroup1 = new Qovery.AnnotationsGroup("annotationsGroup1", new()
    {
        OrganizationId = qovery_organization.My_organization.Id,
        Annotations = 
        {
            { "key1", "value1" },
            { "key2", "value2" },
        },
        Scopes = new[]
        {
            "PODS",
            "DEPLOYMENTS",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.AnnotationsGroup;
import com.pulumi.qovery.AnnotationsGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var annotationsGroup1 = new AnnotationsGroup("annotationsGroup1", AnnotationsGroupArgs.builder()
            .organizationId(qovery_organization.my_organization().id())
            .annotations(Map.ofEntries(
                Map.entry("key1", "value1"),
                Map.entry("key2", "value2")
            ))
            .scopes(            
                "PODS",
                "DEPLOYMENTS")
            .build());

    }
}
Copy
resources:
  annotationsGroup1:
    type: qovery:AnnotationsGroup
    properties:
      organizationId: ${qovery_organization.my_organization.id}
      annotations:
        key1: value1
        key2: value2
      scopes:
        - PODS
        - DEPLOYMENTS
Copy

Create AnnotationsGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AnnotationsGroup(name: string, args: AnnotationsGroupArgs, opts?: CustomResourceOptions);
@overload
def AnnotationsGroup(resource_name: str,
                     args: AnnotationsGroupArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def AnnotationsGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     annotations: Optional[Mapping[str, str]] = None,
                     organization_id: Optional[str] = None,
                     scopes: Optional[Sequence[str]] = None,
                     name: Optional[str] = None)
func NewAnnotationsGroup(ctx *Context, name string, args AnnotationsGroupArgs, opts ...ResourceOption) (*AnnotationsGroup, error)
public AnnotationsGroup(string name, AnnotationsGroupArgs args, CustomResourceOptions? opts = null)
public AnnotationsGroup(String name, AnnotationsGroupArgs args)
public AnnotationsGroup(String name, AnnotationsGroupArgs args, CustomResourceOptions options)
type: qovery:AnnotationsGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AnnotationsGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AnnotationsGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AnnotationsGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AnnotationsGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AnnotationsGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var annotationsGroupResource = new Qovery.AnnotationsGroup("annotationsGroupResource", new()
{
    Annotations = 
    {
        { "string", "string" },
    },
    OrganizationId = "string",
    Scopes = new[]
    {
        "string",
    },
    Name = "string",
});
Copy
example, err := qovery.NewAnnotationsGroup(ctx, "annotationsGroupResource", &qovery.AnnotationsGroupArgs{
	Annotations: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	OrganizationId: pulumi.String("string"),
	Scopes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
Copy
var annotationsGroupResource = new AnnotationsGroup("annotationsGroupResource", AnnotationsGroupArgs.builder()
    .annotations(Map.of("string", "string"))
    .organizationId("string")
    .scopes("string")
    .name("string")
    .build());
Copy
annotations_group_resource = qovery.AnnotationsGroup("annotationsGroupResource",
    annotations={
        "string": "string",
    },
    organization_id="string",
    scopes=["string"],
    name="string")
Copy
const annotationsGroupResource = new qovery.AnnotationsGroup("annotationsGroupResource", {
    annotations: {
        string: "string",
    },
    organizationId: "string",
    scopes: ["string"],
    name: "string",
});
Copy
type: qovery:AnnotationsGroup
properties:
    annotations:
        string: string
    name: string
    organizationId: string
    scopes:
        - string
Copy

AnnotationsGroup Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AnnotationsGroup resource accepts the following input properties:

Annotations This property is required. Dictionary<string, string>
annotations
OrganizationId This property is required. string
Id of the organization.
Scopes This property is required. List<string>
scopes of the annotations group
Name string
name of the annotations group
Annotations This property is required. map[string]string
annotations
OrganizationId This property is required. string
Id of the organization.
Scopes This property is required. []string
scopes of the annotations group
Name string
name of the annotations group
annotations This property is required. Map<String,String>
annotations
organizationId This property is required. String
Id of the organization.
scopes This property is required. List<String>
scopes of the annotations group
name String
name of the annotations group
annotations This property is required. {[key: string]: string}
annotations
organizationId This property is required. string
Id of the organization.
scopes This property is required. string[]
scopes of the annotations group
name string
name of the annotations group
annotations This property is required. Mapping[str, str]
annotations
organization_id This property is required. str
Id of the organization.
scopes This property is required. Sequence[str]
scopes of the annotations group
name str
name of the annotations group
annotations This property is required. Map<String>
annotations
organizationId This property is required. String
Id of the organization.
scopes This property is required. List<String>
scopes of the annotations group
name String
name of the annotations group

Outputs

All input properties are implicitly available as output properties. Additionally, the AnnotationsGroup resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AnnotationsGroup Resource

Get an existing AnnotationsGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AnnotationsGroupState, opts?: CustomResourceOptions): AnnotationsGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        annotations: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        scopes: Optional[Sequence[str]] = None) -> AnnotationsGroup
func GetAnnotationsGroup(ctx *Context, name string, id IDInput, state *AnnotationsGroupState, opts ...ResourceOption) (*AnnotationsGroup, error)
public static AnnotationsGroup Get(string name, Input<string> id, AnnotationsGroupState? state, CustomResourceOptions? opts = null)
public static AnnotationsGroup get(String name, Output<String> id, AnnotationsGroupState state, CustomResourceOptions options)
resources:  _:    type: qovery:AnnotationsGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Annotations Dictionary<string, string>
annotations
Name string
name of the annotations group
OrganizationId string
Id of the organization.
Scopes List<string>
scopes of the annotations group
Annotations map[string]string
annotations
Name string
name of the annotations group
OrganizationId string
Id of the organization.
Scopes []string
scopes of the annotations group
annotations Map<String,String>
annotations
name String
name of the annotations group
organizationId String
Id of the organization.
scopes List<String>
scopes of the annotations group
annotations {[key: string]: string}
annotations
name string
name of the annotations group
organizationId string
Id of the organization.
scopes string[]
scopes of the annotations group
annotations Mapping[str, str]
annotations
name str
name of the annotations group
organization_id str
Id of the organization.
scopes Sequence[str]
scopes of the annotations group
annotations Map<String>
annotations
name String
name of the annotations group
organizationId String
Id of the organization.
scopes List<String>
scopes of the annotations group

Import

$ pulumi import qovery:index/annotationsGroup:AnnotationsGroup my_qovery_annotations_group "<annotations_group_id>"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
qovery dirien/pulumi-qovery
License
Apache-2.0
Notes
This Pulumi package is based on the qovery Terraform Provider.