FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
google-cloud-php/Dms/src/V1/ConvertRowIdToColumn.php at main · googleapis/google-cloud-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
googleapis
/
google-cloud-php
Public
Notifications
You must be signed in to change notification settings
Fork
464
Star
1.2k
Code
Issues
45
Pull requests
35
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
google-cloud-php
/
Dms
/
src
/
V1
/
ConvertRowIdToColumn.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (65 loc) · 2.32 KB
Breadcrumbs
google-cloud-php
/
Dms
/
src
/
V1
/
ConvertRowIdToColumn.php
Copy path
File metadata and controls
74 lines (65 loc) · 2.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/clouddms/v1/conversionworkspace_resources.proto
namespace
Google
\
Cloud
\
CloudDms
\
V1
;
use
Google
\
Protobuf
\
Internal
\
GPBType
;
use
Google
\
Protobuf
\
Internal
\
GPBUtil
;
use
Google
\
Protobuf
\
RepeatedField
;
/**
* Options to configure rule type ConvertROWIDToColumn.
* The rule is used to add column rowid to destination tables based on an Oracle
* rowid function/property.
* The rule filter field can refer to one or more entities.
* The rule scope can be one of: Table.
* This rule requires additional filter to be specified beyond the basic rule
* filter field, which is whether or not to work on tables which already have a
* primary key defined.
*
* Generated from protobuf message <code>google.cloud.clouddms.v1.ConvertRowIdToColumn</code>
*/
class
ConvertRowIdToColumn
extends
\
Google
\
Protobuf
\
Internal
\Message
{
/**
* Required. Only work on tables without primary key defined
*
* Generated from protobuf field <code>bool only_if_no_primary_key = 1 [(.google.api.field_behavior) = REQUIRED];</code>
*/
protected
$
only_if_no_primary_key
=
false
;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $only_if_no_primary_key
* Required. Only work on tables without primary key defined
* }
*/
public
function
__construct
(
$
data
=
NULL
) {
\
GPBMetadata
\
Google
\
Cloud
\
Clouddms
\
V1
\ConversionworkspaceResources::
initOnce
();
parent
::
__construct
(
$
data
);
}
/**
* Required. Only work on tables without primary key defined
*
* Generated from protobuf field <code>bool only_if_no_primary_key = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @return bool
*/
public
function
getOnlyIfNoPrimaryKey
()
{
return
$
this
->
only_if_no_primary_key
;
}
/**
* Required. Only work on tables without primary key defined
*
* Generated from protobuf field <code>bool only_if_no_primary_key = 1 [(.google.api.field_behavior) = REQUIRED];</code>
* @param bool $var
* @return $this
*/
public
function
setOnlyIfNoPrimaryKey
(
$
var
)
{
GPBUtil::
checkBool
(
$
var
);
$
this
->
only_if_no_primary_key
=
$
var
;
return
$
this
;
}
}
Back
|
FazBrowse Home
|
New Git URL