1. Packages
  2. Google Cloud Native
  3. API Docs
  4. apigee
  5. apigee/v1
  6. Entry

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.apigee/v1.Entry

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates key value entries in a key value map scoped to an organization, environment, or API proxy. Note: Supported for Apigee hybrid 1.8.x and higher.

Create Entry Resource

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

Constructor syntax

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

@overload
def Entry(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          api_id: Optional[str] = None,
          keyvaluemap_id: Optional[str] = None,
          organization_id: Optional[str] = None,
          value: Optional[str] = None,
          name: Optional[str] = None)
func NewEntry(ctx *Context, name string, args EntryArgs, opts ...ResourceOption) (*Entry, error)
public Entry(string name, EntryArgs args, CustomResourceOptions? opts = null)
public Entry(String name, EntryArgs args)
public Entry(String name, EntryArgs args, CustomResourceOptions options)
type: google-native:apigee/v1:Entry
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. EntryArgs
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. EntryArgs
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. EntryArgs
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. EntryArgs
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. EntryArgs
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 entryResource = new GoogleNative.Apigee.V1.Entry("entryResource", new()
{
    ApiId = "string",
    KeyvaluemapId = "string",
    OrganizationId = "string",
    Value = "string",
    Name = "string",
});
Copy
example, err := apigee.NewEntry(ctx, "entryResource", &apigee.EntryArgs{
	ApiId:          pulumi.String("string"),
	KeyvaluemapId:  pulumi.String("string"),
	OrganizationId: pulumi.String("string"),
	Value:          pulumi.String("string"),
	Name:           pulumi.String("string"),
})
Copy
var entryResource = new Entry("entryResource", EntryArgs.builder()
    .apiId("string")
    .keyvaluemapId("string")
    .organizationId("string")
    .value("string")
    .name("string")
    .build());
Copy
entry_resource = google_native.apigee.v1.Entry("entryResource",
    api_id="string",
    keyvaluemap_id="string",
    organization_id="string",
    value="string",
    name="string")
Copy
const entryResource = new google_native.apigee.v1.Entry("entryResource", {
    apiId: "string",
    keyvaluemapId: "string",
    organizationId: "string",
    value: "string",
    name: "string",
});
Copy
type: google-native:apigee/v1:Entry
properties:
    apiId: string
    keyvaluemapId: string
    name: string
    organizationId: string
    value: string
Copy

Entry 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 Entry resource accepts the following input properties:

ApiId
This property is required.
Changes to this property will trigger replacement.
string
KeyvaluemapId
This property is required.
Changes to this property will trigger replacement.
string
OrganizationId
This property is required.
Changes to this property will trigger replacement.
string
Value This property is required. string
Data or payload that is being retrieved and associated with the unique key.
Name string
Resource URI that can be used to identify the scope of the key value map entries.
ApiId
This property is required.
Changes to this property will trigger replacement.
string
KeyvaluemapId
This property is required.
Changes to this property will trigger replacement.
string
OrganizationId
This property is required.
Changes to this property will trigger replacement.
string
Value This property is required. string
Data or payload that is being retrieved and associated with the unique key.
Name string
Resource URI that can be used to identify the scope of the key value map entries.
apiId
This property is required.
Changes to this property will trigger replacement.
String
keyvaluemapId
This property is required.
Changes to this property will trigger replacement.
String
organizationId
This property is required.
Changes to this property will trigger replacement.
String
value This property is required. String
Data or payload that is being retrieved and associated with the unique key.
name String
Resource URI that can be used to identify the scope of the key value map entries.
apiId
This property is required.
Changes to this property will trigger replacement.
string
keyvaluemapId
This property is required.
Changes to this property will trigger replacement.
string
organizationId
This property is required.
Changes to this property will trigger replacement.
string
value This property is required. string
Data or payload that is being retrieved and associated with the unique key.
name string
Resource URI that can be used to identify the scope of the key value map entries.
api_id
This property is required.
Changes to this property will trigger replacement.
str
keyvaluemap_id
This property is required.
Changes to this property will trigger replacement.
str
organization_id
This property is required.
Changes to this property will trigger replacement.
str
value This property is required. str
Data or payload that is being retrieved and associated with the unique key.
name str
Resource URI that can be used to identify the scope of the key value map entries.
apiId
This property is required.
Changes to this property will trigger replacement.
String
keyvaluemapId
This property is required.
Changes to this property will trigger replacement.
String
organizationId
This property is required.
Changes to this property will trigger replacement.
String
value This property is required. String
Data or payload that is being retrieved and associated with the unique key.
name String
Resource URI that can be used to identify the scope of the key value map entries.

Outputs

All input properties are implicitly available as output properties. Additionally, the Entry 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.

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.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi