This message was deleted.
# getting-started
s
This message was deleted.
d
here’s exactly what i need:
Copy code
data "oci_core_services" "all_oci_services" {
  filter {
    name   = "name"
    values = ["All .* Services In Oracle Services Network"]
    regex  = true
  }
}
b
@damp-truck-25843 all data sources are in the format `get<Something`: https://www.pulumi.com/registry/packages/oci/api-docs/core/getservices/ There's also
getSomethingOutput
which returns an output
looks like the java SDK doesn't have the output form of those functions yet, so it'll be
getServices
d
thanks!