Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.apigee/v1.Envgroup
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new environment group.
Create Envgroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Envgroup(name: string, args: EnvgroupArgs, opts?: CustomResourceOptions);
@overload
def Envgroup(resource_name: str,
args: EnvgroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Envgroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostnames: Optional[Sequence[str]] = None,
organization_id: Optional[str] = None,
name: Optional[str] = None)
func NewEnvgroup(ctx *Context, name string, args EnvgroupArgs, opts ...ResourceOption) (*Envgroup, error)
public Envgroup(string name, EnvgroupArgs args, CustomResourceOptions? opts = null)
public Envgroup(String name, EnvgroupArgs args)
public Envgroup(String name, EnvgroupArgs args, CustomResourceOptions options)
type: google-native:apigee/v1:Envgroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EnvgroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EnvgroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EnvgroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnvgroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnvgroupArgs
- 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 envgroupResource = new GoogleNative.Apigee.V1.Envgroup("envgroupResource", new()
{
Hostnames = new[]
{
"string",
},
OrganizationId = "string",
Name = "string",
});
example, err := apigee.NewEnvgroup(ctx, "envgroupResource", &apigee.EnvgroupArgs{
Hostnames: pulumi.StringArray{
pulumi.String("string"),
},
OrganizationId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var envgroupResource = new Envgroup("envgroupResource", EnvgroupArgs.builder()
.hostnames("string")
.organizationId("string")
.name("string")
.build());
envgroup_resource = google_native.apigee.v1.Envgroup("envgroupResource",
hostnames=["string"],
organization_id="string",
name="string")
const envgroupResource = new google_native.apigee.v1.Envgroup("envgroupResource", {
hostnames: ["string"],
organizationId: "string",
name: "string",
});
type: google-native:apigee/v1:Envgroup
properties:
hostnames:
- string
name: string
organizationId: string
Envgroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Envgroup resource accepts the following input properties:
- Hostnames List<string>
- Host names for this environment group.
- Organization
Id string - Name string
- ID of the environment group.
- Hostnames []string
- Host names for this environment group.
- Organization
Id string - Name string
- ID of the environment group.
- hostnames List<String>
- Host names for this environment group.
- organization
Id String - name String
- ID of the environment group.
- hostnames string[]
- Host names for this environment group.
- organization
Id string - name string
- ID of the environment group.
- hostnames Sequence[str]
- Host names for this environment group.
- organization_
id str - name str
- ID of the environment group.
- hostnames List<String>
- Host names for this environment group.
- organization
Id String - name String
- ID of the environment group.
Outputs
All input properties are implicitly available as output properties. Additionally, the Envgroup resource produces the following output properties:
- Created
At string - The time at which the environment group was created as milliseconds since epoch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringAt - The time at which the environment group was last updated as milliseconds since epoch.
- State string
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
- Created
At string - The time at which the environment group was created as milliseconds since epoch.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringAt - The time at which the environment group was last updated as milliseconds since epoch.
- State string
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
- created
At String - The time at which the environment group was created as milliseconds since epoch.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringAt - The time at which the environment group was last updated as milliseconds since epoch.
- state String
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
- created
At string - The time at which the environment group was created as milliseconds since epoch.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringAt - The time at which the environment group was last updated as milliseconds since epoch.
- state string
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
- created_
at str - The time at which the environment group was created as milliseconds since epoch.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strat - The time at which the environment group was last updated as milliseconds since epoch.
- state str
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
- created
At String - The time at which the environment group was created as milliseconds since epoch.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringAt - The time at which the environment group was last updated as milliseconds since epoch.
- state String
- State of the environment group. Values other than ACTIVE means the resource is not ready to use.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.