Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi
meraki.networks.getSmDevicesCerts
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = meraki.networks.getSmDevicesCerts({
deviceId: "string",
networkId: "string",
});
export const merakiNetworksSmDevicesCertsExample = example.then(example => example.items);
import pulumi
import pulumi_meraki as meraki
example = meraki.networks.get_sm_devices_certs(device_id="string",
network_id="string")
pulumi.export("merakiNetworksSmDevicesCertsExample", example.items)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := networks.GetSmDevicesCerts(ctx, &networks.GetSmDevicesCertsArgs{
DeviceId: "string",
NetworkId: "string",
}, nil)
if err != nil {
return err
}
ctx.Export("merakiNetworksSmDevicesCertsExample", example.Items)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = Meraki.Networks.GetSmDevicesCerts.Invoke(new()
{
DeviceId = "string",
NetworkId = "string",
});
return new Dictionary<string, object?>
{
["merakiNetworksSmDevicesCertsExample"] = example.Apply(getSmDevicesCertsResult => getSmDevicesCertsResult.Items),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.NetworksFunctions;
import com.pulumi.meraki.networks.inputs.GetSmDevicesCertsArgs;
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) {
final var example = NetworksFunctions.getSmDevicesCerts(GetSmDevicesCertsArgs.builder()
.deviceId("string")
.networkId("string")
.build());
ctx.export("merakiNetworksSmDevicesCertsExample", example.applyValue(getSmDevicesCertsResult -> getSmDevicesCertsResult.items()));
}
}
variables:
example:
fn::invoke:
Function: meraki:networks:getSmDevicesCerts
Arguments:
deviceId: string
networkId: string
outputs:
merakiNetworksSmDevicesCertsExample: ${example.items}
Using getSmDevicesCerts
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSmDevicesCerts(args: GetSmDevicesCertsArgs, opts?: InvokeOptions): Promise<GetSmDevicesCertsResult>
function getSmDevicesCertsOutput(args: GetSmDevicesCertsOutputArgs, opts?: InvokeOptions): Output<GetSmDevicesCertsResult>
def get_sm_devices_certs(device_id: Optional[str] = None,
network_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSmDevicesCertsResult
def get_sm_devices_certs_output(device_id: Optional[pulumi.Input[str]] = None,
network_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSmDevicesCertsResult]
func GetSmDevicesCerts(ctx *Context, args *GetSmDevicesCertsArgs, opts ...InvokeOption) (*GetSmDevicesCertsResult, error)
func GetSmDevicesCertsOutput(ctx *Context, args *GetSmDevicesCertsOutputArgs, opts ...InvokeOption) GetSmDevicesCertsResultOutput
> Note: This function is named GetSmDevicesCerts
in the Go SDK.
public static class GetSmDevicesCerts
{
public static Task<GetSmDevicesCertsResult> InvokeAsync(GetSmDevicesCertsArgs args, InvokeOptions? opts = null)
public static Output<GetSmDevicesCertsResult> Invoke(GetSmDevicesCertsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSmDevicesCertsResult> getSmDevicesCerts(GetSmDevicesCertsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: meraki:networks/getSmDevicesCerts:getSmDevicesCerts
arguments:
# arguments dictionary
The following arguments are supported:
- device_
id str - deviceId path parameter. Device ID
- network_
id str - networkId path parameter. Network ID
getSmDevicesCerts Result
The following output properties are available:
- Device
Id string - deviceId path parameter. Device ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Sm Devices Certs Item> - Array of ResponseSmGetNetworkSmDeviceCerts
- Network
Id string - networkId path parameter. Network ID
- Device
Id string - deviceId path parameter. Device ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Sm Devices Certs Item - Array of ResponseSmGetNetworkSmDeviceCerts
- Network
Id string - networkId path parameter. Network ID
- device
Id String - deviceId path parameter. Device ID
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Sm Devices Certs Item> - Array of ResponseSmGetNetworkSmDeviceCerts
- network
Id String - networkId path parameter. Network ID
- device
Id string - deviceId path parameter. Device ID
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Sm Devices Certs Item[] - Array of ResponseSmGetNetworkSmDeviceCerts
- network
Id string - networkId path parameter. Network ID
- device_
id str - deviceId path parameter. Device ID
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Sm Devices Certs Item] - Array of ResponseSmGetNetworkSmDeviceCerts
- network_
id str - networkId path parameter. Network ID
- device
Id String - deviceId path parameter. Device ID
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- Array of ResponseSmGetNetworkSmDeviceCerts
- network
Id String - networkId path parameter. Network ID
Supporting Types
GetSmDevicesCertsItem
- Cert
Pem string - The PEM of the certificate.
- Device
Id string - The Meraki managed device Id.
- Id string
- The Meraki Id of the certificate record.
- Issuer string
- The certificate issuer.
- Name string
- The name of the certificate.
- Not
Valid stringAfter - The date after which the certificate is no longer valid.
- Not
Valid stringBefore - The date before which the certificate is not valid.
- Subject string
- The subject of the certificate.
- Cert
Pem string - The PEM of the certificate.
- Device
Id string - The Meraki managed device Id.
- Id string
- The Meraki Id of the certificate record.
- Issuer string
- The certificate issuer.
- Name string
- The name of the certificate.
- Not
Valid stringAfter - The date after which the certificate is no longer valid.
- Not
Valid stringBefore - The date before which the certificate is not valid.
- Subject string
- The subject of the certificate.
- cert
Pem String - The PEM of the certificate.
- device
Id String - The Meraki managed device Id.
- id String
- The Meraki Id of the certificate record.
- issuer String
- The certificate issuer.
- name String
- The name of the certificate.
- not
Valid StringAfter - The date after which the certificate is no longer valid.
- not
Valid StringBefore - The date before which the certificate is not valid.
- subject String
- The subject of the certificate.
- cert
Pem string - The PEM of the certificate.
- device
Id string - The Meraki managed device Id.
- id string
- The Meraki Id of the certificate record.
- issuer string
- The certificate issuer.
- name string
- The name of the certificate.
- not
Valid stringAfter - The date after which the certificate is no longer valid.
- not
Valid stringBefore - The date before which the certificate is not valid.
- subject string
- The subject of the certificate.
- cert_
pem str - The PEM of the certificate.
- device_
id str - The Meraki managed device Id.
- id str
- The Meraki Id of the certificate record.
- issuer str
- The certificate issuer.
- name str
- The name of the certificate.
- not_
valid_ strafter - The date after which the certificate is no longer valid.
- not_
valid_ strbefore - The date before which the certificate is not valid.
- subject str
- The subject of the certificate.
- cert
Pem String - The PEM of the certificate.
- device
Id String - The Meraki managed device Id.
- id String
- The Meraki Id of the certificate record.
- issuer String
- The certificate issuer.
- name String
- The name of the certificate.
- not
Valid StringAfter - The date after which the certificate is no longer valid.
- not
Valid StringBefore - The date before which the certificate is not valid.
- subject String
- The subject of the certificate.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.