oci.OspGateway.AddressActionVerification
Explore with Pulumi AI
This resource provides the Address Action Verification resource in Oracle Cloud Infrastructure Osp Gateway service.
Verify address
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAddressActionVerification = new oci.ospgateway.AddressActionVerification("test_address_action_verification", {
compartmentId: compartmentId,
ospHomeRegion: addressActionVerificationOspHomeRegion,
addressKey: addressActionVerificationAddressKey,
city: addressActionVerificationCity,
companyName: addressActionVerificationCompanyName,
contributorClass: addressActionVerificationContributorClass,
country: addressActionVerificationCountry,
county: addressActionVerificationCounty,
departmentName: addressActionVerificationDepartmentName,
emailAddress: addressActionVerificationEmailAddress,
firstName: addressActionVerificationFirstName,
internalNumber: addressActionVerificationInternalNumber,
jobTitle: addressActionVerificationJobTitle,
lastName: addressActionVerificationLastName,
line1: addressActionVerificationLine1,
line2: addressActionVerificationLine2,
line3: addressActionVerificationLine3,
line4: addressActionVerificationLine4,
middleName: addressActionVerificationMiddleName,
municipalInscription: addressActionVerificationMunicipalInscription,
phoneCountryCode: addressActionVerificationPhoneCountryCode,
phoneNumber: addressActionVerificationPhoneNumber,
postalCode: addressActionVerificationPostalCode,
province: addressActionVerificationProvince,
state: addressActionVerificationState,
stateInscription: addressActionVerificationStateInscription,
streetName: addressActionVerificationStreetName,
streetNumber: addressActionVerificationStreetNumber,
});
import pulumi
import pulumi_oci as oci
test_address_action_verification = oci.osp_gateway.AddressActionVerification("test_address_action_verification",
compartment_id=compartment_id,
osp_home_region=address_action_verification_osp_home_region,
address_key=address_action_verification_address_key,
city=address_action_verification_city,
company_name=address_action_verification_company_name,
contributor_class=address_action_verification_contributor_class,
country=address_action_verification_country,
county=address_action_verification_county,
department_name=address_action_verification_department_name,
email_address=address_action_verification_email_address,
first_name=address_action_verification_first_name,
internal_number=address_action_verification_internal_number,
job_title=address_action_verification_job_title,
last_name=address_action_verification_last_name,
line1=address_action_verification_line1,
line2=address_action_verification_line2,
line3=address_action_verification_line3,
line4=address_action_verification_line4,
middle_name=address_action_verification_middle_name,
municipal_inscription=address_action_verification_municipal_inscription,
phone_country_code=address_action_verification_phone_country_code,
phone_number=address_action_verification_phone_number,
postal_code=address_action_verification_postal_code,
province=address_action_verification_province,
state=address_action_verification_state,
state_inscription=address_action_verification_state_inscription,
street_name=address_action_verification_street_name,
street_number=address_action_verification_street_number)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ospgateway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ospgateway.NewAddressActionVerification(ctx, "test_address_action_verification", &ospgateway.AddressActionVerificationArgs{
CompartmentId: pulumi.Any(compartmentId),
OspHomeRegion: pulumi.Any(addressActionVerificationOspHomeRegion),
AddressKey: pulumi.Any(addressActionVerificationAddressKey),
City: pulumi.Any(addressActionVerificationCity),
CompanyName: pulumi.Any(addressActionVerificationCompanyName),
ContributorClass: pulumi.Any(addressActionVerificationContributorClass),
Country: pulumi.Any(addressActionVerificationCountry),
County: pulumi.Any(addressActionVerificationCounty),
DepartmentName: pulumi.Any(addressActionVerificationDepartmentName),
EmailAddress: pulumi.Any(addressActionVerificationEmailAddress),
FirstName: pulumi.Any(addressActionVerificationFirstName),
InternalNumber: pulumi.Any(addressActionVerificationInternalNumber),
JobTitle: pulumi.Any(addressActionVerificationJobTitle),
LastName: pulumi.Any(addressActionVerificationLastName),
Line1: pulumi.Any(addressActionVerificationLine1),
Line2: pulumi.Any(addressActionVerificationLine2),
Line3: pulumi.Any(addressActionVerificationLine3),
Line4: pulumi.Any(addressActionVerificationLine4),
MiddleName: pulumi.Any(addressActionVerificationMiddleName),
MunicipalInscription: pulumi.Any(addressActionVerificationMunicipalInscription),
PhoneCountryCode: pulumi.Any(addressActionVerificationPhoneCountryCode),
PhoneNumber: pulumi.Any(addressActionVerificationPhoneNumber),
PostalCode: pulumi.Any(addressActionVerificationPostalCode),
Province: pulumi.Any(addressActionVerificationProvince),
State: pulumi.Any(addressActionVerificationState),
StateInscription: pulumi.Any(addressActionVerificationStateInscription),
StreetName: pulumi.Any(addressActionVerificationStreetName),
StreetNumber: pulumi.Any(addressActionVerificationStreetNumber),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAddressActionVerification = new Oci.OspGateway.AddressActionVerification("test_address_action_verification", new()
{
CompartmentId = compartmentId,
OspHomeRegion = addressActionVerificationOspHomeRegion,
AddressKey = addressActionVerificationAddressKey,
City = addressActionVerificationCity,
CompanyName = addressActionVerificationCompanyName,
ContributorClass = addressActionVerificationContributorClass,
Country = addressActionVerificationCountry,
County = addressActionVerificationCounty,
DepartmentName = addressActionVerificationDepartmentName,
EmailAddress = addressActionVerificationEmailAddress,
FirstName = addressActionVerificationFirstName,
InternalNumber = addressActionVerificationInternalNumber,
JobTitle = addressActionVerificationJobTitle,
LastName = addressActionVerificationLastName,
Line1 = addressActionVerificationLine1,
Line2 = addressActionVerificationLine2,
Line3 = addressActionVerificationLine3,
Line4 = addressActionVerificationLine4,
MiddleName = addressActionVerificationMiddleName,
MunicipalInscription = addressActionVerificationMunicipalInscription,
PhoneCountryCode = addressActionVerificationPhoneCountryCode,
PhoneNumber = addressActionVerificationPhoneNumber,
PostalCode = addressActionVerificationPostalCode,
Province = addressActionVerificationProvince,
State = addressActionVerificationState,
StateInscription = addressActionVerificationStateInscription,
StreetName = addressActionVerificationStreetName,
StreetNumber = addressActionVerificationStreetNumber,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OspGateway.AddressActionVerification;
import com.pulumi.oci.OspGateway.AddressActionVerificationArgs;
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 testAddressActionVerification = new AddressActionVerification("testAddressActionVerification", AddressActionVerificationArgs.builder()
.compartmentId(compartmentId)
.ospHomeRegion(addressActionVerificationOspHomeRegion)
.addressKey(addressActionVerificationAddressKey)
.city(addressActionVerificationCity)
.companyName(addressActionVerificationCompanyName)
.contributorClass(addressActionVerificationContributorClass)
.country(addressActionVerificationCountry)
.county(addressActionVerificationCounty)
.departmentName(addressActionVerificationDepartmentName)
.emailAddress(addressActionVerificationEmailAddress)
.firstName(addressActionVerificationFirstName)
.internalNumber(addressActionVerificationInternalNumber)
.jobTitle(addressActionVerificationJobTitle)
.lastName(addressActionVerificationLastName)
.line1(addressActionVerificationLine1)
.line2(addressActionVerificationLine2)
.line3(addressActionVerificationLine3)
.line4(addressActionVerificationLine4)
.middleName(addressActionVerificationMiddleName)
.municipalInscription(addressActionVerificationMunicipalInscription)
.phoneCountryCode(addressActionVerificationPhoneCountryCode)
.phoneNumber(addressActionVerificationPhoneNumber)
.postalCode(addressActionVerificationPostalCode)
.province(addressActionVerificationProvince)
.state(addressActionVerificationState)
.stateInscription(addressActionVerificationStateInscription)
.streetName(addressActionVerificationStreetName)
.streetNumber(addressActionVerificationStreetNumber)
.build());
}
}
resources:
testAddressActionVerification:
type: oci:OspGateway:AddressActionVerification
name: test_address_action_verification
properties:
compartmentId: ${compartmentId}
ospHomeRegion: ${addressActionVerificationOspHomeRegion}
addressKey: ${addressActionVerificationAddressKey}
city: ${addressActionVerificationCity}
companyName: ${addressActionVerificationCompanyName}
contributorClass: ${addressActionVerificationContributorClass}
country: ${addressActionVerificationCountry}
county: ${addressActionVerificationCounty}
departmentName: ${addressActionVerificationDepartmentName}
emailAddress: ${addressActionVerificationEmailAddress}
firstName: ${addressActionVerificationFirstName}
internalNumber: ${addressActionVerificationInternalNumber}
jobTitle: ${addressActionVerificationJobTitle}
lastName: ${addressActionVerificationLastName}
line1: ${addressActionVerificationLine1}
line2: ${addressActionVerificationLine2}
line3: ${addressActionVerificationLine3}
line4: ${addressActionVerificationLine4}
middleName: ${addressActionVerificationMiddleName}
municipalInscription: ${addressActionVerificationMunicipalInscription}
phoneCountryCode: ${addressActionVerificationPhoneCountryCode}
phoneNumber: ${addressActionVerificationPhoneNumber}
postalCode: ${addressActionVerificationPostalCode}
province: ${addressActionVerificationProvince}
state: ${addressActionVerificationState}
stateInscription: ${addressActionVerificationStateInscription}
streetName: ${addressActionVerificationStreetName}
streetNumber: ${addressActionVerificationStreetNumber}
Create AddressActionVerification Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AddressActionVerification(name: string, args: AddressActionVerificationArgs, opts?: CustomResourceOptions);
@overload
def AddressActionVerification(resource_name: str,
args: AddressActionVerificationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AddressActionVerification(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
osp_home_region: Optional[str] = None,
line2: Optional[str] = None,
state: Optional[str] = None,
contributor_class: Optional[str] = None,
country: Optional[str] = None,
county: Optional[str] = None,
department_name: Optional[str] = None,
email_address: Optional[str] = None,
first_name: Optional[str] = None,
internal_number: Optional[str] = None,
job_title: Optional[str] = None,
last_name: Optional[str] = None,
line1: Optional[str] = None,
company_name: Optional[str] = None,
address_key: Optional[str] = None,
phone_country_code: Optional[str] = None,
middle_name: Optional[str] = None,
municipal_inscription: Optional[str] = None,
city: Optional[str] = None,
line4: Optional[str] = None,
phone_number: Optional[str] = None,
postal_code: Optional[str] = None,
province: Optional[str] = None,
line3: Optional[str] = None,
state_inscription: Optional[str] = None,
street_name: Optional[str] = None,
street_number: Optional[str] = None)
func NewAddressActionVerification(ctx *Context, name string, args AddressActionVerificationArgs, opts ...ResourceOption) (*AddressActionVerification, error)
public AddressActionVerification(string name, AddressActionVerificationArgs args, CustomResourceOptions? opts = null)
public AddressActionVerification(String name, AddressActionVerificationArgs args)
public AddressActionVerification(String name, AddressActionVerificationArgs args, CustomResourceOptions options)
type: oci:OspGateway:AddressActionVerification
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. AddressActionVerificationArgs - 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. AddressActionVerificationArgs - 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. AddressActionVerificationArgs - 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. AddressActionVerificationArgs - 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. AddressActionVerificationArgs - 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 addressActionVerificationResource = new Oci.OspGateway.AddressActionVerification("addressActionVerificationResource", new()
{
CompartmentId = "string",
OspHomeRegion = "string",
Line2 = "string",
State = "string",
ContributorClass = "string",
Country = "string",
County = "string",
DepartmentName = "string",
EmailAddress = "string",
FirstName = "string",
InternalNumber = "string",
JobTitle = "string",
LastName = "string",
Line1 = "string",
CompanyName = "string",
AddressKey = "string",
PhoneCountryCode = "string",
MiddleName = "string",
MunicipalInscription = "string",
City = "string",
Line4 = "string",
PhoneNumber = "string",
PostalCode = "string",
Province = "string",
Line3 = "string",
StateInscription = "string",
StreetName = "string",
StreetNumber = "string",
});
example, err := OspGateway.NewAddressActionVerification(ctx, "addressActionVerificationResource", &OspGateway.AddressActionVerificationArgs{
CompartmentId: pulumi.String("string"),
OspHomeRegion: pulumi.String("string"),
Line2: pulumi.String("string"),
State: pulumi.String("string"),
ContributorClass: pulumi.String("string"),
Country: pulumi.String("string"),
County: pulumi.String("string"),
DepartmentName: pulumi.String("string"),
EmailAddress: pulumi.String("string"),
FirstName: pulumi.String("string"),
InternalNumber: pulumi.String("string"),
JobTitle: pulumi.String("string"),
LastName: pulumi.String("string"),
Line1: pulumi.String("string"),
CompanyName: pulumi.String("string"),
AddressKey: pulumi.String("string"),
PhoneCountryCode: pulumi.String("string"),
MiddleName: pulumi.String("string"),
MunicipalInscription: pulumi.String("string"),
City: pulumi.String("string"),
Line4: pulumi.String("string"),
PhoneNumber: pulumi.String("string"),
PostalCode: pulumi.String("string"),
Province: pulumi.String("string"),
Line3: pulumi.String("string"),
StateInscription: pulumi.String("string"),
StreetName: pulumi.String("string"),
StreetNumber: pulumi.String("string"),
})
var addressActionVerificationResource = new AddressActionVerification("addressActionVerificationResource", AddressActionVerificationArgs.builder()
.compartmentId("string")
.ospHomeRegion("string")
.line2("string")
.state("string")
.contributorClass("string")
.country("string")
.county("string")
.departmentName("string")
.emailAddress("string")
.firstName("string")
.internalNumber("string")
.jobTitle("string")
.lastName("string")
.line1("string")
.companyName("string")
.addressKey("string")
.phoneCountryCode("string")
.middleName("string")
.municipalInscription("string")
.city("string")
.line4("string")
.phoneNumber("string")
.postalCode("string")
.province("string")
.line3("string")
.stateInscription("string")
.streetName("string")
.streetNumber("string")
.build());
address_action_verification_resource = oci.osp_gateway.AddressActionVerification("addressActionVerificationResource",
compartment_id="string",
osp_home_region="string",
line2="string",
state="string",
contributor_class="string",
country="string",
county="string",
department_name="string",
email_address="string",
first_name="string",
internal_number="string",
job_title="string",
last_name="string",
line1="string",
company_name="string",
address_key="string",
phone_country_code="string",
middle_name="string",
municipal_inscription="string",
city="string",
line4="string",
phone_number="string",
postal_code="string",
province="string",
line3="string",
state_inscription="string",
street_name="string",
street_number="string")
const addressActionVerificationResource = new oci.ospgateway.AddressActionVerification("addressActionVerificationResource", {
compartmentId: "string",
ospHomeRegion: "string",
line2: "string",
state: "string",
contributorClass: "string",
country: "string",
county: "string",
departmentName: "string",
emailAddress: "string",
firstName: "string",
internalNumber: "string",
jobTitle: "string",
lastName: "string",
line1: "string",
companyName: "string",
addressKey: "string",
phoneCountryCode: "string",
middleName: "string",
municipalInscription: "string",
city: "string",
line4: "string",
phoneNumber: "string",
postalCode: "string",
province: "string",
line3: "string",
stateInscription: "string",
streetName: "string",
streetNumber: "string",
});
type: oci:OspGateway:AddressActionVerification
properties:
addressKey: string
city: string
companyName: string
compartmentId: string
contributorClass: string
country: string
county: string
departmentName: string
emailAddress: string
firstName: string
internalNumber: string
jobTitle: string
lastName: string
line1: string
line2: string
line3: string
line4: string
middleName: string
municipalInscription: string
ospHomeRegion: string
phoneCountryCode: string
phoneNumber: string
postalCode: string
province: string
state: string
stateInscription: string
streetName: string
streetNumber: string
AddressActionVerification 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 AddressActionVerification resource accepts the following input properties:
- Compartment
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- Osp
Home Region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- Address
Key Changes to this property will trigger replacement.
- Address identifier.
- City
Changes to this property will trigger replacement.
- Name of the city.
- Company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- Contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- Country
Changes to this property will trigger replacement.
- Country of the address.
- County
Changes to this property will trigger replacement.
- County of the address.
- Department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- Email
Address Changes to this property will trigger replacement.
- Contact person email address.
- First
Name Changes to this property will trigger replacement.
- First name of the contact person.
- Internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- Job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- Last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- Line1
Changes to this property will trigger replacement.
- Address line 1.
- Line2
Changes to this property will trigger replacement.
- Address line 2.
- Line3
Changes to this property will trigger replacement.
- Address line 3.
- Line4
Changes to this property will trigger replacement.
- Address line 4.
- Middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- Municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- Phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- Phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- Postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- Province
Changes to this property will trigger replacement.
- Province of the address.
- State
Changes to this property will trigger replacement.
- State of the address.
- State
Inscription Changes to this property will trigger replacement.
- State Inscription.
- Street
Name Changes to this property will trigger replacement.
- Street name of the address.
- Street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- Osp
Home Region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- Address
Key Changes to this property will trigger replacement.
- Address identifier.
- City
Changes to this property will trigger replacement.
- Name of the city.
- Company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- Contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- Country
Changes to this property will trigger replacement.
- Country of the address.
- County
Changes to this property will trigger replacement.
- County of the address.
- Department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- Email
Address Changes to this property will trigger replacement.
- Contact person email address.
- First
Name Changes to this property will trigger replacement.
- First name of the contact person.
- Internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- Job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- Last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- Line1
Changes to this property will trigger replacement.
- Address line 1.
- Line2
Changes to this property will trigger replacement.
- Address line 2.
- Line3
Changes to this property will trigger replacement.
- Address line 3.
- Line4
Changes to this property will trigger replacement.
- Address line 4.
- Middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- Municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- Phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- Phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- Postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- Province
Changes to this property will trigger replacement.
- Province of the address.
- State
Changes to this property will trigger replacement.
- State of the address.
- State
Inscription Changes to this property will trigger replacement.
- State Inscription.
- Street
Name Changes to this property will trigger replacement.
- Street name of the address.
- Street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- osp
Home Region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- osp
Home Region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- osp_
home_ region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- address_
key Changes to this property will trigger replacement.
- Address identifier.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company_
name Changes to this property will trigger replacement.
- Name of the customer company.
- contributor_
class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department_
name Changes to this property will trigger replacement.
- Department name of the customer company.
- email_
address Changes to this property will trigger replacement.
- Contact person email address.
- first_
name Changes to this property will trigger replacement.
- First name of the contact person.
- internal_
number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job_
title Changes to this property will trigger replacement.
- Job title of the contact person.
- last_
name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle_
name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal_
inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- phone_
country_ code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone_
number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal_
code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- state
Changes to this property will trigger replacement.
- State of the address.
- state_
inscription Changes to this property will trigger replacement.
- State Inscription.
- street_
name Changes to this property will trigger replacement.
- Street name of the address.
- street_
number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id This property is required. Changes to this property will trigger replacement.
- The OCID of the compartment.
- osp
Home Region This property is required. Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the AddressActionVerification resource produces the following output properties:
- Addresses
List<Address
Action Verification Address> - Address details model.
- Id string
- The provider-assigned unique ID for this managed resource.
- Quality string
- Address quality type.
- Verification
Code string - Address verification code.
- Addresses
[]Address
Action Verification Address - Address details model.
- Id string
- The provider-assigned unique ID for this managed resource.
- Quality string
- Address quality type.
- Verification
Code string - Address verification code.
- addresses
List<Address
Action Verification Address> - Address details model.
- id String
- The provider-assigned unique ID for this managed resource.
- quality String
- Address quality type.
- verification
Code String - Address verification code.
- addresses
Address
Action Verification Address[] - Address details model.
- id string
- The provider-assigned unique ID for this managed resource.
- quality string
- Address quality type.
- verification
Code string - Address verification code.
- addresses
Sequence[ospgateway.
Address Action Verification Address] - Address details model.
- id str
- The provider-assigned unique ID for this managed resource.
- quality str
- Address quality type.
- verification_
code str - Address verification code.
- addresses List<Property Map>
- Address details model.
- id String
- The provider-assigned unique ID for this managed resource.
- quality String
- Address quality type.
- verification
Code String - Address verification code.
Look up Existing AddressActionVerification Resource
Get an existing AddressActionVerification 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?: AddressActionVerificationState, opts?: CustomResourceOptions): AddressActionVerification
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address_key: Optional[str] = None,
addresses: Optional[Sequence[_ospgateway.AddressActionVerificationAddressArgs]] = None,
city: Optional[str] = None,
company_name: Optional[str] = None,
compartment_id: Optional[str] = None,
contributor_class: Optional[str] = None,
country: Optional[str] = None,
county: Optional[str] = None,
department_name: Optional[str] = None,
email_address: Optional[str] = None,
first_name: Optional[str] = None,
internal_number: Optional[str] = None,
job_title: Optional[str] = None,
last_name: Optional[str] = None,
line1: Optional[str] = None,
line2: Optional[str] = None,
line3: Optional[str] = None,
line4: Optional[str] = None,
middle_name: Optional[str] = None,
municipal_inscription: Optional[str] = None,
osp_home_region: Optional[str] = None,
phone_country_code: Optional[str] = None,
phone_number: Optional[str] = None,
postal_code: Optional[str] = None,
province: Optional[str] = None,
quality: Optional[str] = None,
state: Optional[str] = None,
state_inscription: Optional[str] = None,
street_name: Optional[str] = None,
street_number: Optional[str] = None,
verification_code: Optional[str] = None) -> AddressActionVerification
func GetAddressActionVerification(ctx *Context, name string, id IDInput, state *AddressActionVerificationState, opts ...ResourceOption) (*AddressActionVerification, error)
public static AddressActionVerification Get(string name, Input<string> id, AddressActionVerificationState? state, CustomResourceOptions? opts = null)
public static AddressActionVerification get(String name, Output<String> id, AddressActionVerificationState state, CustomResourceOptions options)
resources: _: type: oci:OspGateway:AddressActionVerification 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.
- Address
Key Changes to this property will trigger replacement.
- Address identifier.
- Addresses
List<Address
Action Verification Address> - Address details model.
- City
Changes to this property will trigger replacement.
- Name of the city.
- Company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- Compartment
Id Changes to this property will trigger replacement.
- The OCID of the compartment.
- Contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- Country
Changes to this property will trigger replacement.
- Country of the address.
- County
Changes to this property will trigger replacement.
- County of the address.
- Department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- Email
Address Changes to this property will trigger replacement.
- Contact person email address.
- First
Name Changes to this property will trigger replacement.
- First name of the contact person.
- Internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- Job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- Last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- Line1
Changes to this property will trigger replacement.
- Address line 1.
- Line2
Changes to this property will trigger replacement.
- Address line 2.
- Line3
Changes to this property will trigger replacement.
- Address line 3.
- Line4
Changes to this property will trigger replacement.
- Address line 4.
- Middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- Municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- Osp
Home Region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- Phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- Phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- Postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- Province
Changes to this property will trigger replacement.
- Province of the address.
- Quality string
- Address quality type.
- State
Changes to this property will trigger replacement.
- State of the address.
- State
Inscription Changes to this property will trigger replacement.
- State Inscription.
- Street
Name Changes to this property will trigger replacement.
- Street name of the address.
- Street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Verification
Code string - Address verification code.
- Address
Key Changes to this property will trigger replacement.
- Address identifier.
- Addresses
[]Address
Action Verification Address Args - Address details model.
- City
Changes to this property will trigger replacement.
- Name of the city.
- Company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- Compartment
Id Changes to this property will trigger replacement.
- The OCID of the compartment.
- Contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- Country
Changes to this property will trigger replacement.
- Country of the address.
- County
Changes to this property will trigger replacement.
- County of the address.
- Department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- Email
Address Changes to this property will trigger replacement.
- Contact person email address.
- First
Name Changes to this property will trigger replacement.
- First name of the contact person.
- Internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- Job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- Last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- Line1
Changes to this property will trigger replacement.
- Address line 1.
- Line2
Changes to this property will trigger replacement.
- Address line 2.
- Line3
Changes to this property will trigger replacement.
- Address line 3.
- Line4
Changes to this property will trigger replacement.
- Address line 4.
- Middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- Municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- Osp
Home Region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- Phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- Phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- Postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- Province
Changes to this property will trigger replacement.
- Province of the address.
- Quality string
- Address quality type.
- State
Changes to this property will trigger replacement.
- State of the address.
- State
Inscription Changes to this property will trigger replacement.
- State Inscription.
- Street
Name Changes to this property will trigger replacement.
- Street name of the address.
- Street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Verification
Code string - Address verification code.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- addresses
List<Address
Action Verification Address> - Address details model.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- compartment
Id Changes to this property will trigger replacement.
- The OCID of the compartment.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- osp
Home Region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- quality String
- Address quality type.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- verification
Code String - Address verification code.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- addresses
Address
Action Verification Address[] - Address details model.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- compartment
Id Changes to this property will trigger replacement.
- The OCID of the compartment.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- osp
Home Region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- quality string
- Address quality type.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- verification
Code string - Address verification code.
- address_
key Changes to this property will trigger replacement.
- Address identifier.
- addresses
Sequence[ospgateway.
Address Action Verification Address Args] - Address details model.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company_
name Changes to this property will trigger replacement.
- Name of the customer company.
- compartment_
id Changes to this property will trigger replacement.
- The OCID of the compartment.
- contributor_
class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department_
name Changes to this property will trigger replacement.
- Department name of the customer company.
- email_
address Changes to this property will trigger replacement.
- Contact person email address.
- first_
name Changes to this property will trigger replacement.
- First name of the contact person.
- internal_
number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job_
title Changes to this property will trigger replacement.
- Job title of the contact person.
- last_
name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle_
name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal_
inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- osp_
home_ region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- phone_
country_ code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone_
number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal_
code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- quality str
- Address quality type.
- state
Changes to this property will trigger replacement.
- State of the address.
- state_
inscription Changes to this property will trigger replacement.
- State Inscription.
- street_
name Changes to this property will trigger replacement.
- Street name of the address.
- street_
number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- verification_
code str - Address verification code.
- address
Key Changes to this property will trigger replacement.
- Address identifier.
- addresses List<Property Map>
- Address details model.
- city
Changes to this property will trigger replacement.
- Name of the city.
- company
Name Changes to this property will trigger replacement.
- Name of the customer company.
- compartment
Id Changes to this property will trigger replacement.
- The OCID of the compartment.
- contributor
Class Changes to this property will trigger replacement.
- Contributor class of the customer company.
- country
Changes to this property will trigger replacement.
- Country of the address.
- county
Changes to this property will trigger replacement.
- County of the address.
- department
Name Changes to this property will trigger replacement.
- Department name of the customer company.
- email
Address Changes to this property will trigger replacement.
- Contact person email address.
- first
Name Changes to this property will trigger replacement.
- First name of the contact person.
- internal
Number Changes to this property will trigger replacement.
- Internal number of the customer company.
- job
Title Changes to this property will trigger replacement.
- Job title of the contact person.
- last
Name Changes to this property will trigger replacement.
- Last name of the contact person.
- line1
Changes to this property will trigger replacement.
- Address line 1.
- line2
Changes to this property will trigger replacement.
- Address line 2.
- line3
Changes to this property will trigger replacement.
- Address line 3.
- line4
Changes to this property will trigger replacement.
- Address line 4.
- middle
Name Changes to this property will trigger replacement.
- Middle name of the contact person.
- municipal
Inscription Changes to this property will trigger replacement.
- Municipal Inscription.
- osp
Home Region Changes to this property will trigger replacement.
- The home region's public name of the logged in user.
- phone
Country Code Changes to this property will trigger replacement.
- Phone country code of the contact person.
- phone
Number Changes to this property will trigger replacement.
- Phone number of the contact person.
- postal
Code Changes to this property will trigger replacement.
- Post code of the address.
- province
Changes to this property will trigger replacement.
- Province of the address.
- quality String
- Address quality type.
- state
Changes to this property will trigger replacement.
- State of the address.
- state
Inscription Changes to this property will trigger replacement.
- State Inscription.
- street
Name Changes to this property will trigger replacement.
- Street name of the address.
- street
Number Changes to this property will trigger replacement.
Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- verification
Code String - Address verification code.
Supporting Types
AddressActionVerificationAddress, AddressActionVerificationAddressArgs
- Address
Key string - Address identifier.
- City string
- Name of the city.
- Company
Name string - Name of the customer company.
- Contributor
Class string - Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- Department
Name string - Department name of the customer company.
- Email
Address string - Contact person email address.
- First
Name string - First name of the contact person.
- Internal
Number string - Internal number of the customer company.
- Job
Title string - Job title of the contact person.
- Last
Name string - Last name of the contact person.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- Middle
Name string - Middle name of the contact person.
- Municipal
Inscription string - Municipal Inscription.
- Phone
Country stringCode - Phone country code of the contact person.
- Phone
Number string - Phone number of the contact person.
- Postal
Code string - Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- State
Inscription string - State Inscription.
- Street
Name string - Street name of the address.
- Street
Number string Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Address
Key string - Address identifier.
- City string
- Name of the city.
- Company
Name string - Name of the customer company.
- Contributor
Class string - Contributor class of the customer company.
- Country string
- Country of the address.
- County string
- County of the address.
- Department
Name string - Department name of the customer company.
- Email
Address string - Contact person email address.
- First
Name string - First name of the contact person.
- Internal
Number string - Internal number of the customer company.
- Job
Title string - Job title of the contact person.
- Last
Name string - Last name of the contact person.
- Line1 string
- Address line 1.
- Line2 string
- Address line 2.
- Line3 string
- Address line 3.
- Line4 string
- Address line 4.
- Middle
Name string - Middle name of the contact person.
- Municipal
Inscription string - Municipal Inscription.
- Phone
Country stringCode - Phone country code of the contact person.
- Phone
Number string - Phone number of the contact person.
- Postal
Code string - Post code of the address.
- Province string
- Province of the address.
- State string
- State of the address.
- State
Inscription string - State Inscription.
- Street
Name string - Street name of the address.
- Street
Number string Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- address
Key String - Address identifier.
- city String
- Name of the city.
- company
Name String - Name of the customer company.
- contributor
Class String - Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- department
Name String - Department name of the customer company.
- email
Address String - Contact person email address.
- first
Name String - First name of the contact person.
- internal
Number String - Internal number of the customer company.
- job
Title String - Job title of the contact person.
- last
Name String - Last name of the contact person.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middle
Name String - Middle name of the contact person.
- municipal
Inscription String - Municipal Inscription.
- phone
Country StringCode - Phone country code of the contact person.
- phone
Number String - Phone number of the contact person.
- postal
Code String - Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- state
Inscription String - State Inscription.
- street
Name String - Street name of the address.
- street
Number String Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- address
Key string - Address identifier.
- city string
- Name of the city.
- company
Name string - Name of the customer company.
- contributor
Class string - Contributor class of the customer company.
- country string
- Country of the address.
- county string
- County of the address.
- department
Name string - Department name of the customer company.
- email
Address string - Contact person email address.
- first
Name string - First name of the contact person.
- internal
Number string - Internal number of the customer company.
- job
Title string - Job title of the contact person.
- last
Name string - Last name of the contact person.
- line1 string
- Address line 1.
- line2 string
- Address line 2.
- line3 string
- Address line 3.
- line4 string
- Address line 4.
- middle
Name string - Middle name of the contact person.
- municipal
Inscription string - Municipal Inscription.
- phone
Country stringCode - Phone country code of the contact person.
- phone
Number string - Phone number of the contact person.
- postal
Code string - Post code of the address.
- province string
- Province of the address.
- state string
- State of the address.
- state
Inscription string - State Inscription.
- street
Name string - Street name of the address.
- street
Number string Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- address_
key str - Address identifier.
- city str
- Name of the city.
- company_
name str - Name of the customer company.
- contributor_
class str - Contributor class of the customer company.
- country str
- Country of the address.
- county str
- County of the address.
- department_
name str - Department name of the customer company.
- email_
address str - Contact person email address.
- first_
name str - First name of the contact person.
- internal_
number str - Internal number of the customer company.
- job_
title str - Job title of the contact person.
- last_
name str - Last name of the contact person.
- line1 str
- Address line 1.
- line2 str
- Address line 2.
- line3 str
- Address line 3.
- line4 str
- Address line 4.
- middle_
name str - Middle name of the contact person.
- municipal_
inscription str - Municipal Inscription.
- phone_
country_ strcode - Phone country code of the contact person.
- phone_
number str - Phone number of the contact person.
- postal_
code str - Post code of the address.
- province str
- Province of the address.
- state str
- State of the address.
- state_
inscription str - State Inscription.
- street_
name str - Street name of the address.
- street_
number str Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- address
Key String - Address identifier.
- city String
- Name of the city.
- company
Name String - Name of the customer company.
- contributor
Class String - Contributor class of the customer company.
- country String
- Country of the address.
- county String
- County of the address.
- department
Name String - Department name of the customer company.
- email
Address String - Contact person email address.
- first
Name String - First name of the contact person.
- internal
Number String - Internal number of the customer company.
- job
Title String - Job title of the contact person.
- last
Name String - Last name of the contact person.
- line1 String
- Address line 1.
- line2 String
- Address line 2.
- line3 String
- Address line 3.
- line4 String
- Address line 4.
- middle
Name String - Middle name of the contact person.
- municipal
Inscription String - Municipal Inscription.
- phone
Country StringCode - Phone country code of the contact person.
- phone
Number String - Phone number of the contact person.
- postal
Code String - Post code of the address.
- province String
- Province of the address.
- state String
- State of the address.
- state
Inscription String - State Inscription.
- street
Name String - Street name of the address.
- street
Number String Street number of the address.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
AddressActionVerifications can be imported using the id
, e.g.
$ pulumi import oci:OspGateway/addressActionVerification:AddressActionVerification test_address_action_verification "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.