Skip to content

Commit 9c927c4

Browse files
Releasing version 110.1.0
Releasing version 110.1.0
2 parents f7924cd + fa8e1d0 commit 9c927c4

File tree

167 files changed

+799
-474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+799
-474
lines changed

Accessgovernancecp/OCI.PSModules.Accessgovernancecp.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Accessgovernancecp.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Accessgovernancecp.dll'

Adm/OCI.PSModules.Adm.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Adm.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Adm.dll'

Aianomalydetection/OCI.PSModules.Aianomalydetection.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Aianomalydetection.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Aianomalydetection.dll'
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
* NOTE: Generated using OracleSDKGenerator, API Version: 20221109
3+
* DO NOT EDIT this file manually.
4+
*
5+
* Copyright (c) 2020, 2025, Oracle and/or its affiliates.
6+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
7+
*/
8+
9+
using System;
10+
using System.Management.Automation;
11+
using Oci.AidocumentService.Requests;
12+
using Oci.AidocumentService.Responses;
13+
using Oci.AidocumentService.Models;
14+
using Oci.Common.Model;
15+
16+
namespace Oci.AidocumentService.Cmdlets
17+
{
18+
[Cmdlet("Get", "OCIAidocumentModelType")]
19+
[OutputType(new System.Type[] { typeof(Oci.AidocumentService.Models.ModelTypeInfo), typeof(Oci.AidocumentService.Responses.GetModelTypeResponse) })]
20+
public class GetOCIAidocumentModelType : OCIAIServiceDocumentCmdlet
21+
{
22+
[Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = @"The type of the Document model.")]
23+
public string ModelType { get; set; }
24+
25+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = @"The ID of the compartment in which to list resources.")]
26+
public string CompartmentId { get; set; }
27+
28+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = @"The sub type based upon model selected.")]
29+
public string ModelSubType { get; set; }
30+
31+
[Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = @"The client request ID for tracing.")]
32+
public string OpcRequestId { get; set; }
33+
34+
protected override void ProcessRecord()
35+
{
36+
base.ProcessRecord();
37+
GetModelTypeRequest request;
38+
39+
try
40+
{
41+
request = new GetModelTypeRequest
42+
{
43+
ModelType = ModelType,
44+
CompartmentId = CompartmentId,
45+
ModelSubType = ModelSubType,
46+
OpcRequestId = OpcRequestId
47+
};
48+
49+
response = client.GetModelType(request).GetAwaiter().GetResult();
50+
WriteOutput(response, response.ModelTypeInfo);
51+
FinishProcessing(response);
52+
}
53+
catch (OciException ex)
54+
{
55+
TerminatingErrorDuringExecution(ex);
56+
}
57+
catch (Exception ex)
58+
{
59+
TerminatingErrorDuringExecution(ex);
60+
}
61+
}
62+
63+
protected override void StopProcessing()
64+
{
65+
base.StopProcessing();
66+
TerminatingErrorDuringExecution(new OperationCanceledException("Cmdlet execution interrupted"));
67+
}
68+
69+
private GetModelTypeResponse response;
70+
}
71+
}

Aidocument/OCI.PSModules.Aidocument.psd1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Aidocument.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Aidocument.dll'
@@ -73,8 +73,9 @@ FunctionsToExport = '*'
7373
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
7474
CmdletsToExport = 'Add-OCIAidocumentModelLock', 'Add-OCIAidocumentProjectLock',
7575
'Get-OCIAidocumentModel', 'Get-OCIAidocumentModelsList',
76-
'Get-OCIAidocumentProcessorJob', 'Get-OCIAidocumentProject',
77-
'Get-OCIAidocumentProjectsList', 'Get-OCIAidocumentWorkRequest',
76+
'Get-OCIAidocumentModelType', 'Get-OCIAidocumentProcessorJob',
77+
'Get-OCIAidocumentProject', 'Get-OCIAidocumentProjectsList',
78+
'Get-OCIAidocumentWorkRequest',
7879
'Get-OCIAidocumentWorkRequestErrorsList',
7980
'Get-OCIAidocumentWorkRequestLogsList',
8081
'Get-OCIAidocumentWorkRequestsList',

Ailanguage/OCI.PSModules.Ailanguage.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Ailanguage.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Ailanguage.dll'

Aispeech/OCI.PSModules.Aispeech.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Aispeech.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Aispeech.dll'

Aivision/OCI.PSModules.Aivision.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Aivision.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Aivision.dll'

Analytics/OCI.PSModules.Analytics.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Analytics.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Analytics.dll'

Announcementsservice/OCI.PSModules.Announcementsservice.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'assemblies/OCI.PSModules.Announcementsservice.dll'
1212

1313
# Version number of this module.
14-
ModuleVersion = '110.0.0'
14+
ModuleVersion = '110.1.0'
1515

1616
# Supported PSEditions
1717
CompatiblePSEditions = 'Core'
@@ -50,7 +50,7 @@ PowerShellVersion = '6.0'
5050
# ProcessorArchitecture = ''
5151

5252
# Modules that must be imported into the global environment prior to importing this module
53-
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.0.0'; })
53+
RequiredModules = @(@{ModuleName = 'OCI.PSModules.Common'; GUID = 'b3061a0d-375b-4099-ae76-f92fb3cdcdae'; RequiredVersion = '110.1.0'; })
5454

5555
# Assemblies that must be loaded prior to importing this module
5656
RequiredAssemblies = 'assemblies/OCI.DotNetSDK.Announcementsservice.dll'

0 commit comments

Comments
 (0)