1. Packages
  2. Cisco Meraki
  3. API Docs
  4. networks
  5. getSmDevicesCerts
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.networks.getSmDevicesCerts

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    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:

    DeviceId string
    deviceId path parameter. Device ID
    NetworkId string
    networkId path parameter. Network ID
    DeviceId string
    deviceId path parameter. Device ID
    NetworkId string
    networkId path parameter. Network ID
    deviceId String
    deviceId path parameter. Device ID
    networkId String
    networkId path parameter. Network ID
    deviceId string
    deviceId path parameter. Device ID
    networkId string
    networkId path parameter. Network ID
    device_id str
    deviceId path parameter. Device ID
    network_id str
    networkId path parameter. Network ID
    deviceId String
    deviceId path parameter. Device ID
    networkId String
    networkId path parameter. Network ID

    getSmDevicesCerts Result

    The following output properties are available:

    DeviceId string
    deviceId path parameter. Device ID
    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetSmDevicesCertsItem>
    Array of ResponseSmGetNetworkSmDeviceCerts
    NetworkId string
    networkId path parameter. Network ID
    DeviceId string
    deviceId path parameter. Device ID
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetSmDevicesCertsItem
    Array of ResponseSmGetNetworkSmDeviceCerts
    NetworkId string
    networkId path parameter. Network ID
    deviceId String
    deviceId path parameter. Device ID
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetSmDevicesCertsItem>
    Array of ResponseSmGetNetworkSmDeviceCerts
    networkId String
    networkId path parameter. Network ID
    deviceId string
    deviceId path parameter. Device ID
    id string
    The provider-assigned unique ID for this managed resource.
    items GetSmDevicesCertsItem[]
    Array of ResponseSmGetNetworkSmDeviceCerts
    networkId 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[GetSmDevicesCertsItem]
    Array of ResponseSmGetNetworkSmDeviceCerts
    network_id str
    networkId path parameter. Network ID
    deviceId String
    deviceId path parameter. Device ID
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseSmGetNetworkSmDeviceCerts
    networkId String
    networkId path parameter. Network ID

    Supporting Types

    GetSmDevicesCertsItem

    CertPem string
    The PEM of the certificate.
    DeviceId 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.
    NotValidAfter string
    The date after which the certificate is no longer valid.
    NotValidBefore string
    The date before which the certificate is not valid.
    Subject string
    The subject of the certificate.
    CertPem string
    The PEM of the certificate.
    DeviceId 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.
    NotValidAfter string
    The date after which the certificate is no longer valid.
    NotValidBefore string
    The date before which the certificate is not valid.
    Subject string
    The subject of the certificate.
    certPem String
    The PEM of the certificate.
    deviceId 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.
    notValidAfter String
    The date after which the certificate is no longer valid.
    notValidBefore String
    The date before which the certificate is not valid.
    subject String
    The subject of the certificate.
    certPem string
    The PEM of the certificate.
    deviceId 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.
    notValidAfter string
    The date after which the certificate is no longer valid.
    notValidBefore string
    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_after str
    The date after which the certificate is no longer valid.
    not_valid_before str
    The date before which the certificate is not valid.
    subject str
    The subject of the certificate.
    certPem String
    The PEM of the certificate.
    deviceId 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.
    notValidAfter String
    The date after which the certificate is no longer valid.
    notValidBefore String
    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.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi